shared-ritm 1.3.123 → 1.3.124

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 (82) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +17 -14
  3. package/dist/shared-ritm.umd.js +3 -3
  4. package/dist/types/api/services/MetricsService.d.ts +1 -0
  5. package/package.json +70 -70
  6. package/src/App.vue +2461 -2461
  7. package/src/api/services/AuthService.ts +67 -67
  8. package/src/api/services/ControlsService.ts +100 -100
  9. package/src/api/services/EquipmentService.ts +68 -68
  10. package/src/api/services/GanttService.ts +58 -58
  11. package/src/api/services/InstrumentsService.ts +76 -76
  12. package/src/api/services/MetricsService.ts +3 -0
  13. package/src/api/services/RepairsService.ts +111 -111
  14. package/src/api/services/TasksService.ts +165 -165
  15. package/src/api/services/UserIssueService.ts +32 -32
  16. package/src/api/services/UserService.ts +129 -129
  17. package/src/api/services/VideoService.ts +118 -118
  18. package/src/api/settings/ApiService.ts +185 -185
  19. package/src/api/types/Api_Auth.ts +121 -121
  20. package/src/api/types/Api_Controls.ts +112 -112
  21. package/src/api/types/Api_Equipment.ts +54 -54
  22. package/src/api/types/Api_Instruments.ts +182 -182
  23. package/src/api/types/Api_Metrics.ts +89 -89
  24. package/src/api/types/Api_Repairs.ts +200 -200
  25. package/src/api/types/Api_Search.ts +81 -81
  26. package/src/api/types/Api_Tasks.ts +378 -378
  27. package/src/api/types/Api_User.ts +161 -161
  28. package/src/api/types/Api_User_Issue.ts +36 -36
  29. package/src/api/types/Api_Video.ts +244 -244
  30. package/src/common/app-button/Button.stories.ts +369 -369
  31. package/src/common/app-checkbox/AppCheckbox.vue +31 -31
  32. package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
  33. package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
  34. package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
  35. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  36. package/src/common/app-dialogs/Confirm.stories.ts +93 -93
  37. package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
  38. package/src/common/app-file/File.stories.ts +104 -104
  39. package/src/common/app-icon/AppIcon.vue +110 -110
  40. package/src/common/app-icon/Icon.stories.ts +91 -91
  41. package/src/common/app-input/AppInput.vue +150 -150
  42. package/src/common/app-input/Input.stories.ts +160 -160
  43. package/src/common/app-input-new/AppInputNew.vue +181 -181
  44. package/src/common/app-input-new/InputNew.stories.ts +240 -240
  45. package/src/common/app-input-search/InputSearch.stories.ts +149 -149
  46. package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
  47. package/src/common/app-loader/Loader.stories.ts +114 -114
  48. package/src/common/app-modal/index.vue +101 -101
  49. package/src/common/app-select/AppSelect.vue +159 -159
  50. package/src/common/app-select/Select.stories.ts +155 -155
  51. package/src/common/app-sheet-new/AppSheetNew.vue +254 -254
  52. package/src/common/app-sidebar/AppSidebar.vue +177 -177
  53. package/src/common/app-table/AppTable.vue +313 -313
  54. package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
  55. package/src/common/app-table/components/ModalSelect.vue +302 -302
  56. package/src/common/app-table/components/TableModal.vue +369 -369
  57. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  58. package/src/common/app-table/controllers/useTableModel.ts +98 -98
  59. package/src/common/app-toggle/AppToggle.vue +12 -12
  60. package/src/common/app-toggle/Toggle.stories.ts +245 -245
  61. package/src/common/app-wrapper/AppWrapper.vue +31 -31
  62. package/src/configs/storybook.ts +14 -14
  63. package/src/icons/sidebar/user-requests-icon.vue +23 -23
  64. package/src/index.ts +134 -134
  65. package/src/shared/styles/general.css +140 -140
  66. package/src/styles/variables.sass +12 -12
  67. package/src/utils/files.ts +38 -38
  68. package/src/utils/helpers.ts +59 -59
  69. package/dist/types/api/services/PhotoService.d.ts +0 -40
  70. package/dist/types/stories/Button.stories.d.ts +0 -13
  71. package/dist/types/stories/Checkbox.stories.d.ts +0 -7
  72. package/dist/types/stories/Confirm.stories.d.ts +0 -8
  73. package/dist/types/stories/DatePicker.stories.d.ts +0 -8
  74. package/dist/types/stories/Dropdown.stories.d.ts +0 -8
  75. package/dist/types/stories/File.stories.d.ts +0 -8
  76. package/dist/types/stories/Icon.stories.d.ts +0 -7
  77. package/dist/types/stories/Input.stories.d.ts +0 -11
  78. package/dist/types/stories/InputNew.stories.d.ts +0 -12
  79. package/dist/types/stories/InputSearch.stories.d.ts +0 -10
  80. package/dist/types/stories/Loader.stories.d.ts +0 -8
  81. package/dist/types/stories/Select.stories.d.ts +0 -7
  82. package/dist/types/stories/Toggle.stories.d.ts +0 -8
