shared-ritm 1.3.127 → 1.3.128

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 (84) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +1646 -1625
  3. package/dist/shared-ritm.umd.js +105 -105
  4. package/dist/types/api/services/MetricsService.d.ts +2 -2
  5. package/dist/types/api/services/PhotoService.d.ts +40 -0
  6. package/dist/types/api/types/Api_Metrics.d.ts +21 -0
  7. package/dist/types/stories/Button.stories.d.ts +13 -0
  8. package/dist/types/stories/Checkbox.stories.d.ts +7 -0
  9. package/dist/types/stories/Confirm.stories.d.ts +8 -0
  10. package/dist/types/stories/DatePicker.stories.d.ts +8 -0
  11. package/dist/types/stories/Dropdown.stories.d.ts +8 -0
  12. package/dist/types/stories/File.stories.d.ts +8 -0
  13. package/dist/types/stories/Icon.stories.d.ts +7 -0
  14. package/dist/types/stories/Input.stories.d.ts +11 -0
  15. package/dist/types/stories/InputNew.stories.d.ts +12 -0
  16. package/dist/types/stories/InputSearch.stories.d.ts +10 -0
  17. package/dist/types/stories/Loader.stories.d.ts +8 -0
  18. package/dist/types/stories/Select.stories.d.ts +7 -0
  19. package/dist/types/stories/Toggle.stories.d.ts +8 -0
  20. package/package.json +70 -70
  21. package/src/App.vue +2461 -2461
  22. package/src/api/services/AuthService.ts +67 -67
  23. package/src/api/services/ControlsService.ts +100 -100
  24. package/src/api/services/EquipmentService.ts +68 -68
  25. package/src/api/services/GanttService.ts +58 -58
  26. package/src/api/services/InstrumentsService.ts +76 -76
  27. package/src/api/services/MetricsService.ts +3 -2
  28. package/src/api/services/RepairsService.ts +111 -111
  29. package/src/api/services/TasksService.ts +165 -165
  30. package/src/api/services/UserIssueService.ts +32 -32
  31. package/src/api/services/UserService.ts +129 -129
  32. package/src/api/services/VideoService.ts +118 -118
  33. package/src/api/settings/ApiService.ts +185 -185
  34. package/src/api/types/Api_Auth.ts +121 -121
  35. package/src/api/types/Api_Controls.ts +112 -112
  36. package/src/api/types/Api_Equipment.ts +54 -54
  37. package/src/api/types/Api_Instruments.ts +182 -182
  38. package/src/api/types/Api_Metrics.ts +112 -89
  39. package/src/api/types/Api_Repairs.ts +200 -200
  40. package/src/api/types/Api_Search.ts +81 -81
  41. package/src/api/types/Api_Tasks.ts +378 -378
  42. package/src/api/types/Api_User.ts +161 -161
  43. package/src/api/types/Api_User_Issue.ts +36 -36
  44. package/src/api/types/Api_Video.ts +244 -244
  45. package/src/common/app-button/Button.stories.ts +369 -369
  46. package/src/common/app-checkbox/AppCheckbox.vue +33 -33
  47. package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
  48. package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
  49. package/src/common/app-datepicker/AppDatepicker.vue +4 -1
  50. package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
  51. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  52. package/src/common/app-dialogs/Confirm.stories.ts +93 -93
  53. package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
  54. package/src/common/app-file/File.stories.ts +104 -104
  55. package/src/common/app-icon/AppIcon.vue +110 -110
  56. package/src/common/app-icon/Icon.stories.ts +91 -91
  57. package/src/common/app-input/AppInput.vue +150 -150
  58. package/src/common/app-input/Input.stories.ts +160 -160
  59. package/src/common/app-input-new/AppInputNew.vue +186 -181
  60. package/src/common/app-input-new/InputNew.stories.ts +240 -240
  61. package/src/common/app-input-search/InputSearch.stories.ts +149 -149
  62. package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
  63. package/src/common/app-loader/Loader.stories.ts +114 -114
  64. package/src/common/app-modal/index.vue +101 -101
  65. package/src/common/app-select/AppSelect.vue +167 -159
  66. package/src/common/app-select/Select.stories.ts +155 -155
  67. package/src/common/app-sheet-new/AppSheetNew.vue +254 -254
  68. package/src/common/app-sidebar/AppSidebar.vue +177 -177
  69. package/src/common/app-table/AppTable.vue +313 -313
  70. package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
  71. package/src/common/app-table/components/ModalSelect.vue +311 -311
  72. package/src/common/app-table/components/TableModal.vue +369 -369
  73. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  74. package/src/common/app-table/controllers/useTableModel.ts +98 -98
  75. package/src/common/app-toggle/AppToggle.vue +12 -12
  76. package/src/common/app-toggle/Toggle.stories.ts +245 -245
  77. package/src/common/app-wrapper/AppWrapper.vue +31 -31
  78. package/src/configs/storybook.ts +14 -14
  79. package/src/icons/sidebar/user-requests-icon.vue +23 -23
  80. package/src/index.ts +134 -134
  81. package/src/shared/styles/general.css +140 -140
  82. package/src/styles/variables.sass +12 -12
  83. package/src/utils/files.ts +38 -38
  84. package/src/utils/helpers.ts +59 -59
