shared-ritm 1.0.49 → 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.
Files changed (40) hide show
  1. package/README.md +93 -0
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +1105 -1136
  4. package/dist/shared-ritm.umd.js +7 -7
  5. package/dist/types/api/services/ProjectsService.d.ts +0 -10
  6. package/dist/types/index.d.ts +1 -2
  7. package/package.json +56 -56
  8. package/src/App.vue +2404 -2404
  9. package/src/api/services/AuthService.ts +37 -37
  10. package/src/api/services/GanttService.ts +17 -17
  11. package/src/api/services/MetricsService.ts +74 -74
  12. package/src/api/services/ProjectsService.ts +15 -56
  13. package/src/api/services/RepairsService.ts +82 -82
  14. package/src/api/services/TasksService.ts +15 -15
  15. package/src/api/settings/ApiService.ts +124 -124
  16. package/src/api/types/Api_Repairs.ts +57 -57
  17. package/src/api/types/Api_Tasks.ts +99 -99
  18. package/src/common/app-button/AppButton.vue +1 -1
  19. package/src/common/app-icon/AppIcon.vue +104 -104
  20. package/src/common/app-input/AppInput.vue +128 -128
  21. package/src/common/app-input-search/AppInputSearch.vue +168 -170
  22. package/src/common/app-layout/AppLayout.vue +61 -62
  23. package/src/common/app-layout/components/AppLayoutHeader.vue +119 -119
  24. package/src/common/app-loader/index.vue +41 -43
  25. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  26. package/src/common/app-select/AppSelect.vue +154 -154
  27. package/src/common/app-sidebar/AppSidebar.vue +163 -163
  28. package/src/common/app-sidebar/components/SidebarMenu.vue +27 -27
  29. package/src/common/app-sidebar/components/SidebarMenuItem.vue +134 -134
  30. package/src/common/app-toggle/index.vue +23 -23
  31. package/src/common/app-wrapper/AppWrapper.vue +25 -25
  32. package/src/global.d.ts +1 -1
  33. package/src/icons/sidebar/projects-icon.vue +31 -31
  34. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  35. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  36. package/src/index.ts +34 -35
  37. package/src/main.ts +15 -15
  38. package/src/quasar-user-options.ts +17 -17
  39. package/src/shared/styles/general.css +77 -77
  40. package/src/shims-vue.d.ts +5 -5
