shared-ritm 1.2.18 → 1.2.20
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 +3834 -3806
- package/dist/shared-ritm.umd.js +6 -6
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/App.vue +2461 -2445
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/MetricsService.ts +101 -101
- package/src/api/settings/ApiService.ts +126 -126
- package/src/api/types/Api_Files.ts +1 -1
- package/src/api/types/Api_Projects.ts +55 -55
- package/src/api/types/Api_Repairs.ts +93 -93
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +81 -81
- package/src/common/app-dialogs/AppConfirmDialog.vue +100 -100
- package/src/common/app-dropdown/AppDropdown.vue +31 -31
- package/src/common/app-input-search/AppInputSearch.vue +170 -170
- package/src/common/app-layout/AppLayout.vue +32 -9
- package/src/common/app-layout/components/AppLayoutHeader.vue +108 -123
- package/src/common/app-layout/components/AppLayoutPage.vue +16 -0
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +146 -146
- package/src/common/app-toggle/AppToggle.vue +23 -23
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- 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 +64 -62
- package/src/shared/styles/general.css +96 -96
- package/src/utils/confirm.ts +12 -12
- package/src/utils/notification.ts +9 -9
package/dist/types/index.d.ts
CHANGED
|
@@ -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';
|