shared-ritm 1.2.125 → 1.2.127

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 (128) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +283 -285
  4. package/dist/shared-ritm.umd.js +8 -8
  5. package/package.json +64 -64
  6. package/src/App.vue +2461 -2461
  7. package/src/api/services/AuthService.ts +53 -53
  8. package/src/api/services/BrigadesService.ts +32 -32
  9. package/src/api/services/CommentsService.ts +24 -24
  10. package/src/api/services/ControlsService.ts +73 -73
  11. package/src/api/services/EquipmentService.ts +29 -29
  12. package/src/api/services/FileService.ts +17 -17
  13. package/src/api/services/GanttService.ts +17 -17
  14. package/src/api/services/InstrumentsService.ts +63 -63
  15. package/src/api/services/MetricsService.ts +110 -110
  16. package/src/api/services/ModulesService.ts +27 -27
  17. package/src/api/services/ProjectsService.ts +79 -79
  18. package/src/api/services/RepairsService.ts +123 -123
  19. package/src/api/services/SearchService.ts +22 -22
  20. package/src/api/services/TasksService.ts +145 -145
  21. package/src/api/services/UserService.ts +101 -101
  22. package/src/api/services/VideoService.ts +71 -71
  23. package/src/api/settings/ApiService.ts +124 -124
  24. package/src/api/types/Api_Auth.ts +86 -86
  25. package/src/api/types/Api_Brigades.ts +36 -36
  26. package/src/api/types/Api_Comment.ts +40 -40
  27. package/src/api/types/Api_Controls.ts +93 -93
  28. package/src/api/types/Api_Equipment.ts +3 -3
  29. package/src/api/types/Api_Files.ts +7 -7
  30. package/src/api/types/Api_Instruments.ts +136 -136
  31. package/src/api/types/Api_Modules.ts +21 -21
  32. package/src/api/types/Api_Projects.ts +60 -60
  33. package/src/api/types/Api_Repairs.ts +117 -117
  34. package/src/api/types/Api_Search.ts +77 -77
  35. package/src/api/types/Api_Service.ts +9 -9
  36. package/src/api/types/Api_Tasks.ts +319 -319
  37. package/src/api/types/Api_User.ts +117 -117
  38. package/src/api/types/Api_Video.ts +140 -140
  39. package/src/common/app-button/AppButton.vue +173 -173
  40. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  41. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  42. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  43. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  44. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  45. package/src/common/app-icon/AppIcon.vue +108 -108
  46. package/src/common/app-input/AppInput.vue +148 -148
  47. package/src/common/app-input-new/AppInputNew.vue +175 -175
  48. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  49. package/src/common/app-layout/AppLayout.vue +84 -84
  50. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  51. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  52. package/src/common/app-loader/index.vue +43 -43
  53. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  54. package/src/common/app-select/AppSelect.vue +157 -157
  55. package/src/common/app-sheet/AppSheet.vue +120 -120
  56. package/src/common/app-sheet-new/AppSheetNew.vue +246 -246
  57. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  58. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  59. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  60. package/src/common/app-table/AppTable.vue +308 -308
  61. package/src/common/app-table/AppTableLayout.vue +137 -137
  62. package/src/common/app-table/components/ModalSelect.vue +281 -281
  63. package/src/common/app-table/components/TableModal.vue +356 -356
  64. package/src/common/app-table/components/TablePagination.vue +152 -152
  65. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  66. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  67. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  68. package/src/common/app-toggle/AppToggle.vue +24 -24
  69. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  70. package/src/global.d.ts +1 -1
  71. package/src/icons/components/arrow-down-icon.vue +25 -25
  72. package/src/icons/components/arrow-frame-icon.vue +19 -19
  73. package/src/icons/components/arrow-square.vue +22 -22
  74. package/src/icons/components/table-filter-icon.vue +30 -30
  75. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  76. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  77. package/src/icons/header/NotificationIcon.vue +18 -18
  78. package/src/icons/header/PersonIcon.vue +11 -11
  79. package/src/icons/header/SettingIcon.vue +14 -14
  80. package/src/icons/header/flashIcon.vue +24 -24
  81. package/src/icons/header/searchStatusIcon.vue +24 -24
  82. package/src/icons/header/smallCapsIcon.vue +34 -34
  83. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  84. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  85. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  86. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  87. package/src/icons/sidebar/instruments-icon.vue +45 -45
  88. package/src/icons/sidebar/logo-icon.vue +15 -15
  89. package/src/icons/sidebar/logout-icon.vue +13 -13
  90. package/src/icons/sidebar/modules-icon.vue +16 -16
  91. package/src/icons/sidebar/notifications-icon.vue +24 -24
  92. package/src/icons/sidebar/order-icon.vue +44 -44
  93. package/src/icons/sidebar/pass-icon.vue +38 -38
  94. package/src/icons/sidebar/positions-icon.vue +42 -42
  95. package/src/icons/sidebar/preorder-icon.vue +19 -19
  96. package/src/icons/sidebar/projects-icon.vue +31 -31
  97. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  98. package/src/icons/sidebar/repairs-icon.vue +20 -20
  99. package/src/icons/sidebar/roles-icon.vue +26 -26
  100. package/src/icons/sidebar/status-history-icon.vue +24 -24
  101. package/src/icons/sidebar/tasks-icon.vue +28 -28
  102. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  103. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  104. package/src/icons/sidebar/teams-icon.vue +32 -32
  105. package/src/icons/sidebar/user-icon.vue +18 -18
  106. package/src/icons/sidebar/users-icon.vue +46 -46
  107. package/src/icons/sidebar/videosources-icon.vue +19 -19
  108. package/src/icons/sidebar/videowall-icon.vue +13 -13
  109. package/src/icons/sidebar/videozones-icon.vue +21 -21
  110. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  111. package/src/icons/sidebar/workshop-icon.vue +100 -100
  112. package/src/icons/sidebar/workzones-icon.vue +22 -22
  113. package/src/icons/task/attention-icon.vue +13 -13
  114. package/src/icons/task/clock-icon.vue +10 -10
  115. package/src/icons/task/delete-icon.vue +10 -10
  116. package/src/icons/task/fire-icon.vue +16 -16
  117. package/src/index.ts +123 -123
  118. package/src/main.ts +28 -28
  119. package/src/quasar-user-options.ts +17 -17
  120. package/src/router/index.ts +10 -10
  121. package/src/shared/styles/general.css +124 -124
  122. package/src/shims-vue.d.ts +5 -5
  123. package/src/styles/variables.sass +12 -12
  124. package/src/utils/confirm.ts +12 -12
  125. package/src/utils/faceApiHelper.ts +132 -132
  126. package/src/utils/helpers.ts +59 -59
  127. package/src/utils/notification.ts +9 -9
  128. package/dist/types/api/services/PhotoService.d.ts +0 -40
