shared-ritm 1.3.35 → 1.3.37

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 (56) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +8789 -8712
  3. package/dist/shared-ritm.umd.js +324 -324
  4. package/dist/types/api/services/PhotoService.d.ts +38 -51
  5. package/dist/types/api/services/RepairsService.d.ts +1 -1
  6. package/dist/types/api/services/VideoService.d.ts +2 -1
  7. package/dist/types/api/settings/ApiService.d.ts +1 -1
  8. package/dist/types/api/types/Api_Video.d.ts +5 -4
  9. package/package.json +64 -64
  10. package/src/App.vue +2461 -2461
  11. package/src/api/services/BrigadesService.ts +32 -32
  12. package/src/api/services/ControlsService.ts +96 -96
  13. package/src/api/services/EquipmentService.ts +29 -29
  14. package/src/api/services/InstrumentsService.ts +68 -68
  15. package/src/api/services/MetricsService.ts +123 -123
  16. package/src/api/services/ModulesService.ts +27 -27
  17. package/src/api/services/ProjectsService.ts +83 -83
  18. package/src/api/services/RepairsService.ts +111 -111
  19. package/src/api/services/ScheduleService.ts +69 -69
  20. package/src/api/services/SearchService.ts +22 -22
  21. package/src/api/services/UserService.ts +123 -123
  22. package/src/api/services/VideoService.ts +118 -113
  23. package/src/api/settings/ApiService.ts +124 -124
  24. package/src/api/types/Api_Auth.ts +105 -105
  25. package/src/api/types/Api_Brigades.ts +36 -36
  26. package/src/api/types/Api_Controls.ts +111 -111
  27. package/src/api/types/Api_Equipment.ts +3 -3
  28. package/src/api/types/Api_Instruments.ts +156 -156
  29. package/src/api/types/Api_Metrics.ts +5 -5
  30. package/src/api/types/Api_Modules.ts +21 -21
  31. package/src/api/types/Api_Projects.ts +62 -62
  32. package/src/api/types/Api_Repairs.ts +186 -186
  33. package/src/api/types/Api_Schedule.ts +64 -64
  34. package/src/api/types/Api_Search.ts +80 -80
  35. package/src/api/types/Api_Tasks.ts +376 -376
  36. package/src/api/types/Api_User.ts +146 -146
  37. package/src/api/types/Api_Video.ts +244 -241
  38. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  39. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  40. package/src/common/app-input-new/AppInputNew.vue +179 -179
  41. package/src/common/app-layout/AppLayout.vue +84 -84
  42. package/src/common/app-modal/index.vue +96 -96
  43. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  44. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  45. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  46. package/src/common/app-table/AppTable.vue +313 -313
  47. package/src/common/app-table/AppTableLayout.vue +137 -137
  48. package/src/common/app-table/components/ModalSelect.vue +298 -298
  49. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  50. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  51. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  52. package/src/index.ts +131 -131
  53. package/src/styles/variables.sass +12 -12
  54. package/src/utils/files.ts +19 -19
  55. package/dist/types/api/services/ComentsServise.d.ts +0 -10
  56. package/dist/types/api/types/Api_Users.d.ts +0 -43
