shared-ritm 1.0.50 → 1.0.51
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 +93 -0
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +1105 -1136
- package/dist/shared-ritm.umd.js +7 -7
- package/dist/types/api/services/ProjectsService.d.ts +0 -10
- package/dist/types/index.d.ts +1 -2
- package/package.json +56 -56
- package/src/App.vue +2404 -2404
- package/src/api/services/AuthService.ts +37 -37
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/MetricsService.ts +74 -74
- package/src/api/services/ProjectsService.ts +15 -56
- package/src/api/services/RepairsService.ts +82 -82
- package/src/api/services/TasksService.ts +15 -15
- package/src/api/settings/ApiService.ts +124 -124
- package/src/api/types/Api_Repairs.ts +57 -57
- package/src/api/types/Api_Tasks.ts +99 -99
- package/src/common/app-button/AppButton.vue +1 -1
- package/src/common/app-icon/AppIcon.vue +104 -104
- package/src/common/app-input/AppInput.vue +128 -128
- package/src/common/app-input-search/AppInputSearch.vue +168 -170
- package/src/common/app-layout/AppLayout.vue +61 -62
- package/src/common/app-layout/components/AppLayoutHeader.vue +119 -119
- package/src/common/app-loader/index.vue +41 -43
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-select/AppSelect.vue +154 -154
- package/src/common/app-sidebar/AppSidebar.vue +163 -163
- package/src/common/app-sidebar/components/SidebarMenu.vue +27 -27
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +134 -134
- package/src/common/app-toggle/index.vue +23 -23
- package/src/common/app-wrapper/AppWrapper.vue +25 -25
- package/src/global.d.ts +1 -1
- package/src/icons/sidebar/projects-icon.vue +31 -31
- package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
- package/src/icons/sidebar/tasks_today-icon.vue +27 -27
- package/src/index.ts +34 -35
- package/src/main.ts +15 -15
- package/src/quasar-user-options.ts +17 -17
- package/src/shared/styles/general.css +77 -77
- package/src/shims-vue.d.ts +5 -5
|
@@ -2,16 +2,6 @@ import ApiService, { ResponseApi } from '@/api/settings/ApiService';
|
|
|
2
2
|
import { Api_Tasks_Task_Dto } from '@/api/types/Api_Tasks';
|
|
3
3
|
declare class ProjectsService extends ApiService {
|
|
4
4
|
fetchProjectById(id: string): Promise<ResponseApi<Api_Tasks_Task_Dto>>;
|
|
5
|
-
createProject(params: any): Promise<ResponseApi<any>>;
|
|
6
|
-
editProject(id: string, params: any): Promise<ResponseApi<any>>;
|
|
7
|
-
fetchProjects(params: any): Promise<ResponseApi<any>>;
|
|
8
|
-
cloneProject(project: any): Promise<ResponseApi<any>>;
|
|
9
|
-
archiveProject(id: string, data: any): Promise<ResponseApi<any>>;
|
|
10
|
-
unArchiveProject(id: string, data: any): Promise<ResponseApi<any>>;
|
|
11
|
-
moveAprProject(id: string): Promise<ResponseApi<any>>;
|
|
12
|
-
restoreProject(id: string): Promise<ResponseApi<any>>;
|
|
13
|
-
importTasks(payload: any): Promise<ResponseApi<any>>;
|
|
14
|
-
fetchProjectTeamList(id: string): Promise<ResponseApi<any>>;
|
|
15
5
|
}
|
|
16
6
|
export default function useProjectsService(): ProjectsService;
|
|
17
7
|
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -13,8 +13,7 @@ import useMetricsService from '@/api/services/MetricsService';
|
|
|
13
13
|
import useProjectsService from '@/api/services/ProjectsService';
|
|
14
14
|
import useRepairsService from '@/api/services/RepairsService';
|
|
15
15
|
import useTasksService from '@/api/services/TasksService';
|
|
16
|
-
import ApiService from '@/api/settings/ApiService';
|
|
17
16
|
export { AppButton, AppInput, AppToggle, AppInputSearch, AppLayout, AppSelect, AppWrapper, AppSidebar, AppLayoutHeader, AppLoader, };
|
|
18
|
-
export {
|
|
17
|
+
export { useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService };
|
|
19
18
|
export * from '@/api/types/Api_Tasks';
|
|
20
19
|
export * from '@/api/types/Api_Repairs';
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "shared-ritm",
|
|
3
|
-
"version": "1.0.
|
|
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/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/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.12",
|
|
31
|
-
"@vueuse/core": "^10.1.2",
|
|
32
|
-
"axios": "^1.7.7",
|
|
33
|
-
"quasar": "^2.17.1",
|
|
34
|
-
"vue": "^3.5.12"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@quasar/vite-plugin": "^1.8.0",
|
|
38
|
-
"@rollup/pluginutils": "^5.1.3",
|
|
39
|
-
"@types/node": "^22.7.9",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
41
|
-
"@typescript-eslint/parser": "^4.25.0",
|
|
42
|
-
"@vitejs/plugin-vue": "^5.1.4",
|
|
43
|
-
"@vue/compiler-sfc": "^3.0.5",
|
|
44
|
-
"@vue/eslint-config-prettier": "^6.0.0",
|
|
45
|
-
"@vue/eslint-config-typescript": "^7.0.0",
|
|
46
|
-
"eslint": "^7.27.0",
|
|
47
|
-
"eslint-plugin-prettier": "^3.4.0",
|
|
48
|
-
"eslint-plugin-vue": "^7.10.0",
|
|
49
|
-
"prettier": "^2.3.0",
|
|
50
|
-
"sass": "^1.80.4",
|
|
51
|
-
"typescript": "^5.6.3",
|
|
52
|
-
"vite": "^5.4.9",
|
|
53
|
-
"vite-plugin-css-modules": "^0.0.1",
|
|
54
|
-
"vue-tsc": "^2.1.6"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "shared-ritm",
|
|
3
|
+
"version": "1.0.51",
|
|
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/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/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.12",
|
|
31
|
+
"@vueuse/core": "^10.1.2",
|
|
32
|
+
"axios": "^1.7.7",
|
|
33
|
+
"quasar": "^2.17.1",
|
|
34
|
+
"vue": "^3.5.12"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@quasar/vite-plugin": "^1.8.0",
|
|
38
|
+
"@rollup/pluginutils": "^5.1.3",
|
|
39
|
+
"@types/node": "^22.7.9",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
41
|
+
"@typescript-eslint/parser": "^4.25.0",
|
|
42
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
43
|
+
"@vue/compiler-sfc": "^3.0.5",
|
|
44
|
+
"@vue/eslint-config-prettier": "^6.0.0",
|
|
45
|
+
"@vue/eslint-config-typescript": "^7.0.0",
|
|
46
|
+
"eslint": "^7.27.0",
|
|
47
|
+
"eslint-plugin-prettier": "^3.4.0",
|
|
48
|
+
"eslint-plugin-vue": "^7.10.0",
|
|
49
|
+
"prettier": "^2.3.0",
|
|
50
|
+
"sass": "^1.80.4",
|
|
51
|
+
"typescript": "^5.6.3",
|
|
52
|
+
"vite": "^5.4.9",
|
|
53
|
+
"vite-plugin-css-modules": "^0.0.1",
|
|
54
|
+
"vue-tsc": "^2.1.6"
|
|
55
|
+
}
|
|
56
|
+
}
|