shared-ritm 1.2.37 → 1.2.39

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.
@@ -0,0 +1,30 @@
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
5
+ <path
6
+ d="M11.9328 16.1547C11.9328 16.663 11.5995 17.3297 11.1745 17.588L9.99948 18.3463C8.90781 19.0213 7.39114 18.263 7.39114 16.913V12.4547C7.39114 11.863 7.05781 11.1047 6.71615 10.688L3.51612 7.32131C3.09112 6.89631 2.75781 6.14632 2.75781 5.63799V3.70465C2.75781 2.69632 3.51616 1.93799 4.44116 1.93799H15.5578C16.4828 1.93799 17.2411 2.69631 17.2411 3.62131V5.47131C17.2411 6.14631 16.8161 6.98799 16.3995 7.40465"
7
+ stroke="#A4B4CF"
8
+ stroke-width="1.5"
9
+ stroke-miterlimit="10"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ <path
14
+ d="M13.3923 14.0301C14.865 14.0301 16.0589 12.8362 16.0589 11.3635C16.0589 9.89069 14.865 8.69678 13.3923 8.69678C11.9195 8.69678 10.7256 9.89069 10.7256 11.3635C10.7256 12.8362 11.9195 14.0301 13.3923 14.0301Z"
15
+ stroke="#A4B4CF"
16
+ stroke-width="1.5"
17
+ stroke-linecap="round"
18
+ stroke-linejoin="round"
19
+ />
20
+ <path
21
+ d="M16.5589 14.5301L15.7256 13.6968"
22
+ stroke="#A4B4CF"
23
+ stroke-width="1.5"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ </svg>
28
+ </template>
29
+
30
+ <style scoped lang="scss"></style>
package/src/index.ts CHANGED
@@ -15,6 +15,10 @@ import AppToggle from '@/common/app-toggle/AppToggle.vue'
15
15
  import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
16
16
  import AppConfirmDialog from '@/common/app-dialogs/AppConfirmDialog.vue'
17
17
  import AppDropdown from '@/common/app-dropdown/AppDropdown.vue'
18
+ import AppTablePagination from '@/common/app-table/components/TablePagination.vue'
19
+ import AppTableSearch from '@/common/app-table/components/TableSearch.vue'
20
+ import AppTableModal from '@/common/app-table/components/TableModal.vue'
21
+ import AppTable from '@/common/app-table/AppTable.vue'
18
22
 
19
23
  import useGanttService from '@/api/services/GanttService'
20
24
  import useMetricsService from '@/api/services/MetricsService'
@@ -43,6 +47,10 @@ export {
43
47
  AppWrapper,
44
48
  AppConfirmDialog,
45
49
  AppDropdown,
50
+ AppTablePagination,
51
+ AppTableSearch,
52
+ AppTableModal,
53
+ AppTable,
46
54
  }
47
55
 
48
56
  export {
@@ -56,6 +64,8 @@ export {
56
64
  useFileService,
57
65
  useControlsService,
58
66
  }
67
+ export { useTableModel } from './common/app-table/controllers/useTableModel'
68
+ export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
59
69
 
60
70
  export type { NotificationType } from './utils/notification'
61
71
  export { notificationSettings } from './utils/notification'
@@ -63,4 +73,5 @@ export { notificationSettings } from './utils/notification'
63
73
  export * from './api/types/Api_Tasks'
64
74
  export * from './api/types/Api_Repairs'
65
75
  export * from './api/types/Api_Projects'
76
+ export * from './api/types/Api_Controls'
66
77
  // export * from '@/api/types/Api_Metrics'