@quoreadmin/ui 1.4.3 → 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/index154.js +1 -0
- package/dist/index168.js +4 -4
- package/dist/index175.js +8 -8
- package/dist/index177.js +8 -8
- package/dist/index181.js +17 -17
- package/dist/index184.js +7 -7
- package/dist/index195.js +4 -4
- package/dist/index213.js +121 -155
- package/dist/index214.js +37 -19
- package/dist/index215.js +80 -20
- package/dist/index216.js +13 -15
- package/dist/index217.js +19 -198
- package/dist/index218.js +18 -68
- package/dist/index219.js +20 -34
- package/dist/index220.js +19 -39
- package/dist/index221.js +156 -122
- package/dist/index222.js +225 -35
- package/dist/index223.js +37 -80
- package/dist/index224.js +10 -20
- package/dist/index225.js +160 -19
- package/dist/index226.js +10 -10
- package/dist/index227.js +15 -13
- package/dist/index228.js +194 -156
- package/dist/index229.js +66 -224
- package/dist/index230.js +34 -37
- package/dist/index231.js +39 -9
- package/dist/index235.js +6 -6
- package/dist/index236.js +1 -1
- package/dist/index242.js +1 -1
- package/dist/index243.js +1 -1
- package/dist/index244.js +6 -6
- package/dist/index253.js +6 -6
- package/dist/index254.js +1 -1
- package/dist/index255.js +1 -1
- package/dist/index268.js +2 -2
- package/dist/index275.js +2 -54
- package/dist/index277.js +234 -25
- package/dist/index278.js +5 -21
- package/dist/index279.js +133 -21
- package/dist/index280.js +68 -16
- package/dist/index281.js +85 -15
- package/dist/index282.js +28 -22
- package/dist/index283.js +9 -2
- package/dist/index284.js +69 -229
- package/dist/index285.js +3 -5
- package/dist/index286.js +2 -134
- package/dist/index287.js +79 -64
- package/dist/index288.js +51 -84
- package/dist/index289.js +5 -28
- package/dist/index290.js +4 -8
- package/dist/index291.js +173 -69
- package/dist/index292.js +62 -3
- package/dist/index293.js +75 -2
- package/dist/index294.js +49 -78
- package/dist/index295.js +25 -53
- package/dist/index296.js +21 -5
- package/dist/index297.js +21 -4
- package/dist/index298.js +15 -178
- package/dist/index299.js +16 -62
- package/dist/index300.js +22 -74
- package/dist/index301.js +1518 -79
- package/dist/index302.js +386 -22
- package/dist/index303.js +2698 -902
- package/dist/index304.js +85 -21
- package/dist/index305.js +3770 -20
- package/dist/index306.js +59 -19
- package/dist/index307.js +15 -69
- package/dist/index308.js +84 -19
- package/dist/index309.js +201 -18
- package/dist/index310.js +246 -22
- package/dist/index311.js +78 -21
- package/dist/index312.js +22 -63
- package/dist/index313.js +909 -1492
- package/dist/index314.js +22 -386
- package/dist/index315.js +20 -2731
- package/dist/index316.js +19 -85
- package/dist/index317.js +58 -3759
- package/dist/index318.js +19 -60
- package/dist/index319.js +19 -15
- package/dist/index320.js +21 -83
- package/dist/index321.js +22 -202
- package/dist/index322.js +63 -246
- package/dist/index347.js +1 -1
- package/dist/index348.js +1 -1
- package/dist/index349.js +5 -5
- package/dist/index351.js +2 -2
- package/dist/index353.js +2 -2
- package/dist/index355.js +1 -1
- package/dist/index357.js +4 -4
- package/dist/index358.js +3 -3
- package/dist/index361.js +1 -1
- package/dist/index363.js +1 -1
- package/dist/index364.js +3 -3
- package/dist/index369.js +1 -1
- package/dist/index371.js +1 -1
- package/dist/index372.js +3 -3
- package/dist/index373.js +3 -3
- package/dist/index375.js +100 -16
- package/dist/index376.js +90 -100
- package/dist/index377.js +98 -91
- package/dist/index378.js +16 -97
- package/dist/index385.js +1 -1
- package/dist/src/composables/filtering.d.ts +5 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/views/lists.vue.d.ts +52 -12
- package/dist/src/views/showcase.vue.d.ts +130 -30
- package/dist/src/views/tables.vue.d.ts +52 -12
- package/package.json +3 -3
- package/tailwind.preset.ts +1 -0
|
@@ -145,53 +145,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
145
145
|
filteredData: import('vue').Ref<any[], any[]>;
|
|
146
146
|
filteredPropertyData: import('vue').Ref<any[], any[]>;
|
|
147
147
|
filters: import('vue').Ref<{
|
|
148
|
+
attribute?: string | undefined;
|
|
148
149
|
key?: string | undefined;
|
|
149
150
|
message?: string | undefined;
|
|
150
151
|
name?: string | undefined;
|
|
151
152
|
options: {
|
|
152
|
-
id?: number | string | undefined;
|
|
153
|
+
id?: number | string | boolean | undefined;
|
|
153
154
|
key?: string | undefined;
|
|
154
155
|
name: string;
|
|
155
156
|
value?: number | string | boolean | undefined;
|
|
156
157
|
checked?: boolean | undefined;
|
|
158
|
+
optionClass?: string | undefined;
|
|
159
|
+
tagClass?: string | undefined;
|
|
160
|
+
closeTagClass?: string | undefined;
|
|
157
161
|
}[];
|
|
158
162
|
selected: {
|
|
159
|
-
id?: number | string | undefined;
|
|
163
|
+
id?: number | string | boolean | undefined;
|
|
160
164
|
key?: string | undefined;
|
|
161
165
|
name: string;
|
|
162
166
|
value?: number | string | boolean | undefined;
|
|
163
167
|
checked?: boolean | undefined;
|
|
168
|
+
optionClass?: string | undefined;
|
|
169
|
+
tagClass?: string | undefined;
|
|
170
|
+
closeTagClass?: string | undefined;
|
|
164
171
|
} | {
|
|
165
|
-
id?: number | string | undefined;
|
|
172
|
+
id?: number | string | boolean | undefined;
|
|
166
173
|
key?: string | undefined;
|
|
167
174
|
name: string;
|
|
168
175
|
value?: number | string | boolean | undefined;
|
|
169
176
|
checked?: boolean | undefined;
|
|
177
|
+
optionClass?: string | undefined;
|
|
178
|
+
tagClass?: string | undefined;
|
|
179
|
+
closeTagClass?: string | undefined;
|
|
170
180
|
}[] | null;
|
|
171
181
|
required?: boolean | undefined;
|
|
172
182
|
}[], FilterObject[] | {
|
|
183
|
+
attribute?: string | undefined;
|
|
173
184
|
key?: string | undefined;
|
|
174
185
|
message?: string | undefined;
|
|
175
186
|
name?: string | undefined;
|
|
176
187
|
options: {
|
|
177
|
-
id?: number | string | undefined;
|
|
188
|
+
id?: number | string | boolean | undefined;
|
|
178
189
|
key?: string | undefined;
|
|
179
190
|
name: string;
|
|
180
191
|
value?: number | string | boolean | undefined;
|
|
181
192
|
checked?: boolean | undefined;
|
|
193
|
+
optionClass?: string | undefined;
|
|
194
|
+
tagClass?: string | undefined;
|
|
195
|
+
closeTagClass?: string | undefined;
|
|
182
196
|
}[];
|
|
183
197
|
selected: {
|
|
184
|
-
id?: number | string | undefined;
|
|
198
|
+
id?: number | string | boolean | undefined;
|
|
185
199
|
key?: string | undefined;
|
|
186
200
|
name: string;
|
|
187
201
|
value?: number | string | boolean | undefined;
|
|
188
202
|
checked?: boolean | undefined;
|
|
203
|
+
optionClass?: string | undefined;
|
|
204
|
+
tagClass?: string | undefined;
|
|
205
|
+
closeTagClass?: string | undefined;
|
|
189
206
|
} | {
|
|
190
|
-
id?: number | string | undefined;
|
|
207
|
+
id?: number | string | boolean | undefined;
|
|
191
208
|
key?: string | undefined;
|
|
192
209
|
name: string;
|
|
193
210
|
value?: number | string | boolean | undefined;
|
|
194
211
|
checked?: boolean | undefined;
|
|
212
|
+
optionClass?: string | undefined;
|
|
213
|
+
tagClass?: string | undefined;
|
|
214
|
+
closeTagClass?: string | undefined;
|
|
195
215
|
}[] | null;
|
|
196
216
|
required?: boolean | undefined;
|
|
197
217
|
}[]>;
|
|
@@ -199,53 +219,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
199
219
|
loading: import('vue').Ref<boolean, boolean>;
|
|
200
220
|
propertyData: import('vue').Ref<any[], any[]>;
|
|
201
221
|
propertyFilters: import('vue').Ref<{
|
|
222
|
+
attribute?: string | undefined;
|
|
202
223
|
key?: string | undefined;
|
|
203
224
|
message?: string | undefined;
|
|
204
225
|
name?: string | undefined;
|
|
205
226
|
options: {
|
|
206
|
-
id?: number | string | undefined;
|
|
227
|
+
id?: number | string | boolean | undefined;
|
|
207
228
|
key?: string | undefined;
|
|
208
229
|
name: string;
|
|
209
230
|
value?: number | string | boolean | undefined;
|
|
210
231
|
checked?: boolean | undefined;
|
|
232
|
+
optionClass?: string | undefined;
|
|
233
|
+
tagClass?: string | undefined;
|
|
234
|
+
closeTagClass?: string | undefined;
|
|
211
235
|
}[];
|
|
212
236
|
selected: {
|
|
213
|
-
id?: number | string | undefined;
|
|
237
|
+
id?: number | string | boolean | undefined;
|
|
214
238
|
key?: string | undefined;
|
|
215
239
|
name: string;
|
|
216
240
|
value?: number | string | boolean | undefined;
|
|
217
241
|
checked?: boolean | undefined;
|
|
242
|
+
optionClass?: string | undefined;
|
|
243
|
+
tagClass?: string | undefined;
|
|
244
|
+
closeTagClass?: string | undefined;
|
|
218
245
|
} | {
|
|
219
|
-
id?: number | string | undefined;
|
|
246
|
+
id?: number | string | boolean | undefined;
|
|
220
247
|
key?: string | undefined;
|
|
221
248
|
name: string;
|
|
222
249
|
value?: number | string | boolean | undefined;
|
|
223
250
|
checked?: boolean | undefined;
|
|
251
|
+
optionClass?: string | undefined;
|
|
252
|
+
tagClass?: string | undefined;
|
|
253
|
+
closeTagClass?: string | undefined;
|
|
224
254
|
}[] | null;
|
|
225
255
|
required?: boolean | undefined;
|
|
226
256
|
}[], FilterObject[] | {
|
|
257
|
+
attribute?: string | undefined;
|
|
227
258
|
key?: string | undefined;
|
|
228
259
|
message?: string | undefined;
|
|
229
260
|
name?: string | undefined;
|
|
230
261
|
options: {
|
|
231
|
-
id?: number | string | undefined;
|
|
262
|
+
id?: number | string | boolean | undefined;
|
|
232
263
|
key?: string | undefined;
|
|
233
264
|
name: string;
|
|
234
265
|
value?: number | string | boolean | undefined;
|
|
235
266
|
checked?: boolean | undefined;
|
|
267
|
+
optionClass?: string | undefined;
|
|
268
|
+
tagClass?: string | undefined;
|
|
269
|
+
closeTagClass?: string | undefined;
|
|
236
270
|
}[];
|
|
237
271
|
selected: {
|
|
238
|
-
id?: number | string | undefined;
|
|
272
|
+
id?: number | string | boolean | undefined;
|
|
239
273
|
key?: string | undefined;
|
|
240
274
|
name: string;
|
|
241
275
|
value?: number | string | boolean | undefined;
|
|
242
276
|
checked?: boolean | undefined;
|
|
277
|
+
optionClass?: string | undefined;
|
|
278
|
+
tagClass?: string | undefined;
|
|
279
|
+
closeTagClass?: string | undefined;
|
|
243
280
|
} | {
|
|
244
|
-
id?: number | string | undefined;
|
|
281
|
+
id?: number | string | boolean | undefined;
|
|
245
282
|
key?: string | undefined;
|
|
246
283
|
name: string;
|
|
247
284
|
value?: number | string | boolean | undefined;
|
|
248
285
|
checked?: boolean | undefined;
|
|
286
|
+
optionClass?: string | undefined;
|
|
287
|
+
tagClass?: string | undefined;
|
|
288
|
+
closeTagClass?: string | undefined;
|
|
249
289
|
}[] | null;
|
|
250
290
|
required?: boolean | undefined;
|
|
251
291
|
}[]>;
|
|
@@ -192,104 +192,144 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
192
192
|
checkboxValue: import('vue').Ref<boolean, boolean>;
|
|
193
193
|
datePickerDate: import('vue').Ref<Date, Date>;
|
|
194
194
|
filters: import('vue').Ref<{
|
|
195
|
+
attribute?: string | undefined;
|
|
195
196
|
key?: string | undefined;
|
|
196
197
|
message?: string | undefined;
|
|
197
198
|
name?: string | undefined;
|
|
198
199
|
options: {
|
|
199
|
-
id?: number | string | undefined;
|
|
200
|
+
id?: number | string | boolean | undefined;
|
|
200
201
|
key?: string | undefined;
|
|
201
202
|
name: string;
|
|
202
203
|
value?: number | string | boolean | undefined;
|
|
203
204
|
checked?: boolean | undefined;
|
|
205
|
+
optionClass?: string | undefined;
|
|
206
|
+
tagClass?: string | undefined;
|
|
207
|
+
closeTagClass?: string | undefined;
|
|
204
208
|
}[];
|
|
205
209
|
selected: {
|
|
206
|
-
id?: number | string | undefined;
|
|
210
|
+
id?: number | string | boolean | undefined;
|
|
207
211
|
key?: string | undefined;
|
|
208
212
|
name: string;
|
|
209
213
|
value?: number | string | boolean | undefined;
|
|
210
214
|
checked?: boolean | undefined;
|
|
215
|
+
optionClass?: string | undefined;
|
|
216
|
+
tagClass?: string | undefined;
|
|
217
|
+
closeTagClass?: string | undefined;
|
|
211
218
|
} | {
|
|
212
|
-
id?: number | string | undefined;
|
|
219
|
+
id?: number | string | boolean | undefined;
|
|
213
220
|
key?: string | undefined;
|
|
214
221
|
name: string;
|
|
215
222
|
value?: number | string | boolean | undefined;
|
|
216
223
|
checked?: boolean | undefined;
|
|
224
|
+
optionClass?: string | undefined;
|
|
225
|
+
tagClass?: string | undefined;
|
|
226
|
+
closeTagClass?: string | undefined;
|
|
217
227
|
}[] | null;
|
|
218
228
|
required?: boolean | undefined;
|
|
219
229
|
}[], FilterObject[] | {
|
|
230
|
+
attribute?: string | undefined;
|
|
220
231
|
key?: string | undefined;
|
|
221
232
|
message?: string | undefined;
|
|
222
233
|
name?: string | undefined;
|
|
223
234
|
options: {
|
|
224
|
-
id?: number | string | undefined;
|
|
235
|
+
id?: number | string | boolean | undefined;
|
|
225
236
|
key?: string | undefined;
|
|
226
237
|
name: string;
|
|
227
238
|
value?: number | string | boolean | undefined;
|
|
228
239
|
checked?: boolean | undefined;
|
|
240
|
+
optionClass?: string | undefined;
|
|
241
|
+
tagClass?: string | undefined;
|
|
242
|
+
closeTagClass?: string | undefined;
|
|
229
243
|
}[];
|
|
230
244
|
selected: {
|
|
231
|
-
id?: number | string | undefined;
|
|
245
|
+
id?: number | string | boolean | undefined;
|
|
232
246
|
key?: string | undefined;
|
|
233
247
|
name: string;
|
|
234
248
|
value?: number | string | boolean | undefined;
|
|
235
249
|
checked?: boolean | undefined;
|
|
250
|
+
optionClass?: string | undefined;
|
|
251
|
+
tagClass?: string | undefined;
|
|
252
|
+
closeTagClass?: string | undefined;
|
|
236
253
|
} | {
|
|
237
|
-
id?: number | string | undefined;
|
|
254
|
+
id?: number | string | boolean | undefined;
|
|
238
255
|
key?: string | undefined;
|
|
239
256
|
name: string;
|
|
240
257
|
value?: number | string | boolean | undefined;
|
|
241
258
|
checked?: boolean | undefined;
|
|
259
|
+
optionClass?: string | undefined;
|
|
260
|
+
tagClass?: string | undefined;
|
|
261
|
+
closeTagClass?: string | undefined;
|
|
242
262
|
}[] | null;
|
|
243
263
|
required?: boolean | undefined;
|
|
244
264
|
}[]>;
|
|
245
265
|
gridFilters: import('vue').Ref<{
|
|
266
|
+
attribute?: string | undefined;
|
|
246
267
|
key?: string | undefined;
|
|
247
268
|
message?: string | undefined;
|
|
248
269
|
name?: string | undefined;
|
|
249
270
|
options: {
|
|
250
|
-
id?: number | string | undefined;
|
|
271
|
+
id?: number | string | boolean | undefined;
|
|
251
272
|
key?: string | undefined;
|
|
252
273
|
name: string;
|
|
253
274
|
value?: number | string | boolean | undefined;
|
|
254
275
|
checked?: boolean | undefined;
|
|
276
|
+
optionClass?: string | undefined;
|
|
277
|
+
tagClass?: string | undefined;
|
|
278
|
+
closeTagClass?: string | undefined;
|
|
255
279
|
}[];
|
|
256
280
|
selected: {
|
|
257
|
-
id?: number | string | undefined;
|
|
281
|
+
id?: number | string | boolean | undefined;
|
|
258
282
|
key?: string | undefined;
|
|
259
283
|
name: string;
|
|
260
284
|
value?: number | string | boolean | undefined;
|
|
261
285
|
checked?: boolean | undefined;
|
|
286
|
+
optionClass?: string | undefined;
|
|
287
|
+
tagClass?: string | undefined;
|
|
288
|
+
closeTagClass?: string | undefined;
|
|
262
289
|
} | {
|
|
263
|
-
id?: number | string | undefined;
|
|
290
|
+
id?: number | string | boolean | undefined;
|
|
264
291
|
key?: string | undefined;
|
|
265
292
|
name: string;
|
|
266
293
|
value?: number | string | boolean | undefined;
|
|
267
294
|
checked?: boolean | undefined;
|
|
295
|
+
optionClass?: string | undefined;
|
|
296
|
+
tagClass?: string | undefined;
|
|
297
|
+
closeTagClass?: string | undefined;
|
|
268
298
|
}[] | null;
|
|
269
299
|
required?: boolean | undefined;
|
|
270
300
|
}[], FilterObject[] | {
|
|
301
|
+
attribute?: string | undefined;
|
|
271
302
|
key?: string | undefined;
|
|
272
303
|
message?: string | undefined;
|
|
273
304
|
name?: string | undefined;
|
|
274
305
|
options: {
|
|
275
|
-
id?: number | string | undefined;
|
|
306
|
+
id?: number | string | boolean | undefined;
|
|
276
307
|
key?: string | undefined;
|
|
277
308
|
name: string;
|
|
278
309
|
value?: number | string | boolean | undefined;
|
|
279
310
|
checked?: boolean | undefined;
|
|
311
|
+
optionClass?: string | undefined;
|
|
312
|
+
tagClass?: string | undefined;
|
|
313
|
+
closeTagClass?: string | undefined;
|
|
280
314
|
}[];
|
|
281
315
|
selected: {
|
|
282
|
-
id?: number | string | undefined;
|
|
316
|
+
id?: number | string | boolean | undefined;
|
|
283
317
|
key?: string | undefined;
|
|
284
318
|
name: string;
|
|
285
319
|
value?: number | string | boolean | undefined;
|
|
286
320
|
checked?: boolean | undefined;
|
|
321
|
+
optionClass?: string | undefined;
|
|
322
|
+
tagClass?: string | undefined;
|
|
323
|
+
closeTagClass?: string | undefined;
|
|
287
324
|
} | {
|
|
288
|
-
id?: number | string | undefined;
|
|
325
|
+
id?: number | string | boolean | undefined;
|
|
289
326
|
key?: string | undefined;
|
|
290
327
|
name: string;
|
|
291
328
|
value?: number | string | boolean | undefined;
|
|
292
329
|
checked?: boolean | undefined;
|
|
330
|
+
optionClass?: string | undefined;
|
|
331
|
+
tagClass?: string | undefined;
|
|
332
|
+
closeTagClass?: string | undefined;
|
|
293
333
|
}[] | null;
|
|
294
334
|
required?: boolean | undefined;
|
|
295
335
|
}[]>;
|
|
@@ -332,53 +372,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
332
372
|
isPopoverOpen: import('vue').Ref<boolean, boolean>;
|
|
333
373
|
toggleToast: import('vue').Ref<boolean, boolean>;
|
|
334
374
|
listFilters: import('vue').Ref<{
|
|
375
|
+
attribute?: string | undefined;
|
|
335
376
|
key?: string | undefined;
|
|
336
377
|
message?: string | undefined;
|
|
337
378
|
name?: string | undefined;
|
|
338
379
|
options: {
|
|
339
|
-
id?: number | string | undefined;
|
|
380
|
+
id?: number | string | boolean | undefined;
|
|
340
381
|
key?: string | undefined;
|
|
341
382
|
name: string;
|
|
342
383
|
value?: number | string | boolean | undefined;
|
|
343
384
|
checked?: boolean | undefined;
|
|
385
|
+
optionClass?: string | undefined;
|
|
386
|
+
tagClass?: string | undefined;
|
|
387
|
+
closeTagClass?: string | undefined;
|
|
344
388
|
}[];
|
|
345
389
|
selected: {
|
|
346
|
-
id?: number | string | undefined;
|
|
390
|
+
id?: number | string | boolean | undefined;
|
|
347
391
|
key?: string | undefined;
|
|
348
392
|
name: string;
|
|
349
393
|
value?: number | string | boolean | undefined;
|
|
350
394
|
checked?: boolean | undefined;
|
|
395
|
+
optionClass?: string | undefined;
|
|
396
|
+
tagClass?: string | undefined;
|
|
397
|
+
closeTagClass?: string | undefined;
|
|
351
398
|
} | {
|
|
352
|
-
id?: number | string | undefined;
|
|
399
|
+
id?: number | string | boolean | undefined;
|
|
353
400
|
key?: string | undefined;
|
|
354
401
|
name: string;
|
|
355
402
|
value?: number | string | boolean | undefined;
|
|
356
403
|
checked?: boolean | undefined;
|
|
404
|
+
optionClass?: string | undefined;
|
|
405
|
+
tagClass?: string | undefined;
|
|
406
|
+
closeTagClass?: string | undefined;
|
|
357
407
|
}[] | null;
|
|
358
408
|
required?: boolean | undefined;
|
|
359
409
|
}[], FilterObject[] | {
|
|
410
|
+
attribute?: string | undefined;
|
|
360
411
|
key?: string | undefined;
|
|
361
412
|
message?: string | undefined;
|
|
362
413
|
name?: string | undefined;
|
|
363
414
|
options: {
|
|
364
|
-
id?: number | string | undefined;
|
|
415
|
+
id?: number | string | boolean | undefined;
|
|
365
416
|
key?: string | undefined;
|
|
366
417
|
name: string;
|
|
367
418
|
value?: number | string | boolean | undefined;
|
|
368
419
|
checked?: boolean | undefined;
|
|
420
|
+
optionClass?: string | undefined;
|
|
421
|
+
tagClass?: string | undefined;
|
|
422
|
+
closeTagClass?: string | undefined;
|
|
369
423
|
}[];
|
|
370
424
|
selected: {
|
|
371
|
-
id?: number | string | undefined;
|
|
425
|
+
id?: number | string | boolean | undefined;
|
|
372
426
|
key?: string | undefined;
|
|
373
427
|
name: string;
|
|
374
428
|
value?: number | string | boolean | undefined;
|
|
375
429
|
checked?: boolean | undefined;
|
|
430
|
+
optionClass?: string | undefined;
|
|
431
|
+
tagClass?: string | undefined;
|
|
432
|
+
closeTagClass?: string | undefined;
|
|
376
433
|
} | {
|
|
377
|
-
id?: number | string | undefined;
|
|
434
|
+
id?: number | string | boolean | undefined;
|
|
378
435
|
key?: string | undefined;
|
|
379
436
|
name: string;
|
|
380
437
|
value?: number | string | boolean | undefined;
|
|
381
438
|
checked?: boolean | undefined;
|
|
439
|
+
optionClass?: string | undefined;
|
|
440
|
+
tagClass?: string | undefined;
|
|
441
|
+
closeTagClass?: string | undefined;
|
|
382
442
|
}[] | null;
|
|
383
443
|
required?: boolean | undefined;
|
|
384
444
|
}[]>;
|
|
@@ -386,53 +446,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
386
446
|
loadedTableData: import('vue').Ref<any[], any[]>;
|
|
387
447
|
loading: import('vue').Ref<boolean, boolean>;
|
|
388
448
|
selectedGridFilters: import('vue').Ref<{
|
|
449
|
+
attribute?: string | undefined;
|
|
389
450
|
key?: string | undefined;
|
|
390
451
|
message?: string | undefined;
|
|
391
452
|
name?: string | undefined;
|
|
392
453
|
options: {
|
|
393
|
-
id?: number | string | undefined;
|
|
454
|
+
id?: number | string | boolean | undefined;
|
|
394
455
|
key?: string | undefined;
|
|
395
456
|
name: string;
|
|
396
457
|
value?: number | string | boolean | undefined;
|
|
397
458
|
checked?: boolean | undefined;
|
|
459
|
+
optionClass?: string | undefined;
|
|
460
|
+
tagClass?: string | undefined;
|
|
461
|
+
closeTagClass?: string | undefined;
|
|
398
462
|
}[];
|
|
399
463
|
selected: {
|
|
400
|
-
id?: number | string | undefined;
|
|
464
|
+
id?: number | string | boolean | undefined;
|
|
401
465
|
key?: string | undefined;
|
|
402
466
|
name: string;
|
|
403
467
|
value?: number | string | boolean | undefined;
|
|
404
468
|
checked?: boolean | undefined;
|
|
469
|
+
optionClass?: string | undefined;
|
|
470
|
+
tagClass?: string | undefined;
|
|
471
|
+
closeTagClass?: string | undefined;
|
|
405
472
|
} | {
|
|
406
|
-
id?: number | string | undefined;
|
|
473
|
+
id?: number | string | boolean | undefined;
|
|
407
474
|
key?: string | undefined;
|
|
408
475
|
name: string;
|
|
409
476
|
value?: number | string | boolean | undefined;
|
|
410
477
|
checked?: boolean | undefined;
|
|
478
|
+
optionClass?: string | undefined;
|
|
479
|
+
tagClass?: string | undefined;
|
|
480
|
+
closeTagClass?: string | undefined;
|
|
411
481
|
}[] | null;
|
|
412
482
|
required?: boolean | undefined;
|
|
413
483
|
}[], FilterObject[] | {
|
|
484
|
+
attribute?: string | undefined;
|
|
414
485
|
key?: string | undefined;
|
|
415
486
|
message?: string | undefined;
|
|
416
487
|
name?: string | undefined;
|
|
417
488
|
options: {
|
|
418
|
-
id?: number | string | undefined;
|
|
489
|
+
id?: number | string | boolean | undefined;
|
|
419
490
|
key?: string | undefined;
|
|
420
491
|
name: string;
|
|
421
492
|
value?: number | string | boolean | undefined;
|
|
422
493
|
checked?: boolean | undefined;
|
|
494
|
+
optionClass?: string | undefined;
|
|
495
|
+
tagClass?: string | undefined;
|
|
496
|
+
closeTagClass?: string | undefined;
|
|
423
497
|
}[];
|
|
424
498
|
selected: {
|
|
425
|
-
id?: number | string | undefined;
|
|
499
|
+
id?: number | string | boolean | undefined;
|
|
426
500
|
key?: string | undefined;
|
|
427
501
|
name: string;
|
|
428
502
|
value?: number | string | boolean | undefined;
|
|
429
503
|
checked?: boolean | undefined;
|
|
504
|
+
optionClass?: string | undefined;
|
|
505
|
+
tagClass?: string | undefined;
|
|
506
|
+
closeTagClass?: string | undefined;
|
|
430
507
|
} | {
|
|
431
|
-
id?: number | string | undefined;
|
|
508
|
+
id?: number | string | boolean | undefined;
|
|
432
509
|
key?: string | undefined;
|
|
433
510
|
name: string;
|
|
434
511
|
value?: number | string | boolean | undefined;
|
|
435
512
|
checked?: boolean | undefined;
|
|
513
|
+
optionClass?: string | undefined;
|
|
514
|
+
tagClass?: string | undefined;
|
|
515
|
+
closeTagClass?: string | undefined;
|
|
436
516
|
}[] | null;
|
|
437
517
|
required?: boolean | undefined;
|
|
438
518
|
}[]>;
|
|
@@ -441,53 +521,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
441
521
|
showFilters: import('vue').Ref<boolean, boolean>;
|
|
442
522
|
showGridFilters: import('vue').Ref<boolean, boolean>;
|
|
443
523
|
tableFilters: import('vue').Ref<{
|
|
524
|
+
attribute?: string | undefined;
|
|
444
525
|
key?: string | undefined;
|
|
445
526
|
message?: string | undefined;
|
|
446
527
|
name?: string | undefined;
|
|
447
528
|
options: {
|
|
448
|
-
id?: number | string | undefined;
|
|
529
|
+
id?: number | string | boolean | undefined;
|
|
449
530
|
key?: string | undefined;
|
|
450
531
|
name: string;
|
|
451
532
|
value?: number | string | boolean | undefined;
|
|
452
533
|
checked?: boolean | undefined;
|
|
534
|
+
optionClass?: string | undefined;
|
|
535
|
+
tagClass?: string | undefined;
|
|
536
|
+
closeTagClass?: string | undefined;
|
|
453
537
|
}[];
|
|
454
538
|
selected: {
|
|
455
|
-
id?: number | string | undefined;
|
|
539
|
+
id?: number | string | boolean | undefined;
|
|
456
540
|
key?: string | undefined;
|
|
457
541
|
name: string;
|
|
458
542
|
value?: number | string | boolean | undefined;
|
|
459
543
|
checked?: boolean | undefined;
|
|
544
|
+
optionClass?: string | undefined;
|
|
545
|
+
tagClass?: string | undefined;
|
|
546
|
+
closeTagClass?: string | undefined;
|
|
460
547
|
} | {
|
|
461
|
-
id?: number | string | undefined;
|
|
548
|
+
id?: number | string | boolean | undefined;
|
|
462
549
|
key?: string | undefined;
|
|
463
550
|
name: string;
|
|
464
551
|
value?: number | string | boolean | undefined;
|
|
465
552
|
checked?: boolean | undefined;
|
|
553
|
+
optionClass?: string | undefined;
|
|
554
|
+
tagClass?: string | undefined;
|
|
555
|
+
closeTagClass?: string | undefined;
|
|
466
556
|
}[] | null;
|
|
467
557
|
required?: boolean | undefined;
|
|
468
558
|
}[], FilterObject[] | {
|
|
559
|
+
attribute?: string | undefined;
|
|
469
560
|
key?: string | undefined;
|
|
470
561
|
message?: string | undefined;
|
|
471
562
|
name?: string | undefined;
|
|
472
563
|
options: {
|
|
473
|
-
id?: number | string | undefined;
|
|
564
|
+
id?: number | string | boolean | undefined;
|
|
474
565
|
key?: string | undefined;
|
|
475
566
|
name: string;
|
|
476
567
|
value?: number | string | boolean | undefined;
|
|
477
568
|
checked?: boolean | undefined;
|
|
569
|
+
optionClass?: string | undefined;
|
|
570
|
+
tagClass?: string | undefined;
|
|
571
|
+
closeTagClass?: string | undefined;
|
|
478
572
|
}[];
|
|
479
573
|
selected: {
|
|
480
|
-
id?: number | string | undefined;
|
|
574
|
+
id?: number | string | boolean | undefined;
|
|
481
575
|
key?: string | undefined;
|
|
482
576
|
name: string;
|
|
483
577
|
value?: number | string | boolean | undefined;
|
|
484
578
|
checked?: boolean | undefined;
|
|
579
|
+
optionClass?: string | undefined;
|
|
580
|
+
tagClass?: string | undefined;
|
|
581
|
+
closeTagClass?: string | undefined;
|
|
485
582
|
} | {
|
|
486
|
-
id?: number | string | undefined;
|
|
583
|
+
id?: number | string | boolean | undefined;
|
|
487
584
|
key?: string | undefined;
|
|
488
585
|
name: string;
|
|
489
586
|
value?: number | string | boolean | undefined;
|
|
490
587
|
checked?: boolean | undefined;
|
|
588
|
+
optionClass?: string | undefined;
|
|
589
|
+
tagClass?: string | undefined;
|
|
590
|
+
closeTagClass?: string | undefined;
|
|
491
591
|
}[] | null;
|
|
492
592
|
required?: boolean | undefined;
|
|
493
593
|
}[]>;
|