@quidgest/ui 0.7.12 → 0.7.14
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 +281 -194
- package/dist/ui.css +8 -11
- package/dist/ui.esm.js +935 -932
- 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 -155
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +13 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,10 +9,8 @@ import { ComponentPublicInstance } from 'vue';
|
|
|
9
9
|
import { ComputedRef } from 'vue';
|
|
10
10
|
import { DebuggerEvent } from 'vue';
|
|
11
11
|
import { DefineComponent } from 'vue';
|
|
12
|
-
import type { Directive } from 'vue';
|
|
13
12
|
import { ExtractPropTypes } from 'vue';
|
|
14
13
|
import { nextTick } from 'vue';
|
|
15
|
-
import type { ObjectDirective } from 'vue';
|
|
16
14
|
import type { Plugin as Plugin_2 } from 'vue';
|
|
17
15
|
import { PropType } from 'vue';
|
|
18
16
|
import { Ref } from 'vue';
|
|
@@ -46,6 +44,8 @@ declare type __VLS_NonUndefinedable_19<T> = T extends undefined ? never : T;
|
|
|
46
44
|
|
|
47
45
|
declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
|
48
46
|
|
|
47
|
+
declare type __VLS_NonUndefinedable_20<T> = T extends undefined ? never : T;
|
|
48
|
+
|
|
49
49
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
50
50
|
|
|
51
51
|
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
@@ -96,6 +96,10 @@ declare type __VLS_Prettify_17<T> = {
|
|
|
96
96
|
[K in keyof T]: T[K];
|
|
97
97
|
} & {};
|
|
98
98
|
|
|
99
|
+
declare type __VLS_Prettify_18<T> = {
|
|
100
|
+
[K in keyof T]: T[K];
|
|
101
|
+
} & {};
|
|
102
|
+
|
|
99
103
|
declare type __VLS_Prettify_2<T> = {
|
|
100
104
|
[K in keyof T]: T[K];
|
|
101
105
|
} & {};
|
|
@@ -236,6 +240,15 @@ declare type __VLS_TypePropsToRuntimeProps_2<T> = {
|
|
|
236
240
|
};
|
|
237
241
|
};
|
|
238
242
|
|
|
243
|
+
declare type __VLS_TypePropsToRuntimeProps_20<T> = {
|
|
244
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
245
|
+
type: PropType<__VLS_NonUndefinedable_20<T[K]>>;
|
|
246
|
+
} : {
|
|
247
|
+
type: PropType<T[K]>;
|
|
248
|
+
required: true;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
|
|
239
252
|
declare type __VLS_TypePropsToRuntimeProps_3<T> = {
|
|
240
253
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
241
254
|
type: PropType<__VLS_NonUndefinedable_3<T[K]>>;
|
|
@@ -353,6 +366,12 @@ declare type __VLS_WithDefaults_17<P, D> = {
|
|
|
353
366
|
}> : P[K];
|
|
354
367
|
};
|
|
355
368
|
|
|
369
|
+
declare type __VLS_WithDefaults_18<P, D> = {
|
|
370
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_18<P[K] & {
|
|
371
|
+
default: D[K];
|
|
372
|
+
}> : P[K];
|
|
373
|
+
};
|
|
374
|
+
|
|
356
375
|
declare type __VLS_WithDefaults_2<P, D> = {
|
|
357
376
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_2<P[K] & {
|
|
358
377
|
default: D[K];
|
|
@@ -490,8 +509,6 @@ export declare type AppThemes = {
|
|
|
490
509
|
}>;
|
|
491
510
|
};
|
|
492
511
|
|
|
493
|
-
export declare const clickOutside: ObjectDirective<HTMLElementWithClickOutsideEvent>;
|
|
494
|
-
|
|
495
512
|
declare type ColorScheme = {
|
|
496
513
|
primary: string;
|
|
497
514
|
primaryLight: string;
|
|
@@ -532,16 +549,19 @@ declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaul
|
|
|
532
549
|
bStyle: string;
|
|
533
550
|
label: string;
|
|
534
551
|
size: string;
|
|
552
|
+
class: undefined;
|
|
535
553
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
536
554
|
click: (event: Event) => void;
|
|
537
555
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<QButtonProps>, {
|
|
538
556
|
bStyle: string;
|
|
539
557
|
label: string;
|
|
540
558
|
size: string;
|
|
559
|
+
class: undefined;
|
|
541
560
|
}>>> & {
|
|
542
561
|
onClick?: ((event: Event) => any) | undefined;
|
|
543
562
|
}, {
|
|
544
563
|
size: "small" | "regular";
|
|
564
|
+
class: string | unknown[];
|
|
545
565
|
label: string;
|
|
546
566
|
bStyle: "primary" | "secondary" | "tertiary" | "danger" | "plain";
|
|
547
567
|
}, {}>, {
|
|
@@ -554,14 +574,17 @@ declare const _default_10: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithD
|
|
|
554
574
|
prependIcon: undefined;
|
|
555
575
|
appendIcon: undefined;
|
|
556
576
|
size: string;
|
|
577
|
+
class: undefined;
|
|
557
578
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_10<QInputGroupProps>, {
|
|
558
579
|
id: () => string;
|
|
559
580
|
label: string;
|
|
560
581
|
prependIcon: undefined;
|
|
561
582
|
appendIcon: undefined;
|
|
562
583
|
size: string;
|
|
584
|
+
class: undefined;
|
|
563
585
|
}>>>, {
|
|
564
586
|
size: QFieldSize;
|
|
587
|
+
class: string | unknown[];
|
|
565
588
|
label: string;
|
|
566
589
|
id: string;
|
|
567
590
|
prependIcon: Icon;
|
|
@@ -572,14 +595,21 @@ declare const _default_10: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithD
|
|
|
572
595
|
append?(_: {}): any;
|
|
573
596
|
}>;
|
|
574
597
|
|
|
575
|
-
declare const _default_11: DefineComponent<
|
|
598
|
+
declare const _default_11: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_11<QLineLoaderProps>, {
|
|
599
|
+
class: undefined;
|
|
600
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_11<QLineLoaderProps>, {
|
|
601
|
+
class: undefined;
|
|
602
|
+
}>>>, {
|
|
603
|
+
class: string | unknown[];
|
|
604
|
+
}, {}>;
|
|
576
605
|
|
|
577
|
-
declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<
|
|
606
|
+
declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_12<QListProps>, {
|
|
578
607
|
modelValue: undefined;
|
|
579
608
|
highlighted: undefined;
|
|
580
609
|
groups: () => never[];
|
|
581
610
|
itemValue: string;
|
|
582
611
|
itemLabel: string;
|
|
612
|
+
class: undefined;
|
|
583
613
|
}>, {
|
|
584
614
|
focusItem: typeof focusItem;
|
|
585
615
|
getItem: typeof getItem;
|
|
@@ -588,15 +618,17 @@ declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithD
|
|
|
588
618
|
getLastFocusableItemIndex: typeof getLastFocusableItemIndex;
|
|
589
619
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
590
620
|
"update:modelValue": (value: Primitive) => void;
|
|
591
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
621
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_12<QListProps>, {
|
|
592
622
|
modelValue: undefined;
|
|
593
623
|
highlighted: undefined;
|
|
594
624
|
groups: () => never[];
|
|
595
625
|
itemValue: string;
|
|
596
626
|
itemLabel: string;
|
|
627
|
+
class: undefined;
|
|
597
628
|
}>>> & {
|
|
598
629
|
"onUpdate:modelValue"?: ((value: Primitive) => any) | undefined;
|
|
599
630
|
}, {
|
|
631
|
+
class: string | unknown[];
|
|
600
632
|
modelValue: Primitive;
|
|
601
633
|
highlighted: Primitive;
|
|
602
634
|
groups: Group[];
|
|
@@ -608,12 +640,12 @@ declare const _default_12: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithD
|
|
|
608
640
|
}): any;
|
|
609
641
|
}>;
|
|
610
642
|
|
|
611
|
-
declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<
|
|
643
|
+
declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_13<QListItemProps>, {
|
|
612
644
|
icon: undefined;
|
|
613
645
|
icons: () => Record<string, Icon>;
|
|
614
646
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
615
647
|
select: (value: Primitive) => void;
|
|
616
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
648
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_13<QListItemProps>, {
|
|
617
649
|
icon: undefined;
|
|
618
650
|
icons: () => Record<string, Icon>;
|
|
619
651
|
}>>> & {
|
|
@@ -625,9 +657,9 @@ declare const _default_13: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithD
|
|
|
625
657
|
default?(_: {}): any;
|
|
626
658
|
}>;
|
|
627
659
|
|
|
628
|
-
declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<
|
|
660
|
+
declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<QListItemGroupProps>, {
|
|
629
661
|
title: string;
|
|
630
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
662
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_14<QListItemGroupProps>, {
|
|
631
663
|
title: string;
|
|
632
664
|
}>>>, {
|
|
633
665
|
title: string;
|
|
@@ -635,164 +667,38 @@ declare const _default_14: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithD
|
|
|
635
667
|
default?(_: {}): any;
|
|
636
668
|
}>;
|
|
637
669
|
|
|
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
|
-
}>, {
|
|
670
|
+
declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<QOverlayProps>, {
|
|
702
671
|
appearance: string;
|
|
703
672
|
attach: string;
|
|
704
|
-
contentClasses: () => never[];
|
|
705
673
|
delay: number;
|
|
706
674
|
offset: number;
|
|
707
675
|
placement: string;
|
|
708
676
|
transition: string;
|
|
709
677
|
trigger: string;
|
|
710
678
|
width: string;
|
|
679
|
+
class: undefined;
|
|
711
680
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
712
681
|
enter: () => void;
|
|
713
682
|
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
|
-
}>, {
|
|
683
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<QOverlayProps>, {
|
|
778
684
|
appearance: string;
|
|
779
685
|
attach: string;
|
|
780
|
-
contentClasses: () => never[];
|
|
781
686
|
delay: number;
|
|
782
687
|
offset: number;
|
|
783
688
|
placement: string;
|
|
784
689
|
transition: string;
|
|
785
690
|
trigger: string;
|
|
786
691
|
width: string;
|
|
692
|
+
class: undefined;
|
|
787
693
|
}>>> & {
|
|
788
694
|
onEnter?: (() => any) | undefined;
|
|
789
695
|
onLeave?: (() => any) | undefined;
|
|
790
696
|
}, {
|
|
697
|
+
class: string | unknown[];
|
|
791
698
|
transition: string;
|
|
792
699
|
width: "anchor" | "auto";
|
|
793
700
|
appearance: Appearance;
|
|
794
701
|
attach: string;
|
|
795
|
-
contentClasses: string[];
|
|
796
702
|
delay: number;
|
|
797
703
|
offset: number;
|
|
798
704
|
placement: Placement;
|
|
@@ -804,7 +710,7 @@ declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_With
|
|
|
804
710
|
default?(_: {}): any;
|
|
805
711
|
}>;
|
|
806
712
|
|
|
807
|
-
declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
713
|
+
declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
808
714
|
/**
|
|
809
715
|
* Determines whether the popover is open or not.
|
|
810
716
|
*/
|
|
@@ -853,7 +759,7 @@ declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_With
|
|
|
853
759
|
html: boolean;
|
|
854
760
|
placement: string;
|
|
855
761
|
spy: boolean;
|
|
856
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
762
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_16<{
|
|
857
763
|
/**
|
|
858
764
|
* Determines whether the popover is open or not.
|
|
859
765
|
*/
|
|
@@ -913,7 +819,7 @@ declare const _default_16: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_With
|
|
|
913
819
|
body?(_: {}): any;
|
|
914
820
|
}>;
|
|
915
821
|
|
|
916
|
-
declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
822
|
+
declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
917
823
|
/**
|
|
918
824
|
* The value of the component.
|
|
919
825
|
*/
|
|
@@ -981,6 +887,10 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
981
887
|
texts?: {
|
|
982
888
|
placeholder: string;
|
|
983
889
|
} | undefined;
|
|
890
|
+
/**
|
|
891
|
+
* TODO.
|
|
892
|
+
*/
|
|
893
|
+
class?: string | unknown[] | undefined;
|
|
984
894
|
}>, {
|
|
985
895
|
modelValue: undefined;
|
|
986
896
|
id: () => string;
|
|
@@ -993,13 +903,14 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
993
903
|
texts: () => {
|
|
994
904
|
placeholder: string;
|
|
995
905
|
};
|
|
906
|
+
class: string;
|
|
996
907
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
997
908
|
"update:modelValue": (value: Primitive | undefined) => void;
|
|
998
909
|
"before-show": () => void;
|
|
999
910
|
"before-hide": () => void;
|
|
1000
911
|
show: () => void;
|
|
1001
912
|
hide: () => void;
|
|
1002
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
913
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_17<{
|
|
1003
914
|
/**
|
|
1004
915
|
* The value of the component.
|
|
1005
916
|
*/
|
|
@@ -1067,6 +978,10 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1067
978
|
texts?: {
|
|
1068
979
|
placeholder: string;
|
|
1069
980
|
} | undefined;
|
|
981
|
+
/**
|
|
982
|
+
* TODO.
|
|
983
|
+
*/
|
|
984
|
+
class?: string | unknown[] | undefined;
|
|
1070
985
|
}>, {
|
|
1071
986
|
modelValue: undefined;
|
|
1072
987
|
id: () => string;
|
|
@@ -1079,6 +994,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1079
994
|
texts: () => {
|
|
1080
995
|
placeholder: string;
|
|
1081
996
|
};
|
|
997
|
+
class: string;
|
|
1082
998
|
}>>> & {
|
|
1083
999
|
"onUpdate:modelValue"?: ((value: Primitive | undefined) => any) | undefined;
|
|
1084
1000
|
"onBefore-show"?: (() => any) | undefined;
|
|
@@ -1087,6 +1003,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1087
1003
|
onHide?: (() => any) | undefined;
|
|
1088
1004
|
}, {
|
|
1089
1005
|
size: QFieldSize;
|
|
1006
|
+
class: string | unknown[];
|
|
1090
1007
|
label: string;
|
|
1091
1008
|
modelValue: Primitive;
|
|
1092
1009
|
icons: Record<string, Icon>;
|
|
@@ -1102,32 +1019,23 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
|
|
|
1102
1019
|
}, {}>, {
|
|
1103
1020
|
"body.prepend"?(_: {}): any;
|
|
1104
1021
|
item?(_: {
|
|
1105
|
-
item:
|
|
1106
|
-
[key: string]: any;
|
|
1107
|
-
};
|
|
1022
|
+
item: any;
|
|
1108
1023
|
}): any;
|
|
1109
1024
|
"body.append"?(_: {}): any;
|
|
1110
1025
|
}>;
|
|
1111
1026
|
|
|
1112
|
-
declare const _default_18: DefineComponent<
|
|
1113
|
-
/**
|
|
1114
|
-
* The size of the loader, in pixels.
|
|
1115
|
-
*/
|
|
1116
|
-
size?: number | undefined;
|
|
1117
|
-
}>, {
|
|
1027
|
+
declare const _default_18: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<QSpinnerLoaderProps>, {
|
|
1118
1028
|
size: number;
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
* The size of the loader, in pixels.
|
|
1122
|
-
*/
|
|
1123
|
-
size?: number | undefined;
|
|
1124
|
-
}>, {
|
|
1029
|
+
class: undefined;
|
|
1030
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_18<QSpinnerLoaderProps>, {
|
|
1125
1031
|
size: number;
|
|
1032
|
+
class: undefined;
|
|
1126
1033
|
}>>>, {
|
|
1127
1034
|
size: number;
|
|
1035
|
+
class: string | unknown[];
|
|
1128
1036
|
}, {}>;
|
|
1129
1037
|
|
|
1130
|
-
declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
1038
|
+
declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<QTextFieldProps>, {
|
|
1131
1039
|
modelValue: string;
|
|
1132
1040
|
id: () => string;
|
|
1133
1041
|
placeholder: string;
|
|
@@ -1136,12 +1044,13 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1136
1044
|
maxLength: undefined;
|
|
1137
1045
|
role: undefined;
|
|
1138
1046
|
type: string;
|
|
1047
|
+
class: undefined;
|
|
1139
1048
|
}>, {
|
|
1140
1049
|
fieldRef: ComputedRef<HTMLElement | null | undefined>;
|
|
1141
1050
|
inputRef: Ref<HTMLElement | null>;
|
|
1142
1051
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1143
1052
|
"update:modelValue": (value: string) => void;
|
|
1144
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1053
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_19<QTextFieldProps>, {
|
|
1145
1054
|
modelValue: string;
|
|
1146
1055
|
id: () => string;
|
|
1147
1056
|
placeholder: string;
|
|
@@ -1150,10 +1059,12 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1150
1059
|
maxLength: undefined;
|
|
1151
1060
|
role: undefined;
|
|
1152
1061
|
type: string;
|
|
1062
|
+
class: undefined;
|
|
1153
1063
|
}>>> & {
|
|
1154
1064
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1155
1065
|
}, {
|
|
1156
1066
|
size: QFieldSize;
|
|
1067
|
+
class: string | unknown[];
|
|
1157
1068
|
type: string;
|
|
1158
1069
|
label: string;
|
|
1159
1070
|
modelValue: string;
|
|
@@ -1171,15 +1082,18 @@ declare const _default_19: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_With
|
|
|
1171
1082
|
|
|
1172
1083
|
declare const _default_2: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<QButtonGroupProps>, {
|
|
1173
1084
|
bStyle: undefined;
|
|
1085
|
+
class: undefined;
|
|
1174
1086
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<QButtonGroupProps>, {
|
|
1175
1087
|
bStyle: undefined;
|
|
1088
|
+
class: undefined;
|
|
1176
1089
|
}>>>, {
|
|
1090
|
+
class: string | unknown[];
|
|
1177
1091
|
bStyle: "primary" | "secondary" | "danger";
|
|
1178
1092
|
}, {}>, {
|
|
1179
1093
|
default?(_: {}): any;
|
|
1180
1094
|
}>;
|
|
1181
1095
|
|
|
1182
|
-
declare const _default_20: DefineComponent<
|
|
1096
|
+
declare const _default_20: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
1183
1097
|
/**
|
|
1184
1098
|
* Determines whether the tooltip is open or not.
|
|
1185
1099
|
*/
|
|
@@ -1227,6 +1141,10 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1227
1141
|
* The method to trigger the overlay.
|
|
1228
1142
|
*/
|
|
1229
1143
|
trigger?: Trigger | undefined;
|
|
1144
|
+
/**
|
|
1145
|
+
* Custom set of classes to apply to the component.
|
|
1146
|
+
*/
|
|
1147
|
+
class?: string | unknown[] | undefined;
|
|
1230
1148
|
}>, {
|
|
1231
1149
|
appearance: string;
|
|
1232
1150
|
arrow: boolean;
|
|
@@ -1235,7 +1153,8 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1235
1153
|
html: boolean;
|
|
1236
1154
|
placement: string;
|
|
1237
1155
|
trigger: string;
|
|
1238
|
-
|
|
1156
|
+
class: undefined;
|
|
1157
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_20<{
|
|
1239
1158
|
/**
|
|
1240
1159
|
* Determines whether the tooltip is open or not.
|
|
1241
1160
|
*/
|
|
@@ -1283,6 +1202,10 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1283
1202
|
* The method to trigger the overlay.
|
|
1284
1203
|
*/
|
|
1285
1204
|
trigger?: Trigger | undefined;
|
|
1205
|
+
/**
|
|
1206
|
+
* Custom set of classes to apply to the component.
|
|
1207
|
+
*/
|
|
1208
|
+
class?: string | unknown[] | undefined;
|
|
1286
1209
|
}>, {
|
|
1287
1210
|
appearance: string;
|
|
1288
1211
|
arrow: boolean;
|
|
@@ -1291,7 +1214,9 @@ declare const _default_20: DefineComponent<__VLS_WithDefaults_17<__VLS_TypeProps
|
|
|
1291
1214
|
html: boolean;
|
|
1292
1215
|
placement: string;
|
|
1293
1216
|
trigger: string;
|
|
1217
|
+
class: undefined;
|
|
1294
1218
|
}>>>, {
|
|
1219
|
+
class: string | unknown[];
|
|
1295
1220
|
html: boolean;
|
|
1296
1221
|
appearance: Appearance;
|
|
1297
1222
|
arrow: boolean;
|
|
@@ -1322,12 +1247,14 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1322
1247
|
noData: string;
|
|
1323
1248
|
};
|
|
1324
1249
|
icons: () => Record<string, Icon>;
|
|
1250
|
+
class: undefined;
|
|
1325
1251
|
}>, {
|
|
1326
1252
|
triggerEl: Ref<({
|
|
1327
1253
|
$: ComponentInternalInstance;
|
|
1328
1254
|
$data: {};
|
|
1329
1255
|
$props: Partial<{
|
|
1330
1256
|
size: QFieldSize;
|
|
1257
|
+
class: string | unknown[];
|
|
1331
1258
|
type: string;
|
|
1332
1259
|
label: string;
|
|
1333
1260
|
modelValue: string;
|
|
@@ -1342,6 +1269,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1342
1269
|
readonly id: string;
|
|
1343
1270
|
readonly placeholder: string;
|
|
1344
1271
|
readonly size?: QFieldSize | undefined;
|
|
1272
|
+
readonly class?: string | unknown[] | undefined;
|
|
1345
1273
|
readonly disabled?: boolean | undefined;
|
|
1346
1274
|
readonly required?: boolean | undefined;
|
|
1347
1275
|
readonly role?: string | undefined;
|
|
@@ -1353,6 +1281,10 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1353
1281
|
type: PropType<QFieldSize>;
|
|
1354
1282
|
default: undefined;
|
|
1355
1283
|
};
|
|
1284
|
+
class: {
|
|
1285
|
+
type: PropType<string | unknown[]>;
|
|
1286
|
+
default: undefined;
|
|
1287
|
+
};
|
|
1356
1288
|
type: {
|
|
1357
1289
|
type: PropType<string>;
|
|
1358
1290
|
default: string;
|
|
@@ -1392,7 +1324,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1392
1324
|
};
|
|
1393
1325
|
}>> & {
|
|
1394
1326
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1395
|
-
}, "size" | "type" | "label" | "modelValue" | "id" | "role" | "maxLength" | "placeholder">;
|
|
1327
|
+
}, "size" | "class" | "type" | "label" | "modelValue" | "id" | "role" | "maxLength" | "placeholder">;
|
|
1396
1328
|
$attrs: {
|
|
1397
1329
|
[x: string]: unknown;
|
|
1398
1330
|
};
|
|
@@ -1411,6 +1343,10 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1411
1343
|
type: PropType<QFieldSize>;
|
|
1412
1344
|
default: undefined;
|
|
1413
1345
|
};
|
|
1346
|
+
class: {
|
|
1347
|
+
type: PropType<string | unknown[]>;
|
|
1348
|
+
default: undefined;
|
|
1349
|
+
};
|
|
1414
1350
|
type: {
|
|
1415
1351
|
type: PropType<string>;
|
|
1416
1352
|
default: string;
|
|
@@ -1457,6 +1393,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1457
1393
|
"update:modelValue": (value: string) => void;
|
|
1458
1394
|
}, string, {
|
|
1459
1395
|
size: QFieldSize;
|
|
1396
|
+
class: string | unknown[];
|
|
1460
1397
|
type: string;
|
|
1461
1398
|
label: string;
|
|
1462
1399
|
modelValue: string;
|
|
@@ -1489,6 +1426,10 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1489
1426
|
type: PropType<QFieldSize>;
|
|
1490
1427
|
default: undefined;
|
|
1491
1428
|
};
|
|
1429
|
+
class: {
|
|
1430
|
+
type: PropType<string | unknown[]>;
|
|
1431
|
+
default: undefined;
|
|
1432
|
+
};
|
|
1492
1433
|
type: {
|
|
1493
1434
|
type: PropType<string>;
|
|
1494
1435
|
default: string;
|
|
@@ -1562,6 +1503,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1562
1503
|
noData: string;
|
|
1563
1504
|
};
|
|
1564
1505
|
icons: () => Record<string, Icon>;
|
|
1506
|
+
class: undefined;
|
|
1565
1507
|
}>>> & {
|
|
1566
1508
|
"onUpdate:modelValue"?: ((value: Primitive | undefined) => any) | undefined;
|
|
1567
1509
|
"onUpdate:inputValue"?: ((value: string) => any) | undefined;
|
|
@@ -1571,6 +1513,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1571
1513
|
onHide?: (() => any) | undefined;
|
|
1572
1514
|
}, {
|
|
1573
1515
|
size: QFieldSize;
|
|
1516
|
+
class: string | unknown[];
|
|
1574
1517
|
label: string;
|
|
1575
1518
|
modelValue: Primitive;
|
|
1576
1519
|
icons: Record<string, Icon>;
|
|
@@ -1594,9 +1537,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
|
|
|
1594
1537
|
extras?(_: {}): any;
|
|
1595
1538
|
"body.prepend"?(_: {}): any;
|
|
1596
1539
|
item?(_: {
|
|
1597
|
-
item:
|
|
1598
|
-
[key: string]: any;
|
|
1599
|
-
};
|
|
1540
|
+
item: any;
|
|
1600
1541
|
}): any;
|
|
1601
1542
|
"body.append"?(_: {}): any;
|
|
1602
1543
|
}>;
|
|
@@ -1605,14 +1546,17 @@ declare const _default_5: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDe
|
|
|
1605
1546
|
id: () => string;
|
|
1606
1547
|
label: string;
|
|
1607
1548
|
size: string;
|
|
1549
|
+
class: undefined;
|
|
1608
1550
|
}>, {
|
|
1609
1551
|
fieldRef: Ref<HTMLElement | null>;
|
|
1610
1552
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_5<QFieldProps>, {
|
|
1611
1553
|
id: () => string;
|
|
1612
1554
|
label: string;
|
|
1613
1555
|
size: string;
|
|
1556
|
+
class: undefined;
|
|
1614
1557
|
}>>>, {
|
|
1615
1558
|
size: QFieldSize;
|
|
1559
|
+
class: string | unknown[];
|
|
1616
1560
|
label: string;
|
|
1617
1561
|
id: string;
|
|
1618
1562
|
}, {}>, {
|
|
@@ -1628,11 +1572,14 @@ declare const _default_5: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDe
|
|
|
1628
1572
|
declare const _default_6: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Icon>, {
|
|
1629
1573
|
type: string;
|
|
1630
1574
|
size: undefined;
|
|
1575
|
+
class: undefined;
|
|
1631
1576
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Icon>, {
|
|
1632
1577
|
type: string;
|
|
1633
1578
|
size: undefined;
|
|
1579
|
+
class: undefined;
|
|
1634
1580
|
}>>>, {
|
|
1635
1581
|
size: number;
|
|
1582
|
+
class: string | unknown[];
|
|
1636
1583
|
type: "img" | "svg" | "font";
|
|
1637
1584
|
}, {}>;
|
|
1638
1585
|
|
|
@@ -1640,12 +1587,15 @@ declare const _default_7: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsTo
|
|
|
1640
1587
|
library: string;
|
|
1641
1588
|
variant: string;
|
|
1642
1589
|
size: undefined;
|
|
1590
|
+
class: undefined;
|
|
1643
1591
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_7<QIconFontProps>, {
|
|
1644
1592
|
library: string;
|
|
1645
1593
|
variant: string;
|
|
1646
1594
|
size: undefined;
|
|
1595
|
+
class: undefined;
|
|
1647
1596
|
}>>>, {
|
|
1648
1597
|
size: number;
|
|
1598
|
+
class: string | unknown[];
|
|
1649
1599
|
library: string;
|
|
1650
1600
|
variant: string;
|
|
1651
1601
|
}, {}>;
|
|
@@ -1659,6 +1609,10 @@ declare const _default_8: DefineComponent<__VLS_TypePropsToRuntimeProps_8<{
|
|
|
1659
1609
|
* The size of the icon, in pixels.
|
|
1660
1610
|
*/
|
|
1661
1611
|
size?: number | undefined;
|
|
1612
|
+
/**
|
|
1613
|
+
* Custom set of classes to apply to the component.
|
|
1614
|
+
*/
|
|
1615
|
+
class?: string | unknown[] | undefined;
|
|
1662
1616
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_8<{
|
|
1663
1617
|
/**
|
|
1664
1618
|
* The URL of the image to be used as the icon.
|
|
@@ -1668,6 +1622,10 @@ declare const _default_8: DefineComponent<__VLS_TypePropsToRuntimeProps_8<{
|
|
|
1668
1622
|
* The size of the icon, in pixels.
|
|
1669
1623
|
*/
|
|
1670
1624
|
size?: number | undefined;
|
|
1625
|
+
/**
|
|
1626
|
+
* Custom set of classes to apply to the component.
|
|
1627
|
+
*/
|
|
1628
|
+
class?: string | unknown[] | undefined;
|
|
1671
1629
|
}>>>, {}, {}>;
|
|
1672
1630
|
|
|
1673
1631
|
declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_9<{
|
|
@@ -1683,9 +1641,14 @@ declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsTo
|
|
|
1683
1641
|
* The size of the icon, in pixels.
|
|
1684
1642
|
*/
|
|
1685
1643
|
size?: number | undefined;
|
|
1644
|
+
/**
|
|
1645
|
+
* Custom set of classes to apply to the component.
|
|
1646
|
+
*/
|
|
1647
|
+
class?: string | unknown[] | undefined;
|
|
1686
1648
|
}>, {
|
|
1687
1649
|
bundle: string;
|
|
1688
1650
|
size: undefined;
|
|
1651
|
+
class: undefined;
|
|
1689
1652
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1690
1653
|
loaded: (value: Element) => void;
|
|
1691
1654
|
unloaded: () => void;
|
|
@@ -1702,14 +1665,20 @@ declare const _default_9: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsTo
|
|
|
1702
1665
|
* The size of the icon, in pixels.
|
|
1703
1666
|
*/
|
|
1704
1667
|
size?: number | undefined;
|
|
1668
|
+
/**
|
|
1669
|
+
* Custom set of classes to apply to the component.
|
|
1670
|
+
*/
|
|
1671
|
+
class?: string | unknown[] | undefined;
|
|
1705
1672
|
}>, {
|
|
1706
1673
|
bundle: string;
|
|
1707
1674
|
size: undefined;
|
|
1675
|
+
class: undefined;
|
|
1708
1676
|
}>>> & {
|
|
1709
1677
|
onLoaded?: ((value: Element) => any) | undefined;
|
|
1710
1678
|
onUnloaded?: (() => any) | undefined;
|
|
1711
1679
|
}, {
|
|
1712
1680
|
size: number;
|
|
1681
|
+
class: string | unknown[];
|
|
1713
1682
|
bundle: string;
|
|
1714
1683
|
}, {}>;
|
|
1715
1684
|
|
|
@@ -1738,7 +1707,6 @@ declare function focusItem(itemIdx: number, preventScroll?: boolean): void;
|
|
|
1738
1707
|
|
|
1739
1708
|
declare type FrameworkConfig = {
|
|
1740
1709
|
components?: Record<string, Component>;
|
|
1741
|
-
directives?: Record<string, Directive>;
|
|
1742
1710
|
themes?: AppThemes;
|
|
1743
1711
|
defaults?: Defaults;
|
|
1744
1712
|
};
|
|
@@ -1778,10 +1746,6 @@ declare type Group = QListItemGroupProps & {
|
|
|
1778
1746
|
id: string;
|
|
1779
1747
|
};
|
|
1780
1748
|
|
|
1781
|
-
declare interface HTMLElementWithClickOutsideEvent extends HTMLElement {
|
|
1782
|
-
clickOutsideEvent: (event: Event) => void;
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1785
1749
|
export declare type Icon = {
|
|
1786
1750
|
/**
|
|
1787
1751
|
* The identifier of the icon.
|
|
@@ -1795,51 +1759,55 @@ export declare type Icon = {
|
|
|
1795
1759
|
* The size of the icon, in pixels.
|
|
1796
1760
|
*/
|
|
1797
1761
|
size?: number;
|
|
1762
|
+
/**
|
|
1763
|
+
* Custom set of classes to apply to the component.
|
|
1764
|
+
*/
|
|
1765
|
+
class?: string | unknown[];
|
|
1798
1766
|
};
|
|
1799
1767
|
|
|
1800
1768
|
declare type Icons = typeof DEFAULT_ICONS;
|
|
1801
1769
|
|
|
1802
1770
|
declare type Icons_2 = typeof DEFAULT_ICONS_2;
|
|
1803
1771
|
|
|
1804
|
-
export declare type IQButton = typeof _default
|
|
1772
|
+
export declare type IQButton = InstanceType<typeof _default>;
|
|
1805
1773
|
|
|
1806
|
-
export declare type IQButtonGroup = typeof _default_2
|
|
1774
|
+
export declare type IQButtonGroup = InstanceType<typeof _default_2>;
|
|
1807
1775
|
|
|
1808
|
-
export declare type IQButtonToggle = typeof _default_3
|
|
1776
|
+
export declare type IQButtonToggle = InstanceType<typeof _default_3>;
|
|
1809
1777
|
|
|
1810
|
-
export declare type IQCombobox = typeof _default_4
|
|
1778
|
+
export declare type IQCombobox = InstanceType<typeof _default_4>;
|
|
1811
1779
|
|
|
1812
|
-
export declare type IQField = typeof _default_5
|
|
1780
|
+
export declare type IQField = InstanceType<typeof _default_5>;
|
|
1813
1781
|
|
|
1814
|
-
export declare type IQIcon = typeof _default_6
|
|
1782
|
+
export declare type IQIcon = InstanceType<typeof _default_6>;
|
|
1815
1783
|
|
|
1816
|
-
export declare type IQIconFont = typeof _default_7
|
|
1784
|
+
export declare type IQIconFont = InstanceType<typeof _default_7>;
|
|
1817
1785
|
|
|
1818
|
-
export declare type IQIconImg = typeof _default_8
|
|
1786
|
+
export declare type IQIconImg = InstanceType<typeof _default_8>;
|
|
1819
1787
|
|
|
1820
|
-
export declare type IQIconSvg = typeof _default_9
|
|
1788
|
+
export declare type IQIconSvg = InstanceType<typeof _default_9>;
|
|
1821
1789
|
|
|
1822
|
-
export declare type IQInputGroup = typeof _default_10
|
|
1790
|
+
export declare type IQInputGroup = InstanceType<typeof _default_10>;
|
|
1823
1791
|
|
|
1824
|
-
export declare type IQLineLoader = typeof _default_11
|
|
1792
|
+
export declare type IQLineLoader = InstanceType<typeof _default_11>;
|
|
1825
1793
|
|
|
1826
|
-
export declare type IQList = typeof _default_12
|
|
1794
|
+
export declare type IQList = InstanceType<typeof _default_12>;
|
|
1827
1795
|
|
|
1828
|
-
export declare type IQListItem = typeof _default_13
|
|
1796
|
+
export declare type IQListItem = InstanceType<typeof _default_13>;
|
|
1829
1797
|
|
|
1830
|
-
export declare type IQListItemGroup = typeof _default_14
|
|
1798
|
+
export declare type IQListItemGroup = InstanceType<typeof _default_14>;
|
|
1831
1799
|
|
|
1832
|
-
export declare type IQOverlay = typeof _default_15
|
|
1800
|
+
export declare type IQOverlay = InstanceType<typeof _default_15>;
|
|
1833
1801
|
|
|
1834
|
-
export declare type IQPopover = typeof _default_16
|
|
1802
|
+
export declare type IQPopover = InstanceType<typeof _default_16>;
|
|
1835
1803
|
|
|
1836
|
-
export declare type IQSelect = typeof _default_17
|
|
1804
|
+
export declare type IQSelect = InstanceType<typeof _default_17>;
|
|
1837
1805
|
|
|
1838
|
-
export declare type IQSpinnerLoader = typeof _default_18
|
|
1806
|
+
export declare type IQSpinnerLoader = InstanceType<typeof _default_18>;
|
|
1839
1807
|
|
|
1840
|
-
export declare type IQTextField = typeof _default_19
|
|
1808
|
+
export declare type IQTextField = InstanceType<typeof _default_19>;
|
|
1841
1809
|
|
|
1842
|
-
export declare type IQTooltip = typeof _default_20
|
|
1810
|
+
export declare type IQTooltip = InstanceType<typeof _default_20>;
|
|
1843
1811
|
|
|
1844
1812
|
declare type Item = Omit<QListItemProps, 'value' | 'label'> & {
|
|
1845
1813
|
[key: string]: any;
|
|
@@ -1870,6 +1838,10 @@ declare type QButtonGroupProps = {
|
|
|
1870
1838
|
* If true, the button group an elevated appearance.
|
|
1871
1839
|
*/
|
|
1872
1840
|
elevated?: boolean;
|
|
1841
|
+
/**
|
|
1842
|
+
* Custom set of classes to apply to the component.
|
|
1843
|
+
*/
|
|
1844
|
+
class?: string | unknown[];
|
|
1873
1845
|
};
|
|
1874
1846
|
|
|
1875
1847
|
declare type QButtonProps = {
|
|
@@ -1913,6 +1885,10 @@ declare type QButtonProps = {
|
|
|
1913
1885
|
* The size of the button, either 'regular' or 'small'.
|
|
1914
1886
|
*/
|
|
1915
1887
|
size?: 'regular' | 'small';
|
|
1888
|
+
/**
|
|
1889
|
+
* Custom set of classes to apply to the component.
|
|
1890
|
+
*/
|
|
1891
|
+
class?: string | unknown[];
|
|
1916
1892
|
};
|
|
1917
1893
|
|
|
1918
1894
|
export declare const QButtonToggle: IQButtonToggle;
|
|
@@ -1948,6 +1924,10 @@ declare type QButtonToggleProps = {
|
|
|
1948
1924
|
* Indicates if options can be deselected.
|
|
1949
1925
|
*/
|
|
1950
1926
|
mandatory?: boolean;
|
|
1927
|
+
/**
|
|
1928
|
+
* Custom set of classes to apply to the component.
|
|
1929
|
+
*/
|
|
1930
|
+
class?: string | unknown[];
|
|
1951
1931
|
};
|
|
1952
1932
|
|
|
1953
1933
|
export declare const QCombobox: IQCombobox;
|
|
@@ -2030,6 +2010,10 @@ declare type QComboboxProps = {
|
|
|
2030
2010
|
* The icons of the component.
|
|
2031
2011
|
*/
|
|
2032
2012
|
icons?: Icons_2;
|
|
2013
|
+
/**
|
|
2014
|
+
* Custom set of classes to apply to the component.
|
|
2015
|
+
*/
|
|
2016
|
+
class?: string | unknown[];
|
|
2033
2017
|
};
|
|
2034
2018
|
|
|
2035
2019
|
export declare const QField: IQField;
|
|
@@ -2060,6 +2044,10 @@ export declare type QFieldProps = {
|
|
|
2060
2044
|
* to indicate that the field is required.
|
|
2061
2045
|
*/
|
|
2062
2046
|
required?: boolean;
|
|
2047
|
+
/**
|
|
2048
|
+
* Custom set of classes to apply to the component.
|
|
2049
|
+
*/
|
|
2050
|
+
class?: string | unknown[];
|
|
2063
2051
|
};
|
|
2064
2052
|
|
|
2065
2053
|
export declare type QFieldSize = 'mini' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'block';
|
|
@@ -2085,6 +2073,10 @@ declare type QIconFontProps = {
|
|
|
2085
2073
|
* The size of the icon, in pixels.
|
|
2086
2074
|
*/
|
|
2087
2075
|
size?: number;
|
|
2076
|
+
/**
|
|
2077
|
+
* Custom set of classes to apply to the component.
|
|
2078
|
+
*/
|
|
2079
|
+
class?: string | unknown[];
|
|
2088
2080
|
};
|
|
2089
2081
|
|
|
2090
2082
|
export declare const QIconImg: IQIconImg;
|
|
@@ -2127,10 +2119,21 @@ declare type QInputGroupProps = {
|
|
|
2127
2119
|
* The size category of the field.
|
|
2128
2120
|
*/
|
|
2129
2121
|
size?: QFieldSize;
|
|
2122
|
+
/**
|
|
2123
|
+
* Custom set of classes to apply to the component.
|
|
2124
|
+
*/
|
|
2125
|
+
class?: string | unknown[];
|
|
2130
2126
|
};
|
|
2131
2127
|
|
|
2132
2128
|
export declare const QLineLoader: IQLineLoader;
|
|
2133
2129
|
|
|
2130
|
+
declare type QLineLoaderProps = {
|
|
2131
|
+
/**
|
|
2132
|
+
* Custom set of classes to apply to the component.
|
|
2133
|
+
*/
|
|
2134
|
+
class?: string | unknown[];
|
|
2135
|
+
};
|
|
2136
|
+
|
|
2134
2137
|
export declare const QList: IQList;
|
|
2135
2138
|
|
|
2136
2139
|
export declare const QListItem: IQListItem;
|
|
@@ -2208,16 +2211,96 @@ export declare type QListProps = {
|
|
|
2208
2211
|
* Indicates whether the list is disabled.
|
|
2209
2212
|
*/
|
|
2210
2213
|
disabled?: boolean;
|
|
2214
|
+
/**
|
|
2215
|
+
* Custom set of classes to apply to the component.
|
|
2216
|
+
*/
|
|
2217
|
+
class?: string | unknown[];
|
|
2211
2218
|
};
|
|
2212
2219
|
|
|
2213
2220
|
export declare const QOverlay: IQOverlay;
|
|
2214
2221
|
|
|
2222
|
+
declare type QOverlayProps = {
|
|
2223
|
+
/**
|
|
2224
|
+
* Determines whether the overlay is open or not.
|
|
2225
|
+
*/
|
|
2226
|
+
modelValue?: boolean;
|
|
2227
|
+
/**
|
|
2228
|
+
* The DOM element the overlay should be anchored to.
|
|
2229
|
+
*/
|
|
2230
|
+
anchor: Selector;
|
|
2231
|
+
/**
|
|
2232
|
+
* The appearance of the overlay.
|
|
2233
|
+
* 'regular' uses body text color for background and body background color for text.
|
|
2234
|
+
* 'inverted' matches body color scheme.
|
|
2235
|
+
*/
|
|
2236
|
+
appearance?: Appearance;
|
|
2237
|
+
/**
|
|
2238
|
+
* Whether the overlay has an arrow pointing to the target.
|
|
2239
|
+
*/
|
|
2240
|
+
arrow?: boolean;
|
|
2241
|
+
/**
|
|
2242
|
+
* The DOM element the overlay should be teleported to.
|
|
2243
|
+
* Defaults to the body of the document.
|
|
2244
|
+
*/
|
|
2245
|
+
attach?: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* The delay in milliseconds before showing the overlay.
|
|
2248
|
+
*/
|
|
2249
|
+
delay?: number;
|
|
2250
|
+
/**
|
|
2251
|
+
* Whether the overlay is disabled.
|
|
2252
|
+
*/
|
|
2253
|
+
disabled?: boolean;
|
|
2254
|
+
/**
|
|
2255
|
+
* Offset the overlay in the given amount of pixels.
|
|
2256
|
+
*/
|
|
2257
|
+
offset?: number;
|
|
2258
|
+
/**
|
|
2259
|
+
* The placement of the overlay.
|
|
2260
|
+
*/
|
|
2261
|
+
placement?: Placement;
|
|
2262
|
+
/**
|
|
2263
|
+
* Whether to spy on the real-time position of the anchor,
|
|
2264
|
+
* to keep the position of the overlay up-to-date at all times.
|
|
2265
|
+
*/
|
|
2266
|
+
spy?: boolean;
|
|
2267
|
+
/**
|
|
2268
|
+
* The name of the transition to apply.
|
|
2269
|
+
*/
|
|
2270
|
+
transition?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
* The method to trigger the overlay.
|
|
2273
|
+
*/
|
|
2274
|
+
trigger?: Trigger;
|
|
2275
|
+
/**
|
|
2276
|
+
* The width of the overlay.
|
|
2277
|
+
* Either is automatic, based on the overlay content,
|
|
2278
|
+
* or matches the overlay's anchor.
|
|
2279
|
+
*/
|
|
2280
|
+
width?: 'auto' | 'anchor';
|
|
2281
|
+
/**
|
|
2282
|
+
* Custom set of classes to apply to the component.
|
|
2283
|
+
*/
|
|
2284
|
+
class?: string | unknown[];
|
|
2285
|
+
};
|
|
2286
|
+
|
|
2215
2287
|
export declare const QPopover: IQPopover;
|
|
2216
2288
|
|
|
2217
2289
|
export declare const QSelect: IQSelect;
|
|
2218
2290
|
|
|
2219
2291
|
export declare const QSpinnerLoader: IQSpinnerLoader;
|
|
2220
2292
|
|
|
2293
|
+
declare type QSpinnerLoaderProps = {
|
|
2294
|
+
/**
|
|
2295
|
+
* The size of the loader, in pixels.
|
|
2296
|
+
*/
|
|
2297
|
+
size?: number;
|
|
2298
|
+
/**
|
|
2299
|
+
* Custom set of classes to apply to the component.
|
|
2300
|
+
*/
|
|
2301
|
+
class?: string | unknown[];
|
|
2302
|
+
};
|
|
2303
|
+
|
|
2221
2304
|
export declare const QTextField: IQTextField;
|
|
2222
2305
|
|
|
2223
2306
|
declare type QTextFieldProps = {
|
|
@@ -2267,6 +2350,10 @@ declare type QTextFieldProps = {
|
|
|
2267
2350
|
* The type attribute to apply to the input.
|
|
2268
2351
|
*/
|
|
2269
2352
|
type?: string;
|
|
2353
|
+
/**
|
|
2354
|
+
* Custom set of classes to apply to the component.
|
|
2355
|
+
*/
|
|
2356
|
+
class?: string | unknown[];
|
|
2270
2357
|
};
|
|
2271
2358
|
|
|
2272
2359
|
export declare const QTooltip: IQTooltip;
|