shared-ritm 1.2.18 → 1.2.19

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 (35) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +3834 -3806
  4. package/dist/shared-ritm.umd.js +6 -6
  5. package/dist/types/index.d.ts +2 -1
  6. package/package.json +1 -1
  7. package/src/App.vue +2461 -2445
  8. package/src/api/services/GanttService.ts +17 -17
  9. package/src/api/services/MetricsService.ts +101 -101
  10. package/src/api/settings/ApiService.ts +126 -126
  11. package/src/api/types/Api_Files.ts +1 -1
  12. package/src/api/types/Api_Projects.ts +55 -55
  13. package/src/api/types/Api_Repairs.ts +93 -93
  14. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  15. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  16. package/src/common/app-dialogs/AppConfirmDialog.vue +100 -100
  17. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  18. package/src/common/app-input-search/AppInputSearch.vue +170 -170
  19. package/src/common/app-layout/AppLayout.vue +32 -9
  20. package/src/common/app-layout/components/AppLayoutHeader.vue +108 -123
  21. package/src/common/app-layout/components/AppLayoutPage.vue +15 -0
  22. package/src/common/app-select/AppSelect.vue +157 -157
  23. package/src/common/app-sidebar/components/SidebarMenuItem.vue +146 -146
  24. package/src/common/app-toggle/AppToggle.vue +23 -23
  25. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  26. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  27. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  28. package/src/icons/task/attention-icon.vue +13 -13
  29. package/src/icons/task/clock-icon.vue +10 -10
  30. package/src/icons/task/delete-icon.vue +10 -10
  31. package/src/icons/task/fire-icon.vue +16 -16
  32. package/src/index.ts +64 -62
  33. package/src/shared/styles/general.css +96 -96
  34. package/src/utils/confirm.ts +12 -12
  35. package/src/utils/notification.ts +9 -9
@@ -6,6 +6,7 @@ import AppInput from '@/common/app-input/AppInput.vue';
6
6
  import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue';
7
7
  import AppLayout from '@/common/app-layout/AppLayout.vue';
8
8
  import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue';
9
+ import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue';
9
10
  import AppLoader from '@/common/app-loader/index.vue';
10
11
  import AppSelect from '@/common/app-select/AppSelect.vue';
11
12
  import AppSheet from '@/common/app-sheet/AppSheet.vue';
@@ -22,7 +23,7 @@ import useTasksService from '@/api/services/TasksService';
22
23
  import useAuthService from '@/api/services/AuthService';
23
24
  import useFileService from '@/api/services/FileService';
24
25
  import ApiService from '@/api/settings/ApiService';
25
- export { AppButton, AppCheckbox, AppDatePicker, AppInput, AppInputSearch, AppLayout, AppLayoutHeader, AppLoader, AppSelect, AppSheet, AppSidebar, AppToggle, AppWrapper, AppConfirmDialog, AppDropdown, };
26
+ export { AppButton, AppCheckbox, AppDatePicker, AppInput, AppInputSearch, AppLayout, AppLayoutHeader, AppLayoutPage, AppLoader, AppSelect, AppSheet, AppSidebar, AppToggle, AppWrapper, AppConfirmDialog, AppDropdown, };
26
27
  export { ApiService, useAuthService, useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService, useFileService, };
27
28
  export type { NotificationType } from './utils/notification';
28
29
  export { notificationSettings } from './utils/notification';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.2.18",
3
+ "version": "1.2.19",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",