@aotearoan/neon 22.1.0 → 22.1.2
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/common/enums/NeonButtonType.cjs.js +2 -0
- package/dist/common/enums/NeonButtonType.cjs.js.map +1 -0
- package/dist/common/enums/NeonButtonType.es.js +5 -0
- package/dist/common/enums/NeonButtonType.es.js.map +1 -0
- package/dist/common/enums/NeonResponsive.cjs.js.map +1 -1
- package/dist/common/enums/NeonResponsive.es.js.map +1 -1
- package/dist/common/utils/NeonResponsiveUtils.cjs.js +1 -1
- package/dist/common/utils/NeonResponsiveUtils.cjs.js.map +1 -1
- package/dist/common/utils/NeonResponsiveUtils.es.js +4 -4
- package/dist/common/utils/NeonResponsiveUtils.es.js.map +1 -1
- package/dist/components/navigation/link/NeonLink.cjs.js +1 -1
- package/dist/components/navigation/link/NeonLink.cjs.js.map +1 -1
- package/dist/components/navigation/link/NeonLink.es.js +1 -1
- package/dist/components/navigation/link/NeonLink.es.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.cjs.js.map +1 -1
- 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 +30 -28
- package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.cjs.js +1 -1
- package/dist/components/user-input/button/NeonButton.cjs.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.es.js +18 -12
- package/dist/components/user-input/button/NeonButton.es.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.vue.cjs.js +1 -1
- package/dist/components/user-input/button/NeonButton.vue.cjs.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.vue.es.js +9 -8
- package/dist/components/user-input/button/NeonButton.vue.es.js.map +1 -1
- package/dist/neon.cjs.js +1 -1
- package/dist/neon.es.js +101 -99
- package/dist/neon.es.js.map +1 -1
- package/dist/src/common/enums/NeonButtonType.d.ts +5 -0
- package/dist/src/common/enums/NeonResponsive.d.ts +4 -4
- package/dist/src/components/feedback/dialog/NeonDialog.d.ts +20 -6
- package/dist/src/components/feedback/note/NeonNote.d.ts +9 -0
- package/dist/src/components/layout/card-list/NeonCardList.d.ts +21 -16
- package/dist/src/components/layout/modal/NeonModal.d.ts +9 -0
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +69 -30
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +145 -100
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +27 -0
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +27 -10
- package/dist/src/components/presentation/image-carousel/NeonImageCarousel.d.ts +31 -6
- package/dist/src/components/user-input/button/NeonButton.d.ts +23 -6
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +26 -0
- package/dist/src/components/user-input/file/NeonFile.d.ts +9 -0
- package/dist/src/components/user-input/number/NeonNumber.d.ts +14 -21
- package/dist/src/components/user-input/search/NeonSearch.d.ts +63 -6
- package/dist/src/components/user-input/select/NeonSelect.d.ts +135 -72
- package/dist/src/neon.d.ts +1 -0
- package/package.json +1 -1
- package/src/sass/components/_menu.scss +83 -32
- package/src/sass/includes/_responsive.scss +4 -4
- package/src/sass/variables.scss +6 -0
|
@@ -7,7 +7,7 @@ import type { NeonPriorityMenuItem } from './NeonPriorityMenuItem';
|
|
|
7
7
|
* <strong>NeonMenu</strong> is a responsive aware menu that progressively collapses options into the mobile menu as
|
|
8
8
|
* the screen size gets smaller. This is a more flexible option than moving directly to a hamburger menu at tablet and
|
|
9
9
|
* below. It is a best effort approach to keep displaying the most important menu items for as long as possible,
|
|
10
|
-
* giving the user a better experience.
|
|
10
|
+
* giving the user a better experience. Use NeonMenu inside NeonTopNav for primary navigation.
|
|
11
11
|
* </p>
|
|
12
12
|
*/
|
|
13
13
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -152,10 +152,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
152
152
|
type: StringConstructor;
|
|
153
153
|
};
|
|
154
154
|
modelValue: {
|
|
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
|
-
*/
|
|
155
|
+
type: BooleanConstructor;
|
|
159
156
|
required: true;
|
|
160
157
|
};
|
|
161
158
|
label: {
|
|
@@ -169,7 +166,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
169
166
|
imageAlt: {
|
|
170
167
|
type: StringConstructor;
|
|
171
168
|
default: null;
|
|
172
|
-
};
|
|
169
|
+
}; /**
|
|
170
|
+
* Emitted when a user clicks on a menu item.
|
|
171
|
+
* @type {string} the key of the menu item clicked.
|
|
172
|
+
*/
|
|
173
173
|
icon: {
|
|
174
174
|
type: StringConstructor;
|
|
175
175
|
default: null;
|
|
@@ -293,14 +293,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
293
293
|
};
|
|
294
294
|
imageAlt: {
|
|
295
295
|
type: StringConstructor;
|
|
296
|
-
default: string;
|
|
297
|
-
|
|
298
|
-
* @type {string} the key of the menu item clicked.
|
|
299
|
-
*/
|
|
300
|
-
}; /**
|
|
301
|
-
* Emitted when a user clicks on a menu item.
|
|
302
|
-
* @type {string} the key of the menu item clicked.
|
|
303
|
-
*/
|
|
296
|
+
default: string;
|
|
297
|
+
};
|
|
304
298
|
}>, {
|
|
305
299
|
svg: import("vue").ComputedRef<string | null>;
|
|
306
300
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -342,14 +336,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
342
336
|
};
|
|
343
337
|
imageAlt: {
|
|
344
338
|
type: StringConstructor;
|
|
345
|
-
default: string;
|
|
346
|
-
|
|
347
|
-
* @type {string} the key of the menu item clicked.
|
|
348
|
-
*/
|
|
349
|
-
}; /**
|
|
350
|
-
* Emitted when a user clicks on a menu item.
|
|
351
|
-
* @type {string} the key of the menu item clicked.
|
|
352
|
-
*/
|
|
339
|
+
default: string;
|
|
340
|
+
};
|
|
353
341
|
}>> & Readonly<{}>, {
|
|
354
342
|
disabled: boolean;
|
|
355
343
|
label: string;
|
|
@@ -406,7 +394,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
406
394
|
color: NeonFunctionalColor;
|
|
407
395
|
inverse: boolean;
|
|
408
396
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
409
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
397
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
398
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
399
|
+
*/
|
|
410
400
|
NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
411
401
|
href: {
|
|
412
402
|
type: StringConstructor;
|
|
@@ -423,11 +413,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
423
413
|
color: {
|
|
424
414
|
type: () => NeonFunctionalColor;
|
|
425
415
|
default: NeonFunctionalColor;
|
|
426
|
-
};
|
|
416
|
+
}; /**
|
|
417
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
418
|
+
*/
|
|
427
419
|
inverse: {
|
|
428
420
|
type: BooleanConstructor;
|
|
429
|
-
default: boolean;
|
|
430
|
-
|
|
421
|
+
default: boolean; /**
|
|
422
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
423
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
424
|
+
*/
|
|
425
|
+
}; /**
|
|
426
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
427
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
428
|
+
*/
|
|
431
429
|
alternateColor: {
|
|
432
430
|
type: () => NeonFunctionalColor;
|
|
433
431
|
default: null;
|
|
@@ -447,6 +445,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
447
445
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
448
446
|
default: import("../../../neon").NeonButtonStyle;
|
|
449
447
|
};
|
|
448
|
+
buttonType: {
|
|
449
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
450
|
+
default: import("../../../neon").NeonButtonType;
|
|
451
|
+
};
|
|
450
452
|
state: {
|
|
451
453
|
type: () => import("../../../neon").NeonState;
|
|
452
454
|
default: import("../../../neon").NeonState;
|
|
@@ -518,11 +520,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
518
520
|
color: {
|
|
519
521
|
type: () => NeonFunctionalColor;
|
|
520
522
|
default: NeonFunctionalColor;
|
|
521
|
-
};
|
|
523
|
+
}; /**
|
|
524
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
525
|
+
*/
|
|
522
526
|
inverse: {
|
|
523
527
|
type: BooleanConstructor;
|
|
524
|
-
default: boolean;
|
|
525
|
-
|
|
528
|
+
default: boolean; /**
|
|
529
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
530
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
531
|
+
*/
|
|
532
|
+
}; /**
|
|
533
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
534
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
535
|
+
*/
|
|
526
536
|
alternateColor: {
|
|
527
537
|
type: () => NeonFunctionalColor;
|
|
528
538
|
default: null;
|
|
@@ -542,6 +552,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
542
552
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
543
553
|
default: import("../../../neon").NeonButtonStyle;
|
|
544
554
|
};
|
|
555
|
+
buttonType: {
|
|
556
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
557
|
+
default: import("../../../neon").NeonButtonType;
|
|
558
|
+
};
|
|
545
559
|
state: {
|
|
546
560
|
type: () => import("../../../neon").NeonState;
|
|
547
561
|
default: import("../../../neon").NeonState;
|
|
@@ -589,6 +603,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
589
603
|
alternateColor: NeonFunctionalColor;
|
|
590
604
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
591
605
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
606
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
592
607
|
state: import("../../../neon").NeonState;
|
|
593
608
|
transparent: boolean;
|
|
594
609
|
fullWidth: boolean;
|
|
@@ -828,10 +843,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
828
843
|
type: StringConstructor;
|
|
829
844
|
};
|
|
830
845
|
modelValue: {
|
|
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
|
-
*/
|
|
846
|
+
type: BooleanConstructor;
|
|
835
847
|
required: true;
|
|
836
848
|
};
|
|
837
849
|
label: {
|
|
@@ -845,7 +857,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
845
857
|
imageAlt: {
|
|
846
858
|
type: StringConstructor;
|
|
847
859
|
default: null;
|
|
848
|
-
};
|
|
860
|
+
}; /**
|
|
861
|
+
* Emitted when a user clicks on a menu item.
|
|
862
|
+
* @type {string} the key of the menu item clicked.
|
|
863
|
+
*/
|
|
849
864
|
icon: {
|
|
850
865
|
type: StringConstructor;
|
|
851
866
|
default: null;
|
|
@@ -934,10 +949,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
934
949
|
type: StringConstructor;
|
|
935
950
|
};
|
|
936
951
|
modelValue: {
|
|
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
|
-
*/
|
|
952
|
+
type: BooleanConstructor;
|
|
941
953
|
required: true;
|
|
942
954
|
};
|
|
943
955
|
label: {
|
|
@@ -951,7 +963,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
951
963
|
imageAlt: {
|
|
952
964
|
type: StringConstructor;
|
|
953
965
|
default: null;
|
|
954
|
-
};
|
|
966
|
+
}; /**
|
|
967
|
+
* Emitted when a user clicks on a menu item.
|
|
968
|
+
* @type {string} the key of the menu item clicked.
|
|
969
|
+
*/
|
|
955
970
|
icon: {
|
|
956
971
|
type: StringConstructor;
|
|
957
972
|
default: null;
|
|
@@ -1075,14 +1090,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1075
1090
|
};
|
|
1076
1091
|
imageAlt: {
|
|
1077
1092
|
type: StringConstructor;
|
|
1078
|
-
default: string;
|
|
1079
|
-
|
|
1080
|
-
* @type {string} the key of the menu item clicked.
|
|
1081
|
-
*/
|
|
1082
|
-
}; /**
|
|
1083
|
-
* Emitted when a user clicks on a menu item.
|
|
1084
|
-
* @type {string} the key of the menu item clicked.
|
|
1085
|
-
*/
|
|
1093
|
+
default: string;
|
|
1094
|
+
};
|
|
1086
1095
|
}>, {
|
|
1087
1096
|
svg: import("vue").ComputedRef<string | null>;
|
|
1088
1097
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1124,14 +1133,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1124
1133
|
};
|
|
1125
1134
|
imageAlt: {
|
|
1126
1135
|
type: StringConstructor;
|
|
1127
|
-
default: string;
|
|
1128
|
-
|
|
1129
|
-
* @type {string} the key of the menu item clicked.
|
|
1130
|
-
*/
|
|
1131
|
-
}; /**
|
|
1132
|
-
* Emitted when a user clicks on a menu item.
|
|
1133
|
-
* @type {string} the key of the menu item clicked.
|
|
1134
|
-
*/
|
|
1136
|
+
default: string;
|
|
1137
|
+
};
|
|
1135
1138
|
}>> & Readonly<{}>, {
|
|
1136
1139
|
disabled: boolean;
|
|
1137
1140
|
label: string;
|
|
@@ -1188,7 +1191,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1188
1191
|
color: NeonFunctionalColor;
|
|
1189
1192
|
inverse: boolean;
|
|
1190
1193
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1191
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1194
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
1195
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
1196
|
+
*/
|
|
1192
1197
|
NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1193
1198
|
href: {
|
|
1194
1199
|
type: StringConstructor;
|
|
@@ -1205,11 +1210,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1205
1210
|
color: {
|
|
1206
1211
|
type: () => NeonFunctionalColor;
|
|
1207
1212
|
default: NeonFunctionalColor;
|
|
1208
|
-
};
|
|
1213
|
+
}; /**
|
|
1214
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
1215
|
+
*/
|
|
1209
1216
|
inverse: {
|
|
1210
1217
|
type: BooleanConstructor;
|
|
1211
|
-
default: boolean;
|
|
1212
|
-
|
|
1218
|
+
default: boolean; /**
|
|
1219
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1220
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1221
|
+
*/
|
|
1222
|
+
}; /**
|
|
1223
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1224
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1225
|
+
*/
|
|
1213
1226
|
alternateColor: {
|
|
1214
1227
|
type: () => NeonFunctionalColor;
|
|
1215
1228
|
default: null;
|
|
@@ -1229,6 +1242,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1229
1242
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
1230
1243
|
default: import("../../../neon").NeonButtonStyle;
|
|
1231
1244
|
};
|
|
1245
|
+
buttonType: {
|
|
1246
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
1247
|
+
default: import("../../../neon").NeonButtonType;
|
|
1248
|
+
};
|
|
1232
1249
|
state: {
|
|
1233
1250
|
type: () => import("../../../neon").NeonState;
|
|
1234
1251
|
default: import("../../../neon").NeonState;
|
|
@@ -1300,11 +1317,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1300
1317
|
color: {
|
|
1301
1318
|
type: () => NeonFunctionalColor;
|
|
1302
1319
|
default: NeonFunctionalColor;
|
|
1303
|
-
};
|
|
1320
|
+
}; /**
|
|
1321
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
1322
|
+
*/
|
|
1304
1323
|
inverse: {
|
|
1305
1324
|
type: BooleanConstructor;
|
|
1306
|
-
default: boolean;
|
|
1307
|
-
|
|
1325
|
+
default: boolean; /**
|
|
1326
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1327
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1328
|
+
*/
|
|
1329
|
+
}; /**
|
|
1330
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
1331
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
1332
|
+
*/
|
|
1308
1333
|
alternateColor: {
|
|
1309
1334
|
type: () => NeonFunctionalColor;
|
|
1310
1335
|
default: null;
|
|
@@ -1324,6 +1349,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1324
1349
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
1325
1350
|
default: import("../../../neon").NeonButtonStyle;
|
|
1326
1351
|
};
|
|
1352
|
+
buttonType: {
|
|
1353
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
1354
|
+
default: import("../../../neon").NeonButtonType;
|
|
1355
|
+
};
|
|
1327
1356
|
state: {
|
|
1328
1357
|
type: () => import("../../../neon").NeonState;
|
|
1329
1358
|
default: import("../../../neon").NeonState;
|
|
@@ -1371,6 +1400,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1371
1400
|
alternateColor: NeonFunctionalColor;
|
|
1372
1401
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
1373
1402
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1403
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
1374
1404
|
state: import("../../../neon").NeonState;
|
|
1375
1405
|
transparent: boolean;
|
|
1376
1406
|
fullWidth: boolean;
|
|
@@ -1610,10 +1640,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1610
1640
|
type: StringConstructor;
|
|
1611
1641
|
};
|
|
1612
1642
|
modelValue: {
|
|
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
|
-
*/
|
|
1643
|
+
type: BooleanConstructor;
|
|
1617
1644
|
required: true;
|
|
1618
1645
|
};
|
|
1619
1646
|
label: {
|
|
@@ -1627,7 +1654,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1627
1654
|
imageAlt: {
|
|
1628
1655
|
type: StringConstructor;
|
|
1629
1656
|
default: null;
|
|
1630
|
-
};
|
|
1657
|
+
}; /**
|
|
1658
|
+
* Emitted when a user clicks on a menu item.
|
|
1659
|
+
* @type {string} the key of the menu item clicked.
|
|
1660
|
+
*/
|
|
1631
1661
|
icon: {
|
|
1632
1662
|
type: StringConstructor;
|
|
1633
1663
|
default: null;
|
|
@@ -1766,10 +1796,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1766
1796
|
type: StringConstructor;
|
|
1767
1797
|
};
|
|
1768
1798
|
modelValue: {
|
|
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
|
-
*/
|
|
1799
|
+
type: BooleanConstructor;
|
|
1773
1800
|
required: true;
|
|
1774
1801
|
};
|
|
1775
1802
|
label: {
|
|
@@ -1783,7 +1810,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1783
1810
|
imageAlt: {
|
|
1784
1811
|
type: StringConstructor;
|
|
1785
1812
|
default: null;
|
|
1786
|
-
};
|
|
1813
|
+
}; /**
|
|
1814
|
+
* Emitted when a user clicks on a menu item.
|
|
1815
|
+
* @type {string} the key of the menu item clicked.
|
|
1816
|
+
*/
|
|
1787
1817
|
icon: {
|
|
1788
1818
|
type: StringConstructor;
|
|
1789
1819
|
default: null;
|
|
@@ -1853,10 +1883,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1853
1883
|
type: StringConstructor;
|
|
1854
1884
|
};
|
|
1855
1885
|
modelValue: {
|
|
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
|
-
*/
|
|
1886
|
+
type: BooleanConstructor;
|
|
1860
1887
|
required: true;
|
|
1861
1888
|
};
|
|
1862
1889
|
label: {
|
|
@@ -1870,7 +1897,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1870
1897
|
imageAlt: {
|
|
1871
1898
|
type: StringConstructor;
|
|
1872
1899
|
default: null;
|
|
1873
|
-
};
|
|
1900
|
+
}; /**
|
|
1901
|
+
* Emitted when a user clicks on a menu item.
|
|
1902
|
+
* @type {string} the key of the menu item clicked.
|
|
1903
|
+
*/
|
|
1874
1904
|
icon: {
|
|
1875
1905
|
type: StringConstructor;
|
|
1876
1906
|
default: null;
|
|
@@ -1973,14 +2003,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1973
2003
|
};
|
|
1974
2004
|
imageAlt: {
|
|
1975
2005
|
type: StringConstructor;
|
|
1976
|
-
default: string;
|
|
1977
|
-
|
|
1978
|
-
* @type {string} the key of the menu item clicked.
|
|
1979
|
-
*/
|
|
1980
|
-
}; /**
|
|
1981
|
-
* Emitted when a user clicks on a menu item.
|
|
1982
|
-
* @type {string} the key of the menu item clicked.
|
|
1983
|
-
*/
|
|
2006
|
+
default: string;
|
|
2007
|
+
};
|
|
1984
2008
|
}>, {
|
|
1985
2009
|
svg: import("vue").ComputedRef<string | null>;
|
|
1986
2010
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -2022,14 +2046,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2022
2046
|
};
|
|
2023
2047
|
imageAlt: {
|
|
2024
2048
|
type: StringConstructor;
|
|
2025
|
-
default: string;
|
|
2026
|
-
|
|
2027
|
-
* @type {string} the key of the menu item clicked.
|
|
2028
|
-
*/
|
|
2029
|
-
}; /**
|
|
2030
|
-
* Emitted when a user clicks on a menu item.
|
|
2031
|
-
* @type {string} the key of the menu item clicked.
|
|
2032
|
-
*/
|
|
2049
|
+
default: string;
|
|
2050
|
+
};
|
|
2033
2051
|
}>> & Readonly<{}>, {
|
|
2034
2052
|
disabled: boolean;
|
|
2035
2053
|
label: string;
|
|
@@ -2086,7 +2104,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2086
2104
|
color: NeonFunctionalColor;
|
|
2087
2105
|
inverse: boolean;
|
|
2088
2106
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2089
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2107
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
2108
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
2109
|
+
*/
|
|
2090
2110
|
NeonButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2091
2111
|
href: {
|
|
2092
2112
|
type: StringConstructor;
|
|
@@ -2103,11 +2123,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2103
2123
|
color: {
|
|
2104
2124
|
type: () => NeonFunctionalColor;
|
|
2105
2125
|
default: NeonFunctionalColor;
|
|
2106
|
-
};
|
|
2126
|
+
}; /**
|
|
2127
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
2128
|
+
*/
|
|
2107
2129
|
inverse: {
|
|
2108
2130
|
type: BooleanConstructor;
|
|
2109
|
-
default: boolean;
|
|
2110
|
-
|
|
2131
|
+
default: boolean; /**
|
|
2132
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
2133
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
2134
|
+
*/
|
|
2135
|
+
}; /**
|
|
2136
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
2137
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
2138
|
+
*/
|
|
2111
2139
|
alternateColor: {
|
|
2112
2140
|
type: () => NeonFunctionalColor;
|
|
2113
2141
|
default: null;
|
|
@@ -2127,6 +2155,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2127
2155
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
2128
2156
|
default: import("../../../neon").NeonButtonStyle;
|
|
2129
2157
|
};
|
|
2158
|
+
buttonType: {
|
|
2159
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
2160
|
+
default: import("../../../neon").NeonButtonType;
|
|
2161
|
+
};
|
|
2130
2162
|
state: {
|
|
2131
2163
|
type: () => import("../../../neon").NeonState;
|
|
2132
2164
|
default: import("../../../neon").NeonState;
|
|
@@ -2198,11 +2230,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2198
2230
|
color: {
|
|
2199
2231
|
type: () => NeonFunctionalColor;
|
|
2200
2232
|
default: NeonFunctionalColor;
|
|
2201
|
-
};
|
|
2233
|
+
}; /**
|
|
2234
|
+
* The menu highlight color (excludes low-contrast and neutral).
|
|
2235
|
+
*/
|
|
2202
2236
|
inverse: {
|
|
2203
2237
|
type: BooleanConstructor;
|
|
2204
|
-
default: boolean;
|
|
2205
|
-
|
|
2238
|
+
default: boolean; /**
|
|
2239
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
2240
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
2241
|
+
*/
|
|
2242
|
+
}; /**
|
|
2243
|
+
* Whether to enable the priority menu which automatically calculates the available screen space and displays
|
|
2244
|
+
* as many of the menu items as possible, moving the remaining items into the overflow menu.
|
|
2245
|
+
*/
|
|
2206
2246
|
alternateColor: {
|
|
2207
2247
|
type: () => NeonFunctionalColor;
|
|
2208
2248
|
default: null;
|
|
@@ -2222,6 +2262,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2222
2262
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
2223
2263
|
default: import("../../../neon").NeonButtonStyle;
|
|
2224
2264
|
};
|
|
2265
|
+
buttonType: {
|
|
2266
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
2267
|
+
default: import("../../../neon").NeonButtonType;
|
|
2268
|
+
};
|
|
2225
2269
|
state: {
|
|
2226
2270
|
type: () => import("../../../neon").NeonState;
|
|
2227
2271
|
default: import("../../../neon").NeonState;
|
|
@@ -2269,6 +2313,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2269
2313
|
alternateColor: NeonFunctionalColor;
|
|
2270
2314
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
2271
2315
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
2316
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
2272
2317
|
state: import("../../../neon").NeonState;
|
|
2273
2318
|
transparent: boolean;
|
|
2274
2319
|
fullWidth: boolean;
|
|
@@ -355,6 +355,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
355
355
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
356
356
|
default: import("../../../neon").NeonButtonStyle;
|
|
357
357
|
};
|
|
358
|
+
buttonType: {
|
|
359
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
360
|
+
default: import("../../../neon").NeonButtonType;
|
|
361
|
+
};
|
|
358
362
|
state: {
|
|
359
363
|
type: () => import("../../../neon").NeonState;
|
|
360
364
|
default: import("../../../neon").NeonState;
|
|
@@ -450,6 +454,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
450
454
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
451
455
|
default: import("../../../neon").NeonButtonStyle;
|
|
452
456
|
};
|
|
457
|
+
buttonType: {
|
|
458
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
459
|
+
default: import("../../../neon").NeonButtonType;
|
|
460
|
+
};
|
|
453
461
|
state: {
|
|
454
462
|
type: () => import("../../../neon").NeonState;
|
|
455
463
|
default: import("../../../neon").NeonState;
|
|
@@ -497,6 +505,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
497
505
|
alternateColor: NeonFunctionalColor;
|
|
498
506
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
499
507
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
508
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
500
509
|
state: import("../../../neon").NeonState;
|
|
501
510
|
transparent: boolean;
|
|
502
511
|
fullWidth: boolean;
|
|
@@ -1119,6 +1128,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1119
1128
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
1120
1129
|
default: import("../../../neon").NeonButtonStyle;
|
|
1121
1130
|
};
|
|
1131
|
+
buttonType: {
|
|
1132
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
1133
|
+
default: import("../../../neon").NeonButtonType;
|
|
1134
|
+
};
|
|
1122
1135
|
state: {
|
|
1123
1136
|
type: () => import("../../../neon").NeonState;
|
|
1124
1137
|
default: import("../../../neon").NeonState;
|
|
@@ -1214,6 +1227,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1214
1227
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
1215
1228
|
default: import("../../../neon").NeonButtonStyle;
|
|
1216
1229
|
};
|
|
1230
|
+
buttonType: {
|
|
1231
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
1232
|
+
default: import("../../../neon").NeonButtonType;
|
|
1233
|
+
};
|
|
1217
1234
|
state: {
|
|
1218
1235
|
type: () => import("../../../neon").NeonState;
|
|
1219
1236
|
default: import("../../../neon").NeonState;
|
|
@@ -1261,6 +1278,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1261
1278
|
alternateColor: NeonFunctionalColor;
|
|
1262
1279
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
1263
1280
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1281
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
1264
1282
|
state: import("../../../neon").NeonState;
|
|
1265
1283
|
transparent: boolean;
|
|
1266
1284
|
fullWidth: boolean;
|
|
@@ -1996,6 +2014,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1996
2014
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
1997
2015
|
default: import("../../../neon").NeonButtonStyle;
|
|
1998
2016
|
};
|
|
2017
|
+
buttonType: {
|
|
2018
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
2019
|
+
default: import("../../../neon").NeonButtonType;
|
|
2020
|
+
};
|
|
1999
2021
|
state: {
|
|
2000
2022
|
type: () => import("../../../neon").NeonState;
|
|
2001
2023
|
default: import("../../../neon").NeonState;
|
|
@@ -2091,6 +2113,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2091
2113
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
2092
2114
|
default: import("../../../neon").NeonButtonStyle;
|
|
2093
2115
|
};
|
|
2116
|
+
buttonType: {
|
|
2117
|
+
type: () => import("../../../neon").NeonButtonType;
|
|
2118
|
+
default: import("../../../neon").NeonButtonType;
|
|
2119
|
+
};
|
|
2094
2120
|
state: {
|
|
2095
2121
|
type: () => import("../../../neon").NeonState;
|
|
2096
2122
|
default: import("../../../neon").NeonState;
|
|
@@ -2138,6 +2164,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2138
2164
|
alternateColor: NeonFunctionalColor;
|
|
2139
2165
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
2140
2166
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
2167
|
+
buttonType: import("../../../neon").NeonButtonType;
|
|
2141
2168
|
state: import("../../../neon").NeonState;
|
|
2142
2169
|
transparent: boolean;
|
|
2143
2170
|
fullWidth: boolean;
|