@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.
Files changed (53) hide show
  1. package/dist/common/enums/NeonButtonType.cjs.js +2 -0
  2. package/dist/common/enums/NeonButtonType.cjs.js.map +1 -0
  3. package/dist/common/enums/NeonButtonType.es.js +5 -0
  4. package/dist/common/enums/NeonButtonType.es.js.map +1 -0
  5. package/dist/common/enums/NeonResponsive.cjs.js.map +1 -1
  6. package/dist/common/enums/NeonResponsive.es.js.map +1 -1
  7. package/dist/common/utils/NeonResponsiveUtils.cjs.js +1 -1
  8. package/dist/common/utils/NeonResponsiveUtils.cjs.js.map +1 -1
  9. package/dist/common/utils/NeonResponsiveUtils.es.js +4 -4
  10. package/dist/common/utils/NeonResponsiveUtils.es.js.map +1 -1
  11. package/dist/components/navigation/link/NeonLink.cjs.js +1 -1
  12. package/dist/components/navigation/link/NeonLink.cjs.js.map +1 -1
  13. package/dist/components/navigation/link/NeonLink.es.js +1 -1
  14. package/dist/components/navigation/link/NeonLink.es.js.map +1 -1
  15. package/dist/components/navigation/menu/NeonMenu.cjs.js.map +1 -1
  16. package/dist/components/navigation/menu/NeonMenu.es.js.map +1 -1
  17. package/dist/components/navigation/menu/NeonMenu.vue.cjs.js +1 -1
  18. package/dist/components/navigation/menu/NeonMenu.vue.cjs.js.map +1 -1
  19. package/dist/components/navigation/menu/NeonMenu.vue.es.js +30 -28
  20. package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
  21. package/dist/components/user-input/button/NeonButton.cjs.js +1 -1
  22. package/dist/components/user-input/button/NeonButton.cjs.js.map +1 -1
  23. package/dist/components/user-input/button/NeonButton.es.js +18 -12
  24. package/dist/components/user-input/button/NeonButton.es.js.map +1 -1
  25. package/dist/components/user-input/button/NeonButton.vue.cjs.js +1 -1
  26. package/dist/components/user-input/button/NeonButton.vue.cjs.js.map +1 -1
  27. package/dist/components/user-input/button/NeonButton.vue.es.js +9 -8
  28. package/dist/components/user-input/button/NeonButton.vue.es.js.map +1 -1
  29. package/dist/neon.cjs.js +1 -1
  30. package/dist/neon.es.js +101 -99
  31. package/dist/neon.es.js.map +1 -1
  32. package/dist/src/common/enums/NeonButtonType.d.ts +5 -0
  33. package/dist/src/common/enums/NeonResponsive.d.ts +4 -4
  34. package/dist/src/components/feedback/dialog/NeonDialog.d.ts +20 -6
  35. package/dist/src/components/feedback/note/NeonNote.d.ts +9 -0
  36. package/dist/src/components/layout/card-list/NeonCardList.d.ts +21 -16
  37. package/dist/src/components/layout/modal/NeonModal.d.ts +9 -0
  38. package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +69 -30
  39. package/dist/src/components/navigation/menu/NeonMenu.d.ts +145 -100
  40. package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +27 -0
  41. package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +27 -10
  42. package/dist/src/components/presentation/image-carousel/NeonImageCarousel.d.ts +31 -6
  43. package/dist/src/components/user-input/button/NeonButton.d.ts +23 -6
  44. package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +26 -0
  45. package/dist/src/components/user-input/file/NeonFile.d.ts +9 -0
  46. package/dist/src/components/user-input/number/NeonNumber.d.ts +14 -21
  47. package/dist/src/components/user-input/search/NeonSearch.d.ts +63 -6
  48. package/dist/src/components/user-input/select/NeonSelect.d.ts +135 -72
  49. package/dist/src/neon.d.ts +1 -0
  50. package/package.json +1 -1
  51. package/src/sass/components/_menu.scss +83 -32
  52. package/src/sass/includes/_responsive.scss +4 -4
  53. package/src/sass/variables.scss +6 -0
@@ -172,6 +172,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
172
172
  type: () => import("../../../neon").NeonButtonStyle;
173
173
  default: import("../../../neon").NeonButtonStyle;
174
174
  };
175
+ buttonType: {
176
+ type: () => import("../../../neon").NeonButtonType;
177
+ default: import("../../../neon").NeonButtonType;
178
+ };
175
179
  state: {
176
180
  type: () => import("../../../neon").NeonState;
177
181
  default: import("../../../neon").NeonState;
@@ -267,6 +271,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
267
271
  type: () => import("../../../neon").NeonButtonStyle;
268
272
  default: import("../../../neon").NeonButtonStyle;
269
273
  };
