atom-nuxt 1.4.4 → 1.4.5
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/module.json
CHANGED
|
@@ -193,41 +193,7 @@ const displayForChip = (item) => {
|
|
|
193
193
|
></v-autocomplete>
|
|
194
194
|
</template>
|
|
195
195
|
<template v-else-if="filter.type === 'multiOption'">
|
|
196
|
-
<div v-if="filter.options.length < 10" class="pa-3 rounded border bg-white" style="border-color: #999!important;">
|
|
197
|
-
<div class="d-flex justify-space-between border-b pb-3 align-center mb-2" style="border-color: #999!important;">
|
|
198
|
-
<span class="text-grey-darken-2"><small>{{ filter.label }}</small></span>
|
|
199
|
-
<v-chip size="x-small" v-if="selectedValue.length === 0">Showing all</v-chip>
|
|
200
|
-
<v-chip size="x-small" color="error" @click="selectedValue = []"
|
|
201
|
-
v-if="selectedValue.length > 0">
|
|
202
|
-
<span class="mr-1">{{ selectedValue.length }} of {{ filter.options.length }}</span>
|
|
203
|
-
<v-icon size="14">mdi-close</v-icon>
|
|
204
|
-
</v-chip>
|
|
205
|
-
</div>
|
|
206
|
-
<v-chip-group
|
|
207
|
-
dense
|
|
208
|
-
:id="filter.key"
|
|
209
|
-
:column="true"
|
|
210
|
-
:disabled="disabled"
|
|
211
|
-
:label="filter.label"
|
|
212
|
-
:clearable="true"
|
|
213
|
-
:multiple="true"
|
|
214
|
-
clear-icon="mdi-backspace"
|
|
215
|
-
v-model="selectedValue"
|
|
216
|
-
:hint="filter.description"
|
|
217
|
-
>
|
|
218
|
-
<v-chip
|
|
219
|
-
v-for="(option, index) in filter.options"
|
|
220
|
-
:key="filter.key+'-'+index"
|
|
221
|
-
size="small"
|
|
222
|
-
color="success"
|
|
223
|
-
:value="option.value"
|
|
224
|
-
>
|
|
225
|
-
{{ option.label }}
|
|
226
|
-
</v-chip>
|
|
227
|
-
</v-chip-group>
|
|
228
|
-
</div>
|
|
229
196
|
<v-autocomplete
|
|
230
|
-
v-else
|
|
231
197
|
dense
|
|
232
198
|
:id="filter.key"
|
|
233
199
|
:disabled="disabled"
|
|
@@ -470,7 +470,7 @@ const exportAction = async () => {
|
|
|
470
470
|
>
|
|
471
471
|
</slot>
|
|
472
472
|
<div :class="contentClasses">
|
|
473
|
-
<v-progress-linear :active="listPending" indeterminate color="primary"></v-progress-linear>
|
|
473
|
+
<v-progress-linear :active="listPending && !isInitialLoad" indeterminate color="primary"></v-progress-linear>
|
|
474
474
|
<v-row>
|
|
475
475
|
<v-col v-if="!hideFilters && (filters.length > 0 || isInitialLoad)" cols="12" md="3">
|
|
476
476
|
<div>
|