package/src/index.ts CHANGED
@@ -1,35 +1,34 @@
1
- import AppButton from '@/common/app-button/AppButton.vue'
2
- import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
3
- import AppInput from '@/common/app-input/AppInput.vue'
4
- import AppToggle from '@/common/app-toggle/index.vue'
5
- import AppLayout from '@/common/app-layout/AppLayout.vue'
6
- import AppSelect from '@/common/app-select/AppSelect.vue'
7
- import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
8
- import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
9
- import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
10
- import AppLoader from '@/common/app-loader/index.vue'
11
-
12
- import useGanttService from '@/api/services/GanttService'
13
- import useMetricsService from '@/api/services/MetricsService'
14
- import useProjectsService from '@/api/services/ProjectsService'
15
- import useRepairsService from '@/api/services/RepairsService'
16
- import useTasksService from '@/api/services/TasksService'
17
- import ApiService from '@/api/settings/ApiService'
18
-
19
- export {
20
- AppButton,
21
- AppInput,
22
- AppToggle,
23
- AppInputSearch,
24
- AppLayout,
25
- AppSelect,
26
- AppWrapper,
27
- AppSidebar,
28
- AppLayoutHeader,
29
- AppLoader,
30
- }
31
-
32
- export { ApiService, useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService }
33
-
34
- export * from '@/api/types/Api_Tasks'
35
- export * from '@/api/types/Api_Repairs'
1
+ import AppButton from '@/common/app-button/AppButton.vue'
2
+ import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
3
+ import AppInput from '@/common/app-input/AppInput.vue'
4
+ import AppToggle from '@/common/app-toggle/index.vue'
5
+ import AppLayout from '@/common/app-layout/AppLayout.vue'
6
+ import AppSelect from '@/common/app-select/AppSelect.vue'
7
+ import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
8
+ import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
9
+ import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
10
+ import AppLoader from '@/common/app-loader/index.vue'
11
+
12
+ import useGanttService from '@/api/services/GanttService'
13
+ import useMetricsService from '@/api/services/MetricsService'
14
+ import useProjectsService from '@/api/services/ProjectsService'
15
+ import useRepairsService from '@/api/services/RepairsService'
16
+ import useTasksService from '@/api/services/TasksService'
17
+
18
+ export {
19
+ AppButton,
20
+ AppInput,
21
+ AppToggle,
22
+ AppInputSearch,
23
+ AppLayout,
24
+ AppSelect,
25
+ AppWrapper,
26
+ AppSidebar,
27
+ AppLayoutHeader,
28
+ AppLoader,
29
+ }
30
+
31
+ export { useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService }
32
+
33
+ export * from '@/api/types/Api_Tasks'
34
+ export * from '@/api/types/Api_Repairs'
package/src/main.ts CHANGED
@@ -1,15 +1,15 @@
1
- import { createApp } from 'vue'
2
- import { Quasar } from 'quasar'
3
-
4
- import '@quasar/extras/material-icons/material-icons.css'
5
- import 'quasar/src/css/index.sass'
6
-
7
- import '@/shared/styles/general.css'
8
-
9
- import App from './App.vue'
10
-
11
- const app = createApp(App)
12
-
13
- //@ts-ignore
14
- app.use(Quasar, { plugins: [] })
15
- app.mount('#app')
1
+ import { createApp } from 'vue'
2
+ import { Quasar } from 'quasar'
3
+
4
+ import '@quasar/extras/material-icons/material-icons.css'
5
+ import 'quasar/src/css/index.sass'
6
+
7
+ import '@/shared/styles/general.css'
8
+
9
+ import App from './App.vue'
10
+
11
+ const app = createApp(App)
12
+
13
+ //@ts-ignore
14
+ app.use(Quasar, { plugins: [] })
15
+ app.mount('#app')
@@ -1,17 +1,17 @@
1
- import { Quasar, Notify, Loading, Dialog } from 'quasar'
2
-
3
- import 'quasar/src/css/index.sass'
4
- import '@quasar/extras/roboto-font/roboto-font.css'
5
- import '@quasar/extras/material-icons/material-icons.css'
6
- import '@quasar/extras/material-icons-outlined/material-icons-outlined.css'
7
- import '@quasar/extras/mdi-v7/mdi-v7.css'
8
-
9
- const quasarUserOptions = {
10
- plugins: {
11
- Notify,
12
- Loading,
13
- Dialog,
14
- },
15
- }
16
-
17
- export { Quasar, quasarUserOptions }
1
+ import { Quasar, Notify, Loading, Dialog } from 'quasar'
2
+
3
+ import 'quasar/src/css/index.sass'
4
+ import '@quasar/extras/roboto-font/roboto-font.css'
5
+ import '@quasar/extras/material-icons/material-icons.css'
6
+ import '@quasar/extras/material-icons-outlined/material-icons-outlined.css'
7
+ import '@quasar/extras/mdi-v7/mdi-v7.css'
8
+
9
+ const quasarUserOptions = {
10
+ plugins: {
11
+ Notify,
12
+ Loading,
13
+ Dialog,
14
+ },
15
+ }
16
+
17
+ export { Quasar, quasarUserOptions }
@@ -1,77 +1,77 @@
1
- :root {
2
- --main-header-height: 73px;
3
- --main-footer-height: 66px;
4
- --sidebar-width-max: 250px;
5
- --sidebar-width-min: 66px;
6
- }
7
-
8
- /*border-radius*/
9
- :root {
10
- --border-radius-xxs: 4px;
11
- --border-radius-xs: 8px;
12
- --border-radius-s: 12px;
13
- --border-radius-m: 16px;
14
- }
15
-
16
- /*color*/
17
- :root {
18
- --g-blue: #3f8cff;
19
- --g-blue-light: #e4efff;
20
- --g-blue-dark: #1c75ff;
21
- --g-green: #00d097;
22
- --g-green-light: #e0f9f2;
23
- --g-green-dark: #b8f8e7;
24
- --g-red: #ff192d;
25
- --g-red-light: #fdecee;
26
- --g-red-dark: #ffdcde;
27
- --g-grey-100: #d8e0f0;
28
-
29
- --g-font-color: #0a1629;
30
- --g-font-grey-color: #b9c0c7;
31
- --g-font-secondary-color: #7d8592;
32
-
33
- --g-grey-background: #ced5e0;
34
- --g-grey-hover-background: #9fa5af;
35
- --g-secondary-background: #f4f9fd;
36
- --g-thirty-background: #c8cbcf;
37
-
38
- --g-fire-color-1: #fee7e7;
39
- --g-fire-color-2: #fed4d5;
40
- --g-fire-color-3: #fcc0c0;
41
- --g-fire-color-4: #f9a2a2;
42
- --g-fire-color-5: #f97d7e;
43
- --g-fire-color-6: #f65160;
44
- --g-fire-color-7: #ff192d;
45
- --g-fire-color-8: #ab0514;
46
- --g-fire-color-9: #6e000a;
47
- }
48
-
49
- * {
50
- margin: 0;
51
- padding: 0;
52
- }
53
-
54
- button:active,
55
- button:focus {
56
- outline: none !important;
57
- }
58
-
59
- html {
60
- font-family: 'NunitoSansFont', sans-serif !important;
61
- }
62
-
63
- .ant-dropdown {
64
- z-index: 10000;
65
- .content {
66
- z-index: 10000;
67
- }
68
- }
69
-
70
- @font-face {
71
- font-family: 'NunitoSansFont';
72
- src: local('NunitoSansFont'), url(../fonts/NunitoSansFont.ttf) format('truetype');
73
- }
74
- @font-face {
75
- font-family: 'Montserrat';
76
- src: local('Montserrat'), url(../fonts/Montserrat.ttf) format('truetype');
77
- }
1
+ :root {
2
+ --main-header-height: 73px;
3
+ --main-footer-height: 66px;
4
+ --sidebar-width-max: 250px;
5
+ --sidebar-width-min: 66px;
6
+ }
7
+
8
+ /*border-radius*/
9
+ :root {
10
+ --border-radius-xxs: 4px;
11
+ --border-radius-xs: 8px;
12
+ --border-radius-s: 12px;
13
+ --border-radius-m: 16px;
14
+ }
15
+
16
+ /*color*/
17
+ :root {
18
+ --g-blue: #3f8cff;
19
+ --g-blue-light: #e4efff;
20
+ --g-blue-dark: #1c75ff;
21
+ --g-green: #00d097;
22
+ --g-green-light: #e0f9f2;
23
+ --g-green-dark: #b8f8e7;
24
+ --g-red: #ff192d;
25
+ --g-red-light: #fdecee;
26
+ --g-red-dark: #ffdcde;
27
+ --g-grey-100: #d8e0f0;
28
+
29
+ --g-font-color: #0a1629;
30
+ --g-font-grey-color: #b9c0c7;
31
+ --g-font-secondary-color: #7d8592;
32
+
33
+ --g-grey-background: #ced5e0;
34
+ --g-grey-hover-background: #9fa5af;
35
+ --g-secondary-background: #f4f9fd;
36
+ --g-thirty-background: #c8cbcf;
37
+
38
+ --g-fire-color-1: #fee7e7;
39
+ --g-fire-color-2: #fed4d5;
40
+ --g-fire-color-3: #fcc0c0;
41
+ --g-fire-color-4: #f9a2a2;
42
+ --g-fire-color-5: #f97d7e;
43
+ --g-fire-color-6: #f65160;
44
+ --g-fire-color-7: #ff192d;
45
+ --g-fire-color-8: #ab0514;
46
+ --g-fire-color-9: #6e000a;
47
+ }
48
+
49
+ * {
50
+ margin: 0;
51
+ padding: 0;
52
+ }
53
+
54
+ button:active,
55
+ button:focus {
56
+ outline: none !important;
57
+ }
58
+
59
+ html {
60
+ font-family: 'NunitoSansFont', sans-serif !important;
61
+ }
62
+
63
+ .ant-dropdown {
64
+ z-index: 10000;
65
+ .content {
66
+ z-index: 10000;
67
+ }
68
+ }
69
+
70
+ @font-face {
71
+ font-family: 'NunitoSansFont';
72
+ src: local('NunitoSansFont'), url(../fonts/NunitoSansFont.ttf) format('truetype');
73
+ }
74
+ @font-face {
75
+ font-family: 'Montserrat';
76
+ src: local('Montserrat'), url(../fonts/Montserrat.ttf) format('truetype');
77
+ }
@@ -1,5 +1,5 @@
1
- declare module '*.vue' {
2
- import { DefineComponent } from 'vue'
3
- const component: DefineComponent<{}, {}, any>
4
- export default component
5
- }
1
+ declare module '*.vue' {
2
+ import { DefineComponent } from 'vue'
3
+ const component: DefineComponent<{}, {}, any>
4
+ export default component
5
+ }