274
+ buttonType: {
275
+ type: () => import("../../../neon").NeonButtonType;
276
+ default: import("../../../neon").NeonButtonType;
277
+ };
270
278
  state: {
271
279
  type: () => import("../../../neon").NeonState;
272
280
  default: import("../../../neon").NeonState;
@@ -314,6 +322,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
314
322
  alternateColor: NeonFunctionalColor;
315
323
  iconPosition: import("../../../neon").NeonHorizontalPosition;
316
324
  buttonStyle: import("../../../neon").NeonButtonStyle;
325
+ buttonType: import("../../../neon").NeonButtonType;
317
326
  state: import("../../../neon").NeonState;
318
327
  transparent: boolean;
319
328
  fullWidth: boolean;
@@ -359,9 +368,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
359
368
  expanded: boolean;
360
369
  color: NeonFunctionalColor;
361
370
  inverse: boolean;
362
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
363
- * Alternate confirm button color for creating a gradient button. NOTE: can also be the same color as 'color'.
364
- */
371
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
365
372
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
366
373
  name: {
367
374
  type: StringConstructor;
@@ -662,6 +669,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
662
669
  type: () => import("../../../neon").NeonButtonStyle;
663
670
  default: import("../../../neon").NeonButtonStyle;
664
671
  };
672
+ buttonType: {
673
+ type: () => import("../../../neon").NeonButtonType;
674
+ default: import("../../../neon").NeonButtonType;
675
+ };
665
676
  state: {
666
677
  type: () => import("../../../neon").NeonState;
667
678
  default: import("../../../neon").NeonState;
@@ -757,6 +768,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
757
768
  type: () => import("../../../neon").NeonButtonStyle;
758
769
  default: import("../../../neon").NeonButtonStyle;
759
770
  };
771
+ buttonType: {
772
+ type: () => import("../../../neon").NeonButtonType;
773
+ default: import("../../../neon").NeonButtonType;
774
+ };
760
775
  state: {
761
776
  type: () => import("../../../neon").NeonState;
762
777
  default: import("../../../neon").NeonState;
@@ -804,6 +819,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
804
819
  alternateColor: NeonFunctionalColor;
805
820
  iconPosition: import("../../../neon").NeonHorizontalPosition;
806
821
  buttonStyle: import("../../../neon").NeonButtonStyle;
822
+ buttonType: import("../../../neon").NeonButtonType;
807
823
  state: import("../../../neon").NeonState;
808
824
  transparent: boolean;
809
825
  fullWidth: boolean;
@@ -849,9 +865,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
849
865
  expanded: boolean;
850
866
  color: NeonFunctionalColor;
851
867
  inverse: boolean;
852
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
853
- * Alternate confirm button color for creating a gradient button. NOTE: can also be the same color as 'color'.
854
- */
868
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
855
869
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
856
870
  name: {
857
871
  type: StringConstructor;
@@ -128,6 +128,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
128
128
  type: () => import("../../../neon").NeonButtonStyle;
129
129
  default: import("../../../neon").NeonButtonStyle;
130
130
  };
131
+ buttonType: {
132
+ type: () => import("../../../neon").NeonButtonType;
133
+ default: import("../../../neon").NeonButtonType;
134
+ };
131
135
  state: {
132
136
  type: () => import("../../../neon").NeonState;
133
137
  default: import("../../../neon").NeonState;
@@ -223,6 +227,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
223
227
  type: () => import("../../../neon").NeonButtonStyle;
224
228
  default: import("../../../neon").NeonButtonStyle;
225
229
  };
230
+ buttonType: {
231
+ type: () => import("../../../neon").NeonButtonType;
232
+ default: import("../../../neon").NeonButtonType;
233
+ };
226
234
  state: {
227
235
  type: () => import("../../../neon").NeonState;
228
236
  default: import("../../../neon").NeonState;
@@ -270,6 +278,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
270
278
  alternateColor: NeonFunctionalColor;
271
279
  iconPosition: import("../../../neon").NeonHorizontalPosition;
272
280
  buttonStyle: import("../../../neon").NeonButtonStyle;
281
+ buttonType: import("../../../neon").NeonButtonType;
273
282
  state: import("../../../neon").NeonState;
274
283
  transparent: boolean;
275
284
  fullWidth: boolean;
@@ -149,7 +149,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
149
149
  inverse: {
150
150
  type: BooleanConstructor;
151
151
  default: boolean;
152
- };
152
+ }; /**
153
+ * Specify cards are clickable. This will return click events when cards are clicked on. NOTE: use the href in the
154
+ * card model instead of clickable=true if cards are links.
155
+ */
153
156
  alternateColor: {
154
157
  type: () => NeonFunctionalColor;
155
158
  default: null;
@@ -162,18 +165,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
162
165
  type: StringConstructor;
163
166
  };
164
167
  iconPosition: {
165
- type: () => import("../../../neon").NeonHorizontalPosition; /**
166
- * override the 'End of results' text.
167
- */
168
+ type: () => import("../../../neon").NeonHorizontalPosition;
168
169
  default: import("../../../neon").NeonHorizontalPosition;
169
170
  };
170
171
  buttonStyle: {
171
- type: () => NeonButtonStyle; /**
172
- * Emitted when the 'Show more' button is clicked.
173
- * @type {void}
174
- */
172
+ type: () => NeonButtonStyle;
175
173
  default: NeonButtonStyle;
176
174
  };
175
+ buttonType: {
176
+ type: () => import("../../../neon").NeonButtonType;
177
+ default: import("../../../neon").NeonButtonType;
178
+ };
177
179
  state: {
178
180
  type: () => import("../../../neon").NeonState;
179
181
  default: import("../../../neon").NeonState;
@@ -249,7 +251,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
249
251
  inverse: {
250
252
  type: BooleanConstructor;
251
253
  default: boolean;
252
- };
254
+ }; /**
255
+ * Specify cards are clickable. This will return click events when cards are clicked on. NOTE: use the href in the
256
+ * card model instead of clickable=true if cards are links.
257
+ */
253
258
  alternateColor: {
254
259
  type: () => NeonFunctionalColor;
255
260
  default: null;
@@ -262,18 +267,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
262
267
  type: StringConstructor;
263
268
  };
264
269
  iconPosition: {
265
- type: () => import("../../../neon").NeonHorizontalPosition; /**
266
- * override the 'End of results' text.
267
- */
270
+ type: () => import("../../../neon").NeonHorizontalPosition;
268
271
  default: import("../../../neon").NeonHorizontalPosition;
269
272
  };
270
273
  buttonStyle: {
271
- type: () => NeonButtonStyle; /**
272
- * Emitted when the 'Show more' button is clicked.
273
- * @type {void}
274
- */
274
+ type: () => NeonButtonStyle;
275
275
  default: NeonButtonStyle;
276
276
  };
277
+ buttonType: {
278
+ type: () => import("../../../neon").NeonButtonType;
279
+ default: import("../../../neon").NeonButtonType;
280
+ };
277
281
  state: {
278
282
  type: () => import("../../../neon").NeonState;
279
283
  default: import("../../../neon").NeonState;
@@ -321,6 +325,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
321
325
  alternateColor: NeonFunctionalColor;
322
326
  iconPosition: import("../../../neon").NeonHorizontalPosition;
323
327
  buttonStyle: NeonButtonStyle;
328
+ buttonType: import("../../../neon").NeonButtonType;
324
329
  state: import("../../../neon").NeonState;
325
330
  transparent: boolean;
326
331
  fullWidth: boolean;
@@ -109,6 +109,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
109
109
  type: () => import("../../../neon").NeonButtonStyle;
110
110
  default: import("../../../neon").NeonButtonStyle;
111
111
  };
112
+ buttonType: {
113
+ type: () => import("../../../neon").NeonButtonType;
114
+ default: import("../../../neon").NeonButtonType;
115
+ };
112
116
  state: {
113
117
  type: () => import("../../../neon").NeonState;
114
118
  default: import("../../../neon").NeonState;
@@ -204,6 +208,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
204
208
  type: () => import("../../../neon").NeonButtonStyle;
205
209
  default: import("../../../neon").NeonButtonStyle;
206
210
  };
211
+ buttonType: {
212
+ type: () => import("../../../neon").NeonButtonType;
213
+ default: import("../../../neon").NeonButtonType;
214
+ };
207
215
  state: {
208
216
  type: () => import("../../../neon").NeonState;
209
217
  default: import("../../../neon").NeonState;
@@ -251,6 +259,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
251
259
  alternateColor: import("../../../neon").NeonFunctionalColor;
252
260
  iconPosition: import("../../../neon").NeonHorizontalPosition;
253
261
  buttonStyle: import("../../../neon").NeonButtonStyle;
262
+ buttonType: import("../../../neon").NeonButtonType;
254
263
  state: import("../../../neon").NeonState;
255
264
  transparent: boolean;
256
265
  fullWidth: boolean;
@@ -331,16 +331,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
331
331
  };
332
332
  color: {
333
333
  type: () => NeonFunctionalColor;
334
- default: NeonFunctionalColor;
335
- };
334
+ default: NeonFunctionalColor; /**
335
+ * The dropdown color.
336
+ */
337
+ }; /**
338
+ * The dropdown color.
339
+ */
336
340
  inverse: {
337
341
  type: BooleanConstructor;
338
342
  default: boolean;
339
343
  };
340
344
  alternateColor: {
341
- type: () => NeonFunctionalColor; /**
342
- * Instead of opening on click (default), open on hover.
343
- */
345
+ type: () => NeonFunctionalColor;
344
346
  default: null;
345
347
  };
346
348
  icon: {
@@ -358,6 +360,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
358
360
  type: () => import("../../../neon").NeonButtonStyle;
359
361
  default: import("../../../neon").NeonButtonStyle;
360
362
  };
363
+ buttonType: {
364
+ type: () => import("../../../neon").NeonButtonType;
365
+ default: import("../../../neon").NeonButtonType;
366
+ };
361
367
  state: {
362
368
  type: () => import("../../../neon").NeonState;
363
369
  default: import("../../../neon").NeonState;
@@ -428,16 +434,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
428
434
  };
429
435
  color: {
430
436
  type: () => NeonFunctionalColor;
431
- default: NeonFunctionalColor;
432
- };
437
+ default: NeonFunctionalColor; /**
438
+ * The dropdown color.
439
+ */
440
+ }; /**
441
+ * The dropdown color.
442
+ */
433
443
  inverse: {
434
444
  type: BooleanConstructor;
435
445
  default: boolean;
436
446
  };
