@aotearoan/neon 28.0.1 → 28.0.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/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 +29 -27
- 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 +49 -48
- package/dist/components/navigation/dropdown-menu/NeonDropdownMenu.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +212 -144
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +1 -0
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +1 -0
- package/dist/src/model/presentation/dropdown/NeonDropdownMenuItem.d.ts +4 -1
- package/package.json +1 -1
- package/src/sass/components/_button.scss +3 -0
- package/src/sass/components/_dropdown-menu.scss +10 -5
- package/src/sass/components/_dropdown.scss +1 -1
- package/src/sass/variables-global.scss +5 -0
|
@@ -2,6 +2,7 @@ import type { NeonDropdownMenuItem } from '@/model/presentation/dropdown/NeonDro
|
|
|
2
2
|
import { NeonSize } from '@/model/common/size/NeonSize';
|
|
3
3
|
import { NeonFunctionalColor } from '@/model/common/color/NeonFunctionalColor';
|
|
4
4
|
import { NeonDropdownPlacement } from '@/model/presentation/dropdown/NeonDropdownPlacement';
|
|
5
|
+
import { NeonHorizontalPosition } from '@/model/common/position/NeonHorizontalPosition';
|
|
5
6
|
/**
|
|
6
7
|
* <p>A dropdown menu consisting of a button to open the menu and a list of menu items. Clicking on a menu item will
|
|
7
8
|
* result in navigating to the provided URL or notifying the parent component via the @click event.</p>
|
|
@@ -66,7 +67,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
67
|
};
|
|
67
68
|
image: {
|
|
68
69
|
type: StringConstructor;
|
|
69
|
-
default: null;
|
|
70
|
+
default: null; /**
|
|
71
|
+
* Instead of opening on click (default), open on hover.
|
|
72
|
+
*/
|
|
70
73
|
};
|
|
71
74
|
imageAlt: {
|
|
72
75
|
type: StringConstructor;
|
|
@@ -162,7 +165,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
162
165
|
default: null;
|
|
163
166
|
};
|
|
164
167
|
image: {
|
|
165
|
-
type: StringConstructor;
|
|
168
|
+
type: StringConstructor; /**
|
|
169
|
+
* A list of menu items to render in the dropdown menu.
|
|
170
|
+
*/
|
|
166
171
|
default: null;
|
|
167
172
|
};
|
|
168
173
|
icon: {
|
|
@@ -185,10 +190,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
185
190
|
type: () => NeonFunctionalColor;
|
|
186
191
|
default: null;
|
|
187
192
|
};
|
|
188
|
-
/**
|
|
189
|
-
* emitted when the user clicks on a menu item.
|
|
190
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
191
|
-
*/
|
|
192
193
|
editable: {
|
|
193
194
|
type: BooleanConstructor;
|
|
194
195
|
default: boolean;
|
|
@@ -222,7 +223,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
222
223
|
default: null;
|
|
223
224
|
};
|
|
224
225
|
image: {
|
|
225
|
-
type: StringConstructor;
|
|
226
|
+
type: StringConstructor; /**
|
|
227
|
+
* A list of menu items to render in the dropdown menu.
|
|
228
|
+
*/
|
|
226
229
|
default: null;
|
|
227
230
|
};
|
|
228
231
|
icon: {
|
|
@@ -245,10 +248,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
245
248
|
type: () => NeonFunctionalColor;
|
|
246
249
|
default: null;
|
|
247
250
|
};
|
|
248
|
-
/**
|
|
249
|
-
* emitted when the user clicks on a menu item.
|
|
250
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
251
|
-
*/
|
|
252
251
|
editable: {
|
|
253
252
|
type: BooleanConstructor;
|
|
254
253
|
default: boolean;
|
|
@@ -317,8 +316,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
317
316
|
};
|
|
318
317
|
state: {
|
|
319
318
|
type: () => import("../../../neon").NeonState;
|
|
320
|
-
default: import("../../../neon").NeonState;
|
|
321
|
-
|
|
319
|
+
default: import("../../../neon").NeonState; /**
|
|
320
|
+
* Placement of the dropdown contents.
|
|
321
|
+
*/
|
|
322
|
+
}; /**
|
|
323
|
+
* Placement of the dropdown contents.
|
|
324
|
+
*/
|
|
322
325
|
color: {
|
|
323
326
|
type: () => NeonFunctionalColor;
|
|
324
327
|
default: NeonFunctionalColor;
|
|
@@ -357,9 +360,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
357
360
|
type: () => import("../../../neon").NeonInputType;
|
|
358
361
|
default: import("../../../neon").NeonInputType;
|
|
359
362
|
};
|
|
360
|
-
/**
|
|
361
|
-
* A list of menu items to render in the dropdown menu.
|
|
362
|
-
*/
|
|
363
363
|
placeholder: {
|
|
364
364
|
type: StringConstructor;
|
|
365
365
|
default: null;
|
|
@@ -380,6 +380,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
380
380
|
type: StringConstructor;
|
|
381
381
|
default: string;
|
|
382
382
|
};
|
|
383
|
+
/**
|
|
384
|
+
* emitted when the user clicks on a menu item.
|
|
385
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
386
|
+
*/
|
|
383
387
|
state: {
|
|
384
388
|
type: () => import("../../../neon").NeonState;
|
|
385
389
|
default: import("../../../neon").NeonState;
|
|
@@ -546,9 +550,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
546
550
|
type: () => import("../../../neon").NeonInputType;
|
|
547
551
|
default: import("../../../neon").NeonInputType;
|
|
548
552
|
};
|
|
549
|
-
/**
|
|
550
|
-
* A list of menu items to render in the dropdown menu.
|
|
551
|
-
*/
|
|
552
553
|
placeholder: {
|
|
553
554
|
type: StringConstructor;
|
|
554
555
|
default: null;
|
|
@@ -569,6 +570,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
569
570
|
type: StringConstructor;
|
|
570
571
|
default: string;
|
|
571
572
|
};
|
|
573
|
+
/**
|
|
574
|
+
* emitted when the user clicks on a menu item.
|
|
575
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
576
|
+
*/
|
|
572
577
|
state: {
|
|
573
578
|
type: () => import("../../../neon").NeonState;
|
|
574
579
|
default: import("../../../neon").NeonState;
|
|
@@ -674,9 +679,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
674
679
|
type: () => import("../../../neon").NeonInputType;
|
|
675
680
|
default: import("../../../neon").NeonInputType;
|
|
676
681
|
};
|
|
677
|
-
/**
|
|
678
|
-
* A list of menu items to render in the dropdown menu.
|
|
679
|
-
*/
|
|
680
682
|
placeholder: {
|
|
681
683
|
type: StringConstructor;
|
|
682
684
|
default: null;
|
|
@@ -697,6 +699,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
697
699
|
type: StringConstructor;
|
|
698
700
|
default: string;
|
|
699
701
|
};
|
|
702
|
+
/**
|
|
703
|
+
* emitted when the user clicks on a menu item.
|
|
704
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
705
|
+
*/
|
|
700
706
|
state: {
|
|
701
707
|
type: () => import("../../../neon").NeonState;
|
|
702
708
|
default: import("../../../neon").NeonState;
|
|
@@ -863,9 +869,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
863
869
|
type: () => import("../../../neon").NeonInputType;
|
|
864
870
|
default: import("../../../neon").NeonInputType;
|
|
865
871
|
};
|
|
866
|
-
/**
|
|
867
|
-
* A list of menu items to render in the dropdown menu.
|
|
868
|
-
*/
|
|
869
872
|
placeholder: {
|
|
870
873
|
type: StringConstructor;
|
|
871
874
|
default: null;
|
|
@@ -886,6 +889,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
886
889
|
type: StringConstructor;
|
|
887
890
|
default: string;
|
|
888
891
|
};
|
|
892
|
+
/**
|
|
893
|
+
* emitted when the user clicks on a menu item.
|
|
894
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
895
|
+
*/
|
|
889
896
|
state: {
|
|
890
897
|
type: () => import("../../../neon").NeonState;
|
|
891
898
|
default: import("../../../neon").NeonState;
|
|
@@ -1036,8 +1043,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1036
1043
|
};
|
|
1037
1044
|
state: {
|
|
1038
1045
|
type: () => import("../../../neon").NeonState;
|
|
1039
|
-
default: import("../../../neon").NeonState;
|
|
1040
|
-
|
|
1046
|
+
default: import("../../../neon").NeonState; /**
|
|
1047
|
+
* Placement of the dropdown contents.
|
|
1048
|
+
*/
|
|
1049
|
+
}; /**
|
|
1050
|
+
* Placement of the dropdown contents.
|
|
1051
|
+
*/
|
|
1041
1052
|
color: {
|
|
1042
1053
|
type: () => NeonFunctionalColor;
|
|
1043
1054
|
default: NeonFunctionalColor;
|
|
@@ -1102,7 +1113,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1102
1113
|
};
|
|
1103
1114
|
alternateColor: {
|
|
1104
1115
|
type: () => NeonFunctionalColor;
|
|
1105
|
-
default: null;
|
|
1116
|
+
default: null; /**
|
|
1117
|
+
* Instead of opening on click (default), open on hover.
|
|
1118
|
+
*/
|
|
1106
1119
|
};
|
|
1107
1120
|
icon: {
|
|
1108
1121
|
type: StringConstructor;
|
|
@@ -1112,8 +1125,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1112
1125
|
type: StringConstructor;
|
|
1113
1126
|
};
|
|
1114
1127
|
iconPosition: {
|
|
1115
|
-
type: () =>
|
|
1116
|
-
default:
|
|
1128
|
+
type: () => NeonHorizontalPosition;
|
|
1129
|
+
default: NeonHorizontalPosition;
|
|
1117
1130
|
};
|
|
1118
1131
|
buttonStyle: {
|
|
1119
1132
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -1201,7 +1214,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1201
1214
|
};
|
|
1202
1215
|
alternateColor: {
|
|
1203
1216
|
type: () => NeonFunctionalColor;
|
|
1204
|
-
default: null;
|
|
1217
|
+
default: null; /**
|
|
1218
|
+
* Instead of opening on click (default), open on hover.
|
|
1219
|
+
*/
|
|
1205
1220
|
};
|
|
1206
1221
|
icon: {
|
|
1207
1222
|
type: StringConstructor;
|
|
@@ -1211,8 +1226,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1211
1226
|
type: StringConstructor;
|
|
1212
1227
|
};
|
|
1213
1228
|
iconPosition: {
|
|
1214
|
-
type: () =>
|
|
1215
|
-
default:
|
|
1229
|
+
type: () => NeonHorizontalPosition;
|
|
1230
|
+
default: NeonHorizontalPosition;
|
|
1216
1231
|
};
|
|
1217
1232
|
buttonStyle: {
|
|
1218
1233
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -1266,7 +1281,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1266
1281
|
size: import("../../../neon").NeonButtonSize;
|
|
1267
1282
|
outline: boolean;
|
|
1268
1283
|
alternateColor: NeonFunctionalColor;
|
|
1269
|
-
iconPosition:
|
|
1284
|
+
iconPosition: NeonHorizontalPosition;
|
|
1270
1285
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1271
1286
|
buttonType: import("../../../neon").NeonButtonType;
|
|
1272
1287
|
state: import("../../../neon").NeonState;
|
|
@@ -1489,9 +1504,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1489
1504
|
type: () => import("../../../neon").NeonInputType;
|
|
1490
1505
|
default: import("../../../neon").NeonInputType;
|
|
1491
1506
|
};
|
|
1492
|
-
/**
|
|
1493
|
-
* A list of menu items to render in the dropdown menu.
|
|
1494
|
-
*/
|
|
1495
1507
|
placeholder: {
|
|
1496
1508
|
type: StringConstructor;
|
|
1497
1509
|
default: null;
|
|
@@ -1512,6 +1524,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1512
1524
|
type: StringConstructor;
|
|
1513
1525
|
default: string;
|
|
1514
1526
|
};
|
|
1527
|
+
/**
|
|
1528
|
+
* emitted when the user clicks on a menu item.
|
|
1529
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
1530
|
+
*/
|
|
1515
1531
|
state: {
|
|
1516
1532
|
type: () => import("../../../neon").NeonState;
|
|
1517
1533
|
default: import("../../../neon").NeonState;
|
|
@@ -1591,9 +1607,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1591
1607
|
type: () => import("../../../neon").NeonInputType;
|
|
1592
1608
|
default: import("../../../neon").NeonInputType;
|
|
1593
1609
|
};
|
|
1594
|
-
/**
|
|
1595
|
-
* A list of menu items to render in the dropdown menu.
|
|
1596
|
-
*/
|
|
1597
1610
|
placeholder: {
|
|
1598
1611
|
type: StringConstructor;
|
|
1599
1612
|
default: null;
|
|
@@ -1614,6 +1627,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1614
1627
|
type: StringConstructor;
|
|
1615
1628
|
default: string;
|
|
1616
1629
|
};
|
|
1630
|
+
/**
|
|
1631
|
+
* emitted when the user clicks on a menu item.
|
|
1632
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
1633
|
+
*/
|
|
1617
1634
|
state: {
|
|
1618
1635
|
type: () => import("../../../neon").NeonState;
|
|
1619
1636
|
default: import("../../../neon").NeonState;
|
|
@@ -1919,7 +1936,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1919
1936
|
};
|
|
1920
1937
|
alternateColor: {
|
|
1921
1938
|
type: () => NeonFunctionalColor;
|
|
1922
|
-
default: null;
|
|
1939
|
+
default: null; /**
|
|
1940
|
+
* Instead of opening on click (default), open on hover.
|
|
1941
|
+
*/
|
|
1923
1942
|
};
|
|
1924
1943
|
icon: {
|
|
1925
1944
|
type: StringConstructor;
|
|
@@ -1929,8 +1948,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1929
1948
|
type: StringConstructor;
|
|
1930
1949
|
};
|
|
1931
1950
|
iconPosition: {
|
|
1932
|
-
type: () =>
|
|
1933
|
-
default:
|
|
1951
|
+
type: () => NeonHorizontalPosition;
|
|
1952
|
+
default: NeonHorizontalPosition;
|
|
1934
1953
|
};
|
|
1935
1954
|
buttonStyle: {
|
|
1936
1955
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -2018,7 +2037,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2018
2037
|
};
|
|
2019
2038
|
alternateColor: {
|
|
2020
2039
|
type: () => NeonFunctionalColor;
|
|
2021
|
-
default: null;
|
|
2040
|
+
default: null; /**
|
|
2041
|
+
* Instead of opening on click (default), open on hover.
|
|
2042
|
+
*/
|
|
2022
2043
|
};
|
|
2023
2044
|
icon: {
|
|
2024
2045
|
type: StringConstructor;
|
|
@@ -2028,8 +2049,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2028
2049
|
type: StringConstructor;
|
|
2029
2050
|
};
|
|
2030
2051
|
iconPosition: {
|
|
2031
|
-
type: () =>
|
|
2032
|
-
default:
|
|
2052
|
+
type: () => NeonHorizontalPosition;
|
|
2053
|
+
default: NeonHorizontalPosition;
|
|
2033
2054
|
};
|
|
2034
2055
|
buttonStyle: {
|
|
2035
2056
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -2083,7 +2104,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2083
2104
|
size: import("../../../neon").NeonButtonSize;
|
|
2084
2105
|
outline: boolean;
|
|
2085
2106
|
alternateColor: NeonFunctionalColor;
|
|
2086
|
-
iconPosition:
|
|
2107
|
+
iconPosition: NeonHorizontalPosition;
|
|
2087
2108
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
2088
2109
|
buttonType: import("../../../neon").NeonButtonType;
|
|
2089
2110
|
state: import("../../../neon").NeonState;
|
|
@@ -2354,7 +2375,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2354
2375
|
};
|
|
2355
2376
|
image: {
|
|
2356
2377
|
type: StringConstructor;
|
|
2357
|
-
default: null;
|
|
2378
|
+
default: null; /**
|
|
2379
|
+
* Instead of opening on click (default), open on hover.
|
|
2380
|
+
*/
|
|
2358
2381
|
};
|
|
2359
2382
|
imageAlt: {
|
|
2360
2383
|
type: StringConstructor;
|
|
@@ -2457,7 +2480,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2457
2480
|
};
|
|
2458
2481
|
image: {
|
|
2459
2482
|
type: StringConstructor;
|
|
2460
|
-
default: null;
|
|
2483
|
+
default: null; /**
|
|
2484
|
+
* Instead of opening on click (default), open on hover.
|
|
2485
|
+
*/
|
|
2461
2486
|
};
|
|
2462
2487
|
imageAlt: {
|
|
2463
2488
|
type: StringConstructor;
|
|
@@ -2553,7 +2578,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2553
2578
|
default: null;
|
|
2554
2579
|
};
|
|
2555
2580
|
image: {
|
|
2556
|
-
type: StringConstructor;
|
|
2581
|
+
type: StringConstructor; /**
|
|
2582
|
+
* A list of menu items to render in the dropdown menu.
|
|
2583
|
+
*/
|
|
2557
2584
|
default: null;
|
|
2558
2585
|
};
|
|
2559
2586
|
icon: {
|
|
@@ -2576,10 +2603,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2576
2603
|
type: () => NeonFunctionalColor;
|
|
2577
2604
|
default: null;
|
|
2578
2605
|
};
|
|
2579
|
-
/**
|
|
2580
|
-
* emitted when the user clicks on a menu item.
|
|
2581
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
2582
|
-
*/
|
|
2583
2606
|
editable: {
|
|
2584
2607
|
type: BooleanConstructor;
|
|
2585
2608
|
default: boolean;
|
|
@@ -2613,7 +2636,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2613
2636
|
default: null;
|
|
2614
2637
|
};
|
|
2615
2638
|
image: {
|
|
2616
|
-
type: StringConstructor;
|
|
2639
|
+
type: StringConstructor; /**
|
|
2640
|
+
* A list of menu items to render in the dropdown menu.
|
|
2641
|
+
*/
|
|
2617
2642
|
default: null;
|
|
2618
2643
|
};
|
|
2619
2644
|
icon: {
|
|
@@ -2636,10 +2661,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2636
2661
|
type: () => NeonFunctionalColor;
|
|
2637
2662
|
default: null;
|
|
2638
2663
|
};
|
|
2639
|
-
/**
|
|
2640
|
-
* emitted when the user clicks on a menu item.
|
|
2641
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
2642
|
-
*/
|
|
2643
2664
|
editable: {
|
|
2644
2665
|
type: BooleanConstructor;
|
|
2645
2666
|
default: boolean;
|
|
@@ -2708,8 +2729,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2708
2729
|
};
|
|
2709
2730
|
state: {
|
|
2710
2731
|
type: () => import("../../../neon").NeonState;
|
|
2711
|
-
default: import("../../../neon").NeonState;
|
|
2712
|
-
|
|
2732
|
+
default: import("../../../neon").NeonState; /**
|
|
2733
|
+
* Placement of the dropdown contents.
|
|
2734
|
+
*/
|
|
2735
|
+
}; /**
|
|
2736
|
+
* Placement of the dropdown contents.
|
|
2737
|
+
*/
|
|
2713
2738
|
color: {
|
|
2714
2739
|
type: () => NeonFunctionalColor;
|
|
2715
2740
|
default: NeonFunctionalColor;
|
|
@@ -2748,9 +2773,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2748
2773
|
type: () => import("../../../neon").NeonInputType;
|
|
2749
2774
|
default: import("../../../neon").NeonInputType;
|
|
2750
2775
|
};
|
|
2751
|
-
/**
|
|
2752
|
-
* A list of menu items to render in the dropdown menu.
|
|
2753
|
-
*/
|
|
2754
2776
|
placeholder: {
|
|
2755
2777
|
type: StringConstructor;
|
|
2756
2778
|
default: null;
|
|
@@ -2771,6 +2793,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2771
2793
|
type: StringConstructor;
|
|
2772
2794
|
default: string;
|
|
2773
2795
|
};
|
|
2796
|
+
/**
|
|
2797
|
+
* emitted when the user clicks on a menu item.
|
|
2798
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
2799
|
+
*/
|
|
2774
2800
|
state: {
|
|
2775
2801
|
type: () => import("../../../neon").NeonState;
|
|
2776
2802
|
default: import("../../../neon").NeonState;
|
|
@@ -2937,9 +2963,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2937
2963
|
type: () => import("../../../neon").NeonInputType;
|
|
2938
2964
|
default: import("../../../neon").NeonInputType;
|
|
2939
2965
|
};
|
|
2940
|
-
/**
|
|
2941
|
-
* A list of menu items to render in the dropdown menu.
|
|
2942
|
-
*/
|
|
2943
2966
|
placeholder: {
|
|
2944
2967
|
type: StringConstructor;
|
|
2945
2968
|
default: null;
|
|
@@ -2960,6 +2983,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2960
2983
|
type: StringConstructor;
|
|
2961
2984
|
default: string;
|
|
2962
2985
|
};
|
|
2986
|
+
/**
|
|
2987
|
+
* emitted when the user clicks on a menu item.
|
|
2988
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
2989
|
+
*/
|
|
2963
2990
|
state: {
|
|
2964
2991
|
type: () => import("../../../neon").NeonState;
|
|
2965
2992
|
default: import("../../../neon").NeonState;
|
|
@@ -3065,9 +3092,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3065
3092
|
type: () => import("../../../neon").NeonInputType;
|
|
3066
3093
|
default: import("../../../neon").NeonInputType;
|
|
3067
3094
|
};
|
|
3068
|
-
/**
|
|
3069
|
-
* A list of menu items to render in the dropdown menu.
|
|
3070
|
-
*/
|
|
3071
3095
|
placeholder: {
|
|
3072
3096
|
type: StringConstructor;
|
|
3073
3097
|
default: null;
|
|
@@ -3088,6 +3112,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3088
3112
|
type: StringConstructor;
|
|
3089
3113
|
default: string;
|
|
3090
3114
|
};
|
|
3115
|
+
/**
|
|
3116
|
+
* emitted when the user clicks on a menu item.
|
|
3117
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
3118
|
+
*/
|
|
3091
3119
|
state: {
|
|
3092
3120
|
type: () => import("../../../neon").NeonState;
|
|
3093
3121
|
default: import("../../../neon").NeonState;
|
|
@@ -3254,9 +3282,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3254
3282
|
type: () => import("../../../neon").NeonInputType;
|
|
3255
3283
|
default: import("../../../neon").NeonInputType;
|
|
3256
3284
|
};
|
|
3257
|
-
/**
|
|
3258
|
-
* A list of menu items to render in the dropdown menu.
|
|
3259
|
-
*/
|
|
3260
3285
|
placeholder: {
|
|
3261
3286
|
type: StringConstructor;
|
|
3262
3287
|
default: null;
|
|
@@ -3277,6 +3302,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3277
3302
|
type: StringConstructor;
|
|
3278
3303
|
default: string;
|
|
3279
3304
|
};
|
|
3305
|
+
/**
|
|
3306
|
+
* emitted when the user clicks on a menu item.
|
|
3307
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
3308
|
+
*/
|
|
3280
3309
|
state: {
|
|
3281
3310
|
type: () => import("../../../neon").NeonState;
|
|
3282
3311
|
default: import("../../../neon").NeonState;
|
|
@@ -3427,8 +3456,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3427
3456
|
};
|
|
3428
3457
|
state: {
|
|
3429
3458
|
type: () => import("../../../neon").NeonState;
|
|
3430
|
-
default: import("../../../neon").NeonState;
|
|
3431
|
-
|
|
3459
|
+
default: import("../../../neon").NeonState; /**
|
|
3460
|
+
* Placement of the dropdown contents.
|
|
3461
|
+
*/
|
|
3462
|
+
}; /**
|
|
3463
|
+
* Placement of the dropdown contents.
|
|
3464
|
+
*/
|
|
3432
3465
|
color: {
|
|
3433
3466
|
type: () => NeonFunctionalColor;
|
|
3434
3467
|
default: NeonFunctionalColor;
|
|
@@ -3493,7 +3526,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3493
3526
|
};
|
|
3494
3527
|
alternateColor: {
|
|
3495
3528
|
type: () => NeonFunctionalColor;
|
|
3496
|
-
default: null;
|
|
3529
|
+
default: null; /**
|
|
3530
|
+
* Instead of opening on click (default), open on hover.
|
|
3531
|
+
*/
|
|
3497
3532
|
};
|
|
3498
3533
|
icon: {
|
|
3499
3534
|
type: StringConstructor;
|
|
@@ -3503,8 +3538,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3503
3538
|
type: StringConstructor;
|
|
3504
3539
|
};
|
|
3505
3540
|
iconPosition: {
|
|
3506
|
-
type: () =>
|
|
3507
|
-
default:
|
|
3541
|
+
type: () => NeonHorizontalPosition;
|
|
3542
|
+
default: NeonHorizontalPosition;
|
|
3508
3543
|
};
|
|
3509
3544
|
buttonStyle: {
|
|
3510
3545
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -3592,7 +3627,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3592
3627
|
};
|
|
3593
3628
|
alternateColor: {
|
|
3594
3629
|
type: () => NeonFunctionalColor;
|
|
3595
|
-
default: null;
|
|
3630
|
+
default: null; /**
|
|
3631
|
+
* Instead of opening on click (default), open on hover.
|
|
3632
|
+
*/
|
|
3596
3633
|
};
|
|
3597
3634
|
icon: {
|
|
3598
3635
|
type: StringConstructor;
|
|
@@ -3602,8 +3639,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3602
3639
|
type: StringConstructor;
|
|
3603
3640
|
};
|
|
3604
3641
|
iconPosition: {
|
|
3605
|
-
type: () =>
|
|
3606
|
-
default:
|
|
3642
|
+
type: () => NeonHorizontalPosition;
|
|
3643
|
+
default: NeonHorizontalPosition;
|
|
3607
3644
|
};
|
|
3608
3645
|
buttonStyle: {
|
|
3609
3646
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -3657,7 +3694,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3657
3694
|
size: import("../../../neon").NeonButtonSize;
|
|
3658
3695
|
outline: boolean;
|
|
3659
3696
|
alternateColor: NeonFunctionalColor;
|
|
3660
|
-
iconPosition:
|
|
3697
|
+
iconPosition: NeonHorizontalPosition;
|
|
3661
3698
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
3662
3699
|
buttonType: import("../../../neon").NeonButtonType;
|
|
3663
3700
|
state: import("../../../neon").NeonState;
|
|
@@ -3880,9 +3917,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3880
3917
|
type: () => import("../../../neon").NeonInputType;
|
|
3881
3918
|
default: import("../../../neon").NeonInputType;
|
|
3882
3919
|
};
|
|
3883
|
-
/**
|
|
3884
|
-
* A list of menu items to render in the dropdown menu.
|
|
3885
|
-
*/
|
|
3886
3920
|
placeholder: {
|
|
3887
3921
|
type: StringConstructor;
|
|
3888
3922
|
default: null;
|
|
@@ -3903,6 +3937,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3903
3937
|
type: StringConstructor;
|
|
3904
3938
|
default: string;
|
|
3905
3939
|
};
|
|
3940
|
+
/**
|
|
3941
|
+
* emitted when the user clicks on a menu item.
|
|
3942
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
3943
|
+
*/
|
|
3906
3944
|
state: {
|
|
3907
3945
|
type: () => import("../../../neon").NeonState;
|
|
3908
3946
|
default: import("../../../neon").NeonState;
|
|
@@ -3982,9 +4020,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3982
4020
|
type: () => import("../../../neon").NeonInputType;
|
|
3983
4021
|
default: import("../../../neon").NeonInputType;
|
|
3984
4022
|
};
|
|
3985
|
-
/**
|
|
3986
|
-
* A list of menu items to render in the dropdown menu.
|
|
3987
|
-
*/
|
|
3988
4023
|
placeholder: {
|
|
3989
4024
|
type: StringConstructor;
|
|
3990
4025
|
default: null;
|
|
@@ -4005,6 +4040,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4005
4040
|
type: StringConstructor;
|
|
4006
4041
|
default: string;
|
|
4007
4042
|
};
|
|
4043
|
+
/**
|
|
4044
|
+
* emitted when the user clicks on a menu item.
|
|
4045
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
4046
|
+
*/
|
|
4008
4047
|
state: {
|
|
4009
4048
|
type: () => import("../../../neon").NeonState;
|
|
4010
4049
|
default: import("../../../neon").NeonState;
|
|
@@ -4310,7 +4349,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4310
4349
|
};
|
|
4311
4350
|
alternateColor: {
|
|
4312
4351
|
type: () => NeonFunctionalColor;
|
|
4313
|
-
default: null;
|
|
4352
|
+
default: null; /**
|
|
4353
|
+
* Instead of opening on click (default), open on hover.
|
|
4354
|
+
*/
|
|
4314
4355
|
};
|
|
4315
4356
|
icon: {
|
|
4316
4357
|
type: StringConstructor;
|
|
@@ -4320,8 +4361,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4320
4361
|
type: StringConstructor;
|
|
4321
4362
|
};
|
|
4322
4363
|
iconPosition: {
|
|
4323
|
-
type: () =>
|
|
4324
|
-
default:
|
|
4364
|
+
type: () => NeonHorizontalPosition;
|
|
4365
|
+
default: NeonHorizontalPosition;
|
|
4325
4366
|
};
|
|
4326
4367
|
buttonStyle: {
|
|
4327
4368
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -4409,7 +4450,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4409
4450
|
};
|
|
4410
4451
|
alternateColor: {
|
|
4411
4452
|
type: () => NeonFunctionalColor;
|
|
4412
|
-
default: null;
|
|
4453
|
+
default: null; /**
|
|
4454
|
+
* Instead of opening on click (default), open on hover.
|
|
4455
|
+
*/
|
|
4413
4456
|
};
|
|
4414
4457
|
icon: {
|
|
4415
4458
|
type: StringConstructor;
|
|
@@ -4419,8 +4462,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4419
4462
|
type: StringConstructor;
|
|
4420
4463
|
};
|
|
4421
4464
|
iconPosition: {
|
|
4422
|
-
type: () =>
|
|
4423
|
-
default:
|
|
4465
|
+
type: () => NeonHorizontalPosition;
|
|
4466
|
+
default: NeonHorizontalPosition;
|
|
4424
4467
|
};
|
|
4425
4468
|
buttonStyle: {
|
|
4426
4469
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -4474,7 +4517,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4474
4517
|
size: import("../../../neon").NeonButtonSize;
|
|
4475
4518
|
outline: boolean;
|
|
4476
4519
|
alternateColor: NeonFunctionalColor;
|
|
4477
|
-
iconPosition:
|
|
4520
|
+
iconPosition: NeonHorizontalPosition;
|
|
4478
4521
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
4479
4522
|
buttonType: import("../../../neon").NeonButtonType;
|
|
4480
4523
|
state: import("../../../neon").NeonState;
|
|
@@ -4745,7 +4788,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4745
4788
|
};
|
|
4746
4789
|
image: {
|
|
4747
4790
|
type: StringConstructor;
|
|
4748
|
-
default: null;
|
|
4791
|
+
default: null; /**
|
|
4792
|
+
* Instead of opening on click (default), open on hover.
|
|
4793
|
+
*/
|
|
4749
4794
|
};
|
|
4750
4795
|
imageAlt: {
|
|
4751
4796
|
type: StringConstructor;
|
|
@@ -4850,6 +4895,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4850
4895
|
clickItem: (item: NeonDropdownMenuItem) => void;
|
|
4851
4896
|
navigateBy: (offset: number, $event: KeyboardEvent) => void;
|
|
4852
4897
|
onPlacement: (placement: NeonDropdownPlacement) => void;
|
|
4898
|
+
NeonHorizontalPosition: typeof NeonHorizontalPosition;
|
|
4853
4899
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4854
4900
|
/**
|
|
4855
4901
|
* A list of menu items to render in the dropdown menu.
|
|
@@ -4916,7 +4962,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4916
4962
|
};
|
|
4917
4963
|
image: {
|
|
4918
4964
|
type: StringConstructor;
|
|
4919
|
-
default: null;
|
|
4965
|
+
default: null; /**
|
|
4966
|
+
* Instead of opening on click (default), open on hover.
|
|
4967
|
+
*/
|
|
4920
4968
|
};
|
|
4921
4969
|
imageAlt: {
|
|
4922
4970
|
type: StringConstructor;
|
|
@@ -5000,7 +5048,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5000
5048
|
};
|
|
5001
5049
|
image: {
|
|
5002
5050
|
type: StringConstructor;
|
|
5003
|
-
default: null;
|
|
5051
|
+
default: null; /**
|
|
5052
|
+
* Instead of opening on click (default), open on hover.
|
|
5053
|
+
*/
|
|
5004
5054
|
};
|
|
5005
5055
|
imageAlt: {
|
|
5006
5056
|
type: StringConstructor;
|
|
@@ -5075,7 +5125,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5075
5125
|
default: null;
|
|
5076
5126
|
};
|
|
5077
5127
|
image: {
|
|
5078
|
-
type: StringConstructor;
|
|
5128
|
+
type: StringConstructor; /**
|
|
5129
|
+
* A list of menu items to render in the dropdown menu.
|
|
5130
|
+
*/
|
|
5079
5131
|
default: null;
|
|
5080
5132
|
};
|
|
5081
5133
|
icon: {
|
|
@@ -5098,10 +5150,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5098
5150
|
type: () => NeonFunctionalColor;
|
|
5099
5151
|
default: null;
|
|
5100
5152
|
};
|
|
5101
|
-
/**
|
|
5102
|
-
* emitted when the user clicks on a menu item.
|
|
5103
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5104
|
-
*/
|
|
5105
5153
|
editable: {
|
|
5106
5154
|
type: BooleanConstructor;
|
|
5107
5155
|
default: boolean;
|
|
@@ -5135,7 +5183,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5135
5183
|
default: null;
|
|
5136
5184
|
};
|
|
5137
5185
|
image: {
|
|
5138
|
-
type: StringConstructor;
|
|
5186
|
+
type: StringConstructor; /**
|
|
5187
|
+
* A list of menu items to render in the dropdown menu.
|
|
5188
|
+
*/
|
|
5139
5189
|
default: null;
|
|
5140
5190
|
};
|
|
5141
5191
|
icon: {
|
|
@@ -5158,10 +5208,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5158
5208
|
type: () => NeonFunctionalColor;
|
|
5159
5209
|
default: null;
|
|
5160
5210
|
};
|
|
5161
|
-
/**
|
|
5162
|
-
* emitted when the user clicks on a menu item.
|
|
5163
|
-
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5164
|
-
*/
|
|
5165
5211
|
editable: {
|
|
5166
5212
|
type: BooleanConstructor;
|
|
5167
5213
|
default: boolean;
|
|
@@ -5230,8 +5276,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5230
5276
|
};
|
|
5231
5277
|
state: {
|
|
5232
5278
|
type: () => import("../../../neon").NeonState;
|
|
5233
|
-
default: import("../../../neon").NeonState;
|
|
5234
|
-
|
|
5279
|
+
default: import("../../../neon").NeonState; /**
|
|
5280
|
+
* Placement of the dropdown contents.
|
|
5281
|
+
*/
|
|
5282
|
+
}; /**
|
|
5283
|
+
* Placement of the dropdown contents.
|
|
5284
|
+
*/
|
|
5235
5285
|
color: {
|
|
5236
5286
|
type: () => NeonFunctionalColor;
|
|
5237
5287
|
default: NeonFunctionalColor;
|
|
@@ -5270,9 +5320,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5270
5320
|
type: () => import("../../../neon").NeonInputType;
|
|
5271
5321
|
default: import("../../../neon").NeonInputType;
|
|
5272
5322
|
};
|
|
5273
|
-
/**
|
|
5274
|
-
* A list of menu items to render in the dropdown menu.
|
|
5275
|
-
*/
|
|
5276
5323
|
placeholder: {
|
|
5277
5324
|
type: StringConstructor;
|
|
5278
5325
|
default: null;
|
|
@@ -5293,6 +5340,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5293
5340
|
type: StringConstructor;
|
|
5294
5341
|
default: string;
|
|
5295
5342
|
};
|
|
5343
|
+
/**
|
|
5344
|
+
* emitted when the user clicks on a menu item.
|
|
5345
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5346
|
+
*/
|
|
5296
5347
|
state: {
|
|
5297
5348
|
type: () => import("../../../neon").NeonState;
|
|
5298
5349
|
default: import("../../../neon").NeonState;
|
|
@@ -5459,9 +5510,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5459
5510
|
type: () => import("../../../neon").NeonInputType;
|
|
5460
5511
|
default: import("../../../neon").NeonInputType;
|
|
5461
5512
|
};
|
|
5462
|
-
/**
|
|
5463
|
-
* A list of menu items to render in the dropdown menu.
|
|
5464
|
-
*/
|
|
5465
5513
|
placeholder: {
|
|
5466
5514
|
type: StringConstructor;
|
|
5467
5515
|
default: null;
|
|
@@ -5482,6 +5530,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5482
5530
|
type: StringConstructor;
|
|
5483
5531
|
default: string;
|
|
5484
5532
|
};
|
|
5533
|
+
/**
|
|
5534
|
+
* emitted when the user clicks on a menu item.
|
|
5535
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5536
|
+
*/
|
|
5485
5537
|
state: {
|
|
5486
5538
|
type: () => import("../../../neon").NeonState;
|
|
5487
5539
|
default: import("../../../neon").NeonState;
|
|
@@ -5587,9 +5639,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5587
5639
|
type: () => import("../../../neon").NeonInputType;
|
|
5588
5640
|
default: import("../../../neon").NeonInputType;
|
|
5589
5641
|
};
|
|
5590
|
-
/**
|
|
5591
|
-
* A list of menu items to render in the dropdown menu.
|
|
5592
|
-
*/
|
|
5593
5642
|
placeholder: {
|
|
5594
5643
|
type: StringConstructor;
|
|
5595
5644
|
default: null;
|
|
@@ -5610,6 +5659,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5610
5659
|
type: StringConstructor;
|
|
5611
5660
|
default: string;
|
|
5612
5661
|
};
|
|
5662
|
+
/**
|
|
5663
|
+
* emitted when the user clicks on a menu item.
|
|
5664
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5665
|
+
*/
|
|
5613
5666
|
state: {
|
|
5614
5667
|
type: () => import("../../../neon").NeonState;
|
|
5615
5668
|
default: import("../../../neon").NeonState;
|
|
@@ -5776,9 +5829,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5776
5829
|
type: () => import("../../../neon").NeonInputType;
|
|
5777
5830
|
default: import("../../../neon").NeonInputType;
|
|
5778
5831
|
};
|
|
5779
|
-
/**
|
|
5780
|
-
* A list of menu items to render in the dropdown menu.
|
|
5781
|
-
*/
|
|
5782
5832
|
placeholder: {
|
|
5783
5833
|
type: StringConstructor;
|
|
5784
5834
|
default: null;
|
|
@@ -5799,6 +5849,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5799
5849
|
type: StringConstructor;
|
|
5800
5850
|
default: string;
|
|
5801
5851
|
};
|
|
5852
|
+
/**
|
|
5853
|
+
* emitted when the user clicks on a menu item.
|
|
5854
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
5855
|
+
*/
|
|
5802
5856
|
state: {
|
|
5803
5857
|
type: () => import("../../../neon").NeonState;
|
|
5804
5858
|
default: import("../../../neon").NeonState;
|
|
@@ -5949,8 +6003,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5949
6003
|
};
|
|
5950
6004
|
state: {
|
|
5951
6005
|
type: () => import("../../../neon").NeonState;
|
|
5952
|
-
default: import("../../../neon").NeonState;
|
|
5953
|
-
|
|
6006
|
+
default: import("../../../neon").NeonState; /**
|
|
6007
|
+
* Placement of the dropdown contents.
|
|
6008
|
+
*/
|
|
6009
|
+
}; /**
|
|
6010
|
+
* Placement of the dropdown contents.
|
|
6011
|
+
*/
|
|
5954
6012
|
color: {
|
|
5955
6013
|
type: () => NeonFunctionalColor;
|
|
5956
6014
|
default: NeonFunctionalColor;
|
|
@@ -6015,7 +6073,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6015
6073
|
};
|
|
6016
6074
|
alternateColor: {
|
|
6017
6075
|
type: () => NeonFunctionalColor;
|
|
6018
|
-
default: null;
|
|
6076
|
+
default: null; /**
|
|
6077
|
+
* Instead of opening on click (default), open on hover.
|
|
6078
|
+
*/
|
|
6019
6079
|
};
|
|
6020
6080
|
icon: {
|
|
6021
6081
|
type: StringConstructor;
|
|
@@ -6025,8 +6085,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6025
6085
|
type: StringConstructor;
|
|
6026
6086
|
};
|
|
6027
6087
|
iconPosition: {
|
|
6028
|
-
type: () =>
|
|
6029
|
-
default:
|
|
6088
|
+
type: () => NeonHorizontalPosition;
|
|
6089
|
+
default: NeonHorizontalPosition;
|
|
6030
6090
|
};
|
|
6031
6091
|
buttonStyle: {
|
|
6032
6092
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -6114,7 +6174,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6114
6174
|
};
|
|
6115
6175
|
alternateColor: {
|
|
6116
6176
|
type: () => NeonFunctionalColor;
|
|
6117
|
-
default: null;
|
|
6177
|
+
default: null; /**
|
|
6178
|
+
* Instead of opening on click (default), open on hover.
|
|
6179
|
+
*/
|
|
6118
6180
|
};
|
|
6119
6181
|
icon: {
|
|
6120
6182
|
type: StringConstructor;
|
|
@@ -6124,8 +6186,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6124
6186
|
type: StringConstructor;
|
|
6125
6187
|
};
|
|
6126
6188
|
iconPosition: {
|
|
6127
|
-
type: () =>
|
|
6128
|
-
default:
|
|
6189
|
+
type: () => NeonHorizontalPosition;
|
|
6190
|
+
default: NeonHorizontalPosition;
|
|
6129
6191
|
};
|
|
6130
6192
|
buttonStyle: {
|
|
6131
6193
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -6179,7 +6241,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6179
6241
|
size: import("../../../neon").NeonButtonSize;
|
|
6180
6242
|
outline: boolean;
|
|
6181
6243
|
alternateColor: NeonFunctionalColor;
|
|
6182
|
-
iconPosition:
|
|
6244
|
+
iconPosition: NeonHorizontalPosition;
|
|
6183
6245
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
6184
6246
|
buttonType: import("../../../neon").NeonButtonType;
|
|
6185
6247
|
state: import("../../../neon").NeonState;
|
|
@@ -6402,9 +6464,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6402
6464
|
type: () => import("../../../neon").NeonInputType;
|
|
6403
6465
|
default: import("../../../neon").NeonInputType;
|
|
6404
6466
|
};
|
|
6405
|
-
/**
|
|
6406
|
-
* A list of menu items to render in the dropdown menu.
|
|
6407
|
-
*/
|
|
6408
6467
|
placeholder: {
|
|
6409
6468
|
type: StringConstructor;
|
|
6410
6469
|
default: null;
|
|
@@ -6425,6 +6484,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6425
6484
|
type: StringConstructor;
|
|
6426
6485
|
default: string;
|
|
6427
6486
|
};
|
|
6487
|
+
/**
|
|
6488
|
+
* emitted when the user clicks on a menu item.
|
|
6489
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
6490
|
+
*/
|
|
6428
6491
|
state: {
|
|
6429
6492
|
type: () => import("../../../neon").NeonState;
|
|
6430
6493
|
default: import("../../../neon").NeonState;
|
|
@@ -6504,9 +6567,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6504
6567
|
type: () => import("../../../neon").NeonInputType;
|
|
6505
6568
|
default: import("../../../neon").NeonInputType;
|
|
6506
6569
|
};
|
|
6507
|
-
/**
|
|
6508
|
-
* A list of menu items to render in the dropdown menu.
|
|
6509
|
-
*/
|
|
6510
6570
|
placeholder: {
|
|
6511
6571
|
type: StringConstructor;
|
|
6512
6572
|
default: null;
|
|
@@ -6527,6 +6587,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6527
6587
|
type: StringConstructor;
|
|
6528
6588
|
default: string;
|
|
6529
6589
|
};
|
|
6590
|
+
/**
|
|
6591
|
+
* emitted when the user clicks on a menu item.
|
|
6592
|
+
* @type {NeonDropdownMenuItem} the menu item the user clicked on.
|
|
6593
|
+
*/
|
|
6530
6594
|
state: {
|
|
6531
6595
|
type: () => import("../../../neon").NeonState;
|
|
6532
6596
|
default: import("../../../neon").NeonState;
|
|
@@ -6832,7 +6896,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6832
6896
|
};
|
|
6833
6897
|
alternateColor: {
|
|
6834
6898
|
type: () => NeonFunctionalColor;
|
|
6835
|
-
default: null;
|
|
6899
|
+
default: null; /**
|
|
6900
|
+
* Instead of opening on click (default), open on hover.
|
|
6901
|
+
*/
|
|
6836
6902
|
};
|
|
6837
6903
|
icon: {
|
|
6838
6904
|
type: StringConstructor;
|
|
@@ -6842,8 +6908,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6842
6908
|
type: StringConstructor;
|
|
6843
6909
|
};
|
|
6844
6910
|
iconPosition: {
|
|
6845
|
-
type: () =>
|
|
6846
|
-
default:
|
|
6911
|
+
type: () => NeonHorizontalPosition;
|
|
6912
|
+
default: NeonHorizontalPosition;
|
|
6847
6913
|
};
|
|
6848
6914
|
buttonStyle: {
|
|
6849
6915
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -6931,7 +6997,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6931
6997
|
};
|
|
6932
6998
|
alternateColor: {
|
|
6933
6999
|
type: () => NeonFunctionalColor;
|
|
6934
|
-
default: null;
|
|
7000
|
+
default: null; /**
|
|
7001
|
+
* Instead of opening on click (default), open on hover.
|
|
7002
|
+
*/
|
|
6935
7003
|
};
|
|
6936
7004
|
icon: {
|
|
6937
7005
|
type: StringConstructor;
|
|
@@ -6941,8 +7009,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6941
7009
|
type: StringConstructor;
|
|
6942
7010
|
};
|
|
6943
7011
|
iconPosition: {
|
|
6944
|
-
type: () =>
|
|
6945
|
-
default:
|
|
7012
|
+
type: () => NeonHorizontalPosition;
|
|
7013
|
+
default: NeonHorizontalPosition;
|
|
6946
7014
|
};
|
|
6947
7015
|
buttonStyle: {
|
|
6948
7016
|
type: () => import("../../../neon").NeonButtonStyle;
|
|
@@ -6996,7 +7064,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6996
7064
|
size: import("../../../neon").NeonButtonSize;
|
|
6997
7065
|
outline: boolean;
|
|
6998
7066
|
alternateColor: NeonFunctionalColor;
|
|
6999
|
-
iconPosition:
|
|
7067
|
+
iconPosition: NeonHorizontalPosition;
|
|
7000
7068
|
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
7001
7069
|
buttonType: import("../../../neon").NeonButtonType;
|
|
7002
7070
|
state: import("../../../neon").NeonState;
|