shared-ritm 1.3.79 → 1.3.81
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/index.css +1 -1
- package/dist/shared-ritm.es.js +1090 -1072
- package/dist/shared-ritm.umd.js +3 -3
- package/dist/types/api/services/EquipmentService.d.ts +9 -1
- package/dist/types/api/services/PhotoService.d.ts +40 -0
- package/dist/types/api/types/Api_Equipment.d.ts +8 -0
- package/dist/types/api/types/Api_Metrics.d.ts +1 -1
- package/dist/types/stories/Button.stories.d.ts +13 -0
- package/dist/types/stories/Checkbox.stories.d.ts +7 -0
- package/dist/types/stories/Confirm.stories.d.ts +8 -0
- package/dist/types/stories/DatePicker.stories.d.ts +8 -0
- package/dist/types/stories/Dropdown.stories.d.ts +8 -0
- package/dist/types/stories/File.stories.d.ts +8 -0
- package/dist/types/stories/Icon.stories.d.ts +7 -0
- package/dist/types/stories/Input.stories.d.ts +11 -0
- package/dist/types/stories/InputNew.stories.d.ts +12 -0
- package/dist/types/stories/InputSearch.stories.d.ts +10 -0
- package/dist/types/stories/Loader.stories.d.ts +8 -0
- package/dist/types/stories/Select.stories.d.ts +7 -0
- package/dist/types/stories/Toggle.stories.d.ts +8 -0
- package/package.json +70 -70
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +67 -67
- package/src/api/services/ControlsService.ts +96 -96
- package/src/api/services/EquipmentService.ts +52 -29
- package/src/api/services/MetricsService.ts +143 -143
- package/src/api/services/RepairsService.ts +111 -111
- package/src/api/services/UserIssueService.ts +32 -32
- package/src/api/services/UserService.ts +129 -129
- package/src/api/services/VideoService.ts +118 -118
- package/src/api/settings/ApiService.ts +184 -184
- package/src/api/types/Api_Auth.ts +121 -121
- package/src/api/types/Api_Equipment.ts +10 -0
- package/src/api/types/Api_Metrics.ts +51 -51
- package/src/api/types/Api_Repairs.ts +187 -187
- package/src/api/types/Api_Tasks.ts +376 -376
- package/src/api/types/Api_User.ts +156 -156
- package/src/api/types/Api_User_Issue.ts +36 -36
- package/src/api/types/Api_Video.ts +244 -244
- package/src/common/app-button/Button.stories.ts +369 -369
- package/src/common/app-checkbox/AppCheckbox.vue +31 -31
- package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
- package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
- package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
- package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
- package/src/common/app-dialogs/Confirm.stories.ts +93 -93
- package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
- package/src/common/app-file/File.stories.ts +104 -104
- package/src/common/app-icon/AppIcon.vue +110 -110
- package/src/common/app-icon/Icon.stories.ts +91 -91
- package/src/common/app-input/Input.stories.ts +160 -160
- package/src/common/app-input-new/AppInputNew.vue +181 -181
- package/src/common/app-input-new/InputNew.stories.ts +240 -240
- package/src/common/app-input-search/InputSearch.stories.ts +149 -149
- package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
- package/src/common/app-loader/Loader.stories.ts +114 -114
- package/src/common/app-select/AppSelect.vue +159 -159
- package/src/common/app-select/Select.stories.ts +155 -155
- package/src/common/app-sidebar/AppSidebar.vue +174 -174
- package/src/common/app-table/AppTable.vue +313 -313
- package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
- package/src/common/app-table/components/ModalSelect.vue +302 -302
- package/src/common/app-table/components/TableModal.vue +367 -367
- package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
- package/src/common/app-table/controllers/useTableModel.ts +97 -97
- package/src/common/app-toggle/AppToggle.vue +12 -12
- package/src/common/app-toggle/Toggle.stories.ts +245 -245
- package/src/common/app-wrapper/AppWrapper.vue +31 -31
- package/src/configs/storybook.ts +14 -14
- package/src/icons/sidebar/user-requests-icon.vue +23 -23
- package/src/index.ts +134 -134
- package/src/shared/styles/general.css +140 -140
- package/src/styles/variables.sass +12 -12
- package/src/utils/files.ts +38 -38
- package/src/utils/helpers.ts +59 -59
|
@@ -1,156 +1,156 @@
|
|
|
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
|
-
password_change_available_at: string
|
|
78
|
-
password_change_due_at: string
|
|
79
|
-
password_last_changed_at: string
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export type Api_User_Change_Password_Payload = {
|
|
83
|
-
email: string
|
|
84
|
-
password: string
|
|
85
|
-
currentPassword: string
|
|
86
|
-
passwordConfirmation: string
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export type Api_User_Create = {
|
|
90
|
-
last_name?: string
|
|
91
|
-
first_name?: string
|
|
92
|
-
patronymic?: string
|
|
93
|
-
email?: string
|
|
94
|
-
phone?: string
|
|
95
|
-
divisions?: string
|
|
96
|
-
positions?: [string]
|
|
97
|
-
teams?: {
|
|
98
|
-
team_id: string
|
|
99
|
-
roles: string[]
|
|
100
|
-
}[]
|
|
101
|
-
current_password?: string
|
|
102
|
-
password?: string
|
|
103
|
-
password_confirmation?: string
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
export type Api_User_Permission = {
|
|
107
|
-
id: string
|
|
108
|
-
name: string
|
|
109
|
-
display_name: string
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
export type Api_User_Role = {
|
|
113
|
-
id: string
|
|
114
|
-
name: string
|
|
115
|
-
display_name: string
|
|
116
|
-
permissions?: Api_User_Permission[]
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
export type Api_User_Position = {
|
|
120
|
-
id: string
|
|
121
|
-
name: string
|
|
122
|
-
display_name: string
|
|
123
|
-
description?: string
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
export type Api_User_Delete_Body = {
|
|
127
|
-
user_id: string
|
|
128
|
-
archive_reason?: string
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
export type Api_User_Delete_Photos_Body = {
|
|
132
|
-
user_id: string
|
|
133
|
-
photos?: string[]
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
export type Api_User_Warehouse = Pick<
|
|
137
|
-
Api_Instrument,
|
|
138
|
-
| 'id'
|
|
139
|
-
| 'RFID'
|
|
140
|
-
| 'instrument_type'
|
|
141
|
-
| 'inventory_number'
|
|
142
|
-
| 'location'
|
|
143
|
-
| 'misplacement'
|
|
144
|
-
| 'module'
|
|
145
|
-
| 'name'
|
|
146
|
-
| 'responsible'
|
|
147
|
-
| 'status'
|
|
148
|
-
| 'storage'
|
|
149
|
-
| 'updated_at'
|
|
150
|
-
> & {
|
|
151
|
-
issued_in: string | null
|
|
152
|
-
registry: {
|
|
153
|
-
id: string
|
|
154
|
-
title: string
|
|
155
|
-
} | null
|
|
156
|
-
}
|
|
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
|
+
password_change_available_at: string
|
|
78
|
+
password_change_due_at: string
|
|
79
|
+
password_last_changed_at: string
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export type Api_User_Change_Password_Payload = {
|
|
83
|
+
email: string
|
|
84
|
+
password: string
|
|
85
|
+
currentPassword: string
|
|
86
|
+
passwordConfirmation: string
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export type Api_User_Create = {
|
|
90
|
+
last_name?: string
|
|
91
|
+
first_name?: string
|
|
92
|
+
patronymic?: string
|
|
93
|
+
email?: string
|
|
94
|
+
phone?: string
|
|
95
|
+
divisions?: string
|
|
96
|
+
positions?: [string]
|
|
97
|
+
teams?: {
|
|
98
|
+
team_id: string
|
|
99
|
+
roles: string[]
|
|
100
|
+
}[]
|
|
101
|
+
current_password?: string
|
|
102
|
+
password?: string
|
|
103
|
+
password_confirmation?: string
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export type Api_User_Permission = {
|
|
107
|
+
id: string
|
|
108
|
+
name: string
|
|
109
|
+
display_name: string
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export type Api_User_Role = {
|
|
113
|
+
id: string
|
|
114
|
+
name: string
|
|
115
|
+
display_name: string
|
|
116
|
+
permissions?: Api_User_Permission[]
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export type Api_User_Position = {
|
|
120
|
+
id: string
|
|
121
|
+
name: string
|
|
122
|
+
display_name: string
|
|
123
|
+
description?: string
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export type Api_User_Delete_Body = {
|
|
127
|
+
user_id: string
|
|
128
|
+
archive_reason?: string
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export type Api_User_Delete_Photos_Body = {
|
|
132
|
+
user_id: string
|
|
133
|
+
photos?: string[]
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export type Api_User_Warehouse = Pick<
|
|
137
|
+
Api_Instrument,
|
|
138
|
+
| 'id'
|
|
139
|
+
| 'RFID'
|
|
140
|
+
| 'instrument_type'
|
|
141
|
+
| 'inventory_number'
|
|
142
|
+
| 'location'
|
|
143
|
+
| 'misplacement'
|
|
144
|
+
| 'module'
|
|
145
|
+
| 'name'
|
|
146
|
+
| 'responsible'
|
|
147
|
+
| 'status'
|
|
148
|
+
| 'storage'
|
|
149
|
+
| 'updated_at'
|
|
150
|
+
> & {
|
|
151
|
+
issued_in: string | null
|
|
152
|
+
registry: {
|
|
153
|
+
id: string
|
|
154
|
+
title: string
|
|
155
|
+
} | null
|
|
156
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export type Api_User_Issue_List_Item = {
|
|
2
|
-
id: string
|
|
3
|
-
section: string
|
|
4
|
-
status: string
|
|
5
|
-
type: string
|
|
6
|
-
topic: string
|
|
7
|
-
created_at: string
|
|
8
|
-
number: number
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export type Api_User_Issue_Msg = {
|
|
12
|
-
id: string
|
|
13
|
-
message: string
|
|
14
|
-
thread_id: string
|
|
15
|
-
files: unknown[]
|
|
16
|
-
user: {
|
|
17
|
-
id: string
|
|
18
|
-
full_name: string
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export type Api_User_Issue = {
|
|
23
|
-
id: string
|
|
24
|
-
section: string
|
|
25
|
-
status: string
|
|
26
|
-
type: string
|
|
27
|
-
topic: string
|
|
28
|
-
number: number
|
|
29
|
-
messages: Api_User_Issue_Msg[]
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export type Api_User_Issue_Properties = {
|
|
33
|
-
section: Record<string, string>
|
|
34
|
-
status: Record<string, string>
|
|
35
|
-
type: Record<string, string>
|
|
36
|
-
}
|
|
1
|
+
export type Api_User_Issue_List_Item = {
|
|
2
|
+
id: string
|
|
3
|
+
section: string
|
|
4
|
+
status: string
|
|
5
|
+
type: string
|
|
6
|
+
topic: string
|
|
7
|
+
created_at: string
|
|
8
|
+
number: number
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export type Api_User_Issue_Msg = {
|
|
12
|
+
id: string
|
|
13
|
+
message: string
|
|
14
|
+
thread_id: string
|
|
15
|
+
files: unknown[]
|
|
16
|
+
user: {
|
|
17
|
+
id: string
|
|
18
|
+
full_name: string
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type Api_User_Issue = {
|
|
23
|
+
id: string
|
|
24
|
+
section: string
|
|
25
|
+
status: string
|
|
26
|
+
type: string
|
|
27
|
+
topic: string
|
|
28
|
+
number: number
|
|
29
|
+
messages: Api_User_Issue_Msg[]
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export type Api_User_Issue_Properties = {
|
|
33
|
+
section: Record<string, string>
|
|
34
|
+
status: Record<string, string>
|
|
35
|
+
type: Record<string, string>
|
|
36
|
+
}
|