437
447
  alternateColor: {
438
- type: () => NeonFunctionalColor; /**
439
- * Instead of opening on click (default), open on hover.
440
- */
448
+ type: () => NeonFunctionalColor;
441
449
  default: null;
442
450
  };
443
451
  icon: {
@@ -455,6 +463,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
455
463
  type: () => import("../../../neon").NeonButtonStyle;
456
464
  default: import("../../../neon").NeonButtonStyle;
457
465
  };
466
+ buttonType: {
467
+ type: () => import("../../../neon").NeonButtonType;
468
+ default: import("../../../neon").NeonButtonType;
469
+ };
458
470
  state: {
459
471
  type: () => import("../../../neon").NeonState;
460
472
  default: import("../../../neon").NeonState;
@@ -502,6 +514,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
502
514
  alternateColor: NeonFunctionalColor;
503
515
  iconPosition: import("../../../neon").NeonHorizontalPosition;
504
516
  buttonStyle: import("../../../neon").NeonButtonStyle;
517
+ buttonType: import("../../../neon").NeonButtonType;
505
518
  state: import("../../../neon").NeonState;
506
519
  transparent: boolean;
507
520
  fullWidth: boolean;
@@ -1125,16 +1138,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1125
1138
  };
1126
1139
  color: {
1127
1140
  type: () => NeonFunctionalColor;
1128
- default: NeonFunctionalColor;
1129
- };
1141
+ default: NeonFunctionalColor; /**
1142
+ * The dropdown color.
1143
+ */
1144
+ }; /**
1145
+ * The dropdown color.
1146
+ */
1130
1147
  inverse: {
1131
1148
  type: BooleanConstructor;
1132
1149
  default: boolean;
1133
1150
  };
