@quidgest/ui 0.8.4 → 0.8.6

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 CHANGED
@@ -703,6 +703,7 @@ declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_With
703
703
  width: string;
704
704
  class: undefined;
705
705
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
706
+ "update:modelValue": (value: boolean) => void;
706
707
  enter: () => void;
707
708
  leave: () => void;
708
709
  }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_15<QOverlayProps>, {
@@ -717,6 +718,7 @@ declare const _default_15: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_With
717
718
  width: string;
718
719
  class: undefined;
719
720
  }>>> & {
721
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
720
722
  onEnter?: (() => any) | undefined;
721
723
  onLeave?: (() => any) | undefined;
722
724
  }, {
@@ -888,6 +890,11 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
888
890
  * Property on each item that contains its title.
889
891
  */
890
892
  itemLabel?: string | undefined;
893
+ /**
894
+ * The value to be used in comparisons,
895
+ * used to check if the field has a selected item.
896
+ */
897
+ emptyValue?: Primitive | undefined;
891
898
  /**
892
899
  * The size category of the input.
893
900
  */
@@ -910,6 +917,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
910
917
  groups: () => never[];
911
918
  itemValue: string;
912
919
  itemLabel: string;
920
+ emptyValue: undefined;
913
921
  size: undefined;
914
922
  texts: () => {
915
923
  placeholder: string;
@@ -979,6 +987,11 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
979
987
  * Property on each item that contains its title.
980
988
  */
981
989
  itemLabel?: string | undefined;
990
+ /**
991
+ * The value to be used in comparisons,
992
+ * used to check if the field has a selected item.
993
+ */
994
+ emptyValue?: Primitive | undefined;
982
995
  /**
983
996
  * The size category of the input.
984
997
  */
@@ -1001,6 +1014,7 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
1001
1014
  groups: () => never[];
1002
1015
  itemValue: string;
1003
1016
  itemLabel: string;
1017
+ emptyValue: undefined;
1004
1018
  size: undefined;
1005
1019
  texts: () => {
1006
1020
  placeholder: string;
@@ -1017,16 +1031,15 @@ declare const _default_17: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_With
1017
1031
  class: string | unknown[];
1018
1032
  label: string;
1019
1033
  modelValue: Primitive;
1020
- icons: Record<string, Icon>;
1034
+ icons: Icons_3;
1021
1035
  groups: (QListItemGroupProps & {
1022
1036
  id: string;
1023
1037
  })[];
1024
1038
  itemValue: string;
1025
1039
  itemLabel: string;
1026
1040
  id: string;
1027
- texts: {
1028
- placeholder: string;
1029
- };
1041
+ emptyValue: Primitive;
1042
+ texts: Texts_2;
1030
1043
  }, {}>, {
1031
1044
  prepend?(_: {}): any;
1032
1045
  append?(_: {}): any;
@@ -1274,6 +1287,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
1274
1287
  groups: () => never[];
1275
1288
  itemValue: string;
1276
1289
  itemLabel: string;
1290
+ emptyValue: undefined;
1277
1291
  size: undefined;
1278
1292
  texts: () => {
1279
1293
  noData: string;
@@ -1509,9 +1523,6 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
1509
1523
  "label.prepend"?(_: {}): any;
1510
1524
  "label.append"?(_: {}): any;
1511
1525
  prepend?(_: {}): any;
1512
- /**
1513
- * Focuses the input element within the trigger element.
1514
- */
1515
1526
  append?(_: {}): any;
1516
1527
  extras?(_: {}): any;
1517
1528
  };
@@ -1533,6 +1544,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
1533
1544
  groups: () => never[];
1534
1545
  itemValue: string;
1535
1546
  itemLabel: string;
1547
+ emptyValue: undefined;
1536
1548
  size: undefined;
1537
1549
  texts: () => {
1538
1550
  noData: string;
@@ -1561,6 +1573,7 @@ declare const _default_4: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDe
1561
1573
  placeholder: string;
1562
1574
  selectionMode: "manual" | "automatic";
1563
1575
  filterMode: "manual" | "builtin";
1576
+ emptyValue: Primitive;
1564
1577
  texts: {
1565
1578
  noData: string;
1566
1579
  };
@@ -1724,10 +1737,16 @@ declare const DEFAULT_ICONS: Record<string, Icon>;
1724
1737
 
1725
1738
  declare const DEFAULT_ICONS_2: Record<string, Icon>;
1726
1739
 
1740
+ declare const DEFAULT_ICONS_3: Record<string, Icon>;
1741
+
1727
1742
  declare const DEFAULT_TEXTS: {
1728
1743
  noData: string;
1729
1744
  };
1730
1745
 
1746
+ declare const DEFAULT_TEXTS_2: {
1747
+ placeholder: string;
1748
+ };
1749
+
1731
1750
  export declare const defaultDarkColorScheme: ColorScheme;
1732
1751
 
1733
1752
  export declare const defaultLightColorScheme: ColorScheme;
@@ -1807,6 +1826,8 @@ declare type Icons = typeof DEFAULT_ICONS;
1807
1826
 
1808
1827
  declare type Icons_2 = typeof DEFAULT_ICONS_2;
1809
1828
 
1829
+ declare type Icons_3 = typeof DEFAULT_ICONS_3;
1830
+
1810
1831
  export declare type IQButton = InstanceType<typeof _default>;
1811
1832
 
1812
1833
  export declare type IQButtonGroup = InstanceType<typeof _default_2>;
@@ -2043,6 +2064,11 @@ declare type QComboboxProps = {
2043
2064
  * Property on each item that contains its title.
2044
2065
  */
2045
2066
  itemLabel?: string;
2067
+ /**
2068
+ * The value to be used in comparisons,
2069
+ * used to check if the field has a selected item.
2070
+ */
2071
+ emptyValue?: Primitive;
2046
2072
  /**
2047
2073
  * The size category of the field.
2048
2074
  */
@@ -2412,6 +2438,8 @@ declare type Selector = string | HTMLElement | ComponentPublicInstance;
2412
2438
 
2413
2439
  declare type Texts = typeof DEFAULT_TEXTS;
2414
2440
 
2441
+ declare type Texts_2 = typeof DEFAULT_TEXTS_2;
2442
+
2415
2443
  declare type ThemeDefinition = {
2416
2444
  name: string;
2417
2445
  mode: ThemeMode;