shared-ritm 1.2.99 → 1.2.101

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