@@ -1,146 +1,146 @@
1
- import { Api_Tasks_Status_Dto } from '@/api/types/Api_Tasks'
2
- import { Api_Instrument } from '@/api/types/Api_Instruments'
3
- import { Api_Search_User_Passes, Api_Search_User_Positions } from '@/api/types/Api_Search'
4
-
5
- export type Api_User_Team = {
6
- id: string
7
- name: string
8
- display_name: string
9
- description: string
10
- created_at: string
11
- updated_at: string
12
- pivot?: {
13
- team_id: string
14
- user_id: string
15
- }
16
- roles?: Api_User_Role[]
17
- }
18
-
19
- export type Api_User_Team_Search = {
20
- id: string
21
- name: string
22
- display_name: string
23
- }
24
-
25
- export type Api_User_Photo = {
26
- id: string
27
- name: string
28
- path: string
29
- type: string
30
- }
31
-
32
- export type Api_User_Archive_History_Item = {
33
- user_id: string
34
- responsible_id: string
35
- archived_at: string
36
- reason: string | null
37
- restored_at: string | null
38
- }
39
-
40
- export type Api_User_Task = {
41
- id: string
42
- name: string
43
- project_id: string
44
- status: Api_Tasks_Status_Dto
45
- }
46
-
47
- export type Api_User = {
48
- id: string
49
- RFID: string
50
- avatar: unknown | null
51
- avatar_id: string | null
52
- change_password: string
53
- created_at: string
54
- updated_at: string
55
- deleted_at: string | null
56
- dismissal_at: string | null
57
- email_verified_at: string
58
- divisions: string
59
- email: string
60
- face_recognition_id: string | null
61
- first_name: string
62
- full_name: string
63
- last_name: string
64
- patronymic: string
65
- personnel_number: number
66
- phone: string
67
- profession: string
68
- teams: Api_User_Team[]
69
- photos: Api_User_Photo[]
70
- archiveHistory: Api_User_Archive_History_Item[]
71
- assigned_tasks?: Api_User_Task[]
72
- responsible_tasks?: Api_User_Task[]
73
- passes?: Api_Search_User_Passes[]
74
- positions: Api_Search_User_Positions[]
75
- warehouses?: Partial<Api_User_Warehouse>[]
76
- brigades: { id: string; name: string }[]
77
- }
78
-
79
- export type Api_User_Create = {
80
- last_name?: string
81
- first_name?: string
82
- patronymic?: string
83
- email?: string
84
- phone?: string
85
- divisions?: string
86
- positions?: [string]
87
- teams?: {
88
- team_id: string
89
- roles: string[]
90
- }[]
91
- current_password?: string
92
- password?: string
93
- password_confirmation?: string
94
- }
95
-
96
- export type Api_User_Permission = {
97
- id: string
98
- name: string
99
- display_name: string
100
- }
101
-
102
- export type Api_User_Role = {
103
- id: string
104
- name: string
105
- display_name: string
106
- permissions?: Api_User_Permission[]
107
- }
108
-
109
- export type Api_User_Position = {
110
- id: string
111
- name: string
112
- display_name: string
113
- description?: string
114
- }
115
-
116
- export type Api_User_Delete_Body = {
117
- user_id: string
118
- archive_reason?: string
119
- }
120
-
121
- export type Api_User_Delete_Photos_Body = {
122
- user_id: string
123
- photos?: string[]
124
- }
125
-
126
- export type Api_User_Warehouse = Pick<
127
- Api_Instrument,
128
- | 'id'
129
- | 'RFID'
130
- | 'instrument_type'
131
- | 'inventory_number'
132
- | 'location'
133
- | 'misplacement'
134
- | 'module'
135
- | 'name'
136
- | 'responsible'
137
- | 'status'
138
- | 'storage'
139
- | 'updated_at'
140
- > & {
141
- issued_in: string | null
142
- registry: {
143
- id: string
144
- title: string
145
- } | null
146
- }
1
+ import { Api_Tasks_Status_Dto } from '@/api/types/Api_Tasks'
2
+ import { Api_Instrument } from '@/api/types/Api_Instruments'
3
+ import { Api_Search_User_Passes, Api_Search_User_Positions } from '@/api/types/Api_Search'
4
+
5
+ export type Api_User_Team = {
6
+ id: string
7
+ name: string
8
+ display_name: string
9
+ description: string
10
+ created_at: string
11
+ updated_at: string
12
+ pivot?: {
13
+ team_id: string
14
+ user_id: string
15
+ }
16
+ roles?: Api_User_Role[]
17
+ }
18
+
19
+ export type Api_User_Team_Search = {
20
+ id: string
21
+ name: string
22
+ display_name: string
23
+ }
24
+
25
+ export type Api_User_Photo = {
26
+ id: string
27
+ name: string
28
+ path: string
29
+ type: string
30
+ }
31
+
32
+ export type Api_User_Archive_History_Item = {
33
+ user_id: string
34
+ responsible_id: string
35
+ archived_at: string
36
+ reason: string | null
37
+ restored_at: string | null
38
+ }
39
+
40
+ export type Api_User_Task = {
41
+ id: string
42
+ name: string
43
+ project_id: string
44
+ status: Api_Tasks_Status_Dto
45
+ }
46
+
47
+ export type Api_User = {
48
+ id: string
49
+ RFID: string
50
+ avatar: unknown | null
51
+ avatar_id: string | null
52
+ change_password: string
53
+ created_at: string
54
+ updated_at: string
55
+ deleted_at: string | null
56
+ dismissal_at: string | null
57
+ email_verified_at: string
58
+ divisions: string
59
+ email: string
60
+ face_recognition_id: string | null
61
+ first_name: string
62
+ full_name: string
63
+ last_name: string
64
+ patronymic: string
65
+ personnel_number: number
66
+ phone: string
67
+ profession: string
68
+ teams: Api_User_Team[]
69
+ photos: Api_User_Photo[]
70
+ archiveHistory: Api_User_Archive_History_Item[]
71
+ assigned_tasks?: Api_User_Task[]
72
+ responsible_tasks?: Api_User_Task[]
73
+ passes?: Api_Search_User_Passes[]
74
+ positions: Api_Search_User_Positions[]
75
+ warehouses?: Partial<Api_User_Warehouse>[]
76
+ brigades: { id: string; name: string }[]
77
+ }
78
+
79
+ export type Api_User_Create = {
80
+ last_name?: string
81
+ first_name?: string
82
+ patronymic?: string
83
+ email?: string
84
+ phone?: string
85
+ divisions?: string
86
+ positions?: [string]
87
+ teams?: {
88
+ team_id: string
89
+ roles: string[]
90
+ }[]
91
+ current_password?: string
92
+ password?: string
93
+ password_confirmation?: string
94
+ }
95
+
96
+ export type Api_User_Permission = {
97
+ id: string
98
+ name: string
99
+ display_name: string
100
+ }
101
+
102
+ export type Api_User_Role = {
103
+ id: string
104
+ name: string
105
+ display_name: string
106
+ permissions?: Api_User_Permission[]
107
+ }
108
+
109
+ export type Api_User_Position = {
110
+ id: string
111
+ name: string
112
+ display_name: string
113
+ description?: string
114
+ }
115
+
116
+ export type Api_User_Delete_Body = {
117
+ user_id: string
118
+ archive_reason?: string
119
+ }
120
+
121
+ export type Api_User_Delete_Photos_Body = {
122
+ user_id: string
123
+ photos?: string[]
124
+ }
125
+
126
+ export type Api_User_Warehouse = Pick<
127
+ Api_Instrument,
128
+ | 'id'
129
+ | 'RFID'
130
+ | 'instrument_type'
131
+ | 'inventory_number'
132
+ | 'location'
133
+ | 'misplacement'
134
+ | 'module'
135
+ | 'name'
136
+ | 'responsible'
137
+ | 'status'
138
+ | 'storage'
139
+ | 'updated_at'
140
+ > & {
141
+ issued_in: string | null
142
+ registry: {
143
+ id: string
144
+ title: string
145
+ } | null
146
+ }