shared-ritm 1.2.76 → 1.2.78
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/dist/shared-ritm.es.js +898 -898
- package/dist/shared-ritm.umd.js +113 -113
- package/dist/types/api/services/TasksService.d.ts +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/api/services/TasksService.ts +2 -2
- package/src/index.ts +104 -103
package/dist/types/index.d.ts
CHANGED
|
@@ -28,7 +28,6 @@ import useGanttService from '@/api/services/GanttService';
|
|
|
28
28
|
import useMetricsService from '@/api/services/MetricsService';
|
|
29
29
|
import useProjectsService from '@/api/services/ProjectsService';
|
|
30
30
|
import useRepairsService from '@/api/services/RepairsService';
|
|
31
|
-
import useTasksService from '@/api/services/TasksService';
|
|
32
31
|
import useAuthService from '@/api/services/AuthService';
|
|
33
32
|
import useFileService from '@/api/services/FileService';
|
|
34
33
|
import useVideoService from '@/api/services/VideoService';
|
|
@@ -38,7 +37,8 @@ import useInstrumentsService from '@/api/services/InstrumentsService';
|
|
|
38
37
|
import useControlsService from '@/api/services/ControlsService';
|
|
39
38
|
import useSearchService from '@/api/services/SearchService';
|
|
40
39
|
export { AppButton, AppCheckbox, AppDatepicker, AppDatePicker, AppInput, AppInputNew, AppInputSearch, AppLayout, AppLayoutHeader, AppLayoutPage, AppLoader, AppSelect, AppSheet, AppSidebar, AppToggle, AppWrapper, AppConfirmDialog, AppDropdown, AppTablePagination, AppTableSearch, AppTableModal, AppTable, AppTableLayout, AppModalSelect, };
|
|
41
|
-
export { ApiService, useAuthService, useGanttService, useMetricsService, useProjectsService, useRepairsService,
|
|
40
|
+
export { ApiService, useAuthService, useGanttService, useMetricsService, useProjectsService, useRepairsService, useFileService, useControlsService, useVideoService, useUserService, usePhotoService, useInstrumentsService, useSearchService, };
|
|
41
|
+
export { useTasksService } from '@/api/services/TasksService';
|
|
42
42
|
export { useBaseTable } from './common/app-table/controllers/useBaseTable';
|
|
43
43
|
export { useTableModel } from './common/app-table/controllers/useTableModel';
|
|
44
44
|
export { useColumnSelector } from './common/app-table/controllers/useColumnSelector';
|
package/package.json
CHANGED
|
@@ -130,9 +130,9 @@ class TasksService extends ApiService {
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
let api: TasksService
|
|
133
|
+
let api: TasksService
|
|
134
134
|
|
|
135
|
-
export
|
|
135
|
+
export function useTasksService() {
|
|
136
136
|
if (!api) api = new TasksService()
|
|
137
137
|
return api
|
|
138
138
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,103 +1,104 @@
|
|
|
1
|
-
import '@/shared/styles/general.css'
|
|
2
|
-
import AppButton from '@/common/app-button/AppButton.vue'
|
|
3
|
-
import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue'
|
|
4
|
-
import AppDatePicker from '@/common/app-date-picker/AppDatePicker.vue'
|
|
5
|
-
import AppDatepicker from '@/common/app-datepicker/AppDatepicker.vue'
|
|
6
|
-
import AppInput from '@/common/app-input/AppInput.vue'
|
|
7
|
-
import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
|
|
8
|
-
import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
|
|
9
|
-
import AppLayout from '@/common/app-layout/AppLayout.vue'
|
|
10
|
-
import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
|
|
11
|
-
import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue'
|
|
12
|
-
import AppLoader from '@/common/app-loader/index.vue'
|
|
13
|
-
import AppSelect from '@/common/app-select/AppSelect.vue'
|
|
14
|
-
import AppSheet from '@/common/app-sheet/AppSheet.vue'
|
|
15
|
-
import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
|
|
16
|
-
import AppToggle from '@/common/app-toggle/AppToggle.vue'
|
|
17
|
-
import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
|
|
18
|
-
import AppConfirmDialog from '@/common/app-dialogs/AppConfirmDialog.vue'
|
|
19
|
-
import AppDropdown from '@/common/app-dropdown/AppDropdown.vue'
|
|
20
|
-
import AppTablePagination from '@/common/app-table/components/TablePagination.vue'
|
|
21
|
-
import AppTableSearch from '@/common/app-table/components/TableSearch.vue'
|
|
22
|
-
import AppTableModal from '@/common/app-table/components/TableModal.vue'
|
|
23
|
-
import AppTable from '@/common/app-table/AppTable.vue'
|
|
24
|
-
import AppTableLayout from '@/common/app-table/AppTableLayout.vue'
|
|
25
|
-
import AppModalSelect from '@/common/app-table/components/ModalSelect.vue'
|
|
26
|
-
|
|
27
|
-
import ApiService from '@/api/settings/ApiService'
|
|
28
|
-
import useGanttService from '@/api/services/GanttService'
|
|
29
|
-
import useMetricsService from '@/api/services/MetricsService'
|
|
30
|
-
import useProjectsService from '@/api/services/ProjectsService'
|
|
31
|
-
import useRepairsService from '@/api/services/RepairsService'
|
|
32
|
-
|
|
33
|
-
import useAuthService from '@/api/services/AuthService'
|
|
34
|
-
import useFileService from '@/api/services/FileService'
|
|
35
|
-
import useVideoService from '@/api/services/VideoService'
|
|
36
|
-
import useUserService from '@/api/services/UserService'
|
|
37
|
-
import usePhotoService from '@/api/services/PhotoService'
|
|
38
|
-
import useInstrumentsService from '@/api/services/InstrumentsService'
|
|
39
|
-
import useControlsService from '@/api/services/ControlsService'
|
|
40
|
-
import useSearchService from '@/api/services/SearchService'
|
|
41
|
-
|
|
42
|
-
export {
|
|
43
|
-
AppButton,
|
|
44
|
-
AppCheckbox,
|
|
45
|
-
AppDatepicker,
|
|
46
|
-
AppDatePicker,
|
|
47
|
-
AppInput,
|
|
48
|
-
AppInputNew,
|
|
49
|
-
AppInputSearch,
|
|
50
|
-
AppLayout,
|
|
51
|
-
AppLayoutHeader,
|
|
52
|
-
AppLayoutPage,
|
|
53
|
-
AppLoader,
|
|
54
|
-
AppSelect,
|
|
55
|
-
AppSheet,
|
|
56
|
-
AppSidebar,
|
|
57
|
-
AppToggle,
|
|
58
|
-
AppWrapper,
|
|
59
|
-
AppConfirmDialog,
|
|
60
|
-
AppDropdown,
|
|
61
|
-
AppTablePagination,
|
|
62
|
-
AppTableSearch,
|
|
63
|
-
AppTableModal,
|
|
64
|
-
AppTable,
|
|
65
|
-
AppTableLayout,
|
|
66
|
-
AppModalSelect,
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export {
|
|
70
|
-
ApiService,
|
|
71
|
-
useAuthService,
|
|
72
|
-
useGanttService,
|
|
73
|
-
useMetricsService,
|
|
74
|
-
useProjectsService,
|
|
75
|
-
useRepairsService,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
export {
|
|
86
|
-
export {
|
|
87
|
-
export {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
export {
|
|
93
|
-
export
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
export * from './api/types/
|
|
97
|
-
export * from './api/types/
|
|
98
|
-
export * from './api/types/
|
|
99
|
-
export * from './api/types/
|
|
100
|
-
export * from './api/types/
|
|
101
|
-
export * from './api/types/
|
|
102
|
-
export * from './api/types/
|
|
103
|
-
|
|
1
|
+
import '@/shared/styles/general.css'
|
|
2
|
+
import AppButton from '@/common/app-button/AppButton.vue'
|
|
3
|
+
import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue'
|
|
4
|
+
import AppDatePicker from '@/common/app-date-picker/AppDatePicker.vue'
|
|
5
|
+
import AppDatepicker from '@/common/app-datepicker/AppDatepicker.vue'
|
|
6
|
+
import AppInput from '@/common/app-input/AppInput.vue'
|
|
7
|
+
import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
|
|
8
|
+
import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
|
|
9
|
+
import AppLayout from '@/common/app-layout/AppLayout.vue'
|
|
10
|
+
import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
|
|
11
|
+
import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue'
|
|
12
|
+
import AppLoader from '@/common/app-loader/index.vue'
|
|
13
|
+
import AppSelect from '@/common/app-select/AppSelect.vue'
|
|
14
|
+
import AppSheet from '@/common/app-sheet/AppSheet.vue'
|
|
15
|
+
import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
|
|
16
|
+
import AppToggle from '@/common/app-toggle/AppToggle.vue'
|
|
17
|
+
import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
|
|
18
|
+
import AppConfirmDialog from '@/common/app-dialogs/AppConfirmDialog.vue'
|
|
19
|
+
import AppDropdown from '@/common/app-dropdown/AppDropdown.vue'
|
|
20
|
+
import AppTablePagination from '@/common/app-table/components/TablePagination.vue'
|
|
21
|
+
import AppTableSearch from '@/common/app-table/components/TableSearch.vue'
|
|
22
|
+
import AppTableModal from '@/common/app-table/components/TableModal.vue'
|
|
23
|
+
import AppTable from '@/common/app-table/AppTable.vue'
|
|
24
|
+
import AppTableLayout from '@/common/app-table/AppTableLayout.vue'
|
|
25
|
+
import AppModalSelect from '@/common/app-table/components/ModalSelect.vue'
|
|
26
|
+
|
|
27
|
+
import ApiService from '@/api/settings/ApiService'
|
|
28
|
+
import useGanttService from '@/api/services/GanttService'
|
|
29
|
+
import useMetricsService from '@/api/services/MetricsService'
|
|
30
|
+
import useProjectsService from '@/api/services/ProjectsService'
|
|
31
|
+
import useRepairsService from '@/api/services/RepairsService'
|
|
32
|
+
|
|
33
|
+
import useAuthService from '@/api/services/AuthService'
|
|
34
|
+
import useFileService from '@/api/services/FileService'
|
|
35
|
+
import useVideoService from '@/api/services/VideoService'
|
|
36
|
+
import useUserService from '@/api/services/UserService'
|
|
37
|
+
import usePhotoService from '@/api/services/PhotoService'
|
|
38
|
+
import useInstrumentsService from '@/api/services/InstrumentsService'
|
|
39
|
+
import useControlsService from '@/api/services/ControlsService'
|
|
40
|
+
import useSearchService from '@/api/services/SearchService'
|
|
41
|
+
|
|
42
|
+
export {
|
|
43
|
+
AppButton,
|
|
44
|
+
AppCheckbox,
|
|
45
|
+
AppDatepicker,
|
|
46
|
+
AppDatePicker,
|
|
47
|
+
AppInput,
|
|
48
|
+
AppInputNew,
|
|
49
|
+
AppInputSearch,
|
|
50
|
+
AppLayout,
|
|
51
|
+
AppLayoutHeader,
|
|
52
|
+
AppLayoutPage,
|
|
53
|
+
AppLoader,
|
|
54
|
+
AppSelect,
|
|
55
|
+
AppSheet,
|
|
56
|
+
AppSidebar,
|
|
57
|
+
AppToggle,
|
|
58
|
+
AppWrapper,
|
|
59
|
+
AppConfirmDialog,
|
|
60
|
+
AppDropdown,
|
|
61
|
+
AppTablePagination,
|
|
62
|
+
AppTableSearch,
|
|
63
|
+
AppTableModal,
|
|
64
|
+
AppTable,
|
|
65
|
+
AppTableLayout,
|
|
66
|
+
AppModalSelect,
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export {
|
|
70
|
+
ApiService,
|
|
71
|
+
useAuthService,
|
|
72
|
+
useGanttService,
|
|
73
|
+
useMetricsService,
|
|
74
|
+
useProjectsService,
|
|
75
|
+
useRepairsService,
|
|
76
|
+
useFileService,
|
|
77
|
+
useControlsService,
|
|
78
|
+
useVideoService,
|
|
79
|
+
useUserService,
|
|
80
|
+
usePhotoService,
|
|
81
|
+
useInstrumentsService,
|
|
82
|
+
useSearchService,
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export { useTasksService } from '@/api/services/TasksService'
|
|
86
|
+
export { useBaseTable } from './common/app-table/controllers/useBaseTable'
|
|
87
|
+
export { useTableModel } from './common/app-table/controllers/useTableModel'
|
|
88
|
+
export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
|
|
89
|
+
|
|
90
|
+
export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
|
|
91
|
+
|
|
92
|
+
export type { NotificationType } from './utils/notification'
|
|
93
|
+
export { notificationSettings } from './utils/notification'
|
|
94
|
+
export * from './utils/helpers'
|
|
95
|
+
|
|
96
|
+
export * from './api/types/Api_Service'
|
|
97
|
+
export * from './api/types/Api_Tasks'
|
|
98
|
+
export * from './api/types/Api_Repairs'
|
|
99
|
+
export * from './api/types/Api_Projects'
|
|
100
|
+
export * from './api/types/Api_Controls'
|
|
101
|
+
export * from './api/types/Api_Instruments'
|
|
102
|
+
export * from './api/types/Api_Search'
|
|
103
|
+
export * from './api/types/Api_User'
|
|
104
|
+
// export * from '@/api/types/Api_Metrics'
|