@aotearoan/neon 21.0.2 → 22.0.0
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/components/navigation/dropdown-menu/NeonDropdownMenu.cjs.js +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.cjs.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.es.js +30 -31
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.es.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.es.js +23 -23
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.es.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.cjs.js +1 -1
- package/dist/components/navigation/menu/NeonMenu.cjs.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.es.js +57 -55
- package/dist/components/navigation/menu/NeonMenu.es.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.es.js +20 -21
- package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.cjs.js +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.cjs.js.map +1 -1
- package/dist/components/presentation/dropdown/NeonDropdown.es.js +38 -47
- package/dist/components/presentation/dropdown/NeonDropdown.es.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.cjs.js +1 -1
- package/dist/components/user-input/search/NeonSearch.cjs.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.es.js +95 -82
- package/dist/components/user-input/search/NeonSearch.es.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.cjs.js +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.cjs.js.map +1 -1
- package/dist/components/user-input/search/NeonSearch.vue.es.js +19 -19
- package/dist/components/user-input/search/NeonSearch.vue.es.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.cjs.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.cjs.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.es.js +10 -10
- package/dist/components/user-input/toggle/NeonToggle.es.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.cjs.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.cjs.js.map +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.es.js +1 -1
- package/dist/components/user-input/toggle/NeonToggle.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +134 -83
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +38 -18
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +14 -11
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +34 -27
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +5 -18
- package/dist/src/components/user-input/search/NeonSearch.d.ts +188 -208
- package/dist/src/components/user-input/select/NeonSelect.d.ts +21 -110
- package/dist/src/components/user-input/toggle/NeonToggle.d.ts +1 -1
- package/package.json +1 -1
- package/src/sass/components/_badge.scss +1 -0
- package/src/sass/components/_card.scss +7 -7
- package/src/sass/components/_skeleton-loader.scss +3 -4
- package/src/sass/components/_slider.scss +1 -1
- package/src/sass/components/_toggle.scss +9 -3
- package/src/sass/variables.scss +10 -7
|
@@ -53,7 +53,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
53
53
|
width: number;
|
|
54
54
|
key: string;
|
|
55
55
|
}[]>;
|
|
56
|
-
responsiveButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
57
56
|
responsiveMenuItems: import("vue").Ref<{
|
|
58
57
|
children?: {
|
|
59
58
|
key: string;
|
|
@@ -139,6 +138,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
139
138
|
type: BooleanConstructor;
|
|
140
139
|
default: boolean;
|
|
141
140
|
};
|
|
141
|
+
placement: {
|
|
142
|
+
type: () => import("../../../neon").NeonDropdownPlacement;
|
|
143
|
+
default: import("../../../neon").NeonDropdownPlacement;
|
|
144
|
+
};
|
|
142
145
|
openOnHover: {
|
|
143
146
|
type: BooleanConstructor;
|
|
144
147
|
default: boolean;
|
|
@@ -149,7 +152,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
149
152
|
type: StringConstructor;
|
|
150
153
|
};
|
|
151
154
|
modelValue: {
|
|
152
|
-
type: BooleanConstructor;
|
|
155
|
+
type: BooleanConstructor; /**
|
|
156
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
157
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
158
|
+
*/
|
|
153
159
|
required: true;
|
|
154
160
|
};
|
|
155
161
|
label: {
|
|
@@ -212,7 +218,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
212
218
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
213
219
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
214
220
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
215
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
216
221
|
}>, {
|
|
217
222
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
218
223
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -234,7 +239,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
234
239
|
toggleOpen: () => void;
|
|
235
240
|
onBlur: () => void;
|
|
236
241
|
onFocus: () => void;
|
|
237
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
242
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
238
243
|
disabled: boolean;
|
|
239
244
|
label: string;
|
|
240
245
|
placement: import("../../../neon").NeonDropdownPlacement;
|
|
@@ -823,7 +828,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
823
828
|
type: StringConstructor;
|
|
824
829
|
};
|
|
825
830
|
modelValue: {
|
|
826
|
-
type: BooleanConstructor;
|
|
831
|
+
type: BooleanConstructor; /**
|
|
832
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
833
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
834
|
+
*/
|
|
827
835
|
required: true;
|
|
828
836
|
};
|
|
829
837
|
label: {
|
|
@@ -886,7 +894,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
886
894
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
887
895
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
888
896
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
889
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
890
897
|
}>, {
|
|
891
898
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
892
899
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -927,7 +934,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
927
934
|
type: StringConstructor;
|
|
928
935
|
};
|
|
929
936
|
modelValue: {
|
|
930
|
-
type: BooleanConstructor;
|
|
937
|
+
type: BooleanConstructor; /**
|
|
938
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
939
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
940
|
+
*/
|
|
931
941
|
required: true;
|
|
932
942
|
};
|
|
933
943
|
label: {
|
|
@@ -990,7 +1000,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
990
1000
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
991
1001
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
992
1002
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
993
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
994
1003
|
}>, {
|
|
995
1004
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
996
1005
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -1012,7 +1021,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1012
1021
|
toggleOpen: () => void;
|
|
1013
1022
|
onBlur: () => void;
|
|
1014
1023
|
onFocus: () => void;
|
|
1015
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
1024
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
1016
1025
|
disabled: boolean;
|
|
1017
1026
|
label: string;
|
|
1018
1027
|
placement: import("../../../neon").NeonDropdownPlacement;
|
|
@@ -1601,7 +1610,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1601
1610
|
type: StringConstructor;
|
|
1602
1611
|
};
|
|
1603
1612
|
modelValue: {
|
|
1604
|
-
type: BooleanConstructor;
|
|
1613
|
+
type: BooleanConstructor; /**
|
|
1614
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1615
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1616
|
+
*/
|
|
1605
1617
|
required: true;
|
|
1606
1618
|
};
|
|
1607
1619
|
label: {
|
|
@@ -1664,7 +1676,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1664
1676
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1665
1677
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1666
1678
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
1667
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1668
1679
|
}>, {
|
|
1669
1680
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
1670
1681
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -1708,7 +1719,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1708
1719
|
attrs: {
|
|
1709
1720
|
[x: string]: unknown;
|
|
1710
1721
|
};
|
|
1711
|
-
emit: (event: "click"
|
|
1722
|
+
emit: (event: "click", ...args: any[]) => void;
|
|
1712
1723
|
changeHighlighted: (key: string) => void;
|
|
1713
1724
|
keyboardHandler: ($event: KeyboardEvent) => void;
|
|
1714
1725
|
onBlur: () => void;
|
|
@@ -1716,7 +1727,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1716
1727
|
clickItem: (item: import("../../../neon").NeonDropdownMenuItem) => void;
|
|
1717
1728
|
navigateBy: (offset: number, $event: KeyboardEvent) => void;
|
|
1718
1729
|
onPlacement: (placement: import("../../../neon").NeonDropdownPlacement) => void;
|
|
1719
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1730
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1720
1731
|
model: {
|
|
1721
1732
|
type: () => import("../../../neon").NeonDropdownMenuItem[];
|
|
1722
1733
|
required: true;
|
|
@@ -1733,15 +1744,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1733
1744
|
type: BooleanConstructor;
|
|
1734
1745
|
default: boolean;
|
|
1735
1746
|
};
|
|
1747
|
+
placement: {
|
|
1748
|
+
type: () => import("../../../neon").NeonDropdownPlacement;
|
|
1749
|
+
default: import("../../../neon").NeonDropdownPlacement;
|
|
1750
|
+
};
|
|
1736
1751
|
openOnHover: {
|
|
1737
1752
|
type: BooleanConstructor;
|
|
1738
1753
|
default: boolean;
|
|
1739
1754
|
};
|
|
1740
1755
|
}>> & Readonly<{
|
|
1741
1756
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1742
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1743
1757
|
}>, {
|
|
1744
1758
|
disabled: boolean;
|
|
1759
|
+
placement: import("../../../neon").NeonDropdownPlacement;
|
|
1745
1760
|
size: NeonSize;
|
|
1746
1761
|
color: NeonFunctionalColor;
|
|
1747
1762
|
openOnHover: boolean;
|
|
@@ -1751,7 +1766,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1751
1766
|
type: StringConstructor;
|
|
1752
1767
|
};
|
|
1753
1768
|
modelValue: {
|
|
1754
|
-
type: BooleanConstructor;
|
|
1769
|
+
type: BooleanConstructor; /**
|
|
1770
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1771
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1772
|
+
*/
|
|
1755
1773
|
required: true;
|
|
1756
1774
|
};
|
|
1757
1775
|
label: {
|
|
@@ -1830,12 +1848,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1830
1848
|
toggleOpen: () => void;
|
|
1831
1849
|
onBlur: () => void;
|
|
1832
1850
|
onFocus: () => void;
|
|
1833
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
1851
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], "update:modelValue" | "focus" | "blur" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1834
1852
|
id: {
|
|
1835
1853
|
type: StringConstructor;
|
|
1836
1854
|
};
|
|
1837
1855
|
modelValue: {
|
|
1838
|
-
type: BooleanConstructor;
|
|
1856
|
+
type: BooleanConstructor; /**
|
|
1857
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1858
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1859
|
+
*/
|
|
1839
1860
|
required: true;
|
|
1840
1861
|
};
|
|
1841
1862
|
label: {
|
|
@@ -1898,7 +1919,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1898
1919
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1899
1920
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1900
1921
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
1901
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1902
1922
|
}>, {
|
|
1903
1923
|
disabled: boolean;
|
|
1904
1924
|
label: string;
|
|
@@ -61,6 +61,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
61
|
type: BooleanConstructor;
|
|
62
62
|
default: boolean;
|
|
63
63
|
};
|
|
64
|
+
placement: {
|
|
65
|
+
type: () => import("../../../neon").NeonDropdownPlacement;
|
|
66
|
+
default: import("../../../neon").NeonDropdownPlacement;
|
|
67
|
+
};
|
|
64
68
|
openOnHover: {
|
|
65
69
|
type: BooleanConstructor;
|
|
66
70
|
default: boolean;
|
|
@@ -134,7 +138,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
134
138
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
135
139
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
136
140
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
137
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
138
141
|
}>, {
|
|
139
142
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
140
143
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -156,7 +159,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
156
159
|
toggleOpen: () => void;
|
|
157
160
|
onBlur: () => void;
|
|
158
161
|
onFocus: () => void;
|
|
159
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
162
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
160
163
|
disabled: boolean;
|
|
161
164
|
label: string;
|
|
162
165
|
placement: import("../../../neon").NeonDropdownPlacement;
|
|
@@ -796,7 +799,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
796
799
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
797
800
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
798
801
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
799
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
800
802
|
}>, {
|
|
801
803
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
802
804
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -900,7 +902,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
900
902
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
901
903
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
902
904
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
903
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
904
905
|
}>, {
|
|
905
906
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
906
907
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -922,7 +923,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
922
923
|
toggleOpen: () => void;
|
|
923
924
|
onBlur: () => void;
|
|
924
925
|
onFocus: () => void;
|
|
925
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
926
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], import("vue").PublicProps, {
|
|
926
927
|
disabled: boolean;
|
|
927
928
|
label: string;
|
|
928
929
|
placement: import("../../../neon").NeonDropdownPlacement;
|
|
@@ -1562,7 +1563,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1562
1563
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1563
1564
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1564
1565
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
1565
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1566
1566
|
}>, {
|
|
1567
1567
|
dropdownButton: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
1568
1568
|
dropdownContent: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
|
|
@@ -1606,7 +1606,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1606
1606
|
attrs: {
|
|
1607
1607
|
[x: string]: unknown;
|
|
1608
1608
|
};
|
|
1609
|
-
emit: (event: "click"
|
|
1609
|
+
emit: (event: "click", ...args: any[]) => void;
|
|
1610
1610
|
changeHighlighted: (key: string) => void;
|
|
1611
1611
|
keyboardHandler: ($event: KeyboardEvent) => void;
|
|
1612
1612
|
onBlur: () => void;
|
|
@@ -1614,7 +1614,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1614
1614
|
clickItem: (item: import("../../../neon").NeonDropdownMenuItem) => void;
|
|
1615
1615
|
navigateBy: (offset: number, $event: KeyboardEvent) => void;
|
|
1616
1616
|
onPlacement: (placement: import("../../../neon").NeonDropdownPlacement) => void;
|
|
1617
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
1617
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1618
1618
|
model: {
|
|
1619
1619
|
type: () => import("../../../neon").NeonDropdownMenuItem[];
|
|
1620
1620
|
required: true;
|
|
@@ -1631,15 +1631,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1631
1631
|
type: BooleanConstructor;
|
|
1632
1632
|
default: boolean;
|
|
1633
1633
|
};
|
|
1634
|
+
placement: {
|
|
1635
|
+
type: () => import("../../../neon").NeonDropdownPlacement;
|
|
1636
|
+
default: import("../../../neon").NeonDropdownPlacement;
|
|
1637
|
+
};
|
|
1634
1638
|
openOnHover: {
|
|
1635
1639
|
type: BooleanConstructor;
|
|
1636
1640
|
default: boolean;
|
|
1637
1641
|
};
|
|
1638
1642
|
}>> & Readonly<{
|
|
1639
1643
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1640
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1641
1644
|
}>, {
|
|
1642
1645
|
disabled: boolean;
|
|
1646
|
+
placement: import("../../../neon").NeonDropdownPlacement;
|
|
1643
1647
|
size: import("../../../neon").NeonSize;
|
|
1644
1648
|
color: NeonFunctionalColor;
|
|
1645
1649
|
openOnHover: boolean;
|
|
@@ -1728,7 +1732,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1728
1732
|
toggleOpen: () => void;
|
|
1729
1733
|
onBlur: () => void;
|
|
1730
1734
|
onFocus: () => void;
|
|
1731
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
1735
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], "update:modelValue" | "focus" | "blur" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1732
1736
|
id: {
|
|
1733
1737
|
type: StringConstructor;
|
|
1734
1738
|
};
|
|
@@ -1796,7 +1800,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1796
1800
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1797
1801
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1798
1802
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
1799
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
1800
1803
|
}>, {
|
|
1801
1804
|
disabled: boolean;
|
|
1802
1805
|
label: string;
|
|
@@ -144,7 +144,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
144
144
|
toggleOpen: () => void;
|
|
145
145
|
onBlur: () => void;
|
|
146
146
|
onFocus: () => void;
|
|
147
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
147
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], "update:modelValue" | "focus" | "blur" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
148
148
|
/**
|
|
149
149
|
* Id for the dropdown button.
|
|
150
150
|
*/
|
|
@@ -260,7 +260,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
260
260
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
261
261
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
262
262
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
263
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
264
263
|
}>, {
|
|
265
264
|
disabled: boolean;
|
|
266
265
|
label: string;
|
|
@@ -304,13 +303,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
304
303
|
alternateColor: {
|
|
305
304
|
type: () => NeonFunctionalColor;
|
|
306
305
|
default: null;
|
|
307
|
-
};
|
|
308
|
-
* Whether the dropdown is currently open.
|
|
309
|
-
*/
|
|
306
|
+
};
|
|
310
307
|
disabled: {
|
|
311
308
|
type: BooleanConstructor;
|
|
312
|
-
default: boolean;
|
|
313
|
-
|
|
309
|
+
default: boolean; /**
|
|
310
|
+
* The label for the dropdown button.
|
|
311
|
+
*/
|
|
312
|
+
}; /**
|
|
313
|
+
* The label for the dropdown button.
|
|
314
|
+
*/
|
|
314
315
|
jazziconId: {
|
|
315
316
|
type: StringConstructor;
|
|
316
317
|
default: null;
|
|
@@ -349,13 +350,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
349
350
|
alternateColor: {
|
|
350
351
|
type: () => NeonFunctionalColor;
|
|
351
352
|
default: null;
|
|
352
|
-
};
|
|
353
|
-
* Whether the dropdown is currently open.
|
|
354
|
-
*/
|
|
353
|
+
};
|
|
355
354
|
disabled: {
|
|
356
355
|
type: BooleanConstructor;
|
|
357
|
-
default: boolean;
|
|
358
|
-
|
|
356
|
+
default: boolean; /**
|
|
357
|
+
* The label for the dropdown button.
|
|
358
|
+
*/
|
|
359
|
+
}; /**
|
|
360
|
+
* The label for the dropdown button.
|
|
361
|
+
*/
|
|
359
362
|
jazziconId: {
|
|
360
363
|
type: StringConstructor;
|
|
361
364
|
default: null;
|
|
@@ -396,7 +399,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
396
399
|
}>, {
|
|
397
400
|
attrs: {
|
|
398
401
|
[x: string]: unknown;
|
|
399
|
-
};
|
|
402
|
+
}; /**
|
|
403
|
+
* aria label of the button icon
|
|
404
|
+
*/
|
|
400
405
|
icon: import("vue").ComputedRef<string>;
|
|
401
406
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
402
407
|
name: {
|
|
@@ -458,6 +463,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
458
463
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
459
464
|
};
|
|
460
465
|
buttonStyle: {
|
|
466
|
+
/**
|
|
467
|
+
* Show the dropdown button's indicator (chevron).
|
|
468
|
+
*/
|
|
461
469
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
462
470
|
default: import("../../../neon").NeonButtonStyle;
|
|
463
471
|
};
|
|
@@ -475,12 +483,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
475
483
|
};
|
|
476
484
|
outline: {
|
|
477
485
|
type: BooleanConstructor;
|
|
478
|
-
default: boolean;
|
|
479
|
-
|
|
480
|
-
*/
|
|
481
|
-
}; /**
|
|
482
|
-
* The style of the dropdown button
|
|
483
|
-
*/
|
|
486
|
+
default: boolean;
|
|
487
|
+
};
|
|
484
488
|
circular: {
|
|
485
489
|
type: BooleanConstructor;
|
|
486
490
|
default: null;
|
|
@@ -557,6 +561,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
557
561
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
558
562
|
};
|
|
559
563
|
buttonStyle: {
|
|
564
|
+
/**
|
|
565
|
+
* Show the dropdown button's indicator (chevron).
|
|
566
|
+
*/
|
|
560
567
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
561
568
|
default: import("../../../neon").NeonButtonStyle;
|
|
562
569
|
};
|
|
@@ -574,12 +581,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
574
581
|
};
|
|
575
582
|
outline: {
|
|
576
583
|
type: BooleanConstructor;
|
|
577
|
-
default: boolean;
|
|
578
|
-
|
|
579
|
-
*/
|
|
580
|
-
}; /**
|
|
581
|
-
* The style of the dropdown button
|
|
582
|
-
*/
|
|
584
|
+
default: boolean;
|
|
585
|
+
};
|
|
583
586
|
circular: {
|
|
584
587
|
type: BooleanConstructor;
|
|
585
588
|
default: null;
|
|
@@ -677,7 +680,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
677
680
|
}>, {
|
|
678
681
|
attrs: {
|
|
679
682
|
[x: string]: unknown;
|
|
680
|
-
};
|
|
683
|
+
}; /**
|
|
684
|
+
* aria label of the button icon
|
|
685
|
+
*/
|
|
681
686
|
icon: import("vue").ComputedRef<string>;
|
|
682
687
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
683
688
|
name: {
|
|
@@ -772,7 +777,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
772
777
|
}>, {
|
|
773
778
|
attrs: {
|
|
774
779
|
[x: string]: unknown;
|
|
775
|
-
};
|
|
780
|
+
}; /**
|
|
781
|
+
* aria label of the button icon
|
|
782
|
+
*/
|
|
776
783
|
icon: import("vue").ComputedRef<string>;
|
|
777
784
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
778
785
|
name: {
|
|
@@ -829,14 +829,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
829
829
|
};
|
|
830
830
|
color: {
|
|
831
831
|
type: () => NeonFunctionalColor;
|
|
832
|
-
default: NeonFunctionalColor;
|
|
833
|
-
|
|
834
|
-
* dates for which to disable selection.
|
|
835
|
-
*/
|
|
836
|
-
}; /**
|
|
837
|
-
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
838
|
-
* dates for which to disable selection.
|
|
839
|
-
*/
|
|
832
|
+
default: NeonFunctionalColor;
|
|
833
|
+
};
|
|
840
834
|
alternateColor: {
|
|
841
835
|
type: () => NeonFunctionalColor;
|
|
842
836
|
default: null;
|
|
@@ -878,7 +872,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
878
872
|
toggleOpen: () => void;
|
|
879
873
|
onBlur: () => void;
|
|
880
874
|
onFocus: () => void;
|
|
881
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement"
|
|
875
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "dropdown-placement")[], "update:modelValue" | "focus" | "blur" | "dropdown-placement", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
882
876
|
id: {
|
|
883
877
|
type: StringConstructor;
|
|
884
878
|
};
|
|
@@ -919,14 +913,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
919
913
|
};
|
|
920
914
|
color: {
|
|
921
915
|
type: () => NeonFunctionalColor;
|
|
922
|
-
default: NeonFunctionalColor;
|
|
923
|
-
|
|
924
|
-
* dates for which to disable selection.
|
|
925
|
-
*/
|
|
926
|
-
}; /**
|
|
927
|
-
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
928
|
-
* dates for which to disable selection.
|
|
929
|
-
*/
|
|
916
|
+
default: NeonFunctionalColor;
|
|
917
|
+
};
|
|
930
918
|
alternateColor: {
|
|
931
919
|
type: () => NeonFunctionalColor;
|
|
932
920
|
default: null;
|
|
@@ -952,7 +940,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
952
940
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
953
941
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
954
942
|
"onDropdown-placement"?: ((...args: any[]) => any) | undefined;
|
|
955
|
-
"onButton-ref"?: ((...args: any[]) => any) | undefined;
|
|
956
943
|
}>, {
|
|
957
944
|
disabled: boolean;
|
|
958
945
|
label: string;
|