shared-ritm 1.2.135 → 1.2.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +103 -103
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +804 -795
- package/dist/shared-ritm.umd.js +38 -38
- package/dist/types/api/services/RepairsService.d.ts +2 -2
- package/dist/types/api/services/ScheduleService.d.ts +2 -1
- package/dist/types/api/services/UserService.d.ts +8 -1
- package/dist/types/api/types/Api_Instruments.d.ts +2 -2
- package/dist/types/api/types/Api_Repairs.d.ts +20 -0
- package/dist/types/api/types/Api_Schedule.d.ts +5 -0
- package/dist/types/api/types/Api_Search.d.ts +2 -0
- package/dist/types/api/types/Api_User.d.ts +8 -0
- package/package.json +64 -64
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +53 -53
- package/src/api/services/BrigadesService.ts +32 -32
- package/src/api/services/CommentsService.ts +24 -24
- package/src/api/services/ControlsService.ts +92 -92
- package/src/api/services/EquipmentService.ts +29 -29
- package/src/api/services/FileService.ts +17 -17
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/InstrumentsService.ts +63 -63
- package/src/api/services/MetricsService.ts +110 -110
- package/src/api/services/ModulesService.ts +27 -27
- package/src/api/services/ProjectsService.ts +83 -83
- package/src/api/services/RepairsService.ts +124 -123
- package/src/api/services/ScheduleService.ts +69 -62
- package/src/api/services/SearchService.ts +22 -22
- package/src/api/services/TasksService.ts +145 -145
- package/src/api/services/UserService.ts +113 -101
- package/src/api/services/VideoService.ts +103 -103
- package/src/api/settings/ApiService.ts +124 -124
- package/src/api/types/Api_Auth.ts +86 -86
- package/src/api/types/Api_Brigades.ts +36 -36
- package/src/api/types/Api_Comment.ts +40 -40
- package/src/api/types/Api_Controls.ts +111 -111
- package/src/api/types/Api_Equipment.ts +3 -3
- package/src/api/types/Api_Files.ts +7 -7
- package/src/api/types/Api_Instruments.ts +136 -136
- package/src/api/types/Api_Modules.ts +21 -21
- package/src/api/types/Api_Projects.ts +61 -61
- package/src/api/types/Api_Repairs.ts +138 -117
- package/src/api/types/Api_Schedule.ts +64 -58
- package/src/api/types/Api_Search.ts +79 -77
- package/src/api/types/Api_Service.ts +9 -9
- package/src/api/types/Api_Tasks.ts +319 -319
- package/src/api/types/Api_User.ts +140 -117
- package/src/api/types/Api_Video.ts +145 -145
- package/src/common/app-button/AppButton.vue +173 -173
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +81 -81
- package/src/common/app-datepicker/AppDatepicker.vue +166 -166
- package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
- package/src/common/app-dropdown/AppDropdown.vue +37 -37
- package/src/common/app-icon/AppIcon.vue +108 -108
- package/src/common/app-input/AppInput.vue +148 -148
- package/src/common/app-input-new/AppInputNew.vue +175 -175
- package/src/common/app-input-search/AppInputSearch.vue +174 -174
- package/src/common/app-layout/AppLayout.vue +84 -84
- package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
- package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
- package/src/common/app-loader/index.vue +43 -43
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sheet/AppSheet.vue +120 -120
- package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
- package/src/common/app-sidebar/AppSidebar.vue +168 -168
- package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
- package/src/common/app-table/AppTable.vue +308 -308
- package/src/common/app-table/AppTableLayout.vue +137 -137
- package/src/common/app-table/components/ModalSelect.vue +285 -285
- package/src/common/app-table/components/TableModal.vue +356 -356
- package/src/common/app-table/components/TablePagination.vue +152 -152
- package/src/common/app-table/controllers/useBaseTable.ts +45 -45
- package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
- package/src/common/app-table/controllers/useTableModel.ts +102 -102
- package/src/common/app-toggle/AppToggle.vue +24 -24
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- package/src/global.d.ts +1 -1
- package/src/icons/components/arrow-down-icon.vue +25 -25
- package/src/icons/components/arrow-frame-icon.vue +19 -19
- package/src/icons/components/arrow-square.vue +22 -22
- package/src/icons/components/table-filter-icon.vue +30 -30
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- package/src/icons/header/NotificationIcon.vue +18 -18
- package/src/icons/header/PersonIcon.vue +11 -11
- package/src/icons/header/SettingIcon.vue +14 -14
- package/src/icons/header/flashIcon.vue +24 -24
- package/src/icons/header/searchStatusIcon.vue +24 -24
- package/src/icons/header/smallCapsIcon.vue +34 -34
- package/src/icons/sidebar/assign-module-icon.vue +36 -36
- package/src/icons/sidebar/instrument-history-icon.vue +32 -32
- package/src/icons/sidebar/instrument-order-icon.vue +38 -38
- package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
- package/src/icons/sidebar/instruments-icon.vue +45 -45
- package/src/icons/sidebar/logo-icon.vue +15 -15
- package/src/icons/sidebar/logout-icon.vue +13 -13
- package/src/icons/sidebar/modules-icon.vue +16 -16
- package/src/icons/sidebar/notifications-icon.vue +24 -24
- package/src/icons/sidebar/order-icon.vue +44 -44
- package/src/icons/sidebar/pass-icon.vue +38 -38
- package/src/icons/sidebar/positions-icon.vue +42 -42
- package/src/icons/sidebar/preorder-icon.vue +19 -19
- package/src/icons/sidebar/projects-icon.vue +31 -31
- package/src/icons/sidebar/repair-object-icon.vue +18 -18
- package/src/icons/sidebar/repairs-icon.vue +20 -20
- package/src/icons/sidebar/roles-icon.vue +26 -26
- package/src/icons/sidebar/status-history-icon.vue +24 -24
- package/src/icons/sidebar/tasks-icon.vue +28 -28
- package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
- package/src/icons/sidebar/tasks_today-icon.vue +27 -27
- package/src/icons/sidebar/teams-icon.vue +32 -32
- package/src/icons/sidebar/user-icon.vue +18 -18
- package/src/icons/sidebar/users-icon.vue +46 -46
- package/src/icons/sidebar/videosources-icon.vue +19 -19
- package/src/icons/sidebar/videowall-icon.vue +13 -13
- package/src/icons/sidebar/videozones-icon.vue +21 -21
- package/src/icons/sidebar/warehouses-icon.vue +43 -43
- package/src/icons/sidebar/workshop-icon.vue +100 -100
- package/src/icons/sidebar/workzones-icon.vue +22 -22
- package/src/icons/task/attention-icon.vue +13 -13
- package/src/icons/task/clock-icon.vue +10 -10
- package/src/icons/task/delete-icon.vue +10 -10
- package/src/icons/task/fire-icon.vue +16 -16
- package/src/index.ts +126 -126
- package/src/main.ts +28 -28
- package/src/quasar-user-options.ts +17 -17
- package/src/router/index.ts +10 -10
- package/src/shared/styles/general.css +124 -124
- package/src/shims-vue.d.ts +5 -5
- package/src/styles/variables.sass +12 -12
- package/src/utils/confirm.ts +12 -12
- package/src/utils/faceApiHelper.ts +132 -132
- package/src/utils/helpers.ts +59 -59
- package/src/utils/notification.ts +9 -9
- package/dist/types/api/services/PhotoService.d.ts +0 -40
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ApiService from '../settings/ApiService';
|
|
2
2
|
import { ResponseApi } from '../types/Api_Service';
|
|
3
|
-
import { Api_Create_Repair_With_Equipments, Api_Create_Repair_With_Template, Api_Equipment_Full_Dto, Api_Repair_Dto, Api_Repair_Template, Api_Update_Repair, OptionFilters } from '../types/Api_Repairs';
|
|
3
|
+
import { Api_Create_Repair_With_Equipments, Api_Create_Repair_With_Template, Api_Equipment_Full_Dto, Api_Repair_Dto, Api_Repair_Intersection, Api_Repair_Template, Api_Update_Repair, OptionFilters } from '../types/Api_Repairs';
|
|
4
4
|
declare class RepairsService extends ApiService {
|
|
5
5
|
fetchFilters(fullParams: string): Promise<OptionFilters>;
|
|
6
6
|
fetchRepairs(isQuery: boolean, queries?: string, hasTeams?: boolean | string, teamsFilter?: string, typeFilter?: string): Promise<ResponseApi<Api_Repair_Dto[]>>;
|
|
@@ -22,7 +22,7 @@ declare class RepairsService extends ApiService {
|
|
|
22
22
|
updateRepair(payload: Api_Update_Repair, id: string): Promise<void>;
|
|
23
23
|
copyRepair(id: string): Promise<any>;
|
|
24
24
|
deleteRepair(id: string): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25
|
-
fetchIntersection(id: string): Promise<
|
|
25
|
+
fetchIntersection(id: string): Promise<Api_Repair_Intersection[][]>;
|
|
26
26
|
}
|
|
27
27
|
export default function useRepairsService(): RepairsService;
|
|
28
28
|
export {};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import ApiService from '../settings/ApiService';
|
|
2
|
-
import { Api_Schedule_Add_Shift, Api_Schedule_Complete_Brigade, Api_Schedule_Config, Api_Schedule_Edit_Shifts, Api_Schedule_Item, Api_Schedule_Swap_Shifts, Api_Schedule_Table_Brigade } from '@/api/types/Api_Schedule';
|
|
2
|
+
import { Api_Schedule_Add_Shift, Api_Schedule_Brigade_To_Swap, Api_Schedule_Complete_Brigade, Api_Schedule_Config, Api_Schedule_Edit_Shifts, Api_Schedule_Item, Api_Schedule_Swap_Shifts, Api_Schedule_Table_Brigade } from '@/api/types/Api_Schedule';
|
|
3
3
|
declare class ScheduleService extends ApiService {
|
|
4
4
|
fetchScheduleConfig(): Promise<Api_Schedule_Config>;
|
|
5
5
|
fetchSchedule(id: string): Promise<Api_Schedule_Item[]>;
|
|
6
6
|
fetchScheduleTable(id: string): Promise<Api_Schedule_Table_Brigade[]>;
|
|
7
|
+
fetchBrigadesToSwap(id: string, params: any): Promise<Api_Schedule_Brigade_To_Swap[]>;
|
|
7
8
|
completeBrigadeSchedule(id: string, body: Api_Schedule_Complete_Brigade): Promise<Api_Schedule_Table_Brigade>;
|
|
8
9
|
autocompleteBrigadesSchedule(id: string, body: {
|
|
9
10
|
shifts: string[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import ApiService from '../settings/ApiService';
|
|
2
|
-
import { Api_User, Api_User_Create, Api_User_Delete_Body, Api_User_Delete_Photos_Body, Api_User_Position, Api_User_Role, Api_User_Team, Api_User_Team_Search } from '../types/Api_User';
|
|
2
|
+
import { Api_User, Api_User_Create, Api_User_Delete_Body, Api_User_Delete_Photos_Body, Api_User_Position, Api_User_Role, Api_User_Team, Api_User_Team_Search, Api_User_Warehouse } from '../types/Api_User';
|
|
3
3
|
import { ResponseApi } from '../types/Api_Service';
|
|
4
4
|
declare class UserService extends ApiService {
|
|
5
5
|
editUser({ id, model }: {
|
|
@@ -7,6 +7,10 @@ declare class UserService extends ApiService {
|
|
|
7
7
|
model: any;
|
|
8
8
|
}): Promise<Api_User>;
|
|
9
9
|
getUser(id: string): Promise<Api_User>;
|
|
10
|
+
getUserWarehouses(params: {
|
|
11
|
+
user_id: string;
|
|
12
|
+
page?: number;
|
|
13
|
+
}): Promise<ResponseApi<Api_User_Warehouse[]>>;
|
|
10
14
|
createUser(model: Api_User_Create): Promise<Api_User>;
|
|
11
15
|
deleteUser({ user_id, archive_reason, }: Api_User_Delete_Body): Promise<{
|
|
12
16
|
data: boolean;
|
|
@@ -47,6 +51,9 @@ declare class UserService extends ApiService {
|
|
|
47
51
|
checkUserVectors(id: string): Promise<{
|
|
48
52
|
count: number;
|
|
49
53
|
}>;
|
|
54
|
+
checkArchiveUserVectors(id: string): Promise<{
|
|
55
|
+
count: number;
|
|
56
|
+
}>;
|
|
50
57
|
addUserVectors(formData: FormData): Promise<{
|
|
51
58
|
response: string;
|
|
52
59
|
}>;
|
|
@@ -93,11 +93,11 @@ export type Api_instruments_HistoryResponse = {
|
|
|
93
93
|
}[];
|
|
94
94
|
};
|
|
95
95
|
export type Api_Warehouse_Search = Omit<Api_Instrument, 'created_at' | 'deleted_at' | 'invoice_ref_key' | 'last_status_updated_at' | 'pressure' | 'registry_module_id' | 'supervisor' | 'supervisor_id' | 'type' | 'weight'> & {
|
|
96
|
-
issued_in:
|
|
96
|
+
issued_in: string | null;
|
|
97
97
|
registry: {
|
|
98
98
|
id: string;
|
|
99
99
|
title: string;
|
|
100
|
-
};
|
|
100
|
+
} | null;
|
|
101
101
|
};
|
|
102
102
|
export type Api_Warehouse_Create = {
|
|
103
103
|
instrument_id: string;
|
|
@@ -107,3 +107,23 @@ export type Api_Repair_Template = {
|
|
|
107
107
|
};
|
|
108
108
|
task_list: string;
|
|
109
109
|
};
|
|
110
|
+
export type Api_Repair_Intersection = {
|
|
111
|
+
position: {
|
|
112
|
+
name: string;
|
|
113
|
+
display_name: string;
|
|
114
|
+
};
|
|
115
|
+
status: {
|
|
116
|
+
id: string;
|
|
117
|
+
name: string;
|
|
118
|
+
display_name: string;
|
|
119
|
+
};
|
|
120
|
+
task: {
|
|
121
|
+
id: string;
|
|
122
|
+
name: string;
|
|
123
|
+
project_id: string;
|
|
124
|
+
};
|
|
125
|
+
user: {
|
|
126
|
+
id: string;
|
|
127
|
+
full_name: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Api_Warehouse_Search } from '@/api/types/Api_Instruments';
|
|
2
|
+
import { Api_User_Archive_History_Item } from '@/api/types/Api_User';
|
|
2
3
|
export type Api_Search_User_Passes = {
|
|
3
4
|
id: string;
|
|
4
5
|
type: string;
|
|
@@ -41,6 +42,7 @@ export type Api_Search_User = {
|
|
|
41
42
|
positions: Api_Search_User_Positions[];
|
|
42
43
|
teams: Api_Search_User_Teams[];
|
|
43
44
|
photos: Api_Search_User_Photos[];
|
|
45
|
+
archiveHistory: Api_User_Archive_History_Item[];
|
|
44
46
|
};
|
|
45
47
|
export type Api_Search_Instruments = {
|
|
46
48
|
id: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Api_Tasks_Status_Dto } from '@/api/types/Api_Tasks';
|
|
2
|
+
import { Api_Instrument } from '@/api/types/Api_Instruments';
|
|
2
3
|
export type Api_User_Team = {
|
|
3
4
|
id: string;
|
|
4
5
|
name: string;
|
|
@@ -103,3 +104,10 @@ export type Api_User_Delete_Photos_Body = {
|
|
|
103
104
|
user_id: string;
|
|
104
105
|
photos?: string[];
|
|
105
106
|
};
|
|
107
|
+
export type Api_User_Warehouse = Pick<Api_Instrument, 'id' | 'RFID' | 'instrument_type' | 'inventory_number' | 'location' | 'misplacement' | 'module' | 'name' | 'responsible' | 'status' | 'storage' | 'updated_at'> & {
|
|
108
|
+
issued_in: string | null;
|
|
109
|
+
registry: {
|
|
110
|
+
id: string;
|
|
111
|
+
title: string;
|
|
112
|
+
} | null;
|
|
113
|
+
};
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "shared-ritm",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"private": false,
|
|
5
|
-
"files": [
|
|
6
|
-
"dist",
|
|
7
|
-
"src"
|
|
8
|
-
],
|
|
9
|
-
"main": "dist/shared-ritm.umd.js",
|
|
10
|
-
"type": "module",
|
|
11
|
-
"module": "./dist/shared-ritm.es.js",
|
|
12
|
-
"types": "./dist/types/index.d.ts",
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"import": "./dist/shared-ritm.es.js",
|
|
16
|
-
"require": "./dist/shared-ritm.umd.js",
|
|
17
|
-
"default": "./dist/shared-ritm.es.js",
|
|
18
|
-
"types": "./dist/types/index.d.ts"
|
|
19
|
-
},
|
|
20
|
-
"./style": "./dist/index.css"
|
|
21
|
-
},
|
|
22
|
-
"scripts": {
|
|
23
|
-
"dev": "vite",
|
|
24
|
-
"build": "vite build && tsc --emitDeclarationOnly",
|
|
25
|
-
"typecheck": "vue-tsc --noEmit",
|
|
26
|
-
"lint": "eslint --fix",
|
|
27
|
-
"format": "prettier -w -u ."
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@quasar/extras": "^1.16.17",
|
|
31
|
-
"@vueuse/core": "^10.1.2",
|
|
32
|
-
"face-api.js": "^0.22.2",
|
|
33
|
-
"axios": "^1.7.7",
|
|
34
|
-
"vue": "^3.5.12",
|
|
35
|
-
"vue-router": "^4.0.3"
|
|
36
|
-
},
|
|
37
|
-
"peerDependencies": {
|
|
38
|
-
"quasar": "^2.18.1"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@quasar/vite-plugin": "^1.9.0",
|
|
42
|
-
"@rollup/pluginutils": "^5.1.3",
|
|
43
|
-
"@types/node": "^22.7.9",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
45
|
-
"@typescript-eslint/parser": "^4.25.0",
|
|
46
|
-
"@vitejs/plugin-vue": "^5.1.4",
|
|
47
|
-
"@vue/compiler-sfc": "^3.0.5",
|
|
48
|
-
"@vue/eslint-config-prettier": "^6.0.0",
|
|
49
|
-
"@vue/eslint-config-typescript": "^7.0.0",
|
|
50
|
-
"eslint": "^7.27.0",
|
|
51
|
-
"eslint-plugin-prettier": "^3.4.0",
|
|
52
|
-
"eslint-plugin-vue": "^7.10.0",
|
|
53
|
-
"install": "^0.13.0",
|
|
54
|
-
"npm": "^11.4.0",
|
|
55
|
-
"prettier": "^2.3.0",
|
|
56
|
-
"quasar": "^2.18.1",
|
|
57
|
-
"rollup-plugin-visualizer": "^5.14.0",
|
|
58
|
-
"sass": "^1.80.4",
|
|
59
|
-
"typescript": "^5.6.3",
|
|
60
|
-
"vite": "^5.4.9",
|
|
61
|
-
"vite-plugin-css-modules": "^0.0.1",
|
|
62
|
-
"vue-tsc": "^2.1.6"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "shared-ritm",
|
|
3
|
+
"version": "1.2.137",
|
|
4
|
+
"private": false,
|
|
5
|
+
"files": [
|
|
6
|
+
"dist",
|
|
7
|
+
"src"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/shared-ritm.umd.js",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"module": "./dist/shared-ritm.es.js",
|
|
12
|
+
"types": "./dist/types/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/shared-ritm.es.js",
|
|
16
|
+
"require": "./dist/shared-ritm.umd.js",
|
|
17
|
+
"default": "./dist/shared-ritm.es.js",
|
|
18
|
+
"types": "./dist/types/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./style": "./dist/index.css"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "vite build && tsc --emitDeclarationOnly",
|
|
25
|
+
"typecheck": "vue-tsc --noEmit",
|
|
26
|
+
"lint": "eslint --fix",
|
|
27
|
+
"format": "prettier -w -u ."
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@quasar/extras": "^1.16.17",
|
|
31
|
+
"@vueuse/core": "^10.1.2",
|
|
32
|
+
"face-api.js": "^0.22.2",
|
|
33
|
+
"axios": "^1.7.7",
|
|
34
|
+
"vue": "^3.5.12",
|
|
35
|
+
"vue-router": "^4.0.3"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"quasar": "^2.18.1"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@quasar/vite-plugin": "^1.9.0",
|
|
42
|
+
"@rollup/pluginutils": "^5.1.3",
|
|
43
|
+
"@types/node": "^22.7.9",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
45
|
+
"@typescript-eslint/parser": "^4.25.0",
|
|
46
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
47
|
+
"@vue/compiler-sfc": "^3.0.5",
|
|
48
|
+
"@vue/eslint-config-prettier": "^6.0.0",
|
|
49
|
+
"@vue/eslint-config-typescript": "^7.0.0",
|
|
50
|
+
"eslint": "^7.27.0",
|
|
51
|
+
"eslint-plugin-prettier": "^3.4.0",
|
|
52
|
+
"eslint-plugin-vue": "^7.10.0",
|
|
53
|
+
"install": "^0.13.0",
|
|
54
|
+
"npm": "^11.4.0",
|
|
55
|
+
"prettier": "^2.3.0",
|
|
56
|
+
"quasar": "^2.18.1",
|
|
57
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
58
|
+
"sass": "^1.80.4",
|
|
59
|
+
"typescript": "^5.6.3",
|
|
60
|
+
"vite": "^5.4.9",
|
|
61
|
+
"vite-plugin-css-modules": "^0.0.1",
|
|
62
|
+
"vue-tsc": "^2.1.6"
|
|
63
|
+
}
|
|
64
|
+
}
|