Compare commits
No commits in common. "d5f32d622a738f6bd9d386c2f9088c106c323f9a" and "07c7c345d87186f20742c9c0b048e42cdfc123d2" have entirely different histories.
d5f32d622a
...
07c7c345d8
15
.vscode/launch.json
vendored
15
.vscode/launch.json
vendored
@ -1,15 +0,0 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"name": "Launch Chrome against localhost",
|
||||
"url": "http://localhost:8080",
|
||||
"webRoot": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@ -18,8 +18,6 @@ module.exports = class OrdersDBApi {
|
||||
requested_date: data.requested_date || null,
|
||||
status: data.status || null,
|
||||
fee: data.fee || null,
|
||||
street_address: data.street_address || null,
|
||||
Municipality: data.Municipality || null,
|
||||
importHash: data.importHash || null,
|
||||
createdById: currentUser.id,
|
||||
updatedById: currentUser.id,
|
||||
@ -53,8 +51,6 @@ module.exports = class OrdersDBApi {
|
||||
requested_date: item.requested_date || null,
|
||||
status: item.status || null,
|
||||
fee: item.fee || null,
|
||||
street_address: item.street_address || null,
|
||||
Municipality: item.Municipality || null,
|
||||
importHash: item.importHash || null,
|
||||
createdById: currentUser.id,
|
||||
updatedById: currentUser.id,
|
||||
@ -85,12 +81,6 @@ module.exports = class OrdersDBApi {
|
||||
|
||||
if (data.fee !== undefined) updatePayload.fee = data.fee;
|
||||
|
||||
if (data.street_address !== undefined)
|
||||
updatePayload.street_address = data.street_address;
|
||||
|
||||
if (data.Municipality !== undefined)
|
||||
updatePayload.Municipality = data.Municipality;
|
||||
|
||||
updatePayload.updatedById = currentUser.id;
|
||||
|
||||
await orders.update(updatePayload, { transaction });
|
||||
@ -283,24 +273,6 @@ module.exports = class OrdersDBApi {
|
||||
};
|
||||
}
|
||||
|
||||
if (filter.street_address) {
|
||||
where = {
|
||||
...where,
|
||||
[Op.and]: Utils.ilike(
|
||||
'orders',
|
||||
'street_address',
|
||||
filter.street_address,
|
||||
),
|
||||
};
|
||||
}
|
||||
|
||||
if (filter.Municipality) {
|
||||
where = {
|
||||
...where,
|
||||
[Op.and]: Utils.ilike('orders', 'Municipality', filter.Municipality),
|
||||
};
|
||||
}
|
||||
|
||||
if (filter.requested_dateRange) {
|
||||
const [start, end] = filter.requested_dateRange;
|
||||
|
||||
|
||||
@ -1,62 +0,0 @@
|
||||
module.exports = {
|
||||
/**
|
||||
* @param {QueryInterface} queryInterface
|
||||
* @param {Sequelize} Sequelize
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
async up(queryInterface, Sequelize) {
|
||||
/**
|
||||
* @type {Transaction}
|
||||
*/
|
||||
const transaction = await queryInterface.sequelize.transaction();
|
||||
try {
|
||||
await queryInterface.addColumn(
|
||||
'orders',
|
||||
'street_address',
|
||||
{
|
||||
type: Sequelize.DataTypes.TEXT,
|
||||
},
|
||||
{ transaction },
|
||||
);
|
||||
|
||||
await queryInterface.addColumn(
|
||||
'orders',
|
||||
'Municipality',
|
||||
{
|
||||
type: Sequelize.DataTypes.TEXT,
|
||||
},
|
||||
{ transaction },
|
||||
);
|
||||
|
||||
await transaction.commit();
|
||||
} catch (err) {
|
||||
await transaction.rollback();
|
||||
throw err;
|
||||
}
|
||||
},
|
||||
/**
|
||||
* @param {QueryInterface} queryInterface
|
||||
* @param {Sequelize} Sequelize
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
async down(queryInterface, Sequelize) {
|
||||
/**
|
||||
* @type {Transaction}
|
||||
*/
|
||||
const transaction = await queryInterface.sequelize.transaction();
|
||||
try {
|
||||
await queryInterface.removeColumn('orders', 'Municipality', {
|
||||
transaction,
|
||||
});
|
||||
|
||||
await queryInterface.removeColumn('orders', 'street_address', {
|
||||
transaction,
|
||||
});
|
||||
|
||||
await transaction.commit();
|
||||
} catch (err) {
|
||||
await transaction.rollback();
|
||||
throw err;
|
||||
}
|
||||
},
|
||||
};
|
||||
@ -42,14 +42,6 @@ module.exports = function (sequelize, DataTypes) {
|
||||
type: DataTypes.DECIMAL,
|
||||
},
|
||||
|
||||
street_address: {
|
||||
type: DataTypes.TEXT,
|
||||
},
|
||||
|
||||
Municipality: {
|
||||
type: DataTypes.TEXT,
|
||||
},
|
||||
|
||||
importHash: {
|
||||
type: DataTypes.STRING(255),
|
||||
allowNull: true,
|
||||
|
||||
@ -49,16 +49,6 @@ const ActivitiesData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
action: 'Approved order for Metro Valuations.',
|
||||
|
||||
timestamp: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const AppraisalsData = [
|
||||
@ -71,7 +61,7 @@ const AppraisalsData = [
|
||||
|
||||
delivery_date: new Date('2023-10-05T17:00:00Z'),
|
||||
|
||||
status: 'scheduled',
|
||||
status: 'assigned',
|
||||
|
||||
fee: 1500,
|
||||
|
||||
@ -87,7 +77,7 @@ const AppraisalsData = [
|
||||
|
||||
delivery_date: new Date('2023-10-06T16:00:00Z'),
|
||||
|
||||
status: 'in_progress',
|
||||
status: 'assigned',
|
||||
|
||||
fee: 2000,
|
||||
|
||||
@ -103,25 +93,9 @@ const AppraisalsData = [
|
||||
|
||||
delivery_date: new Date('2023-10-07T15:00:00Z'),
|
||||
|
||||
status: 'in_progress',
|
||||
|
||||
fee: 2500,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
accepted_date: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
delivery_date: new Date('2023-10-08T14:00:00Z'),
|
||||
|
||||
status: 'delivered',
|
||||
|
||||
fee: 1800,
|
||||
fee: 2500,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
@ -157,16 +131,6 @@ const ClientsData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Suburban Assessments',
|
||||
|
||||
contact_email: 'contact@suburbanassessments.com',
|
||||
|
||||
// type code here for "relation_many" field
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const InvoicesData = [
|
||||
@ -205,18 +169,6 @@ const InvoicesData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
total_amount: 1800,
|
||||
|
||||
issue_date: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
due_date: new Date('2023-10-18T17:00:00Z'),
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const MessagesData = [
|
||||
@ -255,18 +207,6 @@ const MessagesData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
content: 'Please confirm the inspection date.',
|
||||
|
||||
sent_date: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const NotificationsData = [
|
||||
@ -299,16 +239,6 @@ const NotificationsData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
message: 'Order approved by Org Admin.',
|
||||
|
||||
date: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const OrdersData = [
|
||||
@ -319,15 +249,11 @@ const OrdersData = [
|
||||
|
||||
requested_date: new Date('2023-10-01T09:00:00Z'),
|
||||
|
||||
status: 'delivered',
|
||||
status: 'scheduled',
|
||||
|
||||
fee: 1500,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
street_address: 'Claude Bernard',
|
||||
|
||||
Municipality: 'Dmitri Mendeleev',
|
||||
},
|
||||
|
||||
{
|
||||
@ -337,15 +263,11 @@ const OrdersData = [
|
||||
|
||||
requested_date: new Date('2023-10-02T10:00:00Z'),
|
||||
|
||||
status: 'in_progress',
|
||||
status: 'delivered',
|
||||
|
||||
fee: 2000,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
street_address: 'Johannes Kepler',
|
||||
|
||||
Municipality: 'Hans Selye',
|
||||
},
|
||||
|
||||
{
|
||||
@ -355,33 +277,11 @@ const OrdersData = [
|
||||
|
||||
requested_date: new Date('2023-10-03T11:00:00Z'),
|
||||
|
||||
status: 'scheduled',
|
||||
status: 'delivered',
|
||||
|
||||
fee: 2500,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
street_address: 'Hans Bethe',
|
||||
|
||||
Municipality: 'Emil Kraepelin',
|
||||
},
|
||||
|
||||
{
|
||||
// type code here for "relation_one" field
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
requested_date: new Date('2023-10-04T12:00:00Z'),
|
||||
|
||||
status: 'declined',
|
||||
|
||||
fee: 1800,
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
street_address: 'Alfred Kinsey',
|
||||
|
||||
Municipality: 'Louis Pasteur',
|
||||
},
|
||||
];
|
||||
|
||||
@ -415,16 +315,6 @@ const PropertiesData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
|
||||
{
|
||||
address: '101 Elm St, Metropolis, USA',
|
||||
|
||||
property_type: 'Residential',
|
||||
|
||||
// type code here for "relation_many" field
|
||||
|
||||
// type code here for "relation_one" field
|
||||
},
|
||||
];
|
||||
|
||||
const OrganizationsData = [
|
||||
@ -439,10 +329,6 @@ const OrganizationsData = [
|
||||
{
|
||||
name: 'Urban Appraisals',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Metro Valuations',
|
||||
},
|
||||
];
|
||||
|
||||
// Similar logic for "relation_many"
|
||||
@ -480,17 +366,6 @@ async function associateUserWithOrganization() {
|
||||
if (User2?.setOrganization) {
|
||||
await User2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const User3 = await Users.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (User3?.setOrganization) {
|
||||
await User3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateActivityWithUser() {
|
||||
@ -526,17 +401,6 @@ async function associateActivityWithUser() {
|
||||
if (Activity2?.setUser) {
|
||||
await Activity2.setUser(relatedUser2);
|
||||
}
|
||||
|
||||
const relatedUser3 = await Users.findOne({
|
||||
offset: Math.floor(Math.random() * (await Users.count())),
|
||||
});
|
||||
const Activity3 = await Activities.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Activity3?.setUser) {
|
||||
await Activity3.setUser(relatedUser3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateActivityWithOrganization() {
|
||||
@ -572,17 +436,6 @@ async function associateActivityWithOrganization() {
|
||||
if (Activity2?.setOrganization) {
|
||||
await Activity2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Activity3 = await Activities.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Activity3?.setOrganization) {
|
||||
await Activity3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateAppraisalWithProperty() {
|
||||
@ -618,17 +471,6 @@ async function associateAppraisalWithProperty() {
|
||||
if (Appraisal2?.setProperty) {
|
||||
await Appraisal2.setProperty(relatedProperty2);
|
||||
}
|
||||
|
||||
const relatedProperty3 = await Properties.findOne({
|
||||
offset: Math.floor(Math.random() * (await Properties.count())),
|
||||
});
|
||||
const Appraisal3 = await Appraisals.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Appraisal3?.setProperty) {
|
||||
await Appraisal3.setProperty(relatedProperty3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateAppraisalWithAppraiser() {
|
||||
@ -664,17 +506,6 @@ async function associateAppraisalWithAppraiser() {
|
||||
if (Appraisal2?.setAppraiser) {
|
||||
await Appraisal2.setAppraiser(relatedAppraiser2);
|
||||
}
|
||||
|
||||
const relatedAppraiser3 = await Users.findOne({
|
||||
offset: Math.floor(Math.random() * (await Users.count())),
|
||||
});
|
||||
const Appraisal3 = await Appraisals.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Appraisal3?.setAppraiser) {
|
||||
await Appraisal3.setAppraiser(relatedAppraiser3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateAppraisalWithOrganization() {
|
||||
@ -710,17 +541,6 @@ async function associateAppraisalWithOrganization() {
|
||||
if (Appraisal2?.setOrganization) {
|
||||
await Appraisal2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Appraisal3 = await Appraisals.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Appraisal3?.setOrganization) {
|
||||
await Appraisal3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
// Similar logic for "relation_many"
|
||||
@ -758,17 +578,6 @@ async function associateClientWithOrganization() {
|
||||
if (Client2?.setOrganization) {
|
||||
await Client2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Client3 = await Clients.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Client3?.setOrganization) {
|
||||
await Client3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateInvoiceWithClient() {
|
||||
@ -804,17 +613,6 @@ async function associateInvoiceWithClient() {
|
||||
if (Invoice2?.setClient) {
|
||||
await Invoice2.setClient(relatedClient2);
|
||||
}
|
||||
|
||||
const relatedClient3 = await Clients.findOne({
|
||||
offset: Math.floor(Math.random() * (await Clients.count())),
|
||||
});
|
||||
const Invoice3 = await Invoices.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Invoice3?.setClient) {
|
||||
await Invoice3.setClient(relatedClient3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateInvoiceWithOrganization() {
|
||||
@ -850,17 +648,6 @@ async function associateInvoiceWithOrganization() {
|
||||
if (Invoice2?.setOrganization) {
|
||||
await Invoice2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Invoice3 = await Invoices.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Invoice3?.setOrganization) {
|
||||
await Invoice3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateMessageWithSender() {
|
||||
@ -896,17 +683,6 @@ async function associateMessageWithSender() {
|
||||
if (Message2?.setSender) {
|
||||
await Message2.setSender(relatedSender2);
|
||||
}
|
||||
|
||||
const relatedSender3 = await Users.findOne({
|
||||
offset: Math.floor(Math.random() * (await Users.count())),
|
||||
});
|
||||
const Message3 = await Messages.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Message3?.setSender) {
|
||||
await Message3.setSender(relatedSender3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateMessageWithRecipient() {
|
||||
@ -942,17 +718,6 @@ async function associateMessageWithRecipient() {
|
||||
if (Message2?.setRecipient) {
|
||||
await Message2.setRecipient(relatedRecipient2);
|
||||
}
|
||||
|
||||
const relatedRecipient3 = await Users.findOne({
|
||||
offset: Math.floor(Math.random() * (await Users.count())),
|
||||
});
|
||||
const Message3 = await Messages.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Message3?.setRecipient) {
|
||||
await Message3.setRecipient(relatedRecipient3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateMessageWithOrganization() {
|
||||
@ -988,17 +753,6 @@ async function associateMessageWithOrganization() {
|
||||
if (Message2?.setOrganization) {
|
||||
await Message2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Message3 = await Messages.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Message3?.setOrganization) {
|
||||
await Message3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateNotificationWithUser() {
|
||||
@ -1034,17 +788,6 @@ async function associateNotificationWithUser() {
|
||||
if (Notification2?.setUser) {
|
||||
await Notification2.setUser(relatedUser2);
|
||||
}
|
||||
|
||||
const relatedUser3 = await Users.findOne({
|
||||
offset: Math.floor(Math.random() * (await Users.count())),
|
||||
});
|
||||
const Notification3 = await Notifications.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Notification3?.setUser) {
|
||||
await Notification3.setUser(relatedUser3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateNotificationWithOrganization() {
|
||||
@ -1080,17 +823,6 @@ async function associateNotificationWithOrganization() {
|
||||
if (Notification2?.setOrganization) {
|
||||
await Notification2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Notification3 = await Notifications.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Notification3?.setOrganization) {
|
||||
await Notification3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateOrderWithClient() {
|
||||
@ -1126,17 +858,6 @@ async function associateOrderWithClient() {
|
||||
if (Order2?.setClient) {
|
||||
await Order2.setClient(relatedClient2);
|
||||
}
|
||||
|
||||
const relatedClient3 = await Clients.findOne({
|
||||
offset: Math.floor(Math.random() * (await Clients.count())),
|
||||
});
|
||||
const Order3 = await Orders.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Order3?.setClient) {
|
||||
await Order3.setClient(relatedClient3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateOrderWithProperty() {
|
||||
@ -1172,17 +893,6 @@ async function associateOrderWithProperty() {
|
||||
if (Order2?.setProperty) {
|
||||
await Order2.setProperty(relatedProperty2);
|
||||
}
|
||||
|
||||
const relatedProperty3 = await Properties.findOne({
|
||||
offset: Math.floor(Math.random() * (await Properties.count())),
|
||||
});
|
||||
const Order3 = await Orders.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Order3?.setProperty) {
|
||||
await Order3.setProperty(relatedProperty3);
|
||||
}
|
||||
}
|
||||
|
||||
async function associateOrderWithOrganization() {
|
||||
@ -1218,17 +928,6 @@ async function associateOrderWithOrganization() {
|
||||
if (Order2?.setOrganization) {
|
||||
await Order2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Order3 = await Orders.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Order3?.setOrganization) {
|
||||
await Order3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
// Similar logic for "relation_many"
|
||||
@ -1266,17 +965,6 @@ async function associatePropertyWithOrganization() {
|
||||
if (Property2?.setOrganization) {
|
||||
await Property2.setOrganization(relatedOrganization2);
|
||||
}
|
||||
|
||||
const relatedOrganization3 = await Organizations.findOne({
|
||||
offset: Math.floor(Math.random() * (await Organizations.count())),
|
||||
});
|
||||
const Property3 = await Properties.findOne({
|
||||
order: [['id', 'ASC']],
|
||||
offset: 3,
|
||||
});
|
||||
if (Property3?.setOrganization) {
|
||||
await Property3.setOrganization(relatedOrganization3);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
||||
@ -22,13 +22,6 @@ router.use(checkCrudPermissions('orders'));
|
||||
* type: object
|
||||
* properties:
|
||||
|
||||
* street_address:
|
||||
* type: string
|
||||
* default: street_address
|
||||
* Municipality:
|
||||
* type: string
|
||||
* default: Municipality
|
||||
|
||||
* fee:
|
||||
* type: integer
|
||||
* format: int64
|
||||
@ -313,14 +306,7 @@ router.get(
|
||||
currentUser,
|
||||
});
|
||||
if (filetype && filetype === 'csv') {
|
||||
const fields = [
|
||||
'id',
|
||||
'street_address',
|
||||
'Municipality',
|
||||
|
||||
'fee',
|
||||
'requested_date',
|
||||
];
|
||||
const fields = ['id', 'fee', 'requested_date'];
|
||||
const opts = { fields };
|
||||
try {
|
||||
const csv = parse(payload.rows, opts);
|
||||
|
||||
@ -51,8 +51,6 @@ module.exports = class SearchService {
|
||||
|
||||
notifications: ['message'],
|
||||
|
||||
orders: ['street_address', 'Municipality'],
|
||||
|
||||
properties: ['address', 'property_type'],
|
||||
|
||||
organizations: ['name'],
|
||||
|
||||
@ -442,9 +442,9 @@ append-field@^1.0.0:
|
||||
integrity sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==
|
||||
|
||||
"aproba@^1.0.3 || ^2.0.0":
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.1.0.tgz#75500a190313d95c64e871e7e4284c6ac219f0b1"
|
||||
integrity sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
|
||||
integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
|
||||
|
||||
are-we-there-yet@^2.0.0:
|
||||
version "2.0.0"
|
||||
@ -1124,9 +1124,9 @@ destroy@1.2.0:
|
||||
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
|
||||
|
||||
detect-libc@^2.0.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.0.tgz#3ca811f60a7b504b0480e5008adacc660b0b8c4f"
|
||||
integrity sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700"
|
||||
integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==
|
||||
|
||||
dicer@0.2.5:
|
||||
version "0.2.5"
|
||||
@ -3547,12 +3547,7 @@ semver@^6.0.0, semver@^6.2.0, semver@^6.3.0:
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
|
||||
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
||||
|
||||
semver@^7.3.5:
|
||||
version "7.7.2"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
|
||||
integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
|
||||
|
||||
semver@^7.5.3, semver@^7.5.4:
|
||||
semver@^7.3.5, semver@^7.5.3, semver@^7.5.4:
|
||||
version "7.6.3"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
|
||||
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
|
||||
|
||||
@ -44,4 +44,4 @@ services:
|
||||
max-file: "3"
|
||||
depends_on:
|
||||
- db
|
||||
command: ["bash", "./wait-for-it.sh", "db:5432", "--timeout=0", "--strict", "--", "bash", "./start-backend.sh"]
|
||||
command: ["bash", "./wait-for-it.sh", "db:5432", "--timeout=0", "--strict", "--", "bash", "./start-
|
||||
7858
frontend/package-lock.json
generated
7858
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,52 +0,0 @@
|
||||
{
|
||||
"pages": {
|
||||
"dashboard": {
|
||||
"pageTitle": "Dashboard",
|
||||
"overview": "Overview",
|
||||
"loadingWidgets": "Loading widgets...",
|
||||
"loading": "Loading..."
|
||||
},
|
||||
"login": {
|
||||
"pageTitle": "Login",
|
||||
|
||||
"form": {
|
||||
"loginLabel": "Login",
|
||||
"loginHelp": "Please enter your login",
|
||||
"passwordLabel": "Password",
|
||||
"passwordHelp": "Please enter your password",
|
||||
"remember": "Remember",
|
||||
"forgotPassword": "Forgot password?",
|
||||
"loginButton": "Login",
|
||||
"loading": "Loading...",
|
||||
"noAccountYet": "Don’t have an account yet?",
|
||||
"newAccount": "New Account"
|
||||
},
|
||||
|
||||
"pexels": {
|
||||
"photoCredit": "Photo by {{photographer}} on Pexels",
|
||||
"videoCredit": "Video by {{name}} on Pexels",
|
||||
"videoUnsupported": "Your browser does not support the video tag."
|
||||
},
|
||||
|
||||
"footer": {
|
||||
"copyright": "© {{year}} {{title}}. All rights reserved",
|
||||
"privacy": "Privacy Policy"
|
||||
}
|
||||
}
|
||||
},
|
||||
"components": {
|
||||
"widgetCreator": {
|
||||
"title": "Create Chart or Widget",
|
||||
"helpText": "Describe your new widget or chart in natural language. For example: \"Number of admin users\" OR \"red chart with number of closed contracts grouped by month\"",
|
||||
"settingsTitle": "Widget Creator Settings",
|
||||
"settingsDescription": "What role are we showing and creating widgets for?",
|
||||
"doneButton": "Done",
|
||||
"loading": "Loading..."
|
||||
},
|
||||
"search": {
|
||||
"placeholder": "Search",
|
||||
"required": "Required",
|
||||
"minLength": "Minimum length: {{count}} characters"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -16,8 +16,8 @@ export default function FooterBar({ children }: Props) {
|
||||
<div className='text-center md:text-left mb-6 md:mb-0'>
|
||||
<b>
|
||||
©{year},{` `}
|
||||
<a href='https://flatlogic.com/logo.svg' rel='noreferrer' target='_blank'>
|
||||
Veracity Real Estate Solutions
|
||||
<a href='https://flatlogic.com/' rel='noreferrer' target='_blank'>
|
||||
Flatlogic
|
||||
</a>
|
||||
.
|
||||
</b>
|
||||
@ -26,7 +26,8 @@ export default function FooterBar({ children }: Props) {
|
||||
</div>
|
||||
|
||||
<div className='flex item-center md:py-2 gap-4'>
|
||||
<a href='https://veracityres.com/' rel='noreferrer' target='_blank'>
|
||||
<LanguageSwitcher />
|
||||
<a href='https://flatlogic.com/' rel='noreferrer' target='_blank'>
|
||||
<Logo className='w-auto h-8 md:h-6 mx-auto' />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@ -7,9 +7,9 @@ type Props = {
|
||||
export default function Logo({ className = '' }: Props) {
|
||||
return (
|
||||
<img
|
||||
src={'https://veracityres.com/wp-content/uploads/2024/08/VRES_logo_blk-red-tr.png'}
|
||||
src={'https://flatlogic.com/logo.svg'}
|
||||
className={className}
|
||||
alt={'VRES logo'}
|
||||
alt={'Flatlogic logo'}
|
||||
></img>
|
||||
);
|
||||
}
|
||||
|
||||
@ -126,28 +126,6 @@ const CardOrders = ({
|
||||
<div className='font-medium line-clamp-4'>{item.fee}</div>
|
||||
</dd>
|
||||
</div>
|
||||
|
||||
<div className='flex justify-between gap-x-4 py-3'>
|
||||
<dt className=' text-gray-500 dark:text-dark-600'>
|
||||
Street Address
|
||||
</dt>
|
||||
<dd className='flex items-start gap-x-2'>
|
||||
<div className='font-medium line-clamp-4'>
|
||||
{item.street_address}
|
||||
</div>
|
||||
</dd>
|
||||
</div>
|
||||
|
||||
<div className='flex justify-between gap-x-4 py-3'>
|
||||
<dt className=' text-gray-500 dark:text-dark-600'>
|
||||
Municipality
|
||||
</dt>
|
||||
<dd className='flex items-start gap-x-2'>
|
||||
<div className='font-medium line-clamp-4'>
|
||||
{item.Municipality}
|
||||
</div>
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</li>
|
||||
))}
|
||||
|
||||
@ -87,18 +87,6 @@ const ListOrders = ({
|
||||
<p className={'text-xs text-gray-500 '}>Fee</p>
|
||||
<p className={'line-clamp-2'}>{item.fee}</p>
|
||||
</div>
|
||||
|
||||
<div className={'flex-1 px-3'}>
|
||||
<p className={'text-xs text-gray-500 '}>
|
||||
Street Address
|
||||
</p>
|
||||
<p className={'line-clamp-2'}>{item.street_address}</p>
|
||||
</div>
|
||||
|
||||
<div className={'flex-1 px-3'}>
|
||||
<p className={'text-xs text-gray-500 '}>Municipality</p>
|
||||
<p className={'line-clamp-2'}>{item.Municipality}</p>
|
||||
</div>
|
||||
</Link>
|
||||
<ListActionsPopover
|
||||
onDelete={onDelete}
|
||||
|
||||
@ -20,6 +20,8 @@ import _ from 'lodash';
|
||||
import dataFormatter from '../../helpers/dataFormatter';
|
||||
import { dataGridStyles } from '../../styles';
|
||||
|
||||
import ListOrders from './ListOrders';
|
||||
|
||||
const perPage = 10;
|
||||
|
||||
const TableSampleOrders = ({
|
||||
@ -464,7 +466,16 @@ const TableSampleOrders = ({
|
||||
<p>Are you sure you want to delete this item?</p>
|
||||
</CardBoxModal>
|
||||
|
||||
{dataGrid}
|
||||
{orders && Array.isArray(orders) && !showGrid && (
|
||||
<ListOrders
|
||||
orders={orders}
|
||||
loading={loading}
|
||||
onDelete={handleDeleteModalAction}
|
||||
currentPage={currentPage}
|
||||
numPages={numPages}
|
||||
onPageChange={onPageChange}
|
||||
/>
|
||||
)}
|
||||
|
||||
{showGrid && dataGrid}
|
||||
|
||||
|
||||
@ -120,30 +120,6 @@ export const loadColumns = async (
|
||||
type: 'number',
|
||||
},
|
||||
|
||||
{
|
||||
field: 'street_address',
|
||||
headerName: 'Street Address',
|
||||
flex: 1,
|
||||
minWidth: 120,
|
||||
filterable: false,
|
||||
headerClassName: 'datagrid--header',
|
||||
cellClassName: 'datagrid--cell',
|
||||
|
||||
editable: hasUpdatePermission,
|
||||
},
|
||||
|
||||
{
|
||||
field: 'Municipality',
|
||||
headerName: 'Municipality',
|
||||
flex: 1,
|
||||
minWidth: 120,
|
||||
filterable: false,
|
||||
headerClassName: 'datagrid--header',
|
||||
cellClassName: 'datagrid--cell',
|
||||
|
||||
editable: hasUpdatePermission,
|
||||
},
|
||||
|
||||
{
|
||||
field: 'actions',
|
||||
type: 'actions',
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
}
|
||||
|
||||
.bg-blue-600 {
|
||||
@apply bg-pavitra-600;
|
||||
@apply bg-pavitra-800;
|
||||
}
|
||||
|
||||
.border-blue-700 {
|
||||
@ -69,7 +69,7 @@
|
||||
}
|
||||
|
||||
.text-blue-600 {
|
||||
@apply text-pavitra-600;
|
||||
@apply text-pavitra-900;
|
||||
}
|
||||
|
||||
.checkbox input[type='checkbox']:checked + .check,
|
||||
@ -92,14 +92,14 @@
|
||||
}
|
||||
|
||||
.text-blue-500 {
|
||||
@apply text-pavitra-500;
|
||||
@apply text-pavitra-800;
|
||||
}
|
||||
|
||||
.hover\:text-blue-600:hover {
|
||||
@apply text-pavitra-600;
|
||||
@apply text-pavitra-800;
|
||||
}
|
||||
|
||||
.active\:text-blue-700:active {
|
||||
@apply text-pavitra-700;
|
||||
@apply text-pavitra-800;
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,12 +6,7 @@ export async function getPexelsImage() {
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
console.error('Error fetching image:', error);
|
||||
// Return fallback data when backend is not available
|
||||
return {
|
||||
src: 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZGRkIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCwgc2Fucy1zZXJpZiIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkltYWdlIE5vdCBBdmFpbGFibGU8L3RleHQ+PC9zdmc+',
|
||||
photographer: 'Placeholder',
|
||||
photographer_url: '#'
|
||||
};
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,11 +16,7 @@ export async function getPexelsVideo() {
|
||||
return response.data;
|
||||
} catch (error) {
|
||||
console.error('Error fetching video:', error);
|
||||
// Return fallback data when backend is not available
|
||||
return {
|
||||
src: '',
|
||||
name: 'Video Not Available'
|
||||
};
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -72,19 +63,7 @@ export async function getMultiplePexelsImages(
|
||||
|
||||
localStorage.setItem('pexelsImagesCache', JSON.stringify(cachedImages));
|
||||
} catch (error) {
|
||||
console.error('Error fetching multiple images:', error);
|
||||
// Provide fallback images when backend is not available
|
||||
missingQueries.forEach((query) => {
|
||||
const normalizedQuery = normalizeQuery(query);
|
||||
if (!cachedImages[normalizedQuery]) {
|
||||
cachedImages[normalizedQuery] = {
|
||||
src: 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZGRkIi8+PHRleHQgeD0iNTAlIiB5PSI1MCUiIGZvbnQtZmFtaWx5PSJBcmlhbCwgc2Fucy1zZXJpZiIgZm9udC1zaXplPSIxOCIgZmlsbD0iIzk5OSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZHk9Ii4zZW0iPkltYWdlIE5vdCBBdmFpbGFibGU8L3RleHQ+PC9zdmc+',
|
||||
photographer: 'Placeholder',
|
||||
photographer_url: '#'
|
||||
};
|
||||
}
|
||||
});
|
||||
localStorage.setItem('pexelsImagesCache', JSON.stringify(cachedImages));
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -99,26 +99,24 @@ export default function LayoutAuthenticated({
|
||||
isAsideMobileExpanded ? 'ml-60 lg:ml-0' : ''
|
||||
}`}
|
||||
>
|
||||
<>
|
||||
<NavBarItemPlain
|
||||
display='flex lg:hidden'
|
||||
onClick={() => setIsAsideMobileExpanded(!isAsideMobileExpanded)}
|
||||
>
|
||||
<BaseIcon
|
||||
path={isAsideMobileExpanded ? mdiBackburger : mdiForwardburger}
|
||||
size='24'
|
||||
/>
|
||||
</NavBarItemPlain>
|
||||
<NavBarItemPlain
|
||||
display='hidden lg:flex xl:hidden'
|
||||
onClick={() => setIsAsideLgActive(true)}
|
||||
>
|
||||
<BaseIcon path={mdiMenu} size='24' />
|
||||
</NavBarItemPlain>
|
||||
<NavBarItemPlain useMargin>
|
||||
<Search />
|
||||
</NavBarItemPlain>
|
||||
</>
|
||||
<NavBarItemPlain
|
||||
display='flex lg:hidden'
|
||||
onClick={() => setIsAsideMobileExpanded(!isAsideMobileExpanded)}
|
||||
>
|
||||
<BaseIcon
|
||||
path={isAsideMobileExpanded ? mdiBackburger : mdiForwardburger}
|
||||
size='24'
|
||||
/>
|
||||
</NavBarItemPlain>
|
||||
<NavBarItemPlain
|
||||
display='hidden lg:flex xl:hidden'
|
||||
onClick={() => setIsAsideLgActive(true)}
|
||||
>
|
||||
<BaseIcon path={mdiMenu} size='24' />
|
||||
</NavBarItemPlain>
|
||||
<NavBarItemPlain useMargin>
|
||||
<Search />
|
||||
</NavBarItemPlain>
|
||||
</NavBar>
|
||||
<AsideMenu
|
||||
isAsideMobileExpanded={isAsideMobileExpanded}
|
||||
@ -127,7 +125,7 @@ export default function LayoutAuthenticated({
|
||||
onAsideLgClose={() => setIsAsideLgActive(false)}
|
||||
/>
|
||||
{children}
|
||||
<FooterBar>Hand-crafted by Lora</FooterBar>
|
||||
<FooterBar>Hand-crafted & Made with ❤️</FooterBar>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@ -83,10 +83,6 @@ const ClientsView = () => {
|
||||
<th>Status</th>
|
||||
|
||||
<th>Fee</th>
|
||||
|
||||
<th>Street Address</th>
|
||||
|
||||
<th>Municipality</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -108,12 +104,6 @@ const ClientsView = () => {
|
||||
<td data-label='status'>{item.status}</td>
|
||||
|
||||
<td data-label='fee'>{item.fee}</td>
|
||||
|
||||
<td data-label='street_address'>
|
||||
{item.street_address}
|
||||
</td>
|
||||
|
||||
<td data-label='Municipality'>{item.Municipality}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
@ -195,10 +185,6 @@ const ClientsView = () => {
|
||||
<th>Status</th>
|
||||
|
||||
<th>Fee</th>
|
||||
|
||||
<th>Street Address</th>
|
||||
|
||||
<th>Municipality</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -220,12 +206,6 @@ const ClientsView = () => {
|
||||
<td data-label='status'>{item.status}</td>
|
||||
|
||||
<td data-label='fee'>{item.fee}</td>
|
||||
|
||||
<td data-label='street_address'>
|
||||
{item.street_address}
|
||||
</td>
|
||||
|
||||
<td data-label='Municipality'>{item.Municipality}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
|
||||
@ -10,7 +10,6 @@ import BaseIcon from '../components/BaseIcon';
|
||||
import { getPageTitle } from '../config';
|
||||
import Link from 'next/link';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import TableOrders from '../components/Orders/TableOrders';
|
||||
|
||||
import { hasPermission } from '../helpers/userPermissions';
|
||||
import { fetchWidgets } from '../stores/roles/rolesSlice';
|
||||
@ -138,13 +137,6 @@ const Dashboard = () => {
|
||||
>
|
||||
{''}
|
||||
</SectionTitleLineWithButton>
|
||||
{/* Welcome message under page title */}
|
||||
{currentUser?.first_name && (
|
||||
<p className="text-lg font-medium mt-2 mb-6">
|
||||
Welcome to VRES, {currentUser.first_name}!
|
||||
</p>
|
||||
)}
|
||||
|
||||
|
||||
{hasPermission(currentUser, 'CREATE_ROLES') && (
|
||||
<WidgetCreator
|
||||
@ -620,7 +612,6 @@ const Dashboard = () => {
|
||||
)}
|
||||
</div>
|
||||
</SectionMain>
|
||||
<TableOrders filterStatus="open" />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
@ -12,10 +12,8 @@ import { getPageTitle } from '../config';
|
||||
import { useAppSelector } from '../stores/hooks';
|
||||
import CardBoxComponentTitle from '../components/CardBoxComponentTitle';
|
||||
import { getPexelsImage, getPexelsVideo } from '../helpers/pexels';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
export default function Starter() {
|
||||
const { t } = useTranslation('common');
|
||||
const [illustrationImage, setIllustrationImage] = useState({
|
||||
src: undefined,
|
||||
photographer: undefined,
|
||||
@ -131,7 +129,29 @@ export default function Starter() {
|
||||
: null}
|
||||
<div className='flex items-center justify-center flex-col space-y-4 w-full lg:w-full'>
|
||||
<CardBox className='w-full md:w-3/5 lg:w-2/3'>
|
||||
<CardBoxComponentTitle title='Welcome to Veracity RES Appraisal Management System' />
|
||||
<CardBoxComponentTitle title='Welcome to your VRES app!' />
|
||||
|
||||
<div className='space-y-3'>
|
||||
<p className='text-center text-gray-500'>
|
||||
This is a React.js/Node.js app generated by the{' '}
|
||||
<a
|
||||
className={`${textColor}`}
|
||||
href='https://flatlogic.com/generator'
|
||||
>
|
||||
Flatlogic Web App Generator
|
||||
</a>
|
||||
</p>
|
||||
<p className='text-center text-gray-500'>
|
||||
For guides and documentation please check your local README.md
|
||||
and the{' '}
|
||||
<a
|
||||
className={`${textColor}`}
|
||||
href='https://flatlogic.com/documentation'
|
||||
>
|
||||
Flatlogic documentation
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<BaseButtons>
|
||||
<BaseButton
|
||||
@ -141,20 +161,42 @@ export default function Starter() {
|
||||
className='w-full'
|
||||
/>
|
||||
</BaseButtons>
|
||||
<div className='grid grid-cols-1 gap-2 lg:grid-cols-4 mt-2'>
|
||||
<div className='text-center'>
|
||||
<a className={`${textColor}`} href='https://react.dev/'>
|
||||
React.js
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div className='text-center'>
|
||||
<a className={`${textColor}`} href='https://tailwindcss.com/'>
|
||||
Tailwind CSS
|
||||
</a>
|
||||
</div>
|
||||
<div className='text-center'>
|
||||
<a className={`${textColor}`} href='https://nodejs.org/en'>
|
||||
Node.js
|
||||
</a>
|
||||
</div>
|
||||
<div className='text-center'>
|
||||
<a
|
||||
className={`${textColor}`}
|
||||
href='https://flatlogic.com/forum'
|
||||
>
|
||||
Flatlogic Forum
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</CardBox>
|
||||
</div>
|
||||
</div>
|
||||
</SectionFullScreen>
|
||||
<div className='bg-gray text-white flex flex-col text-center justify-center md:flex-row'>
|
||||
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
|
||||
<p className='py-6 text-sm'>
|
||||
{t('pages.login.footer.copyright', {
|
||||
year: new Date().getFullYear(),
|
||||
title: title,
|
||||
defaultValue: '© {{year}} {{title}}. All rights reserved',
|
||||
})}
|
||||
© 2024 <span>{title}</span>. All rights reserved
|
||||
</p>
|
||||
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
|
||||
{t('pages.login.footer.privacy', { defaultValue: 'Privacy Policy' })}
|
||||
Privacy Policy
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -361,10 +361,9 @@ export default function Login() {
|
||||
</SectionFullScreen>
|
||||
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
|
||||
<p className='py-6 text-sm'>
|
||||
© 2024 <span>{title}</span>.{' '}
|
||||
{t('pages.login.footer.copyright', {
|
||||
year: new Date().getFullYear(),
|
||||
title: title,
|
||||
defaultValue: '© {{year}} {{title}}. All rights reserved',
|
||||
defaultValue: '© All rights reserved',
|
||||
})}
|
||||
</p>
|
||||
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
|
||||
|
||||
@ -49,10 +49,6 @@ const EditOrders = () => {
|
||||
fee: '',
|
||||
|
||||
organizations: null,
|
||||
|
||||
street_address: '',
|
||||
|
||||
Municipality: '',
|
||||
};
|
||||
const [initialValues, setInitialValues] = useState(initVals);
|
||||
|
||||
@ -181,14 +177,6 @@ const EditOrders = () => {
|
||||
></Field>
|
||||
</FormField>
|
||||
|
||||
<FormField label='Street Address'>
|
||||
<Field name='street_address' placeholder='Street Address' />
|
||||
</FormField>
|
||||
|
||||
<FormField label='Municipality'>
|
||||
<Field name='Municipality' placeholder='Municipality' />
|
||||
</FormField>
|
||||
|
||||
<BaseDivider />
|
||||
<BaseButtons>
|
||||
<BaseButton type='submit' color='info' label='Submit' />
|
||||
|
||||
@ -49,10 +49,6 @@ const EditOrdersPage = () => {
|
||||
fee: '',
|
||||
|
||||
organizations: null,
|
||||
|
||||
street_address: '',
|
||||
|
||||
Municipality: '',
|
||||
};
|
||||
const [initialValues, setInitialValues] = useState(initVals);
|
||||
|
||||
@ -179,14 +175,6 @@ const EditOrdersPage = () => {
|
||||
></Field>
|
||||
</FormField>
|
||||
|
||||
<FormField label='Street Address'>
|
||||
<Field name='street_address' placeholder='Street Address' />
|
||||
</FormField>
|
||||
|
||||
<FormField label='Municipality'>
|
||||
<Field name='Municipality' placeholder='Municipality' />
|
||||
</FormField>
|
||||
|
||||
<BaseDivider />
|
||||
<BaseButtons>
|
||||
<BaseButton type='submit' color='info' label='Submit' />
|
||||
|
||||
@ -29,9 +29,6 @@ const OrdersTablesPage = () => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
const [filters] = useState([
|
||||
{ label: 'Street Address', title: 'street_address' },
|
||||
{ label: 'Municipality', title: 'Municipality' },
|
||||
|
||||
{ label: 'Fee', title: 'fee', number: 'true' },
|
||||
{ label: 'RequestedDate', title: 'requested_date', date: 'true' },
|
||||
|
||||
|
||||
@ -44,10 +44,6 @@ const initialValues = {
|
||||
fee: '',
|
||||
|
||||
organizations: '',
|
||||
|
||||
street_address: '',
|
||||
|
||||
Municipality: '',
|
||||
};
|
||||
|
||||
const OrdersNew = () => {
|
||||
@ -137,14 +133,6 @@ const OrdersNew = () => {
|
||||
></Field>
|
||||
</FormField>
|
||||
|
||||
<FormField label='Street Address'>
|
||||
<Field name='street_address' placeholder='Street Address' />
|
||||
</FormField>
|
||||
|
||||
<FormField label='Municipality'>
|
||||
<Field name='Municipality' placeholder='Municipality' />
|
||||
</FormField>
|
||||
|
||||
<BaseDivider />
|
||||
<BaseButtons>
|
||||
<BaseButton type='submit' color='info' label='Submit' />
|
||||
|
||||
@ -29,9 +29,6 @@ const OrdersTablesPage = () => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
const [filters] = useState([
|
||||
{ label: 'Street Address', title: 'street_address' },
|
||||
{ label: 'Municipality', title: 'Municipality' },
|
||||
|
||||
{ label: 'Fee', title: 'fee', number: 'true' },
|
||||
{ label: 'RequestedDate', title: 'requested_date', date: 'true' },
|
||||
|
||||
@ -147,7 +144,7 @@ const OrdersTablesPage = () => {
|
||||
<div id='delete-rows-button'></div>
|
||||
|
||||
<Link href={'/orders/orders-list'}>
|
||||
Back to <span className='capitalize'></span>
|
||||
Back to <span className='capitalize'>list</span>
|
||||
</Link>
|
||||
</div>
|
||||
</CardBox>
|
||||
|
||||
@ -105,16 +105,6 @@ const OrdersView = () => {
|
||||
<p>{orders?.organizations?.name ?? 'No data'}</p>
|
||||
</div>
|
||||
|
||||
<div className={'mb-4'}>
|
||||
<p className={'block font-bold mb-2'}>Street Address</p>
|
||||
<p>{orders?.street_address}</p>
|
||||
</div>
|
||||
|
||||
<div className={'mb-4'}>
|
||||
<p className={'block font-bold mb-2'}>Municipality</p>
|
||||
<p>{orders?.Municipality}</p>
|
||||
</div>
|
||||
|
||||
<BaseDivider />
|
||||
|
||||
<BaseButton
|
||||
|
||||
@ -417,10 +417,6 @@ const OrganizationsView = () => {
|
||||
<th>Status</th>
|
||||
|
||||
<th>Fee</th>
|
||||
|
||||
<th>Street Address</th>
|
||||
|
||||
<th>Municipality</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -442,12 +438,6 @@ const OrganizationsView = () => {
|
||||
<td data-label='status'>{item.status}</td>
|
||||
|
||||
<td data-label='fee'>{item.fee}</td>
|
||||
|
||||
<td data-label='street_address'>
|
||||
{item.street_address}
|
||||
</td>
|
||||
|
||||
<td data-label='Municipality'>{item.Municipality}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
|
||||
@ -203,10 +203,6 @@ const PropertiesView = () => {
|
||||
<th>Status</th>
|
||||
|
||||
<th>Fee</th>
|
||||
|
||||
<th>Street Address</th>
|
||||
|
||||
<th>Municipality</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -228,12 +224,6 @@ const PropertiesView = () => {
|
||||
<td data-label='status'>{item.status}</td>
|
||||
|
||||
<td data-label='fee'>{item.fee}</td>
|
||||
|
||||
<td data-label='street_address'>
|
||||
{item.street_address}
|
||||
</td>
|
||||
|
||||
<td data-label='Municipality'>{item.Municipality}</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
|
||||
@ -32,19 +32,19 @@ export const white: StyleObject = {
|
||||
'text-gray-700 hover:bg-gray-100/70 dark:text-dark-500 dark:hover:text-white dark:hover:bg-dark-800',
|
||||
asideMenuItemActive: 'font-bold text-black dark:text-white',
|
||||
asideMenuDropdown: 'bg-gray-100/75',
|
||||
navBarItemLabel: 'text-pavitra-600',
|
||||
navBarItemLabel: 'text-blue-600',
|
||||
navBarItemLabelHover: 'hover:text-black',
|
||||
navBarItemLabelActiveColor: 'text-black',
|
||||
overlay: 'from-white via-gray-100 to-white',
|
||||
activeLinkColor: 'bg-gray-100/70',
|
||||
bgLayoutColor: 'bg-gray-50',
|
||||
iconsColor: 'text-pavitra-600',
|
||||
iconsColor: 'text-blue-500',
|
||||
cardsColor: 'bg-white',
|
||||
focusRingColor:
|
||||
'focus:ring focus:ring-pavitra-600 focus:border-pavitra-600 focus:outline-none border-gray-300 dark:focus:ring-blue-600 dark:focus:border-blue-600',
|
||||
'focus:ring focus:ring-blue-600 focus:border-blue-600 focus:outline-none border-gray-300 dark:focus:ring-blue-600 dark:focus:border-blue-600',
|
||||
corners: 'rounded',
|
||||
cardsStyle: 'bg-white border border-pavitra-400',
|
||||
linkColor: 'text-pavitra-600',
|
||||
linkColor: 'text-blue-600',
|
||||
websiteHeder: 'border-b border-gray-200',
|
||||
borders: 'border-gray-200',
|
||||
shadow: '',
|
||||
@ -56,14 +56,14 @@ export const pastelEmeraldTheme: StyleObject = {
|
||||
aside:
|
||||
'bg-pastelEmeraldTheme-800 text-pastelEmeraldTheme-text dark:text-white lg:rounded-lg',
|
||||
asideScrollbars: 'aside-scrollbars-blue',
|
||||
asideBrand: 'text-pavitra-500 bg-white',
|
||||
asideBrand: 'text-blue-500 bg-white',
|
||||
asideMenuItem:
|
||||
'text-pastelEmeraldTheme-text hover:text-white dark:text-dark-500 dark:hover:text-white dark:hover:bg-dark-800 dark:text-white',
|
||||
asideMenuItemActive: 'font-bold text-white dark:text-white',
|
||||
activeLinkColor: 'bg-pastelEmeraldTheme-buttonColor rounded-lg',
|
||||
asideMenuDropdown: 'bg-pavitra-700/50',
|
||||
asideMenuDropdown: 'bg-blue-700/50',
|
||||
navBarItemLabel: 'text-primaryText',
|
||||
iconsColor: 'text-pastelEmeraldTheme-iconsColor dark:text-pavitra-600',
|
||||
iconsColor: 'text-pastelEmeraldTheme-iconsColor dark:text-blue-500',
|
||||
navBarItemLabelHover: 'hover:text-stone-400',
|
||||
navBarItemLabelActiveColor: 'text-pastelEmeraldTheme-800',
|
||||
overlay: 'bg-pastelEmeraldTheme-mainBG',
|
||||
@ -115,15 +115,15 @@ export const basic: StyleObject = {
|
||||
asideMenuItemActive: 'font-bold text-white',
|
||||
asideMenuDropdown: 'bg-gray-700/50',
|
||||
navBarItemLabel: 'text-black',
|
||||
navBarItemLabelHover: 'hover:text-pavitra-500',
|
||||
navBarItemLabelActiveColor: 'text-pavitra-600',
|
||||
navBarItemLabelHover: 'hover:text-blue-500',
|
||||
navBarItemLabelActiveColor: 'text-blue-600',
|
||||
overlay: 'from-gray-700 via-gray-900 to-gray-700',
|
||||
activeLinkColor: 'bg-gray-100/70',
|
||||
bgLayoutColor: 'bg-gray-50',
|
||||
iconsColor: 'text-pavitra-600',
|
||||
iconsColor: 'text-blue-500',
|
||||
cardsColor: 'bg-white',
|
||||
focusRingColor:
|
||||
'focus:ring focus:ring-pavitra-600 focus:border-pavitra-600 focus:outline-none dark:focus:ring-blue-600 border-gray-300 dark:focus:border-blue-600',
|
||||
'focus:ring focus:ring-blue-600 focus:border-blue-600 focus:outline-none dark:focus:ring-blue-600 border-gray-300 dark:focus:border-blue-600',
|
||||
corners: 'rounded',
|
||||
cardsStyle: 'bg-white border border-pavitra-400',
|
||||
linkColor: 'text-black',
|
||||
|
||||
@ -51,24 +51,24 @@ module.exports = {
|
||||
text: '#45B26B',
|
||||
},
|
||||
pavitra: {
|
||||
blue: '#244E5E',
|
||||
blue: '#0162FD',
|
||||
green: '#00B448',
|
||||
orange: '#FFAA00',
|
||||
red: '#BD021E',
|
||||
900: '#141F2A',
|
||||
800: '#4b5b66',
|
||||
700: '#5e7785',
|
||||
600: '#244E5E',
|
||||
500: '#B8C8D4',
|
||||
400: '#EFF3F6',
|
||||
300: '#F7FAFC',
|
||||
red: '#F20041',
|
||||
900: '#14142A',
|
||||
800: '#4E4B66',
|
||||
700: '#6E7191',
|
||||
600: '#A0A3BD',
|
||||
500: '#D9DBE9',
|
||||
400: '#EFF0F6',
|
||||
300: '#F7F7FC',
|
||||
},
|
||||
|
||||
pastelEmeraldTheme: {
|
||||
text: '#515564',
|
||||
iconsColor: '#244E5E',
|
||||
mainBG: '#FFFFFF',
|
||||
buttonColor: '#244E5E',
|
||||
iconsColor: '#030A0D',
|
||||
mainBG: '#DFECF2',
|
||||
buttonColor: '#030A0D',
|
||||
outsideCardColor: '#D0E1E9',
|
||||
cardColor: '#DFECF2',
|
||||
webSiteComponentBg: '#030A0D',
|
||||
|
||||
@ -60,10 +60,12 @@
|
||||
core-js-pure "^3.20.2"
|
||||
regenerator-runtime "^0.13.4"
|
||||
|
||||
"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.9", "@babel/runtime@^7.26.0", "@babel/runtime@^7.27.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
|
||||
version "7.28.4"
|
||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz"
|
||||
integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==
|
||||
"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
|
||||
version "7.26.0"
|
||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz"
|
||||
integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
|
||||
dependencies:
|
||||
regenerator-runtime "^0.14.0"
|
||||
|
||||
"@babel/template@^7.25.9":
|
||||
version "7.25.9"
|
||||
@ -261,23 +263,6 @@
|
||||
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
|
||||
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
|
||||
|
||||
"@img/colour@^1.0.0":
|
||||
version "1.0.0"
|
||||
resolved "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz"
|
||||
integrity sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==
|
||||
|
||||
"@img/sharp-libvips-linux-x64@1.2.3":
|
||||
version "1.2.3"
|
||||
resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.3.tgz"
|
||||
integrity sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==
|
||||
|
||||
"@img/sharp-linux-x64@0.34.4":
|
||||
version "0.34.4"
|
||||
resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.4.tgz"
|
||||
integrity sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==
|
||||
optionalDependencies:
|
||||
"@img/sharp-libvips-linux-x64" "1.2.3"
|
||||
|
||||
"@isaacs/cliui@^8.0.2":
|
||||
version "8.0.2"
|
||||
resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"
|
||||
@ -332,70 +317,68 @@
|
||||
resolved "https://registry.npmjs.org/@mdi/js/-/js-7.4.47.tgz"
|
||||
integrity sha512-KPnNOtm5i2pMabqZxpUz7iQf+mfrYZyKCZ8QNz85czgEt7cuHcGorWfdzUMWYA0SD+a6Hn4FmJ+YhzzzjkTZrQ==
|
||||
|
||||
"@mui/core-downloads-tracker@^6.5.0":
|
||||
version "6.5.0"
|
||||
resolved "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.5.0.tgz"
|
||||
integrity sha512-LGb8t8i6M2ZtS3Drn3GbTI1DVhDY6FJ9crEey2lZ0aN2EMZo8IZBZj9wRf4vqbZHaWjsYgtbOnJw5V8UWbmK2Q==
|
||||
"@mui/core-downloads-tracker@^5.16.13":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.13.tgz"
|
||||
integrity sha512-xe5RwI0Q2O709Bd2Y7l1W1NIwNmln0y+xaGk5VgX3vDJbkQEqzdfTFZ73e0CkEZgJwyiWgk5HY0l8R4nysOxjw==
|
||||
|
||||
"@mui/material@^6.3.0":
|
||||
version "6.5.0"
|
||||
resolved "https://registry.npmjs.org/@mui/material/-/material-6.5.0.tgz"
|
||||
integrity sha512-yjvtXoFcrPLGtgKRxFaH6OQPtcLPhkloC0BML6rBG5UeldR0nPULR/2E2BfXdo5JNV7j7lOzrrLX2Qf/iSidow==
|
||||
"@mui/material@^5.15.7":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/material/-/material-5.16.13.tgz"
|
||||
integrity sha512-FhLDkDPYDzvrWCHFsdXzRArhS4AdYufU8d69rmLL+bwhodPcbm2C7cS8Gq5VR32PsW6aKZb58gvAgvEVaiiJbA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/core-downloads-tracker" "^6.5.0"
|
||||
"@mui/system" "^6.5.0"
|
||||
"@mui/types" "~7.2.24"
|
||||
"@mui/utils" "^6.4.9"
|
||||
"@babel/runtime" "^7.23.9"
|
||||
"@mui/core-downloads-tracker" "^5.16.13"
|
||||
"@mui/system" "^5.16.13"
|
||||
"@mui/types" "^7.2.15"
|
||||
"@mui/utils" "^5.16.13"
|
||||
"@popperjs/core" "^2.11.8"
|
||||
"@types/react-transition-group" "^4.4.12"
|
||||
clsx "^2.1.1"
|
||||
"@types/react-transition-group" "^4.4.10"
|
||||
clsx "^2.1.0"
|
||||
csstype "^3.1.3"
|
||||
prop-types "^15.8.1"
|
||||
react-is "^19.0.0"
|
||||
react-transition-group "^4.4.5"
|
||||
|
||||
"@mui/private-theming@^6.4.9":
|
||||
version "6.4.9"
|
||||
resolved "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.4.9.tgz"
|
||||
integrity sha512-LktcVmI5X17/Q5SkwjCcdOLBzt1hXuc14jYa7NPShog0GBDCDvKtcnP0V7a2s6EiVRlv7BzbWEJzH6+l/zaCxw==
|
||||
"@mui/private-theming@^5.16.13":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.16.13.tgz"
|
||||
integrity sha512-+s0FklvDvO7j0yBZn19DIIT3rLfub2fWvXGtMX49rG/xHfDFcP7fbWbZKHZMMP/2/IoTRDrZCbY1iP0xZlmuJA==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/utils" "^6.4.9"
|
||||
"@babel/runtime" "^7.23.9"
|
||||
"@mui/utils" "^5.16.13"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/styled-engine@^6.5.0":
|
||||
version "6.5.0"
|
||||
resolved "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.5.0.tgz"
|
||||
integrity sha512-8woC2zAqF4qUDSPIBZ8v3sakj+WgweolpyM/FXf8jAx6FMls+IE4Y8VDZc+zS805J7PRz31vz73n2SovKGaYgw==
|
||||
"@mui/styled-engine@^5.16.13":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.16.13.tgz"
|
||||
integrity sha512-2XNHEG8/o1ucSLhTA9J+HIIXjzlnEc0OV7kneeUQ5JukErPYT2zc6KYBDLjlKWrzQyvnQzbiffjjspgHUColZg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@babel/runtime" "^7.23.9"
|
||||
"@emotion/cache" "^11.13.5"
|
||||
"@emotion/serialize" "^1.3.3"
|
||||
"@emotion/sheet" "^1.4.0"
|
||||
csstype "^3.1.3"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/system@^6.5.0":
|
||||
version "6.5.0"
|
||||
resolved "https://registry.npmjs.org/@mui/system/-/system-6.5.0.tgz"
|
||||
integrity sha512-XcbBYxDS+h/lgsoGe78ExXFZXtuIlSBpn/KsZq8PtZcIkUNJInkuDqcLd2rVBQrDC1u+rvVovdaWPf2FHKJf3w==
|
||||
"@mui/system@^5.16.13":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/system/-/system-5.16.13.tgz"
|
||||
integrity sha512-JnO3VH3yNoAmgyr44/2jiS1tcNwshwAqAaG5fTEEjHQbkuZT/mvPYj2GC1cON0zEQ5V03xrCNl/D+gU9AXibpw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/private-theming" "^6.4.9"
|
||||
"@mui/styled-engine" "^6.5.0"
|
||||
"@mui/types" "~7.2.24"
|
||||
"@mui/utils" "^6.4.9"
|
||||
clsx "^2.1.1"
|
||||
"@babel/runtime" "^7.23.9"
|
||||
"@mui/private-theming" "^5.16.13"
|
||||
"@mui/styled-engine" "^5.16.13"
|
||||
"@mui/types" "^7.2.15"
|
||||
"@mui/utils" "^5.16.13"
|
||||
clsx "^2.1.0"
|
||||
csstype "^3.1.3"
|
||||
prop-types "^15.8.1"
|
||||
|
||||
"@mui/types@^7.2.15", "@mui/types@~7.2.24":
|
||||
version "7.2.24"
|
||||
resolved "https://registry.npmjs.org/@mui/types/-/types-7.2.24.tgz"
|
||||
integrity sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==
|
||||
"@mui/types@^7.2.15":
|
||||
version "7.2.20"
|
||||
resolved "https://registry.npmjs.org/@mui/types/-/types-7.2.20.tgz"
|
||||
integrity sha512-straFHD7L8v05l/N5vcWk+y7eL9JF0C2mtph/y4BPm3gn2Eh61dDwDB65pa8DLss3WJfDXYC7Kx5yjP0EmXpgw==
|
||||
|
||||
"@mui/utils@^5.14.16":
|
||||
"@mui/utils@^5.14.16", "@mui/utils@^5.16.13":
|
||||
version "5.16.13"
|
||||
resolved "https://registry.npmjs.org/@mui/utils/-/utils-5.16.13.tgz"
|
||||
integrity sha512-35kLiShnDPByk57Mz4PP66fQUodCFiOD92HfpW6dK9lc7kjhZsKHRKeYPgWuwEHeXwYsCSFtBCW4RZh/8WT+TQ==
|
||||
@ -407,18 +390,6 @@
|
||||
prop-types "^15.8.1"
|
||||
react-is "^19.0.0"
|
||||
|
||||
"@mui/utils@^6.4.9":
|
||||
version "6.4.9"
|
||||
resolved "https://registry.npmjs.org/@mui/utils/-/utils-6.4.9.tgz"
|
||||
integrity sha512-Y12Q9hbK9g+ZY0T3Rxrx9m2m10gaphDuUMgWxyV5kNJevVxXYCLclYUCC9vXaIk1/NdNDTcW2Yfr2OGvNFNmHg==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.26.0"
|
||||
"@mui/types" "~7.2.24"
|
||||
"@types/prop-types" "^15.7.14"
|
||||
clsx "^2.1.1"
|
||||
prop-types "^15.8.1"
|
||||
react-is "^19.0.0"
|
||||
|
||||
"@mui/x-data-grid@^6.19.2":
|
||||
version "6.20.4"
|
||||
resolved "https://registry.npmjs.org/@mui/x-data-grid/-/x-data-grid-6.20.4.tgz"
|
||||
@ -430,10 +401,10 @@
|
||||
prop-types "^15.8.1"
|
||||
reselect "^4.1.8"
|
||||
|
||||
"@next/env@15.5.4":
|
||||
version "15.5.4"
|
||||
resolved "https://registry.npmjs.org/@next/env/-/env-15.5.4.tgz"
|
||||
integrity sha512-27SQhYp5QryzIT5uO8hq99C69eLQ7qkzkDPsk3N+GuS2XgOgoYEeOav7Pf8Tn4drECOVDsDg8oj+/DVy8qQL2A==
|
||||
"@next/env@14.2.22":
|
||||
version "14.2.22"
|
||||
resolved "https://registry.npmjs.org/@next/env/-/env-14.2.22.tgz"
|
||||
integrity sha512-EQ6y1QeNQglNmNIXvwP/Bb+lf7n9WtgcWvtoFsHquVLCJUuxRs+6SfZ5EK0/EqkkLex4RrDySvKgKNN7PXip7Q==
|
||||
|
||||
"@next/eslint-plugin-next@13.0.4":
|
||||
version "13.0.4"
|
||||
@ -442,10 +413,10 @@
|
||||
dependencies:
|
||||
glob "7.1.7"
|
||||
|
||||
"@next/swc-linux-x64-gnu@15.5.4":
|
||||
version "15.5.4"
|
||||
resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.4.tgz"
|
||||
integrity sha512-7HKolaj+481FSW/5lL0BcTkA4Ueam9SPYWyN/ib/WGAFZf0DGAN8frNpNZYFHtM4ZstrHZS3LY3vrwlIQfsiMA==
|
||||
"@next/swc-darwin-arm64@14.2.22":
|
||||
version "14.2.22"
|
||||
resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.22.tgz"
|
||||
integrity sha512-HUaLiehovgnqY4TMBZJ3pDaOsTE1spIXeR10pWgdQVPYqDGQmHJBj3h3V6yC0uuo/RoY2GC0YBFRkOX3dI9WVQ==
|
||||
|
||||
"@nodelib/fs.scandir@2.1.5":
|
||||
version "2.1.5"
|
||||
@ -490,21 +461,6 @@
|
||||
resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz"
|
||||
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
|
||||
|
||||
"@react-dnd/asap@^5.0.1":
|
||||
version "5.0.2"
|
||||
resolved "https://registry.npmjs.org/@react-dnd/asap/-/asap-5.0.2.tgz"
|
||||
integrity sha512-WLyfoHvxhs0V9U+GTsGilGgf2QsPl6ZZ44fnv0/b8T3nQyvzxidxsg/ZltbWssbsRDlYW8UKSQMTGotuTotZ6A==
|
||||
|
||||
"@react-dnd/invariant@^4.0.1":
|
||||
version "4.0.2"
|
||||
resolved "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-4.0.2.tgz"
|
||||
integrity sha512-xKCTqAK/FFauOM9Ta2pswIyT3D8AQlfrYdOi/toTPEhqCuAs1v5tcJ3Y08Izh1cJ5Jchwy9SeAXmMg6zrKs2iw==
|
||||
|
||||
"@react-dnd/shallowequal@^4.0.1":
|
||||
version "4.0.2"
|
||||
resolved "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-4.0.2.tgz"
|
||||
integrity sha512-/RVXdLvJxLg4QKvMoM5WlwNR9ViO9z8B/qPcc+C0Sa/teJY7QG7kJ441DwzOjMYEY7GmU4dj5EcGHIkKZiQZCA==
|
||||
|
||||
"@reduxjs/toolkit@^2.1.0":
|
||||
version "2.5.0"
|
||||
resolved "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.5.0.tgz"
|
||||
@ -532,12 +488,18 @@
|
||||
resolved "https://registry.npmjs.org/@seznam/compose-react-refs/-/compose-react-refs-1.0.6.tgz"
|
||||
integrity sha512-izzOXQfeQLonzrIQb8u6LQ8dk+ymz3WXTIXjvOlTXHq6sbzROg3NWU+9TTAOpEoK9Bth24/6F/XrfHJ5yR5n6Q==
|
||||
|
||||
"@swc/helpers@0.5.15":
|
||||
version "0.5.15"
|
||||
resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz"
|
||||
integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==
|
||||
"@swc/counter@^0.1.3":
|
||||
version "0.1.3"
|
||||
resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz"
|
||||
integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==
|
||||
|
||||
"@swc/helpers@0.5.5":
|
||||
version "0.5.5"
|
||||
resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz"
|
||||
integrity sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==
|
||||
dependencies:
|
||||
tslib "^2.8.0"
|
||||
"@swc/counter" "^0.1.3"
|
||||
tslib "^2.4.0"
|
||||
|
||||
"@tailwindcss/forms@^0.5.7":
|
||||
version "0.5.9"
|
||||
@ -574,11 +536,12 @@
|
||||
resolved "https://registry.npmjs.org/@types/date-arithmetic/-/date-arithmetic-4.1.4.tgz"
|
||||
integrity sha512-p9eZ2X9B80iKiTW4ukVj8B4K6q9/+xFtQ5MGYA5HWToY9nL4EkhV9+6ftT2VHpVMEZb5Tv00Iel516bVdO+yRw==
|
||||
|
||||
"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1", "@types/hoist-non-react-statics@^3.3.6":
|
||||
version "3.3.7"
|
||||
resolved "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz"
|
||||
integrity sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==
|
||||
"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1":
|
||||
version "3.3.1"
|
||||
resolved "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz"
|
||||
integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
|
||||
dependencies:
|
||||
"@types/react" "*"
|
||||
hoist-non-react-statics "^3.3.0"
|
||||
|
||||
"@types/json-schema@^7.0.9":
|
||||
@ -606,10 +569,10 @@
|
||||
resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz"
|
||||
integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
|
||||
|
||||
"@types/prop-types@*", "@types/prop-types@^15.7.12", "@types/prop-types@^15.7.14":
|
||||
version "15.7.15"
|
||||
resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz"
|
||||
integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==
|
||||
"@types/prop-types@*", "@types/prop-types@^15.7.12":
|
||||
version "15.7.14"
|
||||
resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz"
|
||||
integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==
|
||||
|
||||
"@types/react-big-calendar@^1.8.8":
|
||||
version "1.16.0"
|
||||
@ -630,7 +593,7 @@
|
||||
hoist-non-react-statics "^3.3.0"
|
||||
redux "^4.0.0"
|
||||
|
||||
"@types/react-transition-group@^4.4.0", "@types/react-transition-group@^4.4.12":
|
||||
"@types/react-transition-group@^4.4.0", "@types/react-transition-group@^4.4.10":
|
||||
version "4.4.12"
|
||||
resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz"
|
||||
integrity sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==
|
||||
@ -933,13 +896,13 @@ axe-core@^4.4.3:
|
||||
resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz"
|
||||
integrity sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==
|
||||
|
||||
axios@^1.8.4:
|
||||
version "1.12.2"
|
||||
resolved "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz"
|
||||
integrity sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==
|
||||
axios@^1.6.7:
|
||||
version "1.7.9"
|
||||
resolved "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz"
|
||||
integrity sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==
|
||||
dependencies:
|
||||
follow-redirects "^1.15.6"
|
||||
form-data "^4.0.4"
|
||||
form-data "^4.0.0"
|
||||
proxy-from-env "^1.1.0"
|
||||
|
||||
axobject-query@^2.2.0:
|
||||
@ -961,11 +924,6 @@ balanced-match@^1.0.0:
|
||||
resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
|
||||
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
||||
|
||||
base64-arraybuffer@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"
|
||||
integrity sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==
|
||||
|
||||
binary-extensions@^2.0.0:
|
||||
version "2.3.0"
|
||||
resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz"
|
||||
@ -1008,13 +966,12 @@ buffer-equal-constant-time@1.0.1:
|
||||
resolved "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"
|
||||
integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==
|
||||
|
||||
call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz"
|
||||
integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==
|
||||
busboy@1.6.0:
|
||||
version "1.6.0"
|
||||
resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz"
|
||||
integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==
|
||||
dependencies:
|
||||
es-errors "^1.3.0"
|
||||
function-bind "^1.1.2"
|
||||
streamsearch "^1.1.0"
|
||||
|
||||
call-bind@^1.0.0, call-bind@^1.0.2:
|
||||
version "1.0.2"
|
||||
@ -1084,12 +1041,17 @@ client-only@0.0.1:
|
||||
resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz"
|
||||
integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
|
||||
|
||||
clsx@^1.1.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz"
|
||||
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
|
||||
|
||||
clsx@^1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz"
|
||||
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
|
||||
|
||||
clsx@^2.0.0, clsx@^2.1.1:
|
||||
clsx@^2.0.0, clsx@^2.1.0, clsx@^2.1.1:
|
||||
version "2.1.1"
|
||||
resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz"
|
||||
integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
|
||||
@ -1133,11 +1095,6 @@ core-js-pure@^3.20.2:
|
||||
resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz"
|
||||
integrity sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==
|
||||
|
||||
core-js@^3:
|
||||
version "3.45.1"
|
||||
resolved "https://registry.npmjs.org/core-js/-/core-js-3.45.1.tgz"
|
||||
integrity sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==
|
||||
|
||||
cosmiconfig@^7.0.0:
|
||||
version "7.1.0"
|
||||
resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"
|
||||
@ -1156,13 +1113,6 @@ cross-env@^7.0.3:
|
||||
dependencies:
|
||||
cross-spawn "^7.0.1"
|
||||
|
||||
cross-fetch@4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz"
|
||||
integrity sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==
|
||||
dependencies:
|
||||
node-fetch "^2.6.12"
|
||||
|
||||
cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
|
||||
version "7.0.3"
|
||||
resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
|
||||
@ -1172,13 +1122,6 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
|
||||
shebang-command "^2.0.0"
|
||||
which "^2.0.1"
|
||||
|
||||
css-line-break@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz"
|
||||
integrity sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==
|
||||
dependencies:
|
||||
utrie "^1.0.2"
|
||||
|
||||
cssesc@^3.0.0:
|
||||
version "3.0.0"
|
||||
resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
|
||||
@ -1270,11 +1213,6 @@ dequal@^2.0.3:
|
||||
resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz"
|
||||
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
|
||||
|
||||
detect-libc@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.0.tgz"
|
||||
integrity sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==
|
||||
|
||||
didyoumean@^1.2.2:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz"
|
||||
@ -1292,15 +1230,6 @@ dlv@^1.1.3:
|
||||
resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz"
|
||||
integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
|
||||
|
||||
dnd-core@^16.0.1:
|
||||
version "16.0.1"
|
||||
resolved "https://registry.npmjs.org/dnd-core/-/dnd-core-16.0.1.tgz"
|
||||
integrity sha512-HK294sl7tbw6F6IeuK16YSBUoorvHpY8RHO+9yFfaJyCDVb6n7PRcezrOEOa2SBCqiYpemh5Jx20ZcjKdFAVng==
|
||||
dependencies:
|
||||
"@react-dnd/asap" "^5.0.1"
|
||||
"@react-dnd/invariant" "^4.0.1"
|
||||
redux "^4.2.0"
|
||||
|
||||
doctrine@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
|
||||
@ -1323,15 +1252,6 @@ dom-helpers@^5.0.1, dom-helpers@^5.2.0, dom-helpers@^5.2.1:
|
||||
"@babel/runtime" "^7.8.7"
|
||||
csstype "^3.0.2"
|
||||
|
||||
dunder-proto@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz"
|
||||
integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
|
||||
dependencies:
|
||||
call-bind-apply-helpers "^1.0.1"
|
||||
es-errors "^1.3.0"
|
||||
gopd "^1.2.0"
|
||||
|
||||
eastasianwidth@^0.2.0:
|
||||
version "0.2.0"
|
||||
resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
|
||||
@ -1404,33 +1324,6 @@ es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19
|
||||
string.prototype.trimstart "^1.0.5"
|
||||
unbox-primitive "^1.0.2"
|
||||
|
||||
es-define-property@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz"
|
||||
integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==
|
||||
|
||||
es-errors@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz"
|
||||
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
|
||||
|
||||
es-object-atoms@^1.0.0, es-object-atoms@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz"
|
||||
integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==
|
||||
dependencies:
|
||||
es-errors "^1.3.0"
|
||||
|
||||
es-set-tostringtag@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz"
|
||||
integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==
|
||||
dependencies:
|
||||
es-errors "^1.3.0"
|
||||
get-intrinsic "^1.2.6"
|
||||
has-tostringtag "^1.0.2"
|
||||
hasown "^2.0.2"
|
||||
|
||||
es-shim-unscopables@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"
|
||||
@ -1780,15 +1673,13 @@ foreground-child@^3.1.0:
|
||||
cross-spawn "^7.0.0"
|
||||
signal-exit "^4.0.1"
|
||||
|
||||
form-data@^4.0.4:
|
||||
version "4.0.4"
|
||||
resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz"
|
||||
integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
|
||||
form-data@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz"
|
||||
integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
|
||||
dependencies:
|
||||
asynckit "^0.4.0"
|
||||
combined-stream "^1.0.8"
|
||||
es-set-tostringtag "^2.1.0"
|
||||
hasown "^2.0.2"
|
||||
mime-types "^2.1.12"
|
||||
|
||||
formik@^2.4.5:
|
||||
@ -1840,29 +1731,14 @@ functions-have-names@^1.2.2:
|
||||
resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
|
||||
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
|
||||
|
||||
get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.6:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz"
|
||||
integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==
|
||||
get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
|
||||
integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
|
||||
dependencies:
|
||||
call-bind-apply-helpers "^1.0.2"
|
||||
es-define-property "^1.0.1"
|
||||
es-errors "^1.3.0"
|
||||
es-object-atoms "^1.1.1"
|
||||
function-bind "^1.1.2"
|
||||
get-proto "^1.0.1"
|
||||
gopd "^1.2.0"
|
||||
has-symbols "^1.1.0"
|
||||
hasown "^2.0.2"
|
||||
math-intrinsics "^1.1.0"
|
||||
|
||||
get-proto@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz"
|
||||
integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==
|
||||
dependencies:
|
||||
dunder-proto "^1.0.1"
|
||||
es-object-atoms "^1.0.0"
|
||||
function-bind "^1.1.1"
|
||||
has "^1.0.3"
|
||||
has-symbols "^1.0.3"
|
||||
|
||||
get-symbol-description@^1.0.0:
|
||||
version "1.0.0"
|
||||
@ -1972,12 +1848,7 @@ globrex@^0.1.2:
|
||||
resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"
|
||||
integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==
|
||||
|
||||
gopd@^1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz"
|
||||
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
|
||||
|
||||
graceful-fs@^4.2.4:
|
||||
graceful-fs@^4.2.11, graceful-fs@^4.2.4:
|
||||
version "4.2.11"
|
||||
resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
|
||||
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
|
||||
@ -2004,17 +1875,17 @@ has-property-descriptors@^1.0.0:
|
||||
dependencies:
|
||||
get-intrinsic "^1.1.1"
|
||||
|
||||
has-symbols@^1.0.2, has-symbols@^1.0.3, has-symbols@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz"
|
||||
integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==
|
||||
has-symbols@^1.0.2, has-symbols@^1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
|
||||
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
|
||||
|
||||
has-tostringtag@^1.0.0, has-tostringtag@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz"
|
||||
integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
|
||||
has-tostringtag@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
|
||||
integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
|
||||
dependencies:
|
||||
has-symbols "^1.0.3"
|
||||
has-symbols "^1.0.2"
|
||||
|
||||
has@^1.0.3:
|
||||
version "1.0.3"
|
||||
@ -2037,47 +1908,6 @@ hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-
|
||||
dependencies:
|
||||
react-is "^16.7.0"
|
||||
|
||||
html-parse-stringify@^3.0.1:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz"
|
||||
integrity sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==
|
||||
dependencies:
|
||||
void-elements "3.1.0"
|
||||
|
||||
html2canvas@^1.4.1:
|
||||
version "1.4.1"
|
||||
resolved "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz"
|
||||
integrity sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==
|
||||
dependencies:
|
||||
css-line-break "^2.1.0"
|
||||
text-segmentation "^1.0.3"
|
||||
|
||||
i18next-browser-languagedetector@^8.1.0:
|
||||
version "8.2.0"
|
||||
resolved "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-8.2.0.tgz"
|
||||
integrity sha512-P+3zEKLnOF0qmiesW383vsLdtQVyKtCNA9cjSoKCppTKPQVfKd2W8hbVo5ZhNJKDqeM7BOcvNoKJOjpHh4Js9g==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.23.2"
|
||||
|
||||
i18next-fs-backend@^2.6.0:
|
||||
version "2.6.0"
|
||||
resolved "https://registry.npmjs.org/i18next-fs-backend/-/i18next-fs-backend-2.6.0.tgz"
|
||||
integrity sha512-3ZlhNoF9yxnM8pa8bWp5120/Ob6t4lVl1l/tbLmkml/ei3ud8IWySCHt2lrY5xWRlSU5D9IV2sm5bEbGuTqwTw==
|
||||
|
||||
i18next-http-backend@^3.0.2:
|
||||
version "3.0.2"
|
||||
resolved "https://registry.npmjs.org/i18next-http-backend/-/i18next-http-backend-3.0.2.tgz"
|
||||
integrity sha512-PdlvPnvIp4E1sYi46Ik4tBYh/v/NbYfFFgTjkwFl0is8A18s7/bx9aXqsrOax9WUbeNS6mD2oix7Z0yGGf6m5g==
|
||||
dependencies:
|
||||
cross-fetch "4.0.0"
|
||||
|
||||
i18next@^25.1.2:
|
||||
version "25.5.2"
|
||||
resolved "https://registry.npmjs.org/i18next/-/i18next-25.5.2.tgz"
|
||||
integrity sha512-lW8Zeh37i/o0zVr+NoCHfNnfvVw+M6FQbRp36ZZ/NyHDJ3NJVpp2HhAUyU9WafL5AssymNoOjMRB48mmx2P6Hw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.27.6"
|
||||
|
||||
ignore@^5.2.0:
|
||||
version "5.2.0"
|
||||
resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
|
||||
@ -2491,11 +2321,6 @@ luxon@^3.2.1:
|
||||
resolved "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz"
|
||||
integrity sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==
|
||||
|
||||
math-intrinsics@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz"
|
||||
integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
|
||||
|
||||
memoize-one@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz"
|
||||
@ -2562,7 +2387,7 @@ moment-timezone@^0.5.40:
|
||||
dependencies:
|
||||
moment "^2.29.4"
|
||||
|
||||
moment@^2.29.4, moment@^2.30.1:
|
||||
moment@^2.29.4:
|
||||
version "2.30.1"
|
||||
resolved "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz"
|
||||
integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==
|
||||
@ -2596,44 +2421,28 @@ natural-compare@^1.4.0:
|
||||
resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
|
||||
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
|
||||
|
||||
next-i18next@^15.4.2:
|
||||
version "15.4.2"
|
||||
resolved "https://registry.npmjs.org/next-i18next/-/next-i18next-15.4.2.tgz"
|
||||
integrity sha512-zgRxWf7kdXtM686ecGIBQL+Bq0+DqAhRlasRZ3vVF0TmrNTWkVhs52n//oU3Fj5O7r/xOKkECDUwfOuXVwTK/g==
|
||||
next@^14.1.0:
|
||||
version "14.2.22"
|
||||
resolved "https://registry.npmjs.org/next/-/next-14.2.22.tgz"
|
||||
integrity sha512-Ps2caobQ9hlEhscLPiPm3J3SYhfwfpMqzsoCMZGWxt9jBRK9hoBZj2A37i8joKhsyth2EuVKDVJCTF5/H4iEDw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.23.2"
|
||||
"@types/hoist-non-react-statics" "^3.3.6"
|
||||
core-js "^3"
|
||||
hoist-non-react-statics "^3.3.2"
|
||||
i18next-fs-backend "^2.6.0"
|
||||
|
||||
next@^15.3.1:
|
||||
version "15.5.4"
|
||||
resolved "https://registry.npmjs.org/next/-/next-15.5.4.tgz"
|
||||
integrity sha512-xH4Yjhb82sFYQfY3vbkJfgSDgXvBB6a8xPs9i35k6oZJRoQRihZH+4s9Yo2qsWpzBmZ3lPXaJ2KPXLfkvW4LnA==
|
||||
dependencies:
|
||||
"@next/env" "15.5.4"
|
||||
"@swc/helpers" "0.5.15"
|
||||
"@next/env" "14.2.22"
|
||||
"@swc/helpers" "0.5.5"
|
||||
busboy "1.6.0"
|
||||
caniuse-lite "^1.0.30001579"
|
||||
graceful-fs "^4.2.11"
|
||||
postcss "8.4.31"
|
||||
styled-jsx "5.1.6"
|
||||
styled-jsx "5.1.1"
|
||||
optionalDependencies:
|
||||
"@next/swc-darwin-arm64" "15.5.4"
|
||||
"@next/swc-darwin-x64" "15.5.4"
|
||||
"@next/swc-linux-arm64-gnu" "15.5.4"
|
||||
"@next/swc-linux-arm64-musl" "15.5.4"
|
||||
"@next/swc-linux-x64-gnu" "15.5.4"
|
||||
"@next/swc-linux-x64-musl" "15.5.4"
|
||||
"@next/swc-win32-arm64-msvc" "15.5.4"
|
||||
"@next/swc-win32-x64-msvc" "15.5.4"
|
||||
sharp "^0.34.3"
|
||||
|
||||
node-fetch@^2.6.12:
|
||||
version "2.7.0"
|
||||
resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz"
|
||||
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
|
||||
dependencies:
|
||||
whatwg-url "^5.0.0"
|
||||
"@next/swc-darwin-arm64" "14.2.22"
|
||||
"@next/swc-darwin-x64" "14.2.22"
|
||||
"@next/swc-linux-arm64-gnu" "14.2.22"
|
||||
"@next/swc-linux-arm64-musl" "14.2.22"
|
||||
"@next/swc-linux-x64-gnu" "14.2.22"
|
||||
"@next/swc-linux-x64-musl" "14.2.22"
|
||||
"@next/swc-win32-arm64-msvc" "14.2.22"
|
||||
"@next/swc-win32-ia32-msvc" "14.2.22"
|
||||
"@next/swc-win32-x64-msvc" "14.2.22"
|
||||
|
||||
node-releases@^2.0.6:
|
||||
version "2.0.6"
|
||||
@ -3013,24 +2822,6 @@ react-datepicker@^4.10.0:
|
||||
react-onclickoutside "^6.13.0"
|
||||
react-popper "^2.3.0"
|
||||
|
||||
react-dnd-html5-backend@^16.0.1:
|
||||
version "16.0.1"
|
||||
resolved "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-16.0.1.tgz"
|
||||
integrity sha512-Wu3dw5aDJmOGw8WjH1I1/yTH+vlXEL4vmjk5p+MHxP8HuHJS1lAGeIdG/hze1AvNeXWo/JgULV87LyQOr+r5jw==
|
||||
dependencies:
|
||||
dnd-core "^16.0.1"
|
||||
|
||||
react-dnd@^16.0.1:
|
||||
version "16.0.1"
|
||||
resolved "https://registry.npmjs.org/react-dnd/-/react-dnd-16.0.1.tgz"
|
||||
integrity sha512-QeoM/i73HHu2XF9aKksIUuamHPDvRglEwdHL4jsp784BgUuWcg6mzfxT0QDdQz8Wj0qyRKx2eMg8iZtWvU4E2Q==
|
||||
dependencies:
|
||||
"@react-dnd/invariant" "^4.0.1"
|
||||
"@react-dnd/shallowequal" "^4.0.1"
|
||||
dnd-core "^16.0.1"
|
||||
fast-deep-equal "^3.1.3"
|
||||
hoist-non-react-statics "^3.3.2"
|
||||
|
||||
react-dom@^19.0.0:
|
||||
version "19.0.0"
|
||||
resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz"
|
||||
@ -3048,20 +2839,7 @@ react-fast-compare@^3.0.1:
|
||||
resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz"
|
||||
integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==
|
||||
|
||||
react-i18next@^15.5.1:
|
||||
version "15.7.3"
|
||||
resolved "https://registry.npmjs.org/react-i18next/-/react-i18next-15.7.3.tgz"
|
||||
integrity sha512-AANws4tOE+QSq/IeMF/ncoHlMNZaVLxpa5uUGW1wjike68elVYr0018L9xYoqBr1OFO7G7boDPrbn0HpMCJxTw==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.27.6"
|
||||
html-parse-stringify "^3.0.1"
|
||||
|
||||
react-is@^16.13.1:
|
||||
version "16.13.1"
|
||||
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
|
||||
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
||||
|
||||
react-is@^16.7.0:
|
||||
react-is@^16.13.1, react-is@^16.7.0:
|
||||
version "16.13.1"
|
||||
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
|
||||
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
||||
@ -3154,12 +2932,12 @@ react-switch@^7.0.0:
|
||||
dependencies:
|
||||
prop-types "^15.7.2"
|
||||
|
||||
react-toastify@^11.0.2:
|
||||
version "11.0.5"
|
||||
resolved "https://registry.npmjs.org/react-toastify/-/react-toastify-11.0.5.tgz"
|
||||
integrity sha512-EpqHBGvnSTtHYhCPLxML05NLY2ZX0JURbAdNYa6BUkk+amz4wbKBQvoKQAB0ardvSarUBuY4Q4s1sluAzZwkmA==
|
||||
react-toastify@^9.1.2:
|
||||
version "9.1.3"
|
||||
resolved "https://registry.npmjs.org/react-toastify/-/react-toastify-9.1.3.tgz"
|
||||
integrity sha512-fPfb8ghtn/XMxw3LkxQBk3IyagNpF/LIKjOBflbexr2AWxAH1MJgvnESwEwBn9liLFXgTKWgBSdZpw9m4OTHTg==
|
||||
dependencies:
|
||||
clsx "^2.1.1"
|
||||
clsx "^1.1.1"
|
||||
|
||||
react-transition-group@^4.3.0, react-transition-group@^4.4.5:
|
||||
version "4.4.5"
|
||||
@ -3202,13 +2980,6 @@ redux@^4.0.0:
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.9.2"
|
||||
|
||||
redux@^4.2.0:
|
||||
version "4.2.1"
|
||||
resolved "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz"
|
||||
integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==
|
||||
dependencies:
|
||||
"@babel/runtime" "^7.9.2"
|
||||
|
||||
redux@^5.0.1:
|
||||
version "5.0.1"
|
||||
resolved "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz"
|
||||
@ -3219,6 +2990,11 @@ regenerator-runtime@^0.13.4:
|
||||
resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"
|
||||
integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
|
||||
|
||||
regenerator-runtime@^0.14.0:
|
||||
version "0.14.1"
|
||||
resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz"
|
||||
integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==
|
||||
|
||||
regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3:
|
||||
version "1.4.3"
|
||||
resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
|
||||
@ -3309,42 +3085,10 @@ semver@^6.3.0:
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
|
||||
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
||||
|
||||
semver@^7.3.7, semver@^7.5.4, semver@^7.7.2:
|
||||
version "7.7.2"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
|
||||
integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
|
||||
|
||||
sharp@^0.34.3:
|
||||
version "0.34.4"
|
||||
resolved "https://registry.npmjs.org/sharp/-/sharp-0.34.4.tgz"
|
||||
integrity sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==
|
||||
dependencies:
|
||||
"@img/colour" "^1.0.0"
|
||||
detect-libc "^2.1.0"
|
||||
semver "^7.7.2"
|
||||
optionalDependencies:
|
||||
"@img/sharp-darwin-arm64" "0.34.4"
|
||||
"@img/sharp-darwin-x64" "0.34.4"
|
||||
"@img/sharp-libvips-darwin-arm64" "1.2.3"
|
||||
"@img/sharp-libvips-darwin-x64" "1.2.3"
|
||||
"@img/sharp-libvips-linux-arm" "1.2.3"
|
||||
"@img/sharp-libvips-linux-arm64" "1.2.3"
|
||||
"@img/sharp-libvips-linux-ppc64" "1.2.3"
|
||||
"@img/sharp-libvips-linux-s390x" "1.2.3"
|
||||
"@img/sharp-libvips-linux-x64" "1.2.3"
|
||||
"@img/sharp-libvips-linuxmusl-arm64" "1.2.3"
|
||||
"@img/sharp-libvips-linuxmusl-x64" "1.2.3"
|
||||
"@img/sharp-linux-arm" "0.34.4"
|
||||
"@img/sharp-linux-arm64" "0.34.4"
|
||||
"@img/sharp-linux-ppc64" "0.34.4"
|
||||
"@img/sharp-linux-s390x" "0.34.4"
|
||||
"@img/sharp-linux-x64" "0.34.4"
|
||||
"@img/sharp-linuxmusl-arm64" "0.34.4"
|
||||
"@img/sharp-linuxmusl-x64" "0.34.4"
|
||||
"@img/sharp-wasm32" "0.34.4"
|
||||
"@img/sharp-win32-arm64" "0.34.4"
|
||||
"@img/sharp-win32-ia32" "0.34.4"
|
||||
"@img/sharp-win32-x64" "0.34.4"
|
||||
semver@^7.3.7, semver@^7.5.4:
|
||||
version "7.6.3"
|
||||
resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz"
|
||||
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
|
||||
|
||||
shebang-command@^2.0.0:
|
||||
version "2.0.0"
|
||||
@ -3402,6 +3146,11 @@ split-on-first@^3.0.0:
|
||||
resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-3.0.0.tgz"
|
||||
integrity sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==
|
||||
|
||||
streamsearch@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz"
|
||||
integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
|
||||
|
||||
"string-width-cjs@npm:string-width@^4.2.0":
|
||||
version "4.2.3"
|
||||
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
|
||||
@ -3492,10 +3241,10 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
|
||||
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
|
||||
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
|
||||
|
||||
styled-jsx@5.1.6:
|
||||
version "5.1.6"
|
||||
resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz"
|
||||
integrity sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==
|
||||
styled-jsx@5.1.1:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz"
|
||||
integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==
|
||||
dependencies:
|
||||
client-only "0.0.1"
|
||||
|
||||
@ -3630,13 +3379,6 @@ tapable@^2.2.0:
|
||||
resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz"
|
||||
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
|
||||
|
||||
text-segmentation@^1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz"
|
||||
integrity sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==
|
||||
dependencies:
|
||||
utrie "^1.0.2"
|
||||
|
||||
text-table@^0.2.0:
|
||||
version "0.2.0"
|
||||
resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
|
||||
@ -3681,11 +3423,6 @@ to-regex-range@^5.0.1:
|
||||
dependencies:
|
||||
is-number "^7.0.0"
|
||||
|
||||
tr46@~0.0.3:
|
||||
version "0.0.3"
|
||||
resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
|
||||
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
|
||||
|
||||
ts-interface-checker@^0.1.9:
|
||||
version "0.1.13"
|
||||
resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz"
|
||||
@ -3711,11 +3448,6 @@ tslib@^2.0.0, tslib@^2.4.0:
|
||||
resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
|
||||
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
|
||||
|
||||
tslib@^2.8.0:
|
||||
version "2.8.1"
|
||||
resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
|
||||
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
|
||||
|
||||
tsutils@^3.21.0:
|
||||
version "3.21.0"
|
||||
resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
|
||||
@ -3735,10 +3467,10 @@ type-fest@^0.20.2:
|
||||
resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
|
||||
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
|
||||
|
||||
typescript@^5.4.5:
|
||||
version "5.9.2"
|
||||
resolved "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz"
|
||||
integrity sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==
|
||||
typescript@^4.8.3:
|
||||
version "4.8.3"
|
||||
resolved "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz"
|
||||
integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==
|
||||
|
||||
unbox-primitive@^1.0.2:
|
||||
version "1.0.2"
|
||||
@ -3802,23 +3534,11 @@ util-deprecate@^1.0.2:
|
||||
resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
|
||||
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
|
||||
|
||||
utrie@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz"
|
||||
integrity sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==
|
||||
dependencies:
|
||||
base64-arraybuffer "^1.0.2"
|
||||
|
||||
uuid@^9.0.0:
|
||||
version "9.0.1"
|
||||
resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz"
|
||||
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
|
||||
|
||||
void-elements@3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz"
|
||||
integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==
|
||||
|
||||
warning@^4.0.2, warning@^4.0.3:
|
||||
version "4.0.3"
|
||||
resolved "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz"
|
||||
@ -3826,19 +3546,6 @@ warning@^4.0.2, warning@^4.0.3:
|
||||
dependencies:
|
||||
loose-envify "^1.0.0"
|
||||
|
||||
webidl-conversions@^3.0.0:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
|
||||
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
|
||||
|
||||
whatwg-url@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
|
||||
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
|
||||
dependencies:
|
||||
tr46 "~0.0.3"
|
||||
webidl-conversions "^3.0.0"
|
||||
|
||||
which-boxed-primitive@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user