@quidgest/ui 0.17.0 → 0.17.1
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/json/api.json +1 -1
- package/dist/ui.css +1 -2
- package/dist/ui.esm.js +2713 -2669
- package/dist/ui.js +15 -15
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +146 -137
- package/dist/ui.scss +2 -3
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts +439 -0
- package/esm/components/QDateTimePicker/QDateTimePicker.d.ts.map +1 -1
- package/esm/components/QDateTimePicker/QDateTimePicker.vue.js +471 -427
- package/esm/components/QDateTimePicker/index.d.ts +219 -0
- package/esm/components/QDateTimePicker/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -226,6 +226,225 @@ declare const QDateTimePicker: {
|
|
|
226
226
|
}) | null;
|
|
227
227
|
menu: HTMLDivElement;
|
|
228
228
|
calendar: HTMLDivElement;
|
|
229
|
+
monthHeader: ({
|
|
230
|
+
$: import('vue').ComponentInternalInstance;
|
|
231
|
+
$data: {};
|
|
232
|
+
$props: {
|
|
233
|
+
readonly id?: string | undefined;
|
|
234
|
+
readonly class?: string | unknown[] | undefined;
|
|
235
|
+
readonly label?: string | undefined;
|
|
236
|
+
readonly variant?: import('..').QButtonVariant | undefined;
|
|
237
|
+
readonly color?: string | undefined;
|
|
238
|
+
readonly borderless?: boolean | undefined;
|
|
239
|
+
readonly elevated?: boolean | undefined;
|
|
240
|
+
readonly block?: boolean | undefined;
|
|
241
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
242
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
243
|
+
readonly pill?: boolean | undefined;
|
|
244
|
+
readonly disabled?: boolean | undefined;
|
|
245
|
+
readonly loading?: boolean | undefined;
|
|
246
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
247
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
248
|
+
$attrs: import('vue').Attrs;
|
|
249
|
+
$refs: {
|
|
250
|
+
[x: string]: unknown;
|
|
251
|
+
};
|
|
252
|
+
$slots: Readonly<{
|
|
253
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
254
|
+
}>;
|
|
255
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
256
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
257
|
+
$host: Element | null;
|
|
258
|
+
$emit: (event: "click", event: Event) => void;
|
|
259
|
+
$el: HTMLButtonElement;
|
|
260
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
261
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
262
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
263
|
+
click: (event: Event) => any;
|
|
264
|
+
}, string, {
|
|
265
|
+
size: import('..').QButtonSize;
|
|
266
|
+
variant: import('..').QButtonVariant;
|
|
267
|
+
color: string;
|
|
268
|
+
iconPos: import('..').QButtonIconPosition;
|
|
269
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
270
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
271
|
+
created?: (() => void) | (() => void)[];
|
|
272
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
273
|
+
mounted?: (() => void) | (() => void)[];
|
|
274
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
275
|
+
updated?: (() => void) | (() => void)[];
|
|
276
|
+
activated?: (() => void) | (() => void)[];
|
|
277
|
+
deactivated?: (() => void) | (() => void)[];
|
|
278
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
279
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
280
|
+
destroyed?: (() => void) | (() => void)[];
|
|
281
|
+
unmounted?: (() => void) | (() => void)[];
|
|
282
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
283
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
284
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
285
|
+
};
|
|
286
|
+
$forceUpdate: () => void;
|
|
287
|
+
$nextTick: typeof import('vue').nextTick;
|
|
288
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
289
|
+
} & Readonly<{
|
|
290
|
+
size: import('..').QButtonSize;
|
|
291
|
+
variant: import('..').QButtonVariant;
|
|
292
|
+
color: string;
|
|
293
|
+
iconPos: import('..').QButtonIconPosition;
|
|
294
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
295
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
296
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
297
|
+
$slots: {
|
|
298
|
+
default?(_: {}): any;
|
|
299
|
+
append?(_: {}): any;
|
|
300
|
+
};
|
|
301
|
+
}) | null;
|
|
302
|
+
yearHeader: ({
|
|
303
|
+
$: import('vue').ComponentInternalInstance;
|
|
304
|
+
$data: {};
|
|
305
|
+
$props: {
|
|
306
|
+
readonly id?: string | undefined;
|
|
307
|
+
readonly class?: string | unknown[] | undefined;
|
|
308
|
+
readonly label?: string | undefined;
|
|
309
|
+
readonly variant?: import('..').QButtonVariant | undefined;
|
|
310
|
+
readonly color?: string | undefined;
|
|
311
|
+
readonly borderless?: boolean | undefined;
|
|
312
|
+
readonly elevated?: boolean | undefined;
|
|
313
|
+
readonly block?: boolean | undefined;
|
|
314
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
315
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
316
|
+
readonly pill?: boolean | undefined;
|
|
317
|
+
readonly disabled?: boolean | undefined;
|
|
318
|
+
readonly loading?: boolean | undefined;
|
|
319
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
320
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
321
|
+
$attrs: import('vue').Attrs;
|
|
322
|
+
$refs: {
|
|
323
|
+
[x: string]: unknown;
|
|
324
|
+
};
|
|
325
|
+
$slots: Readonly<{
|
|
326
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
327
|
+
}>;
|
|
328
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
329
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
330
|
+
$host: Element | null;
|
|
331
|
+
$emit: (event: "click", event: Event) => void;
|
|
332
|
+
$el: HTMLButtonElement;
|
|
333
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
334
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
335
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
336
|
+
click: (event: Event) => any;
|
|
337
|
+
}, string, {
|
|
338
|
+
size: import('..').QButtonSize;
|
|
339
|
+
variant: import('..').QButtonVariant;
|
|
340
|
+
color: string;
|
|
341
|
+
iconPos: import('..').QButtonIconPosition;
|
|
342
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
343
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
344
|
+
created?: (() => void) | (() => void)[];
|
|
345
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
346
|
+
mounted?: (() => void) | (() => void)[];
|
|
347
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
348
|
+
updated?: (() => void) | (() => void)[];
|
|
349
|
+
activated?: (() => void) | (() => void)[];
|
|
350
|
+
deactivated?: (() => void) | (() => void)[];
|
|
351
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
352
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
353
|
+
destroyed?: (() => void) | (() => void)[];
|
|
354
|
+
unmounted?: (() => void) | (() => void)[];
|
|
355
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
356
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
357
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
358
|
+
};
|
|
359
|
+
$forceUpdate: () => void;
|
|
360
|
+
$nextTick: typeof import('vue').nextTick;
|
|
361
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
362
|
+
} & Readonly<{
|
|
363
|
+
size: import('..').QButtonSize;
|
|
364
|
+
variant: import('..').QButtonVariant;
|
|
365
|
+
color: string;
|
|
366
|
+
iconPos: import('..').QButtonIconPosition;
|
|
367
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
368
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
369
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
370
|
+
$slots: {
|
|
371
|
+
default?(_: {}): any;
|
|
372
|
+
append?(_: {}): any;
|
|
373
|
+
};
|
|
374
|
+
}) | null;
|
|
375
|
+
toggleTime: ({
|
|
376
|
+
$: import('vue').ComponentInternalInstance;
|
|
377
|
+
$data: {};
|
|
378
|
+
$props: {
|
|
379
|
+
readonly id?: string | undefined;
|
|
380
|
+
readonly class?: string | unknown[] | undefined;
|
|
381
|
+
readonly label?: string | undefined;
|
|
382
|
+
readonly variant?: import('..').QButtonVariant | undefined;
|
|
383
|
+
readonly color?: string | undefined;
|
|
384
|
+
readonly borderless?: boolean | undefined;
|
|
385
|
+
readonly elevated?: boolean | undefined;
|
|
386
|
+
readonly block?: boolean | undefined;
|
|
387
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
388
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
389
|
+
readonly pill?: boolean | undefined;
|
|
390
|
+
readonly disabled?: boolean | undefined;
|
|
391
|
+
readonly loading?: boolean | undefined;
|
|
392
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
393
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
394
|
+
$attrs: import('vue').Attrs;
|
|
395
|
+
$refs: {
|
|
396
|
+
[x: string]: unknown;
|
|
397
|
+
};
|
|
398
|
+
$slots: Readonly<{
|
|
399
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
400
|
+
}>;
|
|
401
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
402
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
403
|
+
$host: Element | null;
|
|
404
|
+
$emit: (event: "click", event: Event) => void;
|
|
405
|
+
$el: HTMLButtonElement;
|
|
406
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
407
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
408
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
409
|
+
click: (event: Event) => any;
|
|
410
|
+
}, string, {
|
|
411
|
+
size: import('..').QButtonSize;
|
|
412
|
+
variant: import('..').QButtonVariant;
|
|
413
|
+
color: string;
|
|
414
|
+
iconPos: import('..').QButtonIconPosition;
|
|
415
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
416
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
417
|
+
created?: (() => void) | (() => void)[];
|
|
418
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
419
|
+
mounted?: (() => void) | (() => void)[];
|
|
420
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
421
|
+
updated?: (() => void) | (() => void)[];
|
|
422
|
+
activated?: (() => void) | (() => void)[];
|
|
423
|
+
deactivated?: (() => void) | (() => void)[];
|
|
424
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
425
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
426
|
+
destroyed?: (() => void) | (() => void)[];
|
|
427
|
+
unmounted?: (() => void) | (() => void)[];
|
|
428
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
429
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
430
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
431
|
+
};
|
|
432
|
+
$forceUpdate: () => void;
|
|
433
|
+
$nextTick: typeof import('vue').nextTick;
|
|
434
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
435
|
+
} & Readonly<{
|
|
436
|
+
size: import('..').QButtonSize;
|
|
437
|
+
variant: import('..').QButtonVariant;
|
|
438
|
+
color: string;
|
|
439
|
+
iconPos: import('..').QButtonIconPosition;
|
|
440
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
441
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
442
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
443
|
+
$slots: {
|
|
444
|
+
default?(_: {}): any;
|
|
445
|
+
append?(_: {}): any;
|
|
446
|
+
};
|
|
447
|
+
}) | null;
|
|
229
448
|
}, any, import('vue').ComponentProvideOptions, {
|
|
230
449
|
P: {};
|
|
231
450
|
B: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAOws0B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAOws0B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAP1x0B,CAAA;AAGzD,OAAO,EAAE,eAAe,EAAE,CAAA;AAG1B,cAAc,SAAS,CAAA"}
|