@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
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.17.
|
|
2
|
+
* Quidgest UI v0.17.1
|
|
3
3
|
* (c) 2026 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1615,10 +1615,9 @@ $q-carousel-height-md: 300px;
|
|
|
1615
1615
|
gap: $space-base;
|
|
1616
1616
|
.q-button {
|
|
1617
1617
|
font-weight: 600;
|
|
1618
|
-
|
|
1618
|
+
padding: 0.5rem 0.6rem;
|
|
1619
1619
|
&--labeled {
|
|
1620
1620
|
flex: 1;
|
|
1621
|
-
font-size: 100%;
|
|
1622
1621
|
}
|
|
1623
1622
|
}
|
|
1624
1623
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DEFAULT_ICONS, DEFAULT_TEXTS } from './constants';
|
|
2
|
+
import { QButtonVariant } from '../QButton';
|
|
2
3
|
import { QDateTimePickerProps } from '.';
|
|
3
4
|
import { nextTick } from 'vue';
|
|
4
5
|
type __VLS_Props = QDateTimePickerProps;
|
|
@@ -207,6 +208,225 @@ declare function __VLS_template(): {
|
|
|
207
208
|
}) | null;
|
|
208
209
|
menu: HTMLDivElement;
|
|
209
210
|
calendar: HTMLDivElement;
|
|
211
|
+
monthHeader: ({
|
|
212
|
+
$: import('vue').ComponentInternalInstance;
|
|
213
|
+
$data: {};
|
|
214
|
+
$props: {
|
|
215
|
+
readonly id?: string | undefined;
|
|
216
|
+
readonly class?: string | unknown[] | undefined;
|
|
217
|
+
readonly label?: string | undefined;
|
|
218
|
+
readonly variant?: QButtonVariant | undefined;
|
|
219
|
+
readonly color?: string | undefined;
|
|
220
|
+
readonly borderless?: boolean | undefined;
|
|
221
|
+
readonly elevated?: boolean | undefined;
|
|
222
|
+
readonly block?: boolean | undefined;
|
|
223
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
224
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
225
|
+
readonly pill?: boolean | undefined;
|
|
226
|
+
readonly disabled?: boolean | undefined;
|
|
227
|
+
readonly loading?: boolean | undefined;
|
|
228
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
229
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
230
|
+
$attrs: import('vue').Attrs;
|
|
231
|
+
$refs: {
|
|
232
|
+
[x: string]: unknown;
|
|
233
|
+
};
|
|
234
|
+
$slots: Readonly<{
|
|
235
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
236
|
+
}>;
|
|
237
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
238
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
239
|
+
$host: Element | null;
|
|
240
|
+
$emit: (event: "click", event: Event) => void;
|
|
241
|
+
$el: HTMLButtonElement;
|
|
242
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
243
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
244
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
245
|
+
click: (event: Event) => any;
|
|
246
|
+
}, string, {
|
|
247
|
+
size: import('..').QButtonSize;
|
|
248
|
+
variant: QButtonVariant;
|
|
249
|
+
color: string;
|
|
250
|
+
iconPos: import('..').QButtonIconPosition;
|
|
251
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
252
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
253
|
+
created?: (() => void) | (() => void)[];
|
|
254
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
255
|
+
mounted?: (() => void) | (() => void)[];
|
|
256
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
257
|
+
updated?: (() => void) | (() => void)[];
|
|
258
|
+
activated?: (() => void) | (() => void)[];
|
|
259
|
+
deactivated?: (() => void) | (() => void)[];
|
|
260
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
261
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
262
|
+
destroyed?: (() => void) | (() => void)[];
|
|
263
|
+
unmounted?: (() => void) | (() => void)[];
|
|
264
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
265
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
266
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
267
|
+
};
|
|
268
|
+
$forceUpdate: () => void;
|
|
269
|
+
$nextTick: typeof nextTick;
|
|
270
|
+
$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;
|
|
271
|
+
} & Readonly<{
|
|
272
|
+
size: import('..').QButtonSize;
|
|
273
|
+
variant: QButtonVariant;
|
|
274
|
+
color: string;
|
|
275
|
+
iconPos: import('..').QButtonIconPosition;
|
|
276
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
277
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
278
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
279
|
+
$slots: {
|
|
280
|
+
default?(_: {}): any;
|
|
281
|
+
append?(_: {}): any;
|
|
282
|
+
};
|
|
283
|
+
}) | null;
|
|
284
|
+
yearHeader: ({
|
|
285
|
+
$: import('vue').ComponentInternalInstance;
|
|
286
|
+
$data: {};
|
|
287
|
+
$props: {
|
|
288
|
+
readonly id?: string | undefined;
|
|
289
|
+
readonly class?: string | unknown[] | undefined;
|
|
290
|
+
readonly label?: string | undefined;
|
|
291
|
+
readonly variant?: QButtonVariant | undefined;
|
|
292
|
+
readonly color?: string | undefined;
|
|
293
|
+
readonly borderless?: boolean | undefined;
|
|
294
|
+
readonly elevated?: boolean | undefined;
|
|
295
|
+
readonly block?: boolean | undefined;
|
|
296
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
297
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
298
|
+
readonly pill?: boolean | undefined;
|
|
299
|
+
readonly disabled?: boolean | undefined;
|
|
300
|
+
readonly loading?: boolean | undefined;
|
|
301
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
302
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
303
|
+
$attrs: import('vue').Attrs;
|
|
304
|
+
$refs: {
|
|
305
|
+
[x: string]: unknown;
|
|
306
|
+
};
|
|
307
|
+
$slots: Readonly<{
|
|
308
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
309
|
+
}>;
|
|
310
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
311
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
312
|
+
$host: Element | null;
|
|
313
|
+
$emit: (event: "click", event: Event) => void;
|
|
314
|
+
$el: HTMLButtonElement;
|
|
315
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
316
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
317
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
318
|
+
click: (event: Event) => any;
|
|
319
|
+
}, string, {
|
|
320
|
+
size: import('..').QButtonSize;
|
|
321
|
+
variant: QButtonVariant;
|
|
322
|
+
color: string;
|
|
323
|
+
iconPos: import('..').QButtonIconPosition;
|
|
324
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
325
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
326
|
+
created?: (() => void) | (() => void)[];
|
|
327
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
328
|
+
mounted?: (() => void) | (() => void)[];
|
|
329
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
330
|
+
updated?: (() => void) | (() => void)[];
|
|
331
|
+
activated?: (() => void) | (() => void)[];
|
|
332
|
+
deactivated?: (() => void) | (() => void)[];
|
|
333
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
334
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
335
|
+
destroyed?: (() => void) | (() => void)[];
|
|
336
|
+
unmounted?: (() => void) | (() => void)[];
|
|
337
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
338
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
339
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
340
|
+
};
|
|
341
|
+
$forceUpdate: () => void;
|
|
342
|
+
$nextTick: typeof nextTick;
|
|
343
|
+
$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;
|
|
344
|
+
} & Readonly<{
|
|
345
|
+
size: import('..').QButtonSize;
|
|
346
|
+
variant: QButtonVariant;
|
|
347
|
+
color: string;
|
|
348
|
+
iconPos: import('..').QButtonIconPosition;
|
|
349
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
350
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
351
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
352
|
+
$slots: {
|
|
353
|
+
default?(_: {}): any;
|
|
354
|
+
append?(_: {}): any;
|
|
355
|
+
};
|
|
356
|
+
}) | null;
|
|
357
|
+
toggleTime: ({
|
|
358
|
+
$: import('vue').ComponentInternalInstance;
|
|
359
|
+
$data: {};
|
|
360
|
+
$props: {
|
|
361
|
+
readonly id?: string | undefined;
|
|
362
|
+
readonly class?: string | unknown[] | undefined;
|
|
363
|
+
readonly label?: string | undefined;
|
|
364
|
+
readonly variant?: QButtonVariant | undefined;
|
|
365
|
+
readonly color?: string | undefined;
|
|
366
|
+
readonly borderless?: boolean | undefined;
|
|
367
|
+
readonly elevated?: boolean | undefined;
|
|
368
|
+
readonly block?: boolean | undefined;
|
|
369
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
370
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
371
|
+
readonly pill?: boolean | undefined;
|
|
372
|
+
readonly disabled?: boolean | undefined;
|
|
373
|
+
readonly loading?: boolean | undefined;
|
|
374
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
375
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
376
|
+
$attrs: import('vue').Attrs;
|
|
377
|
+
$refs: {
|
|
378
|
+
[x: string]: unknown;
|
|
379
|
+
};
|
|
380
|
+
$slots: Readonly<{
|
|
381
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
382
|
+
}>;
|
|
383
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
384
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
385
|
+
$host: Element | null;
|
|
386
|
+
$emit: (event: "click", event: Event) => void;
|
|
387
|
+
$el: HTMLButtonElement;
|
|
388
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
389
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
390
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
391
|
+
click: (event: Event) => any;
|
|
392
|
+
}, string, {
|
|
393
|
+
size: import('..').QButtonSize;
|
|
394
|
+
variant: QButtonVariant;
|
|
395
|
+
color: string;
|
|
396
|
+
iconPos: import('..').QButtonIconPosition;
|
|
397
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
398
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
399
|
+
created?: (() => void) | (() => void)[];
|
|
400
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
401
|
+
mounted?: (() => void) | (() => void)[];
|
|
402
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
403
|
+
updated?: (() => void) | (() => void)[];
|
|
404
|
+
activated?: (() => void) | (() => void)[];
|
|
405
|
+
deactivated?: (() => void) | (() => void)[];
|
|
406
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
407
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
408
|
+
destroyed?: (() => void) | (() => void)[];
|
|
409
|
+
unmounted?: (() => void) | (() => void)[];
|
|
410
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
411
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
412
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
413
|
+
};
|
|
414
|
+
$forceUpdate: () => void;
|
|
415
|
+
$nextTick: typeof nextTick;
|
|
416
|
+
$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;
|
|
417
|
+
} & Readonly<{
|
|
418
|
+
size: import('..').QButtonSize;
|
|
419
|
+
variant: QButtonVariant;
|
|
420
|
+
color: string;
|
|
421
|
+
iconPos: import('..').QButtonIconPosition;
|
|
422
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
423
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
424
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
425
|
+
$slots: {
|
|
426
|
+
default?(_: {}): any;
|
|
427
|
+
append?(_: {}): any;
|
|
428
|
+
};
|
|
429
|
+
}) | null;
|
|
210
430
|
};
|
|
211
431
|
rootEl: any;
|
|
212
432
|
};
|
|
@@ -417,6 +637,225 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
417
637
|
}) | null;
|
|
418
638
|
menu: HTMLDivElement;
|
|
419
639
|
calendar: HTMLDivElement;
|
|
640
|
+
monthHeader: ({
|
|
641
|
+
$: import('vue').ComponentInternalInstance;
|
|
642
|
+
$data: {};
|
|
643
|
+
$props: {
|
|
644
|
+
readonly id?: string | undefined;
|
|
645
|
+
readonly class?: string | unknown[] | undefined;
|
|
646
|
+
readonly label?: string | undefined;
|
|
647
|
+
readonly variant?: QButtonVariant | undefined;
|
|
648
|
+
readonly color?: string | undefined;
|
|
649
|
+
readonly borderless?: boolean | undefined;
|
|
650
|
+
readonly elevated?: boolean | undefined;
|
|
651
|
+
readonly block?: boolean | undefined;
|
|
652
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
653
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
654
|
+
readonly pill?: boolean | undefined;
|
|
655
|
+
readonly disabled?: boolean | undefined;
|
|
656
|
+
readonly loading?: boolean | undefined;
|
|
657
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
658
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
659
|
+
$attrs: import('vue').Attrs;
|
|
660
|
+
$refs: {
|
|
661
|
+
[x: string]: unknown;
|
|
662
|
+
};
|
|
663
|
+
$slots: Readonly<{
|
|
664
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
665
|
+
}>;
|
|
666
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
667
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
668
|
+
$host: Element | null;
|
|
669
|
+
$emit: (event: "click", event: Event) => void;
|
|
670
|
+
$el: HTMLButtonElement;
|
|
671
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
672
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
673
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
674
|
+
click: (event: Event) => any;
|
|
675
|
+
}, string, {
|
|
676
|
+
size: import('..').QButtonSize;
|
|
677
|
+
variant: QButtonVariant;
|
|
678
|
+
color: string;
|
|
679
|
+
iconPos: import('..').QButtonIconPosition;
|
|
680
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
681
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
682
|
+
created?: (() => void) | (() => void)[];
|
|
683
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
684
|
+
mounted?: (() => void) | (() => void)[];
|
|
685
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
686
|
+
updated?: (() => void) | (() => void)[];
|
|
687
|
+
activated?: (() => void) | (() => void)[];
|
|
688
|
+
deactivated?: (() => void) | (() => void)[];
|
|
689
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
690
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
691
|
+
destroyed?: (() => void) | (() => void)[];
|
|
692
|
+
unmounted?: (() => void) | (() => void)[];
|
|
693
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
694
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
695
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
696
|
+
};
|
|
697
|
+
$forceUpdate: () => void;
|
|
698
|
+
$nextTick: typeof nextTick;
|
|
699
|
+
$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;
|
|
700
|
+
} & Readonly<{
|
|
701
|
+
size: import('..').QButtonSize;
|
|
702
|
+
variant: QButtonVariant;
|
|
703
|
+
color: string;
|
|
704
|
+
iconPos: import('..').QButtonIconPosition;
|
|
705
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
706
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
707
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
708
|
+
$slots: {
|
|
709
|
+
default?(_: {}): any;
|
|
710
|
+
append?(_: {}): any;
|
|
711
|
+
};
|
|
712
|
+
}) | null;
|
|
713
|
+
yearHeader: ({
|
|
714
|
+
$: import('vue').ComponentInternalInstance;
|
|
715
|
+
$data: {};
|
|
716
|
+
$props: {
|
|
717
|
+
readonly id?: string | undefined;
|
|
718
|
+
readonly class?: string | unknown[] | undefined;
|
|
719
|
+
readonly label?: string | undefined;
|
|
720
|
+
readonly variant?: QButtonVariant | undefined;
|
|
721
|
+
readonly color?: string | undefined;
|
|
722
|
+
readonly borderless?: boolean | undefined;
|
|
723
|
+
readonly elevated?: boolean | undefined;
|
|
724
|
+
readonly block?: boolean | undefined;
|
|
725
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
726
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
727
|
+
readonly pill?: boolean | undefined;
|
|
728
|
+
readonly disabled?: boolean | undefined;
|
|
729
|
+
readonly loading?: boolean | undefined;
|
|
730
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
731
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
732
|
+
$attrs: import('vue').Attrs;
|
|
733
|
+
$refs: {
|
|
734
|
+
[x: string]: unknown;
|
|
735
|
+
};
|
|
736
|
+
$slots: Readonly<{
|
|
737
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
738
|
+
}>;
|
|
739
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
740
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
741
|
+
$host: Element | null;
|
|
742
|
+
$emit: (event: "click", event: Event) => void;
|
|
743
|
+
$el: HTMLButtonElement;
|
|
744
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
745
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
746
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
747
|
+
click: (event: Event) => any;
|
|
748
|
+
}, string, {
|
|
749
|
+
size: import('..').QButtonSize;
|
|
750
|
+
variant: QButtonVariant;
|
|
751
|
+
color: string;
|
|
752
|
+
iconPos: import('..').QButtonIconPosition;
|
|
753
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
754
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
755
|
+
created?: (() => void) | (() => void)[];
|
|
756
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
757
|
+
mounted?: (() => void) | (() => void)[];
|
|
758
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
759
|
+
updated?: (() => void) | (() => void)[];
|
|
760
|
+
activated?: (() => void) | (() => void)[];
|
|
761
|
+
deactivated?: (() => void) | (() => void)[];
|
|
762
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
763
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
764
|
+
destroyed?: (() => void) | (() => void)[];
|
|
765
|
+
unmounted?: (() => void) | (() => void)[];
|
|
766
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
767
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
768
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
769
|
+
};
|
|
770
|
+
$forceUpdate: () => void;
|
|
771
|
+
$nextTick: typeof nextTick;
|
|
772
|
+
$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;
|
|
773
|
+
} & Readonly<{
|
|
774
|
+
size: import('..').QButtonSize;
|
|
775
|
+
variant: QButtonVariant;
|
|
776
|
+
color: string;
|
|
777
|
+
iconPos: import('..').QButtonIconPosition;
|
|
778
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
779
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
780
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
781
|
+
$slots: {
|
|
782
|
+
default?(_: {}): any;
|
|
783
|
+
append?(_: {}): any;
|
|
784
|
+
};
|
|
785
|
+
}) | null;
|
|
786
|
+
toggleTime: ({
|
|
787
|
+
$: import('vue').ComponentInternalInstance;
|
|
788
|
+
$data: {};
|
|
789
|
+
$props: {
|
|
790
|
+
readonly id?: string | undefined;
|
|
791
|
+
readonly class?: string | unknown[] | undefined;
|
|
792
|
+
readonly label?: string | undefined;
|
|
793
|
+
readonly variant?: QButtonVariant | undefined;
|
|
794
|
+
readonly color?: string | undefined;
|
|
795
|
+
readonly borderless?: boolean | undefined;
|
|
796
|
+
readonly elevated?: boolean | undefined;
|
|
797
|
+
readonly block?: boolean | undefined;
|
|
798
|
+
readonly size?: import('..').QButtonSize | undefined;
|
|
799
|
+
readonly iconPos?: import('..').QButtonIconPosition | undefined;
|
|
800
|
+
readonly pill?: boolean | undefined;
|
|
801
|
+
readonly disabled?: boolean | undefined;
|
|
802
|
+
readonly loading?: boolean | undefined;
|
|
803
|
+
readonly onClick?: ((event: Event) => any) | undefined;
|
|
804
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
805
|
+
$attrs: import('vue').Attrs;
|
|
806
|
+
$refs: {
|
|
807
|
+
[x: string]: unknown;
|
|
808
|
+
};
|
|
809
|
+
$slots: Readonly<{
|
|
810
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
811
|
+
}>;
|
|
812
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
813
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
814
|
+
$host: Element | null;
|
|
815
|
+
$emit: (event: "click", event: Event) => void;
|
|
816
|
+
$el: HTMLButtonElement;
|
|
817
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QButtonProps> & Readonly<{
|
|
818
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
819
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
820
|
+
click: (event: Event) => any;
|
|
821
|
+
}, string, {
|
|
822
|
+
size: import('..').QButtonSize;
|
|
823
|
+
variant: QButtonVariant;
|
|
824
|
+
color: string;
|
|
825
|
+
iconPos: import('..').QButtonIconPosition;
|
|
826
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
827
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
828
|
+
created?: (() => void) | (() => void)[];
|
|
829
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
830
|
+
mounted?: (() => void) | (() => void)[];
|
|
831
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
832
|
+
updated?: (() => void) | (() => void)[];
|
|
833
|
+
activated?: (() => void) | (() => void)[];
|
|
834
|
+
deactivated?: (() => void) | (() => void)[];
|
|
835
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
836
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
837
|
+
destroyed?: (() => void) | (() => void)[];
|
|
838
|
+
unmounted?: (() => void) | (() => void)[];
|
|
839
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
840
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
841
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
842
|
+
};
|
|
843
|
+
$forceUpdate: () => void;
|
|
844
|
+
$nextTick: typeof nextTick;
|
|
845
|
+
$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;
|
|
846
|
+
} & Readonly<{
|
|
847
|
+
size: import('..').QButtonSize;
|
|
848
|
+
variant: QButtonVariant;
|
|
849
|
+
color: string;
|
|
850
|
+
iconPos: import('..').QButtonIconPosition;
|
|
851
|
+
}> & Omit<Readonly<import('..').QButtonProps> & Readonly<{
|
|
852
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
853
|
+
}>, "size" | "variant" | "color" | "iconPos"> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
854
|
+
$slots: {
|
|
855
|
+
default?(_: {}): any;
|
|
856
|
+
append?(_: {}): any;
|
|
857
|
+
};
|
|
858
|
+
}) | null;
|
|
420
859
|
}, any>;
|
|
421
860
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
422
861
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDateTimePicker/QDateTimePicker.vue"],"names":[],"mappings":"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"}
|