1134
1151
  alternateColor: {
1135
- type: () => NeonFunctionalColor; /**
1136
- * Instead of opening on click (default), open on hover.
1137
- */
1152
+ type: () => NeonFunctionalColor;
1138
1153
  default: null;
1139
1154
  };
1140
1155
  icon: {
@@ -1152,6 +1167,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1152
1167
  type: () => import("../../../neon").NeonButtonStyle;
1153
1168
  default: import("../../../neon").NeonButtonStyle;
1154
1169
  };
1170
+ buttonType: {
1171
+ type: () => import("../../../neon").NeonButtonType;
1172
+ default: import("../../../neon").NeonButtonType;
1173
+ };
1155
1174
  state: {
1156
1175
  type: () => import("../../../neon").NeonState;
1157
1176
  default: import("../../../neon").NeonState;
@@ -1222,16 +1241,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1222
1241
  };
1223
1242
  color: {
1224
1243
  type: () => NeonFunctionalColor;
1225
- default: NeonFunctionalColor;
1226
- };
1244
+ default: NeonFunctionalColor; /**
1245
+ * The dropdown color.
1246
+ */
1247
+ }; /**
1248
+ * The dropdown color.
1249
+ */
1227
1250
  inverse: {
1228
1251
  type: BooleanConstructor;
1229
1252
  default: boolean;
1230
1253
  };