@@ -1,181 +1,186 @@
1
- <template>
2
- <div class="app-input-new">
3
- <label v-if="label" class="app-input-new__label">
4
- {{ label }}
5
- <span v-if="required" class="required">*</span>
6
- </label>
7
-
8
- <q-input
9
- v-model="model"
10
- filled
11
- :type="inputType"
12
- :rules="rules"
13
- :placeholder="placeholder"
14
- :disable="disable"
15
- :readonly="readonly"
16
- :class="inputClass"
17
- :error="error"
18
- :autocomplete="autocomplete"
19
- :debounce="debounce"
20
- :loading="loading"
21
- :maxlength="maxlength"
22
- :counter="counter"
23
- @blur="emit('blur')"
24
- >
25
- <slot />
26
- <template #append>
27
- <slot name="append" />
28
- <q-icon
29
- v-if="type === 'password'"
30
- :name="isVisiblePass ? 'visibility' : 'visibility_off'"
31
- color="primary"
32
- class="cursor-pointer"
33
- @click="isVisiblePass = !isVisiblePass"
34
- />
35
- <q-icon
36
- v-if="clearable && (model || model === 0)"
37
- name="close"
38
- class="cursor-pointer clear-input"
39
- @click="model = null"
40
- />
41
- <q-btn
42
- v-if="uuid && !disable && !readonly"
43
- flat
44
- no-caps
45
- label="UUID"
46
- size="sm"
47
- class="q-ml-sm uuid-btn"
48
- @click="model = uuidv4()"
49
- />
50
- <q-icon
51
- v-if="copyable"
52
- name="content_copy"
53
- class="cursor-pointer q-ml-sm copy-icon"
54
- color="primary"
55
- :disable="!model"
56
- @click="copyToClipboard"
57
- />
58
- </template>
59
- </q-input>
60
- </div>
61
- </template>
62
-
63
- <script setup lang="ts">
64
- import { defineEmits, defineProps, computed, ref } from 'vue'
65
- import { uuidv4 } from '@/utils/helpers'
66
- import { notificationSettings } from '@/utils/notification'
67
- import { QInputProps, useQuasar } from 'quasar'
68
-
69
- const props = defineProps<
70
- QInputProps & {
71
- modelValue?: string | number | null
72
- label?: string
73
- placeholder?: string
74
- rules?: ((val: string | number | null | undefined) => boolean | string)[]
75
- inputClass?: string
76
- required?: boolean
77
- readonly?: boolean
78
- disable?: boolean
79
- uuid?: boolean
80
- clearable?: boolean
81
- copyable?: boolean
82
- error?: boolean
83
- autocomplete?: string
84
- debounce?: number
85
- loading?: boolean
86
- }
87
- >()
88
-
89
- const emit = defineEmits<{
90
- (e: 'update:modelValue', val?: string | number | null): void
91
- (e: 'blur', val?: string | number | null): void
92
- }>()
93
-
94
- const $q = useQuasar()
95
-
96
- const isVisiblePass = ref(false)
97
-
98
- const model = computed({
99
- get: () => getValue(props.modelValue),
100
- set: (newValue?: string | number | null) => emit('update:modelValue', getValue(newValue)),
101
- })
102
-
103
- const inputType = computed(() => (props.type === 'password' && isVisiblePass.value ? 'text' : props.type))
104
-
105
- const getValue = (value?: string | number | null) => {
106
- if (props.type === 'number') return value ? +value : value
107
-
108
- return value
109
- }
110
-
111
- const copyToClipboard = () => {
112
- if (!model.value && model.value !== 0) return
113
-
114
- navigator.clipboard.writeText(model.value.toString()).then(() => {
115
- $q.notify(notificationSettings('success', 'Данные скопированы'))
116
- })
117
- }
118
- </script>
119
-
120
- <style scoped lang="scss">
121
- .app-input-new {
122
- display: flex;
123
- flex-direction: column;
124
- margin-bottom: 15px;
125
-
126
- &__label {
127
- font-size: 14px;
128
- font-weight: 700;
129
- color: #7d8592;
130
- }
131
-
132
- .required {
133
- color: #f65160;
134
- font-weight: bold;
135
- }
136
-
137
- .clear-input {
138
- color: #d8e0f0;
139
- }
140
-
141
- .uuid-btn {
142
- height: 32px;
143
- padding: 0 10px;
144
- border: 1px solid #3f8cff;
145
- color: #3f8cff;
146
- font-weight: 700;
147
- font-size: 14px;
148
- background: white;
149
- border-radius: 6px;
150
-
151
- :deep(.block) {
152
- line-height: normal;
153
- }
154
- }
155
-
156
- :deep(.q-placeholder) {
157
- color: #7d8592;
158
- }
159
-
160
- :deep(.q-field__control) {
161
- min-height: 58px;
162
- border-radius: 8px;
163
- border: 1px solid #d8e0f0;
164
- background: #fff;
165
- box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
166
- }
167
-
168
- :deep(.q-field--filled .q-field__control:before) {
169
- background: #fff !important;
170
- border: none;
171
- }
172
-
173
- :deep(.q-field--with-bottom) {
174
- padding-bottom: 0;
175
- }
176
-
177
- :deep(.q-field__bottom) {
178
- padding: 0;
179
- }
180
- }
181
- </style>
1
+ <template>
2
+ <div class="app-input-new" :class="{ hideBottomSpace }">
3
+ <label v-if="label" class="app-input-new__label">
4
+ {{ label }}
5
+ <span v-if="required" class="required">*</span>
6
+ </label>
7
+
8
+ <q-input
9
+ v-model="model"
10
+ filled
11
+ :type="inputType"
12
+ :rules="rules"
13
+ :placeholder="placeholder"
14
+ :disable="disable"
15
+ :readonly="readonly"
16
+ :class="inputClass"
17
+ :error="error"
18
+ :autocomplete="autocomplete"
19
+ :debounce="debounce"
20
+ :loading="loading"
21
+ :maxlength="maxlength"
22
+ :counter="counter"
23
+ :hide-bottom-space="hideBottomSpace"
24
+ @blur="emit('blur')"
25
+ >
26
+ <slot />
27
+ <template #append>
28
+ <slot name="append" />
29
+ <q-icon
30
+ v-if="type === 'password'"
31
+ :name="isVisiblePass ? 'visibility' : 'visibility_off'"
32
+ color="primary"
33
+ class="cursor-pointer"
34
+ @click="isVisiblePass = !isVisiblePass"
35
+ />
36
+ <q-icon
37
+ v-if="clearable && (model || model === 0)"
38
+ name="close"
39
+ class="cursor-pointer clear-input"
40
+ @click="model = null"
41
+ />
42
+ <q-btn
43
+ v-if="uuid && !disable && !readonly"
44
+ flat
45
+ no-caps
46
+ label="UUID"
47
+ size="sm"
48
+ class="q-ml-sm uuid-btn"
49
+ @click="model = uuidv4()"
50
+ />
51
+ <q-icon
52
+ v-if="copyable"
53
+ name="content_copy"
54
+ class="cursor-pointer q-ml-sm copy-icon"
55
+ color="primary"
56
+ :disable="!model"
57
+ @click="copyToClipboard"
58
+ />
59
+ </template>
60
+ </q-input>
61
+ </div>
62
+ </template>
63
+
64
+ <script setup lang="ts">
65
+ import { defineEmits, defineProps, computed, ref } from 'vue'
66
+ import { uuidv4 } from '@/utils/helpers'
67
+ import { notificationSettings } from '@/utils/notification'
68
+ import { QInputProps, useQuasar } from 'quasar'
69
+
70
+ const props = defineProps<
71
+ QInputProps & {
72
+ modelValue?: string | number | null
73
+ label?: string
74
+ placeholder?: string
75
+ rules?: ((val: string | number | null | undefined) => boolean | string)[]
76
+ inputClass?: string
77
+ required?: boolean
78
+ readonly?: boolean
79
+ disable?: boolean
80
+ uuid?: boolean
81
+ clearable?: boolean
82
+ copyable?: boolean
83
+ error?: boolean
84
+ autocomplete?: string
85
+ debounce?: number
86
+ loading?: boolean
87
+ }
88
+ >()
89
+
90
+ const emit = defineEmits<{
91
+ (e: 'update:modelValue', val?: string | number | null): void
92
+ (e: 'blur', val?: string | number | null): void
93
+ }>()
94
+
95
+ const $q = useQuasar()
96
+
97
+ const isVisiblePass = ref(false)
98
+
99
+ const model = computed({
100
+ get: () => getValue(props.modelValue),
101
+ set: (newValue?: string | number | null) => emit('update:modelValue', getValue(newValue)),
102
+ })
103
+
104
+ const inputType = computed(() => (props.type === 'password' && isVisiblePass.value ? 'text' : props.type))
105
+
106
+ const getValue = (value?: string | number | null) => {
107
+ if (props.type === 'number') return value ? +value : value
108
+
109
+ return value
110
+ }
111
+
112
+ const copyToClipboard = () => {
113
+ if (!model.value && model.value !== 0) return
114
+
115
+ navigator.clipboard.writeText(model.value.toString()).then(() => {
116
+ $q.notify(notificationSettings('success', 'Данные скопированы'))
117
+ })
118
+ }
119
+ </script>
120
+
121
+ <style scoped lang="scss">
122
+ .app-input-new {
123
+ display: flex;
124
+ flex-direction: column;
125
+ margin-bottom: 15px;
126
+
127
+ &.hideBottomSpace {
128
+ margin-bottom: 0;
129
+ }
130
+
131
+ &__label {
132
+ font-size: 14px;
133
+ font-weight: 700;
134
+ color: #7d8592;
135
+ }
136
+
137
+ .required {
138
+ color: #f65160;
139
+ font-weight: bold;
140
+ }
141
+
142
+ .clear-input {
143
+ color: #d8e0f0;
144
+ }
145
+
146
+ .uuid-btn {
147
+ height: 32px;
148
+ padding: 0 10px;
149
+ border: 1px solid #3f8cff;
150
+ color: #3f8cff;
151
+ font-weight: 700;
152
+ font-size: 14px;
153
+ background: white;
154
+ border-radius: 6px;
155
+
156
+ :deep(.block) {
157
+ line-height: normal;
158
+ }
159
+ }
160
+
161
+ :deep(.q-placeholder) {
162
+ color: #7d8592;
163
+ }
164
+
165
+ :deep(.q-field__control) {
166
+ min-height: 58px;
167
+ border-radius: 8px;
168
+ border: 1px solid #d8e0f0;
169
+ background: #fff;
170
+ box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
171
+ }
172
+
173
+ :deep(.q-field--filled .q-field__control:before) {
174
+ background: #fff !important;
175
+ border: none;
176
+ }
177
+
178
+ :deep(.q-field--with-bottom) {
179
+ padding-bottom: 0;
180
+ }
181
+
182
+ :deep(.q-field__bottom) {
183
+ padding: 0;
184
+ }
185
+ }
186
+ </style>