@@ -1,281 +1,281 @@
1
- <template>
2
- <label v-if="label" class="field-label">
3
- {{ label }}
4
- <span v-if="rules?.length && isShowRequired" class="required">*</span>
5
- </label>
6
-
7
- <q-select
8
- ref="select"
9
- v-model="selected"
10
- :options="filteredOptions"
11
- :disable="isDisabled"
12
- :multiple="multiple"
13
- :popup-content-class="'custom-select-menu'"
14
- :hide-selected="!showChip && !simple"
15
- :placeholder="placeholder"
16
- :loading="loading"
17
- :option-value="optionValue || 'value'"
18
- :option-label="optionLabel || 'label'"
19
- emit-value
20
- filled
21
- map-options
22
- stack-label
23
- use-input
24
- :use-chips="!simple"
25
- :hide-bottom-space="hideBottomSpace"
26
- input-debounce="100"
27
- autocomplete=""
28
- :rules="rules"
29
- @virtual-scroll="onScroll"
30
- @filter="filterFn"
31
- >
32
- <template v-if="multiple || showChip" #selected-item="scope">
33
- <q-chip
34
- v-if="scope.opt"
35
- removable
36
- :tabindex="scope.tabindex"
37
- :style="{ backgroundColor: chipColor }"
38
- icon-remove="close"
39
- text-color="secondary"
40
- @remove="scope.removeAtIndex(scope.index)"
41
- >
42
- {{ scope.opt[optionLabel || 'label'] }}
43
- </q-chip>
44
- </template>
45
-
46
- <template #append>
47
- <q-icon
48
- v-if="!isDisabled && !isEmpty"
49
- name="close"
50
- class="cursor-pointer clear-input"
51
- @click.stop="handleClear"
52
- />
53
- </template>
54
-
55
- <template #no-option>
56
- <div class="q-pa-sm">
57
- <q-item>
58
- <q-item-section class="wrapper-empty-text">
59
- {{ emptyText || 'Ничего не найдено' }}
60
- <button
61
- v-if="allowCreate && internalSearch && internalSearch.trim()"
62
- class="add-new-items"
63
- @click="handleCreateFromSearch"
64
- >
65
- Добавить
66
- </button>
67
- </q-item-section>
68
- </q-item>
69
- </div>
70
- </template>
71
-
72
- <template #option="scope">
73
- <q-item v-if="scope.opt.__loading" class="q-py-md q-ml-md">
74
- <q-spinner-dots size="24px" color="primary" />
75
- </q-item>
76
- <q-item v-else-if="'option' in slots" v-bind="scope.itemProps">
77
- <slot name="option" :opt="scope.opt" />
78
- </q-item>
79
- <q-item v-else v-bind="scope.itemProps">
80
- <q-item-section>{{ scope.opt[optionLabel || 'label'] }}</q-item-section>
81
- </q-item>
82
- </template>
83
- </q-select>
84
- </template>
85
-
86
- <script setup lang="ts">
87
- import { computed, defineEmits, defineProps, ref, Ref, useSlots } from 'vue'
88
- type Option = Record<string, any>
89
-
90
- interface AppQSelectProps {
91
- modelValue: any
92
- options: Option[]
93
- placeholder?: string | undefined
94
- emptyText?: string
95
- optionLabel?: string
96
- optionValue?: string
97
- label?: string
98
- multiple?: boolean
99
- loading?: boolean
100
- isShowRequired?: boolean
101
- isDisabled?: boolean
102
- allowCreate?: boolean
103
- isSearch?: boolean
104
- showChip?: boolean
105
- simple?: boolean
106
- hideBottomSpace?: boolean
107
- chipColor?: string
108
- height?: string
109
- borderColor?: string
110
- borderRadius?: string
111
- menuWidth?: string
112
- rules?: ((val: any) => boolean | string)[]
113
- }
114
-
115
- const props = defineProps<AppQSelectProps>()
116
- const emit = defineEmits(['update:modelValue', 'update:scroll', 'update:search', 'clear', 'create'])
117
-
118
- const slots = useSlots()
119
-
120
- const select = ref({})
121
- const lcText: Ref<string> = ref('')
122
- const internalSearch = ref('')
123
-
124
- const selected = computed({
125
- get() {
126
- return props.modelValue
127
- },
128
- set(value) {
129
- emit('update:modelValue', value)
130
- },
131
- })
132
-
133
- const isEmpty = computed(() => {
134
- if (!props.modelValue && props.modelValue !== 0) return true
135
-
136
- return Array.isArray(props.modelValue) && !props.modelValue.length
137
- })
138
-
139
- function handleClear() {
140
- const emptyValue = props.multiple ? [] : null
141
- selected.value = emptyValue
142
- lcText.value = ''
143
- emit('update:modelValue', emptyValue)
144
- emit('clear')
145
- }
146
-
147
- const filteredOptions = computed(() => {
148
- const labelKey = props.optionLabel || 'label'
149
-
150
- const baseOptions = props.options.filter(x => {
151
- const label = x[labelKey]
152
- return typeof label === 'string' && label.toLowerCase().includes(lcText.value)
153
- })
154
-
155
- if (props.loading) {
156
- return [
157
- ...baseOptions,
158
- {
159
- __loading: true,
160
- label: '__loading__',
161
- value: '__loading__',
162
- },
163
- ]
164
- }
165
-
166
- return baseOptions
167
- })
168
-
169
- function handleCreateFromSearch() {
170
- const labelKey = props.optionLabel || 'label'
171
- const valueKey = props.optionValue || 'value'
172
-
173
- const trimmed = internalSearch.value?.trim()
174
- if (!trimmed) return
175
-
176
- const newOption = {
177
- [labelKey]: trimmed,
178
- [valueKey]: trimmed,
179
- }
180
- emit('create', newOption)
181
- handleClear()
182
- }
183
-
184
- function filterFn(val: string, update: (cb: () => void) => void) {
185
- debouncedFilter(val, update)
186
- }
187
-
188
- const debouncedFilter = debounce((val: string, update: (cb: () => void) => void) => {
189
- internalSearch.value = val
190
- emit('update:search', val)
191
- update(() => {
192
- lcText.value = val.toLowerCase()
193
- })
194
- }, 500)
195
-
196
- function onScroll({ to, ref: qSelectRef }) {
197
- const totalOptions = qSelectRef.options.length
198
- if (to >= totalOptions - 1 && !lcText.value) {
199
- emit('update:scroll')
200
- }
201
- }
202
-
203
- function debounce<T>(fn: T, ms) {
204
- let timeoutId
205
- return function (...args) {
206
- clearTimeout(timeoutId)
207
- return new Promise(resolve => {
208
- timeoutId = setTimeout(() => {
209
- resolve(fn(...args))
210
- }, ms)
211
- })
212
- }
213
- }
214
- </script>
215
-
216
- <style lang="scss" scoped>
217
- .wrapper-empty-text {
218
- display: flex;
219
- align-items: center;
220
- justify-content: space-between;
221
- flex-direction: row;
222
- .add-new-items {
223
- background: #3f8cff;
224
- color: #fff;
225
- outline: none;
226
- border: none;
227
- border-radius: 4px;
228
- padding: 5px 10px;
229
- cursor: pointer;
230
- }
231
- }
232
- .field-label {
233
- font-size: 14px;
234
- font-weight: 700;
235
- color: #7d8592;
236
- }
237
- .required {
238
- color: #f65160;
239
- font-weight: bold;
240
- }
241
-
242
- ::v-deep(.q-placeholder) {
243
- color: #7d8592;
244
- }
245
- ::v-deep(.q-field__control) {
246
- border-radius: 8px;
247
- border: 1px solid #d8e0f0;
248
- background: #fff;
249
- box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
250
- }
251
- :deep(.q-field__control:before) {
252
- display: none;
253
- }
254
- :global(.q-field--filled.q-field--highlighted .q-field__control:before) {
255
- background: #fff !important;
256
- border: none;
257
- }
258
- ::v-deep(.q-field--with-bottom) {
259
- padding-bottom: 0;
260
- }
261
- ::v-deep(.q-field__bottom) {
262
- padding: 0;
263
- }
264
- .clear-input {
265
- color: #d8e0f0;
266
- }
267
- ::v-deep(.q-chip) {
268
- border-radius: 4px;
269
- background: #e9eff9;
270
- color: #1d425d;
271
- font-family: NunitoSansFont, sans-serif;
272
- font-size: 14px;
273
- height: 30px;
274
- line-height: 30px;
275
- padding: 0 15px;
276
- .q-chip__icon {
277
- color: #3f8cff;
278
- margin-left: 5px;
279
- }
280
- }
281
- </style>
1
+ <template>
2
+ <label v-if="label" class="field-label">
3
+ {{ label }}
4
+ <span v-if="rules?.length && isShowRequired" class="required">*</span>
5
+ </label>
6
+
7
+ <q-select
8
+ ref="select"
9
+ v-model="selected"
10
+ :options="filteredOptions"
11
+ :disable="isDisabled"
12
+ :multiple="multiple"
13
+ :popup-content-class="'custom-select-menu'"
14
+ :hide-selected="!showChip && !simple"
15
+ :placeholder="placeholder"
16
+ :loading="loading"
17
+ :option-value="optionValue || 'value'"
18
+ :option-label="optionLabel || 'label'"
19
+ emit-value
20
+ filled
21
+ map-options
22
+ stack-label
23
+ use-input
24
+ :use-chips="!simple"
25
+ :hide-bottom-space="hideBottomSpace"
26
+ input-debounce="100"
27
+ autocomplete=""
28
+ :rules="rules"
29
+ @virtual-scroll="onScroll"
30
+ @filter="filterFn"
31
+ >
32
+ <template v-if="multiple || showChip" #selected-item="scope">
33
+ <q-chip
34
+ v-if="scope.opt"
35
+ removable
36
+ :tabindex="scope.tabindex"
37
+ :style="{ backgroundColor: chipColor }"
38
+ icon-remove="close"
39
+ text-color="secondary"
40
+ @remove="scope.removeAtIndex(scope.index)"
41
+ >
42
+ {{ scope.opt[optionLabel || 'label'] }}
43
+ </q-chip>
44
+ </template>
45
+
46
+ <template #append>
47
+ <q-icon
48
+ v-if="!isDisabled && !isEmpty"
49
+ name="close"
50
+ class="cursor-pointer clear-input"
51
+ @click.stop="handleClear"
52
+ />
53
+ </template>
54
+
55
+ <template #no-option>
56
+ <div class="q-pa-sm">
57
+ <q-item>
58
+ <q-item-section class="wrapper-empty-text">
59
+ {{ emptyText || 'Ничего не найдено' }}
60
+ <button
61
+ v-if="allowCreate && internalSearch && internalSearch.trim()"
62
+ class="add-new-items"
63
+ @click="handleCreateFromSearch"
64
+ >
65
+ Добавить
66
+ </button>
67
+ </q-item-section>
68
+ </q-item>
69
+ </div>
70
+ </template>
71
+
72
+ <template #option="scope">
73
+ <q-item v-if="scope.opt.__loading" class="q-py-md q-ml-md">
74
+ <q-spinner-dots size="24px" color="primary" />
75
+ </q-item>
76
+ <q-item v-else-if="'option' in slots" v-bind="scope.itemProps">
77
+ <slot name="option" :opt="scope.opt" />
78
+ </q-item>
79
+ <q-item v-else v-bind="scope.itemProps">
80
+ <q-item-section>{{ scope.opt[optionLabel || 'label'] }}</q-item-section>
81
+ </q-item>
82
+ </template>
83
+ </q-select>
84
+ </template>
85
+
86
+ <script setup lang="ts">
87
+ import { computed, defineEmits, defineProps, ref, Ref, useSlots } from 'vue'
88
+ type Option = Record<string, any>
89
+
90
+ interface AppQSelectProps {
91
+ modelValue: any
92
+ options: Option[]
93
+ placeholder?: string | undefined
94
+ emptyText?: string
95
+ optionLabel?: string
96
+ optionValue?: string
97
+ label?: string
98
+ multiple?: boolean
99
+ loading?: boolean
100
+ isShowRequired?: boolean
101
+ isDisabled?: boolean
102
+ allowCreate?: boolean
103
+ isSearch?: boolean
104
+ showChip?: boolean
105
+ simple?: boolean
106
+ hideBottomSpace?: boolean
107
+ chipColor?: string
108
+ height?: string
109
+ borderColor?: string
110
+ borderRadius?: string
111
+ menuWidth?: string
112
+ rules?: ((val: any) => boolean | string)[]
113
+ }
114
+
115
+ const props = defineProps<AppQSelectProps>()
116
+ const emit = defineEmits(['update:modelValue', 'update:scroll', 'update:search', 'clear', 'create'])
117
+
118
+ const slots = useSlots()
119
+
120
+ const select = ref({})
121
+ const lcText: Ref<string> = ref('')
122
+ const internalSearch = ref('')
123
+
124
+ const selected = computed({
125
+ get() {
126
+ return props.modelValue
127
+ },
128
+ set(value) {
129
+ emit('update:modelValue', value)
130
+ },
131
+ })
132
+
133
+ const isEmpty = computed(() => {
134
+ if (!props.modelValue && props.modelValue !== 0) return true
135
+
136
+ return Array.isArray(props.modelValue) && !props.modelValue.length
137
+ })
138
+
139
+ function handleClear() {
140
+ const emptyValue = props.multiple ? [] : null
141
+ selected.value = emptyValue
142
+ lcText.value = ''
143
+ emit('update:modelValue', emptyValue)
144
+ emit('clear')
145
+ }
146
+
147
+ const filteredOptions = computed(() => {
148
+ const labelKey = props.optionLabel || 'label'
149
+
150
+ const baseOptions = props.options.filter(x => {
151
+ const label = x[labelKey]
152
+ return typeof label === 'string' && label.toLowerCase().includes(lcText.value)
153
+ })
154
+
155
+ if (props.loading) {
156
+ return [
157
+ ...baseOptions,
158
+ {
159
+ __loading: true,
160
+ label: '__loading__',
161
+ value: '__loading__',
162
+ },
163
+ ]
164
+ }
165
+
166
+ return baseOptions
167
+ })
168
+
169
+ function handleCreateFromSearch() {
170
+ const labelKey = props.optionLabel || 'label'
171
+ const valueKey = props.optionValue || 'value'
172
+
173
+ const trimmed = internalSearch.value?.trim()
174
+ if (!trimmed) return
175
+
176
+ const newOption = {
177
+ [labelKey]: trimmed,
178
+ [valueKey]: trimmed,
179
+ }
180
+ emit('create', newOption)
181
+ handleClear()
182
+ }
183
+
184
+ function filterFn(val: string, update: (cb: () => void) => void) {
185
+ debouncedFilter(val, update)
186
+ }
187
+
188
+ const debouncedFilter = debounce((val: string, update: (cb: () => void) => void) => {
189
+ internalSearch.value = val
190
+ emit('update:search', val)
191
+ update(() => {
192
+ lcText.value = val.toLowerCase()
193
+ })
194
+ }, 500)
195
+
196
+ function onScroll({ to, ref: qSelectRef }) {
197
+ const totalOptions = qSelectRef.options.length
198
+ if (to >= totalOptions - 1 && !lcText.value) {
199
+ emit('update:scroll')
200
+ }
201
+ }
202
+
203
+ function debounce<T>(fn: T, ms) {
204
+ let timeoutId
205
+ return function (...args) {
206
+ clearTimeout(timeoutId)
207
+ return new Promise(resolve => {
208
+ timeoutId = setTimeout(() => {
209
+ resolve(fn(...args))
210
+ }, ms)
211
+ })
212
+ }
213
+ }
214
+ </script>
215
+
216
+ <style lang="scss" scoped>
217
+ .wrapper-empty-text {
218
+ display: flex;
219
+ align-items: center;
220
+ justify-content: space-between;
221
+ flex-direction: row;
222
+ .add-new-items {
223
+ background: #3f8cff;
224
+ color: #fff;
225
+ outline: none;
226
+ border: none;
227
+ border-radius: 4px;
228
+ padding: 5px 10px;
229
+ cursor: pointer;
230
+ }
231
+ }
232
+ .field-label {
233
+ font-size: 14px;
234
+ font-weight: 700;
235
+ color: #7d8592;
236
+ }
237
+ .required {
238
+ color: #f65160;
239
+ font-weight: bold;
240
+ }
241
+
242
+ ::v-deep(.q-placeholder) {
243
+ color: #7d8592;
244
+ }
245
+ ::v-deep(.q-field__control) {
246
+ border-radius: 8px;
247
+ border: 1px solid #d8e0f0;
248
+ background: #fff;
249
+ box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
250
+ }
251
+ :deep(.q-field__control:before) {
252
+ display: none;
253
+ }
254
+ :global(.q-field--filled.q-field--highlighted .q-field__control:before) {
255
+ background: #fff !important;
256
+ border: none;
257
+ }
258
+ ::v-deep(.q-field--with-bottom) {
259
+ padding-bottom: 0;
260
+ }
261
+ ::v-deep(.q-field__bottom) {
262
+ padding: 0;
263
+ }
264
+ .clear-input {
265
+ color: #d8e0f0;
266
+ }
267
+ ::v-deep(.q-chip) {
268
+ border-radius: 4px;
269
+ background: #e9eff9;
270
+ color: #1d425d;
271
+ font-family: NunitoSansFont, sans-serif;
272
+ font-size: 14px;
273
+ height: 30px;
274
+ line-height: 30px;
275
+ padding: 0 15px;
276
+ .q-chip__icon {
277
+ color: #3f8cff;
278
+ margin-left: 5px;
279
+ }
280
+ }
281
+ </style>