@@ -1,121 +1,121 @@
1
- import { Api_User } from '@/api/types/Api_User'
2
-
3
- export type LoginPayload = {
4
- email: string
5
- password: string
6
- }
7
-
8
- export type Api_Auth_User_Education = {
9
- created_at: string
10
- display_name: string
11
- id: string
12
- name: string
13
- }
14
-
15
- export type Api_Auth_User_Photo = {
16
- id: string
17
- name: string
18
- path: string
19
- type: string
20
- }
21
-
22
- export type Api_Auth_User_Position = {
23
- description: string
24
- display_name: string
25
- id: string
26
- name: string
27
- }
28
-
29
- export type Api_User_Roles_Permissions = {
30
- created_at: string
31
- description: string
32
- display_name: string
33
- id: string
34
- name: string
35
- updated_at: string
36
- }
37
-
38
- export type Api_Auth_User_Role = {
39
- display_name: string
40
- id: string
41
- name: string
42
- permissions: Api_User_Roles_Permissions[]
43
- }
44
-
45
- export type Api_Auth_User_Team = {
46
- display_name: string
47
- id: string
48
- name: string
49
- roles: Api_Auth_User_Role[]
50
- }
51
-
52
- export type Api_Auth_User = {
53
- RFID: string
54
- avatar_id: null | string
55
- avatar_path: null | string
56
- dismissal_at: null | string
57
- divisions: string
58
- educations: Api_Auth_User_Education[]
59
- email: string
60
- email_verified_at: string
61
- first_name: string
62
- full_name: string
63
- id: string
64
- last_name: string
65
- passes: any[]
66
- patronymic: string
67
- personnel_number: number
68
- phone: string
69
- photos: Api_Auth_User_Photo[]
70
- positions: Api_Auth_User_Position[]
71
- profession: string
72
- roles: Api_Auth_User_Role[]
73
- security_warnings: any[]
74
- teams: Api_Auth_User_Team[]
75
- avatar: null
76
- change_password: null
77
- created_at: string
78
- deleted_at: null
79
- face_recognition_id: null
80
- password_change_available_at: string
81
- password_change_due_at: string
82
- password_last_changed_at: string
83
- updated_at: string
84
- }
85
-
86
- export type Api_Auth_Login = {
87
- token: string
88
- user: Api_Auth_User
89
- }
90
-
91
- export type ChangePasswordPayload = {
92
- password: string
93
- password_confirmation: string
94
- }
95
-
96
- export type ChangePasswordAndActivatePayload = {
97
- email: string
98
- currentPassword: string
99
- password: string
100
- passwordConfirmation: string
101
- }
102
-
103
- export type ChangePasswordResponse = Pick<
104
- Api_User,
105
- | 'id'
106
- | 'archiveHistory'
107
- | 'assigned_tasks'
108
- | 'divisions'
109
- | 'email'
110
- | 'full_name'
111
- | 'passes'
112
- | 'personnel_number'
113
- | 'phone'
114
- | 'photos'
115
- | 'positions'
116
- | 'responsible_tasks'
117
- | 'teams'
118
- | 'warehouses'
119
- >
120
-
121
- export type ConfigResponse = any
1
+ import { Api_User } from '@/api/types/Api_User'
2
+
3
+ export type LoginPayload = {
4
+ email: string
5
+ password: string
6
+ }
7
+
8
+ export type Api_Auth_User_Education = {
9
+ created_at: string
10
+ display_name: string
11
+ id: string
12
+ name: string
13
+ }
14
+
15
+ export type Api_Auth_User_Photo = {
16
+ id: string
17
+ name: string
18
+ path: string
19
+ type: string
20
+ }
21
+
22
+ export type Api_Auth_User_Position = {
23
+ description: string
24
+ display_name: string
25
+ id: string
26
+ name: string
27
+ }
28
+
29
+ export type Api_User_Roles_Permissions = {
30
+ created_at: string
31
+ description: string
32
+ display_name: string
33
+ id: string
34
+ name: string
35
+ updated_at: string
36
+ }
37
+
38
+ export type Api_Auth_User_Role = {
39
+ display_name: string
40
+ id: string
41
+ name: string
42
+ permissions: Api_User_Roles_Permissions[]
43
+ }
44
+
45
+ export type Api_Auth_User_Team = {
46
+ display_name: string
47
+ id: string
48
+ name: string
49
+ roles: Api_Auth_User_Role[]
50
+ }
51
+
52
+ export type Api_Auth_User = {
53
+ RFID: string
54
+ avatar_id: null | string
55
+ avatar_path: null | string
56
+ dismissal_at: null | string
57
+ divisions: string
58
+ educations: Api_Auth_User_Education[]
59
+ email: string
60
+ email_verified_at: string
61
+ first_name: string
62
+ full_name: string
63
+ id: string
64
+ last_name: string
65
+ passes: any[]
66
+ patronymic: string
67
+ personnel_number: number
68
+ phone: string
69
+ photos: Api_Auth_User_Photo[]
70
+ positions: Api_Auth_User_Position[]
71
+ profession: string
72
+ roles: Api_Auth_User_Role[]
73
+ security_warnings: any[]
74
+ teams: Api_Auth_User_Team[]
75
+ avatar: null
76
+ change_password: null
77
+ created_at: string
78
+ deleted_at: null
79
+ face_recognition_id: null
80
+ password_change_available_at: string
81
+ password_change_due_at: string
82
+ password_last_changed_at: string
83
+ updated_at: string
84
+ }
85
+
86
+ export type Api_Auth_Login = {
87
+ token: string
88
+ user: Api_Auth_User
89
+ }
90
+
91
+ export type ChangePasswordPayload = {
92
+ password: string
93
+ password_confirmation: string
94
+ }
95
+
96
+ export type ChangePasswordAndActivatePayload = {
97
+ email: string
98
+ currentPassword: string
99
+ password: string
100
+ passwordConfirmation: string
101
+ }
102
+
103
+ export type ChangePasswordResponse = Pick<
104
+ Api_User,
105
+ | 'id'
106
+ | 'archiveHistory'
107
+ | 'assigned_tasks'
108
+ | 'divisions'
109
+ | 'email'
110
+ | 'full_name'
111
+ | 'passes'
112
+ | 'personnel_number'
113
+ | 'phone'
114
+ | 'photos'
115
+ | 'positions'
116
+ | 'responsible_tasks'
117
+ | 'teams'
118
+ | 'warehouses'
119
+ >
120
+
121
+ export type ConfigResponse = any
@@ -1,112 +1,112 @@
1
- export type Api_User_Dto = {
2
- id: string
3
- full_name: string
4
- }
5
- export type Api_ControlsZone_Dto = {
6
- id: string
7
- name: string
8
- }
9
- export type Api_ControlZones_Dto = {
10
- id: string
11
- name: string
12
- inventory_number: string
13
- uuid: string
14
- controller_zone: string
15
- users?: Api_User_Dto[]
16
- }
17
- export type ControlsParams = {
18
- search?: string
19
- page?: number
20
- filter?: Record<string, string[]>
21
- }
22
-
23
- export interface ControlMeta {
24
- total: number
25
- perPage: number
26
- totalPages: number
27
- currentPage: number
28
- }
29
-
30
- export type FiltersValue = {
31
- users?: {
32
- users: Api_User_Dto[]
33
- }
34
- controller?: {
35
- controller: Api_User_Dto[]
36
- }
37
- controllers?: {
38
- controllers: Api_User_Dto[]
39
- }
40
- responsible?: {
41
- responsible: Api_User_Dto[]
42
- }
43
- controller_zones?: {
44
- controller_zones: Api_ControlsZone_Dto[]
45
- }
46
- status?: {
47
- status: boolean
48
- }
49
- }
50
- export type Api_Instrument_Dto = {
51
- id: string
52
- name: string
53
- storage_id?: string
54
- }
55
- export type Api_Warehouse_Dto = {
56
- id: string
57
- invoice_ref_key: string
58
- inventory_number: string
59
- instrument: Api_Instrument_Dto[]
60
- }
61
-
62
- export type Api_ControlLogs_Dto = {
63
- id: string
64
- automatically: string
65
- in_zone: string
66
- uuid: string
67
- controller_zone: string
68
- controller: Api_User_Dto[]
69
- user: Api_User_Dto[]
70
- frame: Api_ControlZones_Dto[]
71
- warehouse: Api_Warehouse_Dto[]
72
- description: string | null
73
- }
74
- export type Api_New_Items = {
75
- title: string
76
- inventory_numbers: string
77
- storage_id: string
78
- }
79
- export type Api_ManualEntry_Dto = {
80
- user: string
81
- items?: string[]
82
- new_items?: Api_New_Items[]
83
- }
84
-
85
- export type Api_Instrument_Type_Search = {
86
- id: string
87
- icon: string
88
- name: string
89
- storages: {
90
- id: string
91
- title: string
92
- }[]
93
- warehouse_statuses: boolean
94
- }
95
-
96
- export type Api_Instrument_Category = {
97
- id: string
98
- title: string[]
99
- }
100
-
101
- export type Api_instrument_Type_Create = {
102
- name: string
103
- storage_id: string
104
- }
105
-
106
- export type Api_instrument_Type = {
107
- id: string
108
- name: string
109
- storage_id: string
110
- created_at: string
111
- updated_at: string
112
- }
1
+ export type Api_User_Dto = {
2
+ id: string
3
+ full_name: string
4
+ }
5
+ export type Api_ControlsZone_Dto = {
6
+ id: string
7
+ name: string
8
+ }
9
+ export type Api_ControlZones_Dto = {
10
+ id: string
11
+ name: string
12
+ inventory_number: string
13
+ uuid: string
14
+ controller_zone: string
15
+ users?: Api_User_Dto[]
16
+ }
17
+ export type ControlsParams = {
18
+ search?: string
19
+ page?: number
20
+ filter?: Record<string, string[]>
21
+ }
22
+
23
+ export interface ControlMeta {
24
+ total: number
25
+ perPage: number
26
+ totalPages: number
27
+ currentPage: number
28
+ }
29
+
30
+ export type FiltersValue = {
31
+ users?: {
32
+ users: Api_User_Dto[]
33
+ }
34
+ controller?: {
35
+ controller: Api_User_Dto[]
36
+ }
37
+ controllers?: {
38
+ controllers: Api_User_Dto[]
39
+ }
40
+ responsible?: {
41
+ responsible: Api_User_Dto[]
42
+ }
43
+ controller_zones?: {
44
+ controller_zones: Api_ControlsZone_Dto[]
45
+ }
46
+ status?: {
47
+ status: boolean
48
+ }
49
+ }
50
+ export type Api_Instrument_Dto = {
51
+ id: string
52
+ name: string
53
+ storage_id?: string
54
+ }
55
+ export type Api_Warehouse_Dto = {
56
+ id: string
57
+ invoice_ref_key: string
58
+ inventory_number: string
59
+ instrument: Api_Instrument_Dto[]
60
+ }
61
+
62
+ export type Api_ControlLogs_Dto = {
63
+ id: string
64
+ automatically: string
65
+ in_zone: string
66
+ uuid: string
67
+ controller_zone: string
68
+ controller: Api_User_Dto[]
69
+ user: Api_User_Dto[]
70
+ frame: Api_ControlZones_Dto[]
71
+ warehouse: Api_Warehouse_Dto[]
72
+ description: string | null
73
+ }
74
+ export type Api_New_Items = {
75
+ title: string
76
+ inventory_numbers: string
77
+ storage_id: string
78
+ }
79
+ export type Api_ManualEntry_Dto = {
80
+ user: string
81
+ items?: string[]
82
+ new_items?: Api_New_Items[]
83
+ }
84
+
85
+ export type Api_Instrument_Type_Search = {
86
+ id: string
87
+ icon: string
88
+ name: string
89
+ storages: {
90
+ id: string
91
+ title: string
92
+ }[]
93
+ warehouse_statuses: boolean
94
+ }
95
+
96
+ export type Api_Instrument_Category = {
97
+ id: string
98
+ title: string[]
99
+ }
100
+
101
+ export type Api_instrument_Type_Create = {
102
+ name: string
103
+ storage_id: string
104
+ }
105
+
106
+ export type Api_instrument_Type = {
107
+ id: string
108
+ name: string
109
+ storage_id: string
110
+ created_at: string
111
+ updated_at: string
112
+ }
@@ -1,54 +1,54 @@
1
- import { Api_Equipment_Full_Dto } from '@/api/types/Api_Repairs'
2
-
3
- export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>
4
-
5
- export type Api_Equipment_Element_Dto = {
6
- id: string
7
- name: string
8
- model: string | null
9
- registration_number: string | null
10
- parent_id: string | null
11
- depth: string | null
12
- }
13
-
14
- export type Api_Equipment_Dto = {
15
- id: string
16
- equipment_type_id: string
17
- name: string
18
- model: string | null
19
- registration_number: string | null
20
- repair_frequency: number | string | null
21
- repair_range: number | string | null
22
- parent: Api_Equipment_Element_Dto | null
23
- root: Api_Equipment_Element_Dto | null
24
- children: Api_Equipment_Element_Dto[]
25
- }
26
-
27
- export type Api_Equipment_Tree_Dto = {
28
- id: string
29
- parent_id: string
30
- root_id: string
31
- depth: string
32
- name: string
33
- model: string
34
- registration_number: string
35
- }
36
-
37
- export type Api_Create_Equipment_Dto = {
38
- equipment_type_id: string
39
- parent_id: string
40
- children: string[]
41
- registration_number: string
42
- repair_frequency: number
43
- repair_range: number
44
- }
45
-
46
- export type Api_Equipment_Type = {
47
- id: string
48
- name: string
49
- model?: string | null
50
- description?: string | null
51
- updated_at: string
52
- }
53
-
54
- export type Api_Equipment_Type_Body = Omit<Api_Equipment_Type, 'id' | 'updated_at'>
1
+ import { Api_Equipment_Full_Dto } from '@/api/types/Api_Repairs'
2
+
3
+ export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>
4
+
5
+ export type Api_Equipment_Element_Dto = {
6
+ id: string
7
+ name: string
8
+ model: string | null
9
+ registration_number: string | null
10
+ parent_id: string | null
11
+ depth: string | null
12
+ }
13
+
14
+ export type Api_Equipment_Dto = {
15
+ id: string
16
+ equipment_type_id: string
17
+ name: string
18
+ model: string | null
19
+ registration_number: string | null
20
+ repair_frequency: number | string | null
21
+ repair_range: number | string | null
22
+ parent: Api_Equipment_Element_Dto | null
23
+ root: Api_Equipment_Element_Dto | null
24
+ children: Api_Equipment_Element_Dto[]
25
+ }
26
+
27
+ export type Api_Equipment_Tree_Dto = {
28
+ id: string
29
+ parent_id: string
30
+ root_id: string
31
+ depth: string
32
+ name: string
33
+ model: string
34
+ registration_number: string
35
+ }
36
+
37
+ export type Api_Create_Equipment_Dto = {
38
+ equipment_type_id: string
39
+ parent_id: string
40
+ children: string[]
41
+ registration_number: string
42
+ repair_frequency: number
43
+ repair_range: number
44
+ }
45
+
46
+ export type Api_Equipment_Type = {
47
+ id: string
48
+ name: string
49
+ model?: string | null
50
+ description?: string | null
51
+ updated_at: string
52
+ }
53
+
54
+ export type Api_Equipment_Type_Body = Omit<Api_Equipment_Type, 'id' | 'updated_at'>