@quidgest/ui 0.7.11 → 0.7.13
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/index.d.ts +268 -421
- package/dist/ui.css +4 -6
- package/dist/ui.esm.js +1016 -1015
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +4 -4
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +146 -154
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +5 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,26 +1,15 @@
|
|
|
1
1
|
import { AllowedComponentProps } from 'vue';
|
|
2
2
|
import type { Component } from 'vue';
|
|
3
|
-
import { ComponentCustomProperties } from 'vue';
|
|
4
3
|
import { ComponentCustomProps } from 'vue';
|
|
5
|
-
import { ComponentInternalInstance } from 'vue';
|
|
6
|
-
import { ComponentOptionsBase } from 'vue';
|
|
7
4
|
import { ComponentOptionsMixin } from 'vue';
|
|
8
|
-
import { ComponentPublicInstance } from 'vue';
|
|
5
|
+
import type { ComponentPublicInstance } from 'vue';
|
|
9
6
|
import { ComputedRef } from 'vue';
|
|
10
|
-
import { DebuggerEvent } from 'vue';
|
|
11
7
|
import { DefineComponent } from 'vue';
|
|
12
|
-
import type { Directive } from 'vue';
|
|
13
8
|
import { ExtractPropTypes } from 'vue';
|
|
14
|
-
import { nextTick } from 'vue';
|
|
15
|
-
import type { ObjectDirective } from 'vue';
|
|
16
9
|
import type { Plugin as Plugin_2 } from 'vue';
|
|
17
10
|
import { PropType } from 'vue';
|
|
18
11
|
import { Ref } from 'vue';
|
|
19
|
-
import { ShallowUnwrapRef } from 'vue';
|
|
20
|
-
import { Slot } from 'vue';
|
|
21
12
|
import { VNodeProps } from 'vue';
|
|
22
|
-
import { WatchOptions } from 'vue';
|
|
23
|
-
import { WatchStopHandle } from 'vue';
|
|
24
13
|
|
|
25
14
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
15
|
|
|
@@ -46,6 +35,8 @@ declare type __VLS_NonUndefinedable_19<T> = T extends undefined ? never : T;
|
|
|
46
35
|
|
|
47
36
|
declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
|
48
37
|
|
|
38
|
+
declare type __VLS_NonUndefinedable_20<T> = T extends undefined ? never : T;
|
|
39
|
+
|
|
49
40
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
50
41
|
|
|
51
42
|
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
@@ -96,6 +87,10 @@ declare type __VLS_Prettify_17<T> = {
|
|
|
96
87
|
[K in keyof T]: T[K];
|
|
97
88
|
} & {};
|
|
98
89
|
|
|
90
|
+
declare type __VLS_Prettify_18<T> = {
|
|
91
|
+
[K in keyof T]: T[K];
|
|
92
|
+
} & {};
|
|
93
|
+
|
|
99
94
|
declare type __VLS_Prettify_2<T> = {
|
|
100
95
|
[K in keyof T]: T[K];
|
|
101
96
|
} & {};
|
|
@@ -236,6 +231,15 @@ declare type __VLS_TypePropsToRuntimeProps_2<T> = {
|
|
|
236
231
|
};
|
|
237
232
|
};
|
|
238
233
|
|
|
234
|
+
declare type __VLS_TypePropsToRuntimeProps_20<T> = {
|
|
235
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
236
|
+
type: PropType<__VLS_NonUndefinedable_20<T[K]>>;
|
|
237
|
+
} : {
|
|
238
|
+
type: PropType<T[K]>;
|
|
239
|
+
required: true;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
|
|
239
243
|
declare type __VLS_TypePropsToRuntimeProps_3<T> = {
|
|
240
244
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
241
245
|
type: PropType<__VLS_NonUndefinedable_3<T[K]>>;
|
|
@@ -353,6 +357,12 @@ declare type __VLS_WithDefaults_17<P, D> = {
|
|
|
353
357
|
}> : P[K];
|
|
354
358
|
};
|
|
355
359
|
|
|
360
|
+
declare type __VLS_WithDefaults_18<P, D> = {
|
|
361
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_18<P[K] & {
|
|
362
|
+
default: D[K];
|
|
363
|
+
}> : P[K];
|
|
364
|
+
};
|
|
365
|
+
|
|
356
366
|
declare type __VLS_WithDefaults_2<P, D> = {
|
|
357
367
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_2<P[K] & {
|
|
358
368
|
default: D[K];
|
|
@@ -490,8 +500,6 @@ export declare type AppThemes = {
|
|
|
490
500
|
}>;
|
|
491
501
|
};
|
|
492
502
|
|
|
493
|
-
export declare const clickOutside: ObjectDirective<HTMLElementWithClickOutsideEvent>;
|
|
494
|
-
|
|
495
503
|
declare type ColorScheme = {
|
|
496
504
|
primary: string;
|
|
497
505
|
primaryLight: string;
|
|
@@ -532,16 +540,19 @@ declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaul
|
|
|
532
540
|
bStyle: string;
|
|
533
541
|
label: string;
|
|
534
542
|
size: string;
|
|
543
|
+
class: undefined;
|
|
535
544
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
536
545
|
click: (event: Event) => void;
|
|
537
546
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<QButtonProps>, {
|
|
538
547
|
bStyle: string;
|
|
539
548
|
label: string;
|
|
540
549
|
size: string;
|
|
550
|
+
class: undefined;
|
|
541
551
|
}>>> & {
|
|
542
552
|
onClick?: ((event: Event) => any) | undefined;
|
|
543
553
|
}, {
|
|
544
554
|
size: "small" | "regular";
|
|
555
|
+
class: string | unknown[];
|
|
545
556
|
label: string;
|
|
546
557
|
bStyle: "primary" | "secondary" | "tertiary" | "danger" | "plain";
|
|
547
558
|
}, {}>, {
|
|
@@ -554,14 +565,17 @@ declare const _default_10: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithD
|
|
|
554
565
|
prependIcon: undefined;
|
|
555
566
|
appendIcon: undefined;
|
|
556
567
|
size: string;
|
|
568
|
+
class: undefined;
|
|
557
569
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_10<QInputGroupProps>, {
|
|
558
570
|
id: () => string;
|
|
559
571
|
label: string;
|
|
560
572
|
prependIcon: undefined;
|
|
561
573
|
appendIcon: undefined;
|
|
562
574
|
size: string;
|
|
575
|
+
class: undefined;
|
|
563
576
|
}>>>, {
|
|
564
577
|
size: QFieldSize;
|
|
578
|
+
class: string | unknown[];
|
|
565
579
|
label: string;
|
|
566
580
|
id: string;
|
|
567
581
|
prependIcon: Icon;
|
|
@@ -572,14 +586,21 @@ declare const _default_10: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithD
|
|
|
572
586
|
append?(_: {}): any;
|
|
573
587
|
}>;
|
|
574
588
|
|
|
575
|
-
declare const _default_11: DefineComponent<
|
|
589
|
+
declare const _default_11: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_11<QLineLoaderProps>, {
|
|
590
|
+
class: undefined;
|
|
591
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_11<QLineLoaderProps>, {
|
|
592
|
+
class: undefined;
|
|
593
|
+
}>>>, {
|
|
594
|
+
class: string | unknown[];
|
|
595
|
+
}, {}>;
|
|
576
596
|
|
|
577
|
-
declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<
|
|
597
|
+
declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_12<QListProps>, {
|
|
578
598
|
modelValue: undefined;
|
|
579
599
|
highlighted: undefined;
|
|
580
600
|
groups: () => never[];
|
|
581
601
|
itemValue: string;
|
|
582
602
|
itemLabel: string;
|
|
603
|
+
class: undefined;
|
|
583
604
|
}>, {
|
|
584
605
|
focusItem: typeof focusItem;
|
|
585
606
|
getItem: typeof getItem;
|
|
@@ -588,15 +609,17 @@ declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithD
|
|
|
588
609
|
getLastFocusableItemIndex: typeof getLastFocusableItemIndex;
|
|
589
610
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
590
611
|
"update:modelValue": (value: Primitive) => void;
|
|
591
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
612
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_12<QListProps>, {
|
|
592
613
|
modelValue: undefined;
|
|
593
614
|
highlighted: undefined;
|
|
594
615
|
groups: () => never[];
|
|
595
616
|
itemValue: string;
|
|
596
617
|
itemLabel: string;
|
|
618
|
+
class: undefined;
|
|
597
619
|
}>>> & {
|
|
598
620
|
"onUpdate:modelValue"?: ((value: Primitive) => any) | undefined;
|
|
599
621
|
}, {
|
|
622
|
+
class: string | unknown[];
|
|
600
623
|
modelValue: Primitive;
|
|
601
624
|
highlighted: Primitive;
|
|
602
625
|
groups: Group[];
|
|
@@ -608,12 +631,12 @@ declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithD
|
|
|
608
631
|
}): any;
|
|
609
632
|
}>;
|
|
610
633
|
|
|
611
|
-
declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<
|
|
634
|
+
declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_13<QListItemProps>, {
|
|
612
635
|
icon: undefined;
|
|
613
636
|
icons: () => Record<string, Icon>;
|
|
614
637
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
615
638
|
select: (value: Primitive) => void;
|
|
616
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
639
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_13<QListItemProps>, {
|
|
617
640
|
icon: undefined;
|
|
618
641
|
icons: () => Record<string, Icon>;
|
|
619
642
|
}>>> & {
|
|
@@ -625,9 +648,9 @@ declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithD
|
|
|
625
648
|
default?(_: {}): any;
|
|
626
649
|
}>;
|
|
627
650
|
|
|
628
|
-
declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<
|
|
651
|
+
declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<QListItemGroupProps>, {
|
|
629
652
|
title: string;
|
|
630
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
653
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<QListItemGroupProps>, {
|
|
631
654
|
title: string;
|
|
632
655
|
}>>>, {
|
|
633
656
|
title: string;
|
|
@@ -635,164 +658,38 @@ declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithD
|
|
|
635
658
|
default?(_: {}): any;
|
|
636
659
|
}>;
|
|
637
660
|
|
|
638
|
-
declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
639
|
-
/**
|
|
640
|
-
* Determines whether the overlay is open or not.
|
|
641
|
-
*/
|
|
642
|
-
modelValue?: boolean | undefined;
|
|
643
|
-
/**
|
|
644
|
-
* The DOM element the overlay should be anchored to.
|
|
645
|
-
*/
|
|
646
|
-
anchor: Selector;
|
|
647
|
-
/**
|
|
648
|
-
* The appearance of the overlay.
|
|
649
|
-
* 'regular' uses body text color for background and body background color for text.
|
|
650
|
-
* 'inverted' matches body color scheme.
|
|
651
|
-
*/
|
|
652
|
-
appearance?: Appearance | undefined;
|
|
653
|
-
/**
|
|
654
|
-
* Whether the overlay has an arrow pointing to the target.
|
|
655
|
-
*/
|
|
656
|
-
arrow?: boolean | undefined;
|
|
657
|
-
/**
|
|
658
|
-
* The DOM element the overlay should be teleported to.
|
|
659
|
-
* Defaults to the body of the document.
|
|
660
|
-
*/
|
|
661
|
-
attach?: string | undefined;
|
|
662
|
-
/**
|
|
663
|
-
* Optional additional set of classes to apply to the overlay content.
|
|
664
|
-
*/
|
|
665
|
-
contentClasses?: string[] | undefined;
|
|
666
|
-
/**
|
|
667
|
-
* The delay in milliseconds before showing the overlay.
|
|
668
|
-
*/
|
|
669
|
-
delay?: number | undefined;
|
|
670
|
-
/**
|
|
671
|
-
* Whether the overlay is disabled.
|
|
672
|
-
*/
|
|
673
|
-
disabled?: boolean | undefined;
|
|
674
|
-
/**
|
|
675
|
-
* Offset the overlay in the given amount of pixels.
|
|
676
|
-
*/
|
|
677
|
-
offset?: number | undefined;
|
|
678
|
-
/**
|
|
679
|
-
* The placement of the overlay.
|
|
680
|
-
*/
|
|
681
|
-
placement?: Placement | undefined;
|
|
682
|
-
/**
|
|
683
|
-
* Whether to spy on the real-time position of the anchor,
|
|
684
|
-
* to keep the position of the overlay up-to-date at all times.
|
|
685
|
-
*/
|
|
686
|
-
spy?: boolean | undefined;
|
|
687
|
-
/**
|
|
688
|
-
* The name of the transition to apply.
|
|
689
|
-
*/
|
|
690
|
-
transition?: string | undefined;
|
|
691
|
-
/**
|
|
692
|
-
* The method to trigger the overlay.
|
|
693
|
-
*/
|
|
694
|
-
trigger?: Trigger | undefined;
|
|
695
|
-
/**
|
|
696
|
-
* The width of the overlay.
|
|
697
|
-
* Either is automatic, based on the overlay content,
|
|
698
|
-
* or matches the overlay's anchor.
|
|
699
|
-
*/
|
|
700
|
-
width?: "anchor" | "auto" | undefined;
|
|
701
|
-
}>, {
|
|
661
|
+
declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<QOverlayProps>, {
|
|
702
662
|
appearance: string;
|
|
703
663
|
attach: string;
|
|
704
|
-
contentClasses: () => never[];
|
|
705
664
|
delay: number;
|
|
706
665
|
offset: number;
|
|
707
666
|
placement: string;
|
|
708
667
|
transition: string;
|
|
709
668
|
trigger: string;
|
|
710
669
|
width: string;
|
|
670
|
+
class: undefined;
|
|
711
671
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
712
672
|
enter: () => void;
|
|
713
673
|
leave: () => void;
|
|
714
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
715
|
-
/**
|
|
716
|
-
* Determines whether the overlay is open or not.
|
|
717
|
-
*/
|
|
718
|
-
modelValue?: boolean | undefined;
|
|
719
|
-
/**
|
|
720
|
-
* The DOM element the overlay should be anchored to.
|
|
721
|
-
*/
|
|
722
|
-
anchor: Selector;
|
|
723
|
-
/**
|
|
724
|
-
* The appearance of the overlay.
|
|
725
|
-
* 'regular' uses body text color for background and body background color for text.
|
|
726
|
-
* 'inverted' matches body color scheme.
|
|
727
|
-
*/
|
|
728
|
-
appearance?: Appearance | undefined;
|
|
729
|
-
/**
|
|
730
|
-
* Whether the overlay has an arrow pointing to the target.
|
|
731
|
-
*/
|
|
732
|
-
arrow?: boolean | undefined;
|
|
733
|
-
/**
|
|
734
|
-
* The DOM element the overlay should be teleported to.
|
|
735
|
-
* Defaults to the body of the document.
|
|
736
|
-
*/
|
|
737
|
-
attach?: string | undefined;
|
|
738
|
-
/**
|
|
739
|
-
* Optional additional set of classes to apply to the overlay content.
|
|
740
|
-
*/
|
|
741
|
-
contentClasses?: string[] | undefined;
|
|
742
|
-
/**
|
|
743
|
-
* The delay in milliseconds before showing the overlay.
|
|
744
|
-
*/
|
|
745
|
-
delay?: number | undefined;
|
|
746
|
-
/**
|
|
747
|
-
* Whether the overlay is disabled.
|
|
748
|
-
*/
|
|
749
|
-
disabled?: boolean | undefined;
|
|
750
|
-
/**
|
|
751
|
-
* Offset the overlay in the given amount of pixels.
|
|
752
|
-
*/
|
|
753
|
-
offset?: number | undefined;
|
|
754
|
-
/**
|
|
755
|
-
* The placement of the overlay.
|
|
756
|
-
*/
|
|
757
|
-
placement?: Placement | undefined;
|
|
758
|
-
/**
|
|
759
|
-
* Whether to spy on the real-time position of the anchor,
|
|
760
|
-
* to keep the position of the overlay up-to-date at all times.
|
|
761
|
-
*/
|
|
762
|
-
spy?: boolean | undefined;
|
|
763
|
-
/**
|
|
764
|
-
* The name of the transition to apply.
|
|
765
|
-
*/
|
|
766
|
-
transition?: string | undefined;
|
|
767
|
-
/**
|
|
768
|
-
* The method to trigger the overlay.
|
|
769
|
-
*/
|
|
770
|
-
trigger?: Trigger | undefined;
|
|
771
|
-
/**
|
|
772
|
-
* The width of the overlay.
|
|
773
|
-
* Either is automatic, based on the overlay content,
|
|
774
|
-
* or matches the overlay's anchor.
|
|
775
|
-
*/
|
|
776
|
-
width?: "anchor" | "auto" | undefined;
|
|
777
|
-
}>, {
|
|
674
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<QOverlayProps>, {
|
|
778
675
|
appearance: string;
|
|
779
676
|
attach: string;
|
|
780
|
-
contentClasses: () => never[];
|
|
781
677
|
delay: number;
|
|
782
678
|
offset: number;
|
|
783
679
|
placement: string;
|
|
784
680
|
transition: string;
|
|
785
681
|
trigger: string;
|
|
786
682
|
width: string;
|
|
683
|
+
class: undefined;
|
|
787
684
|
}>>> & {
|
|
788
685
|
onEnter?: (() => any) | undefined;
|
|
789
686
|
onLeave?: (() => any) | undefined;
|
|
790
687
|
}, {
|
|
688
|
+
class: string | unknown[];
|
|
791
689
|
transition: string;
|
|
792
690
|
width: "anchor" | "auto";
|
|
793
691
|
appearance: Appearance;
|
|
794
692
|
attach: string;
|
|
795
|
-
contentClasses: string[];
|
|
796
693
|
delay: number;
|
|
797
694
|
offset: number;
|
|
798
695
|
placement: Placement;
|
|
@@ -804,7 +701,7 @@ declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_With
|
|
|
804
701
|
default?(_: {}): any;
|
|
805
702
|
}>;
|
|
806
703
|
|
|
807
|
-
declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
704
|
+
declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
808
705
|
/**
|
|
809
706
|
* Determines whether the popover is open or not.
|
|
810
707
|
*/
|
|
@@ -853,7 +750,7 @@ declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_With
|
|
|
853
750
|
html: boolean;
|
|
854
751
|
placement: string;
|
|
855
752
|
spy: boolean;
|
|
856
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
753
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
857
754
|
/**
|
|
858
755
|
* Determines whether the popover is open or not.
|
|
859
756
|
*/
|
|
@@ -913,7 +810,7 @@ declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_With
|
|
|
913
810
|
body?(_: {}): any;
|
|
914
811
|
}>;
|
|
915
812
|
|
|
916
|
-
declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
813
|
+
declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
917
814
|
/**
|
|
918
815
|
* The value of the component.
|
|
919
816
|
*/
|
|
@@ -981,6 +878,10 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
981
878
|
texts?: {
|
|
982
879
|
placeholder: string;
|
|
983
880
|
} | undefined;
|
|
881
|
+
/**
|
|
882
|
+
* TODO.
|
|
883
|
+
*/
|
|
884
|
+
class?: string | unknown[] | undefined;
|
|
984
885
|
}>, {
|
|
985
886
|
modelValue: undefined;
|
|
986
887
|
id: () => string;
|
|
@@ -993,13 +894,14 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
993
894
|
texts: () => {
|
|
994
895
|
placeholder: string;
|
|
995
896
|
};
|
|
897
|
+
class: string;
|
|
996
898
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
997
899
|
"update:modelValue": (value: Primitive | undefined) => void;
|
|
998
900
|
"before-show": () => void;
|
|
999
901
|
"before-hide": () => void;
|
|
1000
902
|
show: () => void;
|
|
1001
903
|
hide: () => void;
|
|
1002
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
904
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
1003
905
|
/**
|
|
1004
906
|
* The value of the component.
|
|
1005
907
|
*/
|
|
@@ -1067,6 +969,10 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1067
969
|
texts?: {
|
|
1068
970
|
placeholder: string;
|
|
1069
971
|
} | undefined;
|
|
972
|
+
/**
|
|
973
|
+
* TODO.
|
|
974
|
+
*/
|
|
975
|
+
class?: string | unknown[] | undefined;
|
|
1070
976
|
}>, {
|
|
1071
977
|
modelValue: undefined;
|
|
1072
978
|
id: () => string;
|
|
@@ -1079,6 +985,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1079
985
|
texts: () => {
|
|
1080
986
|
placeholder: string;
|
|
1081
987
|
};
|
|
988
|
+
class: string;
|
|
1082
989
|
}>>> & {
|
|
1083
990
|
"onUpdate:modelValue"?: ((value: Primitive | undefined) => any) | undefined;
|
|
1084
991
|
"onBefore-show"?: (() => any) | undefined;
|
|
@@ -1087,6 +994,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1087
994
|
onHide?: (() => any) | undefined;
|
|
1088
995
|
}, {
|
|
1089
996
|
size: QFieldSize;
|
|
997
|
+
class: string | unknown[];
|
|
1090
998
|
label: string;
|
|
1091
999
|
modelValue: Primitive;
|
|
1092
1000
|
icons: Record<string, Icon>;
|
|
@@ -1102,32 +1010,23 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1102
1010
|
}, {}>, {
|
|
1103
1011
|
"body.prepend"?(_: {}): any;
|
|
1104
1012
|
item?(_: {
|
|
1105
|
-
item:
|
|
1106
|
-
[key: string]: any;
|
|
1107
|
-
};
|
|
1013
|
+
item: any;
|
|
1108
1014
|
}): any;
|
|
1109
1015
|
"body.append"?(_: {}): any;
|
|
1110
1016
|
}>;
|
|
1111
1017
|
|
|
1112
|
-
declare const _default_18: DefineComponent<
|
|
1113
|
-
/**
|
|
1114
|
-
* The size of the loader, in pixels.
|
|
1115
|
-
*/
|
|
1116
|
-
size?: number | undefined;
|
|
1117
|
-
}>, {
|
|
1018
|
+
declare const _default_18: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<QSpinnerLoaderProps>, {
|
|
1118
1019
|
size: number;
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
* The size of the loader, in pixels.
|
|
1122
|
-
*/
|
|
1123
|
-
size?: number | undefined;
|
|
1124
|
-
}>, {
|
|
1020
|
+
class: undefined;
|
|
1021
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<QSpinnerLoaderProps>, {
|
|
1125
1022
|
size: number;
|
|
1023
|
+
class: undefined;
|
|
1126
1024
|
}>>>, {
|
|
1127
1025
|
size: number;
|
|
1026
|
+
class: string | unknown[];
|
|
1128
1027
|
}, {}>;
|
|
1129
1028
|
|
|
1130
|
-
declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
1029
|
+
declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<QTextFieldProps>, {
|
|
1131
1030
|
modelValue: string;
|
|
1132
1031
|
id: () => string;
|
|
1133
1032
|
placeholder: string;
|
|
@@ -1136,12 +1035,13 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1136
1035
|
maxLength: undefined;
|
|
1137
1036
|
role: undefined;
|
|
1138
1037
|
type: string;
|
|
1038
|
+
class: undefined;
|
|
1139
1039
|
}>, {
|
|
1140
|
-
fieldRef: ComputedRef<
|
|
1040
|
+
fieldRef: ComputedRef<any>;
|
|
1141
1041
|
inputRef: Ref<HTMLElement | null>;
|
|
1142
1042
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1143
1043
|
"update:modelValue": (value: string) => void;
|
|
1144
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1044
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<QTextFieldProps>, {
|
|
1145
1045
|
modelValue: string;
|
|
1146
1046
|
id: () => string;
|
|
1147
1047
|
placeholder: string;
|
|
@@ -1150,10 +1050,12 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1150
1050
|
maxLength: undefined;
|
|
1151
1051
|
role: undefined;
|
|
1152
1052
|
type: string;
|
|
1053
|
+
class: undefined;
|
|
1153
1054
|
}>>> & {
|
|
1154
1055
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1155
1056
|
}, {
|
|
1156
1057
|
size: QFieldSize;
|
|
1058
|
+
class: string | unknown[];
|
|
1157
1059
|
type: string;
|
|
1158
1060
|
label: string;
|
|
1159
1061
|
modelValue: string;
|
|
@@ -1171,15 +1073,18 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1171
1073
|
|
|
1172
1074
|
declare const _default_2: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<QButtonGroupProps>, {
|
|
1173
1075
|
bStyle: undefined;
|
|
1076
|
+
class: undefined;
|
|
1174
1077
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<QButtonGroupProps>, {
|
|
1175
1078
|
bStyle: undefined;
|
|
1079
|
+
class: undefined;
|
|
1176
1080
|
}>>>, {
|
|
1081
|
+
class: string | unknown[];
|
|
1177
1082
|
bStyle: "primary" | "secondary" | "danger";
|
|
1178
1083
|
}, {}>, {
|
|
1179
1084
|
default?(_: {}): any;
|
|
1180
1085
|
}>;
|
|
1181
1086
|
|
|
1182
|
-
declare const _default_20: DefineComponent<
|
|
1087
|
+
declare const _default_20: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
1183
1088
|
/**
|
|
1184
1089
|
* Determines whether the tooltip is open or not.
|
|
1185
1090
|
*/
|
|
@@ -1227,6 +1132,10 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1227
1132
|
* The method to trigger the overlay.
|
|
1228
1133
|
*/
|
|
1229
1134
|
trigger?: Trigger | undefined;
|
|
1135
|
+
/**
|
|
1136
|
+
* Custom set of classes to apply to the component.
|
|
1137
|
+
*/
|
|
1138
|
+
class?: string | unknown[] | undefined;
|
|
1230
1139
|
}>, {
|
|
1231
1140
|
appearance: string;
|
|
1232
1141
|
arrow: boolean;
|
|
@@ -1235,7 +1144,8 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1235
1144
|
html: boolean;
|
|
1236
1145
|
placement: string;
|
|
1237
1146
|
trigger: string;
|
|
1238
|
-
|
|
1147
|
+
class: undefined;
|
|
1148
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
1239
1149
|
/**
|
|
1240
1150
|
* Determines whether the tooltip is open or not.
|
|
1241
1151
|
*/
|
|
@@ -1283,6 +1193,10 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1283
1193
|
* The method to trigger the overlay.
|
|
1284
1194
|
*/
|
|
1285
1195
|
trigger?: Trigger | undefined;
|
|
1196
|
+
/**
|
|
1197
|
+
* Custom set of classes to apply to the component.
|
|
1198
|
+
*/
|
|
1199
|
+
class?: string | unknown[] | undefined;
|
|
1286
1200
|
}>, {
|
|
1287
1201
|
appearance: string;
|
|
1288
1202
|
arrow: boolean;
|
|
@@ -1291,7 +1205,9 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1291
1205
|
html: boolean;
|
|
1292
1206
|
placement: string;
|
|
1293
1207
|
trigger: string;
|
|
1208
|
+
class: undefined;
|
|
1294
1209
|
}>>>, {
|
|
1210
|
+
class: string | unknown[];
|
|
1295
1211
|
html: boolean;
|
|
1296
1212
|
appearance: Appearance;
|
|
1297
1213
|
arrow: boolean;
|
|
@@ -1322,224 +1238,9 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1322
1238
|
noData: string;
|
|
1323
1239
|
};
|
|
1324
1240
|
icons: () => Record<string, Icon>;
|
|
1241
|
+
class: undefined;
|
|
1325
1242
|
}>, {
|
|
1326
|
-
triggerEl: Ref<
|
|
1327
|
-
$: ComponentInternalInstance;
|
|
1328
|
-
$data: {};
|
|
1329
|
-
$props: Partial<{
|
|
1330
|
-
size: QFieldSize;
|
|
1331
|
-
type: string;
|
|
1332
|
-
label: string;
|
|
1333
|
-
modelValue: string;
|
|
1334
|
-
id: string;
|
|
1335
|
-
role: string;
|
|
1336
|
-
maxLength: number;
|
|
1337
|
-
placeholder: string;
|
|
1338
|
-
}> & Omit<{
|
|
1339
|
-
readonly type: string;
|
|
1340
|
-
readonly label: string;
|
|
1341
|
-
readonly modelValue: string;
|
|
1342
|
-
readonly id: string;
|
|
1343
|
-
readonly placeholder: string;
|
|
1344
|
-
readonly size?: QFieldSize | undefined;
|
|
1345
|
-
readonly disabled?: boolean | undefined;
|
|
1346
|
-
readonly required?: boolean | undefined;
|
|
1347
|
-
readonly role?: string | undefined;
|
|
1348
|
-
readonly maxLength?: number | undefined;
|
|
1349
|
-
readonly readonly?: boolean | undefined;
|
|
1350
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1351
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
|
|
1352
|
-
size: {
|
|
1353
|
-
type: PropType<QFieldSize>;
|
|
1354
|
-
default: undefined;
|
|
1355
|
-
};
|
|
1356
|
-
type: {
|
|
1357
|
-
type: PropType<string>;
|
|
1358
|
-
default: string;
|
|
1359
|
-
};
|
|
1360
|
-
label: {
|
|
1361
|
-
type: PropType<string>;
|
|
1362
|
-
default: string;
|
|
1363
|
-
};
|
|
1364
|
-
disabled: {
|
|
1365
|
-
type: PropType<boolean>;
|
|
1366
|
-
};
|
|
1367
|
-
modelValue: {
|
|
1368
|
-
type: PropType<string>;
|
|
1369
|
-
default: string;
|
|
1370
|
-
};
|
|
1371
|
-
required: {
|
|
1372
|
-
type: PropType<boolean>;
|
|
1373
|
-
};
|
|
1374
|
-
id: {
|
|
1375
|
-
type: PropType<string>;
|
|
1376
|
-
default: () => string;
|
|
1377
|
-
};
|
|
1378
|
-
role: {
|
|
1379
|
-
type: PropType<string>;
|
|
1380
|
-
default: undefined;
|
|
1381
|
-
};
|
|
1382
|
-
maxLength: {
|
|
1383
|
-
type: PropType<number>;
|
|
1384
|
-
default: undefined;
|
|
1385
|
-
};
|
|
1386
|
-
placeholder: {
|
|
1387
|
-
type: PropType<string>;
|
|
1388
|
-
default: string;
|
|
1389
|
-
};
|
|
1390
|
-
readonly: {
|
|
1391
|
-
type: PropType<boolean>;
|
|
1392
|
-
};
|
|
1393
|
-
}>> & {
|
|
1394
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1395
|
-
}, "size" | "type" | "label" | "modelValue" | "id" | "role" | "maxLength" | "placeholder">;
|
|
1396
|
-
$attrs: {
|
|
1397
|
-
[x: string]: unknown;
|
|
1398
|
-
};
|
|
1399
|
-
$refs: {
|
|
1400
|
-
[x: string]: unknown;
|
|
1401
|
-
};
|
|
1402
|
-
$slots: Readonly<{
|
|
1403
|
-
[name: string]: Slot<any> | undefined;
|
|
1404
|
-
}>;
|
|
1405
|
-
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
1406
|
-
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
1407
|
-
$emit: (event: "update:modelValue", value: string) => void;
|
|
1408
|
-
$el: any;
|
|
1409
|
-
$options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
|
|
1410
|
-
size: {
|
|
1411
|
-
type: PropType<QFieldSize>;
|
|
1412
|
-
default: undefined;
|
|
1413
|
-
};
|
|
1414
|
-
type: {
|
|
1415
|
-
type: PropType<string>;
|
|
1416
|
-
default: string;
|
|
1417
|
-
};
|
|
1418
|
-
label: {
|
|
1419
|
-
type: PropType<string>;
|
|
1420
|
-
default: string;
|
|
1421
|
-
};
|
|
1422
|
-
disabled: {
|
|
1423
|
-
type: PropType<boolean>;
|
|
1424
|
-
};
|
|
1425
|
-
modelValue: {
|
|
1426
|
-
type: PropType<string>;
|
|
1427
|
-
default: string;
|
|
1428
|
-
};
|
|
1429
|
-
required: {
|
|
1430
|
-
type: PropType<boolean>;
|
|
1431
|
-
};
|
|
1432
|
-
id: {
|
|
1433
|
-
type: PropType<string>;
|
|
1434
|
-
default: () => string;
|
|
1435
|
-
};
|
|
1436
|
-
role: {
|
|
1437
|
-
type: PropType<string>;
|
|
1438
|
-
default: undefined;
|
|
1439
|
-
};
|
|
1440
|
-
maxLength: {
|
|
1441
|
-
type: PropType<number>;
|
|
1442
|
-
default: undefined;
|
|
1443
|
-
};
|
|
1444
|
-
placeholder: {
|
|
1445
|
-
type: PropType<string>;
|
|
1446
|
-
default: string;
|
|
1447
|
-
};
|
|
1448
|
-
readonly: {
|
|
1449
|
-
type: PropType<boolean>;
|
|
1450
|
-
};
|
|
1451
|
-
}>> & {
|
|
1452
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1453
|
-
}, {
|
|
1454
|
-
fieldRef: ComputedRef<HTMLElement | null | undefined>;
|
|
1455
|
-
inputRef: Ref<HTMLElement | null>;
|
|
1456
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1457
|
-
"update:modelValue": (value: string) => void;
|
|
1458
|
-
}, string, {
|
|
1459
|
-
size: QFieldSize;
|
|
1460
|
-
type: string;
|
|
1461
|
-
label: string;
|
|
1462
|
-
modelValue: string;
|
|
1463
|
-
id: string;
|
|
1464
|
-
role: string;
|
|
1465
|
-
maxLength: number;
|
|
1466
|
-
placeholder: string;
|
|
1467
|
-
}, {}, string, {}> & {
|
|
1468
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1469
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
1470
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
1471
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1472
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
1473
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
1474
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
1475
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
1476
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
1477
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
1478
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
1479
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
1480
|
-
renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
|
|
1481
|
-
renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
|
|
1482
|
-
errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
1483
|
-
};
|
|
1484
|
-
$forceUpdate: () => void;
|
|
1485
|
-
$nextTick: typeof nextTick;
|
|
1486
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
1487
|
-
} & Omit<Readonly<ExtractPropTypes<{
|
|
1488
|
-
size: {
|
|
1489
|
-
type: PropType<QFieldSize>;
|
|
1490
|
-
default: undefined;
|
|
1491
|
-
};
|
|
1492
|
-
type: {
|
|
1493
|
-
type: PropType<string>;
|
|
1494
|
-
default: string;
|
|
1495
|
-
};
|
|
1496
|
-
label: {
|
|
1497
|
-
type: PropType<string>;
|
|
1498
|
-
default: string;
|
|
1499
|
-
};
|
|
1500
|
-
disabled: {
|
|
1501
|
-
type: PropType<boolean>;
|
|
1502
|
-
};
|
|
1503
|
-
modelValue: {
|
|
1504
|
-
type: PropType<string>;
|
|
1505
|
-
default: string;
|
|
1506
|
-
};
|
|
1507
|
-
required: {
|
|
1508
|
-
type: PropType<boolean>;
|
|
1509
|
-
};
|
|
1510
|
-
id: {
|
|
1511
|
-
type: PropType<string>;
|
|
1512
|
-
default: () => string;
|
|
1513
|
-
};
|
|
1514
|
-
role: {
|
|
1515
|
-
type: PropType<string>;
|
|
1516
|
-
default: undefined;
|
|
1517
|
-
};
|
|
1518
|
-
maxLength: {
|
|
1519
|
-
type: PropType<number>;
|
|
1520
|
-
default: undefined;
|
|
1521
|
-
};
|
|
1522
|
-
placeholder: {
|
|
1523
|
-
type: PropType<string>;
|
|
1524
|
-
default: string;
|
|
1525
|
-
};
|
|
1526
|
-
readonly: {
|
|
1527
|
-
type: PropType<boolean>;
|
|
1528
|
-
};
|
|
1529
|
-
}>> & {
|
|
1530
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1531
|
-
}, "fieldRef" | "inputRef"> & ShallowUnwrapRef<{
|
|
1532
|
-
fieldRef: ComputedRef<HTMLElement | null | undefined>;
|
|
1533
|
-
inputRef: Ref<HTMLElement | null>;
|
|
1534
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
1535
|
-
$slots: {
|
|
1536
|
-
"label.prepend"?(_: {}): any;
|
|
1537
|
-
"label.append"?(_: {}): any;
|
|
1538
|
-
prepend?(_: {}): any;
|
|
1539
|
-
append?(_: {}): any;
|
|
1540
|
-
extras?(_: {}): any;
|
|
1541
|
-
};
|
|
1542
|
-
}) | null>;
|
|
1243
|
+
triggerEl: Ref<any>;
|
|
1543
1244
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1544
1245
|
"update:modelValue": (value: Primitive | undefined) => void;
|
|
1545
1246
|
"update:inputValue": (value: string) => void;
|
|
@@ -1562,6 +1263,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1562
1263
|
noData: string;
|
|
1563
1264
|
};
|
|
1564
1265
|
icons: () => Record<string, Icon>;
|
|
1266
|
+
class: undefined;
|
|
1565
1267
|
}>>> & {
|
|
1566
1268
|
"onUpdate:modelValue"?: ((value: Primitive | undefined) => any) | undefined;
|
|
1567
1269
|
"onUpdate:inputValue"?: ((value: string) => any) | undefined;
|
|
@@ -1571,6 +1273,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1571
1273
|
onHide?: (() => any) | undefined;
|
|
1572
1274
|
}, {
|
|
1573
1275
|
size: QFieldSize;
|
|
1276
|
+
class: string | unknown[];
|
|
1574
1277
|
label: string;
|
|
1575
1278
|
modelValue: Primitive;
|
|
1576
1279
|
icons: Record<string, Icon>;
|
|
@@ -1594,9 +1297,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1594
1297
|
extras?(_: {}): any;
|
|
1595
1298
|
"body.prepend"?(_: {}): any;
|
|
1596
1299
|
item?(_: {
|
|
1597
|
-
item:
|
|
1598
|
-
[key: string]: any;
|
|
1599
|
-
};
|
|
1300
|
+
item: any;
|
|
1600
1301
|
}): any;
|
|
1601
1302
|
"body.append"?(_: {}): any;
|
|
1602
1303
|
}>;
|
|
@@ -1605,14 +1306,17 @@ declare const _default_5: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDe
|
|
|
1605
1306
|
id: () => string;
|
|
1606
1307
|
label: string;
|
|
1607
1308
|
size: string;
|
|
1309
|
+
class: undefined;
|
|
1608
1310
|
}>, {
|
|
1609
1311
|
fieldRef: Ref<HTMLElement | null>;
|
|
1610
1312
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_5<QFieldProps>, {
|
|
1611
1313
|
id: () => string;
|
|
1612
1314
|
label: string;
|
|
1613
1315
|
size: string;
|
|
1316
|
+
class: undefined;
|
|
1614
1317
|
}>>>, {
|
|
1615
1318
|
size: QFieldSize;
|
|
1319
|
+
class: string | unknown[];
|
|
1616
1320
|
label: string;
|
|
1617
1321
|
id: string;
|
|
1618
1322
|
}, {}>, {
|
|
@@ -1628,11 +1332,14 @@ declare const _default_5: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDe
|
|
|
1628
1332
|
declare const _default_6: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Icon>, {
|
|
1629
1333
|
type: string;
|
|
1630
1334
|
size: undefined;
|
|
1335
|
+
class: undefined;
|
|
1631
1336
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Icon>, {
|
|
1632
1337
|
type: string;
|
|
1633
1338
|
size: undefined;
|
|
1339
|
+
class: undefined;
|
|
1634
1340
|
}>>>, {
|
|
1635
1341
|
size: number;
|
|
1342
|
+
class: string | unknown[];
|
|
1636
1343
|
type: "img" | "svg" | "font";
|
|
1637
1344
|
}, {}>;
|
|
1638
1345
|
|
|
@@ -1640,12 +1347,15 @@ declare const _default_7: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsTo
|
|
|
1640
1347
|
library: string;
|
|
1641
1348
|
variant: string;
|
|
1642
1349
|
size: undefined;
|
|
1350
|
+
class: undefined;
|
|
1643
1351
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_7<QIconFontProps>, {
|
|
1644
1352
|
library: string;
|
|
1645
1353
|
variant: string;
|
|
1646
1354
|
size: undefined;
|
|
1355
|
+
class: undefined;
|
|
1647
1356
|
}>>>, {
|
|
1648
1357
|
size: number;
|
|
1358
|
+
class: string | unknown[];
|
|
1649
1359
|
library: string;
|
|
1650
1360
|
variant: string;
|
|
1651
1361
|
}, {}>;
|
|
@@ -1659,6 +1369,10 @@ declare const _default_8: DefineComponent<__VLS_TypePropsToRuntimeProps_8<{
|
|
|
1659
1369
|
* The size of the icon, in pixels.
|
|
1660
1370
|
*/
|
|
1661
1371
|
size?: number | undefined;
|
|
1372
|
+
/**
|
|
1373
|
+
* Custom set of classes to apply to the component.
|
|
1374
|
+
*/
|
|
1375
|
+
class?: string | unknown[] | undefined;
|
|
1662
1376
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_8<{
|
|
1663
1377
|
/**
|
|
1664
1378
|
* The URL of the image to be used as the icon.
|
|
@@ -1668,6 +1382,10 @@ declare const _default_8: DefineComponent<__VLS_TypePropsToRuntimeProps_8<{
|
|
|
1668
1382
|
* The size of the icon, in pixels.
|
|
1669
1383
|
*/
|
|
1670
1384
|
size?: number | undefined;
|
|
1385
|
+
/**
|
|
1386
|
+
* Custom set of classes to apply to the component.
|
|
1387
|
+
*/
|
|
1388
|
+
class?: string | unknown[] | undefined;
|
|
1671
1389
|
}>>>, {}, {}>;
|
|
1672
1390
|
|
|
1673
1391
|
declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_9<{
|
|
@@ -1683,9 +1401,14 @@ declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsTo
|
|
|
1683
1401
|
* The size of the icon, in pixels.
|
|
1684
1402
|
*/
|
|
1685
1403
|
size?: number | undefined;
|
|
1404
|
+
/**
|
|
1405
|
+
* Custom set of classes to apply to the component.
|
|
1406
|
+
*/
|
|
1407
|
+
class?: string | unknown[] | undefined;
|
|
1686
1408
|
}>, {
|
|
1687
1409
|
bundle: string;
|
|
1688
1410
|
size: undefined;
|
|
1411
|
+
class: undefined;
|
|
1689
1412
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1690
1413
|
loaded: (value: Element) => void;
|
|
1691
1414
|
unloaded: () => void;
|
|
@@ -1702,14 +1425,20 @@ declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsTo
|
|
|
1702
1425
|
* The size of the icon, in pixels.
|
|
1703
1426
|
*/
|
|
1704
1427
|
size?: number | undefined;
|
|
1428
|
+
/**
|
|
1429
|
+
* Custom set of classes to apply to the component.
|
|
1430
|
+
*/
|
|
1431
|
+
class?: string | unknown[] | undefined;
|
|
1705
1432
|
}>, {
|
|
1706
1433
|
bundle: string;
|
|
1707
1434
|
size: undefined;
|
|
1435
|
+
class: undefined;
|
|
1708
1436
|
}>>> & {
|
|
1709
1437
|
onLoaded?: ((value: Element) => any) | undefined;
|
|
1710
1438
|
onUnloaded?: (() => any) | undefined;
|
|
1711
1439
|
}, {
|
|
1712
1440
|
size: number;
|
|
1441
|
+
class: string | unknown[];
|
|
1713
1442
|
bundle: string;
|
|
1714
1443
|
}, {}>;
|
|
1715
1444
|
|
|
@@ -1738,7 +1467,6 @@ declare function focusItem(itemIdx: number, preventScroll?: boolean): void;
|
|
|
1738
1467
|
|
|
1739
1468
|
declare type FrameworkConfig = {
|
|
1740
1469
|
components?: Record<string, Component>;
|
|
1741
|
-
directives?: Record<string, Directive>;
|
|
1742
1470
|
themes?: AppThemes;
|
|
1743
1471
|
defaults?: Defaults;
|
|
1744
1472
|
};
|
|
@@ -1778,10 +1506,6 @@ declare type Group = QListItemGroupProps & {
|
|
|
1778
1506
|
id: string;
|
|
1779
1507
|
};
|
|
1780
1508
|
|
|
1781
|
-
declare interface HTMLElementWithClickOutsideEvent extends HTMLElement {
|
|
1782
|
-
clickOutsideEvent: (event: Event) => void;
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1785
1509
|
export declare type Icon = {
|
|
1786
1510
|
/**
|
|
1787
1511
|
* The identifier of the icon.
|
|
@@ -1795,51 +1519,55 @@ export declare type Icon = {
|
|
|
1795
1519
|
* The size of the icon, in pixels.
|
|
1796
1520
|
*/
|
|
1797
1521
|
size?: number;
|
|
1522
|
+
/**
|
|
1523
|
+
* Custom set of classes to apply to the component.
|
|
1524
|
+
*/
|
|
1525
|
+
class?: string | unknown[];
|
|
1798
1526
|
};
|
|
1799
1527
|
|
|
1800
1528
|
declare type Icons = typeof DEFAULT_ICONS;
|
|
1801
1529
|
|
|
1802
1530
|
declare type Icons_2 = typeof DEFAULT_ICONS_2;
|
|
1803
1531
|
|
|
1804
|
-
export declare type IQButton = typeof _default
|
|
1532
|
+
export declare type IQButton = InstanceType<typeof _default>;
|
|
1805
1533
|
|
|
1806
|
-
export declare type IQButtonGroup = typeof _default_2
|
|
1534
|
+
export declare type IQButtonGroup = InstanceType<typeof _default_2>;
|
|
1807
1535
|
|
|
1808
|
-
export declare type IQButtonToggle = typeof _default_3
|
|
1536
|
+
export declare type IQButtonToggle = InstanceType<typeof _default_3>;
|
|
1809
1537
|
|
|
1810
|
-
export declare type IQCombobox = typeof _default_4
|
|
1538
|
+
export declare type IQCombobox = InstanceType<typeof _default_4>;
|
|
1811
1539
|
|
|
1812
|
-
export declare type IQField = typeof _default_5
|
|
1540
|
+
export declare type IQField = InstanceType<typeof _default_5>;
|
|
1813
1541
|
|
|
1814
|
-
export declare type IQIcon = typeof _default_6
|
|
1542
|
+
export declare type IQIcon = InstanceType<typeof _default_6>;
|
|
1815
1543
|
|
|
1816
|
-
export declare type IQIconFont = typeof _default_7
|
|
1544
|
+
export declare type IQIconFont = InstanceType<typeof _default_7>;
|
|
1817
1545
|
|
|
1818
|
-
export declare type IQIconImg = typeof _default_8
|
|
1546
|
+
export declare type IQIconImg = InstanceType<typeof _default_8>;
|
|
1819
1547
|
|
|
1820
|
-
export declare type IQIconSvg = typeof _default_9
|
|
1548
|
+
export declare type IQIconSvg = InstanceType<typeof _default_9>;
|
|
1821
1549
|
|
|
1822
|
-
export declare type IQInputGroup = typeof _default_10
|
|
1550
|
+
export declare type IQInputGroup = InstanceType<typeof _default_10>;
|
|
1823
1551
|
|
|
1824
|
-
export declare type IQLineLoader = typeof _default_11
|
|
1552
|
+
export declare type IQLineLoader = InstanceType<typeof _default_11>;
|
|
1825
1553
|
|
|
1826
|
-
export declare type IQList = typeof _default_12
|
|
1554
|
+
export declare type IQList = InstanceType<typeof _default_12>;
|
|
1827
1555
|
|
|
1828
|
-
export declare type IQListItem = typeof _default_13
|
|
1556
|
+
export declare type IQListItem = InstanceType<typeof _default_13>;
|
|
1829
1557
|
|
|
1830
|
-
export declare type IQListItemGroup = typeof _default_14
|
|
1558
|
+
export declare type IQListItemGroup = InstanceType<typeof _default_14>;
|
|
1831
1559
|
|
|
1832
|
-
export declare type IQOverlay = typeof _default_15
|
|
1560
|
+
export declare type IQOverlay = InstanceType<typeof _default_15>;
|
|
1833
1561
|
|
|
1834
|
-
export declare type IQPopover = typeof _default_16
|
|
1562
|
+
export declare type IQPopover = InstanceType<typeof _default_16>;
|
|
1835
1563
|
|
|
1836
|
-
export declare type IQSelect = typeof _default_17
|
|
1564
|
+
export declare type IQSelect = InstanceType<typeof _default_17>;
|
|
1837
1565
|
|
|
1838
|
-
export declare type IQSpinnerLoader = typeof _default_18
|
|
1566
|
+
export declare type IQSpinnerLoader = InstanceType<typeof _default_18>;
|
|
1839
1567
|
|
|
1840
|
-
export declare type IQTextField = typeof _default_19
|
|
1568
|
+
export declare type IQTextField = InstanceType<typeof _default_19>;
|
|
1841
1569
|
|
|
1842
|
-
export declare type IQTooltip = typeof _default_20
|
|
1570
|
+
export declare type IQTooltip = InstanceType<typeof _default_20>;
|
|
1843
1571
|
|
|
1844
1572
|
declare type Item = Omit<QListItemProps, 'value' | 'label'> & {
|
|
1845
1573
|
[key: string]: any;
|
|
@@ -1870,6 +1598,10 @@ declare type QButtonGroupProps = {
|
|
|
1870
1598
|
* If true, the button group an elevated appearance.
|
|
1871
1599
|
*/
|
|
1872
1600
|
elevated?: boolean;
|
|
1601
|
+
/**
|
|
1602
|
+
* Custom set of classes to apply to the component.
|
|
1603
|
+
*/
|
|
1604
|
+
class?: string | unknown[];
|
|
1873
1605
|
};
|
|
1874
1606
|
|
|
1875
1607
|
declare type QButtonProps = {
|
|
@@ -1913,6 +1645,10 @@ declare type QButtonProps = {
|
|
|
1913
1645
|
* The size of the button, either 'regular' or 'small'.
|
|
1914
1646
|
*/
|
|
1915
1647
|
size?: 'regular' | 'small';
|
|
1648
|
+
/**
|
|
1649
|
+
* Custom set of classes to apply to the component.
|
|
1650
|
+
*/
|
|
1651
|
+
class?: string | unknown[];
|
|
1916
1652
|
};
|
|
1917
1653
|
|
|
1918
1654
|
export declare const QButtonToggle: IQButtonToggle;
|
|
@@ -1948,6 +1684,10 @@ declare type QButtonToggleProps = {
|
|
|
1948
1684
|
* Indicates if options can be deselected.
|
|
1949
1685
|
*/
|
|
1950
1686
|
mandatory?: boolean;
|
|
1687
|
+
/**
|
|
1688
|
+
* Custom set of classes to apply to the component.
|
|
1689
|
+
*/
|
|
1690
|
+
class?: string | unknown[];
|
|
1951
1691
|
};
|
|
1952
1692
|
|
|
1953
1693
|
export declare const QCombobox: IQCombobox;
|
|
@@ -2030,6 +1770,10 @@ declare type QComboboxProps = {
|
|
|
2030
1770
|
* The icons of the component.
|
|
2031
1771
|
*/
|
|
2032
1772
|
icons?: Icons_2;
|
|
1773
|
+
/**
|
|
1774
|
+
* Custom set of classes to apply to the component.
|
|
1775
|
+
*/
|
|
1776
|
+
class?: string | unknown[];
|
|
2033
1777
|
};
|
|
2034
1778
|
|
|
2035
1779
|
export declare const QField: IQField;
|
|
@@ -2060,6 +1804,10 @@ export declare type QFieldProps = {
|
|
|
2060
1804
|
* to indicate that the field is required.
|
|
2061
1805
|
*/
|
|
2062
1806
|
required?: boolean;
|
|
1807
|
+
/**
|
|
1808
|
+
* Custom set of classes to apply to the component.
|
|
1809
|
+
*/
|
|
1810
|
+
class?: string | unknown[];
|
|
2063
1811
|
};
|
|
2064
1812
|
|
|
2065
1813
|
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'block';
|
|
@@ -2085,6 +1833,10 @@ declare type QIconFontProps = {
|
|
|
2085
1833
|
* The size of the icon, in pixels.
|
|
2086
1834
|
*/
|
|
2087
1835
|
size?: number;
|
|
1836
|
+
/**
|
|
1837
|
+
* Custom set of classes to apply to the component.
|
|
1838
|
+
*/
|
|
1839
|
+
class?: string | unknown[];
|
|
2088
1840
|
};
|
|
2089
1841
|
|
|
2090
1842
|
export declare const QIconImg: IQIconImg;
|
|
@@ -2127,10 +1879,21 @@ declare type QInputGroupProps = {
|
|
|
2127
1879
|
* The size category of the field.
|
|
2128
1880
|
*/
|
|
2129
1881
|
size?: QFieldSize;
|
|
1882
|
+
/**
|
|
1883
|
+
* Custom set of classes to apply to the component.
|
|
1884
|
+
*/
|
|
1885
|
+
class?: string | unknown[];
|
|
2130
1886
|
};
|
|
2131
1887
|
|
|
2132
1888
|
export declare const QLineLoader: IQLineLoader;
|
|
2133
1889
|
|
|
1890
|
+
declare type QLineLoaderProps = {
|
|
1891
|
+
/**
|
|
1892
|
+
* Custom set of classes to apply to the component.
|
|
1893
|
+
*/
|
|
1894
|
+
class?: string | unknown[];
|
|
1895
|
+
};
|
|
1896
|
+
|
|
2134
1897
|
export declare const QList: IQList;
|
|
2135
1898
|
|
|
2136
1899
|
export declare const QListItem: IQListItem;
|
|
@@ -2208,16 +1971,96 @@ export declare type QListProps = {
|
|
|
2208
1971
|
* Indicates whether the list is disabled.
|
|
2209
1972
|
*/
|
|
2210
1973
|
disabled?: boolean;
|
|
1974
|
+
/**
|
|
1975
|
+
* Custom set of classes to apply to the component.
|
|
1976
|
+
*/
|
|
1977
|
+
class?: string | unknown[];
|
|
2211
1978
|
};
|
|
2212
1979
|
|
|
2213
1980
|
export declare const QOverlay: IQOverlay;
|
|
2214
1981
|
|
|
1982
|
+
declare type QOverlayProps = {
|
|
1983
|
+
/**
|
|
1984
|
+
* Determines whether the overlay is open or not.
|
|
1985
|
+
*/
|
|
1986
|
+
modelValue?: boolean;
|
|
1987
|
+
/**
|
|
1988
|
+
* The DOM element the overlay should be anchored to.
|
|
1989
|
+
*/
|
|
1990
|
+
anchor: Selector;
|
|
1991
|
+
/**
|
|
1992
|
+
* The appearance of the overlay.
|
|
1993
|
+
* 'regular' uses body text color for background and body background color for text.
|
|
1994
|
+
* 'inverted' matches body color scheme.
|
|
1995
|
+
*/
|
|
1996
|
+
appearance?: Appearance;
|
|
1997
|
+
/**
|
|
1998
|
+
* Whether the overlay has an arrow pointing to the target.
|
|
1999
|
+
*/
|
|
2000
|
+
arrow?: boolean;
|
|
2001
|
+
/**
|
|
2002
|
+
* The DOM element the overlay should be teleported to.
|
|
2003
|
+
* Defaults to the body of the document.
|
|
2004
|
+
*/
|
|
2005
|
+
attach?: string;
|
|
2006
|
+
/**
|
|
2007
|
+
* The delay in milliseconds before showing the overlay.
|
|
2008
|
+
*/
|
|
2009
|
+
delay?: number;
|
|
2010
|
+
/**
|
|
2011
|
+
* Whether the overlay is disabled.
|
|
2012
|
+
*/
|
|
2013
|
+
disabled?: boolean;
|
|
2014
|
+
/**
|
|
2015
|
+
* Offset the overlay in the given amount of pixels.
|
|
2016
|
+
*/
|
|
2017
|
+
offset?: number;
|
|
2018
|
+
/**
|
|
2019
|
+
* The placement of the overlay.
|
|
2020
|
+
*/
|
|
2021
|
+
placement?: Placement;
|
|
2022
|
+
/**
|
|
2023
|
+
* Whether to spy on the real-time position of the anchor,
|
|
2024
|
+
* to keep the position of the overlay up-to-date at all times.
|
|
2025
|
+
*/
|
|
2026
|
+
spy?: boolean;
|
|
2027
|
+
/**
|
|
2028
|
+
* The name of the transition to apply.
|
|
2029
|
+
*/
|
|
2030
|
+
transition?: string;
|
|
2031
|
+
/**
|
|
2032
|
+
* The method to trigger the overlay.
|
|
2033
|
+
*/
|
|
2034
|
+
trigger?: Trigger;
|
|
2035
|
+
/**
|
|
2036
|
+
* The width of the overlay.
|
|
2037
|
+
* Either is automatic, based on the overlay content,
|
|
2038
|
+
* or matches the overlay's anchor.
|
|
2039
|
+
*/
|
|
2040
|
+
width?: 'auto' | 'anchor';
|
|
2041
|
+
/**
|
|
2042
|
+
* Custom set of classes to apply to the component.
|
|
2043
|
+
*/
|
|
2044
|
+
class?: string | unknown[];
|
|
2045
|
+
};
|
|
2046
|
+
|
|
2215
2047
|
export declare const QPopover: IQPopover;
|
|
2216
2048
|
|
|
2217
2049
|
export declare const QSelect: IQSelect;
|
|
2218
2050
|
|
|
2219
2051
|
export declare const QSpinnerLoader: IQSpinnerLoader;
|
|
2220
2052
|
|
|
2053
|
+
declare type QSpinnerLoaderProps = {
|
|
2054
|
+
/**
|
|
2055
|
+
* The size of the loader, in pixels.
|
|
2056
|
+
*/
|
|
2057
|
+
size?: number;
|
|
2058
|
+
/**
|
|
2059
|
+
* Custom set of classes to apply to the component.
|
|
2060
|
+
*/
|
|
2061
|
+
class?: string | unknown[];
|
|
2062
|
+
};
|
|
2063
|
+
|
|
2221
2064
|
export declare const QTextField: IQTextField;
|
|
2222
2065
|
|
|
2223
2066
|
declare type QTextFieldProps = {
|
|
@@ -2267,6 +2110,10 @@ declare type QTextFieldProps = {
|
|
|
2267
2110
|
* The type attribute to apply to the input.
|
|
2268
2111
|
*/
|
|
2269
2112
|
type?: string;
|
|
2113
|
+
/**
|
|
2114
|
+
* Custom set of classes to apply to the component.
|
|
2115
|
+
*/
|
|
2116
|
+
class?: string | unknown[];
|
|
2270
2117
|
};
|
|
2271
2118
|
|
|
2272
2119
|
export declare const QTooltip: IQTooltip;
|