1231
1254
  alternateColor: {
1232
- type: () => NeonFunctionalColor; /**
1233
- * Instead of opening on click (default), open on hover.
1234
- */
1255
+ type: () => NeonFunctionalColor;
1235
1256
  default: null;
1236
1257
  };
1237
1258
  icon: {
@@ -1249,6 +1270,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1249
1270
  type: () => import("../../../neon").NeonButtonStyle;
1250
1271
  default: import("../../../neon").NeonButtonStyle;
1251
1272
  };
1273
+ buttonType: {
1274
+ type: () => import("../../../neon").NeonButtonType;
1275
+ default: import("../../../neon").NeonButtonType;
1276
+ };
1252
1277
  state: {
1253
1278
  type: () => import("../../../neon").NeonState;
1254
1279
  default: import("../../../neon").NeonState;
@@ -1296,6 +1321,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1296
1321
  alternateColor: NeonFunctionalColor;
1297
1322
  iconPosition: import("../../../neon").NeonHorizontalPosition;
1298
1323
  buttonStyle: import("../../../neon").NeonButtonStyle;
1324
+ buttonType: import("../../../neon").NeonButtonType;
1299
1325
  state: import("../../../neon").NeonState;
1300
1326
  transparent: boolean;
1301
1327
  fullWidth: boolean;
@@ -2057,16 +2083,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2057
2083
  };
2058
2084
  color: {
2059
2085
  type: () => NeonFunctionalColor;
2060
- default: NeonFunctionalColor;
2061
- };
2086
+ default: NeonFunctionalColor; /**
2087
+ * The dropdown color.
2088
+ */
2089
+ }; /**
2090
+ * The dropdown color.
2091
+ */
2062
2092
  inverse: {
2063
2093
  type: BooleanConstructor;
2064
2094
  default: boolean;
2065
2095
  };
2066
2096
  alternateColor: {
2067
- type: () => NeonFunctionalColor; /**
2068
- * Instead of opening on click (default), open on hover.
2069
- */
2097
+ type: () => NeonFunctionalColor;
2070
2098
  default: null;
2071
2099
  };
2072
2100
  icon: {
@@ -2084,6 +2112,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2084
2112
  type: () => import("../../../neon").NeonButtonStyle;
2085
2113
  default: import("../../../neon").NeonButtonStyle;
2086
2114
  };
2115
+ buttonType: {
2116
+ type: () => import("../../../neon").NeonButtonType;
2117
+ default: import("../../../neon").NeonButtonType;
2118
+ };
2087
2119
  state: {
2088
2120
  type: () => import("../../../neon").NeonState;
2089
2121
  default: import("../../../neon").NeonState;
@@ -2154,16 +2186,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2154
2186
  };
2155
2187
  color: {
2156
2188
  type: () => NeonFunctionalColor;
2157
- default: NeonFunctionalColor;
2158
- };
2189
+ default: NeonFunctionalColor; /**
2190
+ * The dropdown color.
2191
+ */
2192
+ }; /**
2193
+ * The dropdown color.
2194
+ */
2159
2195
  inverse: {
2160
2196
  type: BooleanConstructor;
2161
2197
  default: boolean;
2162
2198
  };
2163
2199
  alternateColor: {
2164
- type: () => NeonFunctionalColor; /**
2165
- * Instead of opening on click (default), open on hover.
2166
- */
2200
+ type: () => NeonFunctionalColor;
2167
2201
  default: null;
2168
2202
  };
2169
2203
  icon: {
@@ -2181,6 +2215,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2181
2215
  type: () => import("../../../neon").NeonButtonStyle;
2182
2216
  default: import("../../../neon").NeonButtonStyle;
2183
2217
  };
2218
+ buttonType: {
2219
+ type: () => import("../../../neon").NeonButtonType;
2220
+ default: import("../../../neon").NeonButtonType;
2221
+ };
2184
2222
  state: {
2185
2223
  type: () => import("../../../neon").NeonState;
2186
2224
  default: import("../../../neon").NeonState;
@@ -2228,6 +2266,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2228
2266
  alternateColor: NeonFunctionalColor;
2229
2267
  iconPosition: import("../../../neon").NeonHorizontalPosition;
2230
2268
  buttonStyle: import("../../../neon").NeonButtonStyle;
2269
+ buttonType: import("../../../neon").NeonButtonType;
2231
2270
  state: import("../../../neon").NeonState;
2232
2271
  transparent: boolean;
2233
2272
  fullWidth: boolean;