@aotearoan/neon 23.2.3 → 23.2.5
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/user-input/field/NeonField.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.es.js +3 -3
- package/dist/components/user-input/field/NeonField.es.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.es.js +4 -4
- package/dist/components/user-input/field/NeonField.vue.es.js.map +1 -1
- package/dist/components/user-input/file/NeonFile.cjs.js +1 -1
- package/dist/components/user-input/file/NeonFile.cjs.js.map +1 -1
- package/dist/components/user-input/file/NeonFile.es.js +25 -20
- package/dist/components/user-input/file/NeonFile.es.js.map +1 -1
- package/dist/components/user-input/file/NeonFile.vue.cjs.js +1 -1
- package/dist/components/user-input/file/NeonFile.vue.cjs.js.map +1 -1
- package/dist/components/user-input/file/NeonFile.vue.es.js +13 -12
- package/dist/components/user-input/file/NeonFile.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +27 -42
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +27 -0
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +33 -24
- package/dist/src/components/presentation/badge/NeonBadge.d.ts +9 -0
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +11 -6
- package/dist/src/components/user-input/chip/NeonChip.d.ts +1 -1
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +16 -8
- package/dist/src/components/user-input/field/NeonField.d.ts +2 -2
- package/dist/src/components/user-input/file/NeonFile.d.ts +91 -55
- package/dist/src/components/user-input/search/NeonSearch.d.ts +64 -4
- package/dist/src/components/user-input/select/NeonSelect.d.ts +165 -54
- package/package.json +1 -1
- package/src/sass/components/_banner.scss +5 -0
- package/src/sass/components/_drop-zone.scss +4 -9
- package/src/sass/components/_field.scss +1 -0
- package/src/sass/components/_file.scss +8 -0
- package/src/sass/components/_icon.scss +16 -0
- package/src/sass/components/_page-container.scss +2 -0
- package/src/sass/components/_select.scss +18 -1
- package/src/sass/variables.scss +27 -11
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { NeonSize } from '@/common/enums/NeonSize';
|
|
2
2
|
import { NeonFunctionalColor } from '@/common/enums/NeonFunctionalColor';
|
|
3
3
|
import { NeonState } from '@/common/enums/NeonState';
|
|
4
|
+
import { NeonButtonStyle } from '@/common/enums/NeonButtonStyle';
|
|
4
5
|
/**
|
|
5
6
|
* A file upload component. This is a wrapper around an HTML file input. It can display multiple files as well as
|
|
6
7
|
* providing a convenient UI for removing/clearing files from the list.
|
|
@@ -64,6 +65,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
64
65
|
type: () => NeonFunctionalColor;
|
|
65
66
|
default: NeonFunctionalColor;
|
|
66
67
|
};
|
|
68
|
+
/**
|
|
69
|
+
* The style of button to use for the upload
|
|
70
|
+
*/
|
|
71
|
+
buttonStyle: {
|
|
72
|
+
type: () => NeonButtonStyle;
|
|
73
|
+
default: NeonButtonStyle;
|
|
74
|
+
};
|
|
67
75
|
/**
|
|
68
76
|
* Make the button circular. NOTE: This is only for icon only buttons.
|
|
69
77
|
*/
|
|
@@ -115,9 +123,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
115
123
|
default: NeonSize;
|
|
116
124
|
};
|
|
117
125
|
color: {
|
|
118
|
-
type: () => NeonFunctionalColor;
|
|
119
|
-
* The file component size
|
|
120
|
-
*/
|
|
126
|
+
type: () => NeonFunctionalColor;
|
|
121
127
|
default: NeonFunctionalColor;
|
|
122
128
|
};
|
|
123
129
|
inputmode: {
|
|
@@ -227,7 +233,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
227
233
|
required: true;
|
|
228
234
|
};
|
|
229
235
|
id: {
|
|
230
|
-
type: StringConstructor;
|
|
236
|
+
type: StringConstructor; /**
|
|
237
|
+
* The state of the input, used to indicate loading, success and error states
|
|
238
|
+
*/
|
|
231
239
|
default: null;
|
|
232
240
|
};
|
|
233
241
|
color: {
|
|
@@ -253,7 +261,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
253
261
|
required: true;
|
|
254
262
|
};
|
|
255
263
|
id: {
|
|
256
|
-
type: StringConstructor;
|
|
264
|
+
type: StringConstructor; /**
|
|
265
|
+
* The state of the input, used to indicate loading, success and error states
|
|
266
|
+
*/
|
|
257
267
|
default: null;
|
|
258
268
|
};
|
|
259
269
|
color: {
|
|
@@ -303,9 +313,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
303
313
|
default: NeonSize;
|
|
304
314
|
};
|
|
305
315
|
color: {
|
|
306
|
-
type: () => NeonFunctionalColor;
|
|
307
|
-
* The file component size
|
|
308
|
-
*/
|
|
316
|
+
type: () => NeonFunctionalColor;
|
|
309
317
|
default: NeonFunctionalColor;
|
|
310
318
|
};
|
|
311
319
|
inputmode: {
|
|
@@ -430,9 +438,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
430
438
|
default: NeonSize;
|
|
431
439
|
};
|
|
432
440
|
color: {
|
|
433
|
-
type: () => NeonFunctionalColor;
|
|
434
|
-
* The file component size
|
|
435
|
-
*/
|
|
441
|
+
type: () => NeonFunctionalColor;
|
|
436
442
|
default: NeonFunctionalColor;
|
|
437
443
|
};
|
|
438
444
|
inputmode: {
|
|
@@ -542,7 +548,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
542
548
|
required: true;
|
|
543
549
|
};
|
|
544
550
|
id: {
|
|
545
|
-
type: StringConstructor;
|
|
551
|
+
type: StringConstructor; /**
|
|
552
|
+
* The state of the input, used to indicate loading, success and error states
|
|
553
|
+
*/
|
|
546
554
|
default: null;
|
|
547
555
|
};
|
|
548
556
|
color: {
|
|
@@ -568,7 +576,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
568
576
|
required: true;
|
|
569
577
|
};
|
|
570
578
|
id: {
|
|
571
|
-
type: StringConstructor;
|
|
579
|
+
type: StringConstructor; /**
|
|
580
|
+
* The state of the input, used to indicate loading, success and error states
|
|
581
|
+
*/
|
|
572
582
|
default: null;
|
|
573
583
|
};
|
|
574
584
|
color: {
|
|
@@ -618,9 +628,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
618
628
|
default: NeonSize;
|
|
619
629
|
};
|
|
620
630
|
color: {
|
|
621
|
-
type: () => NeonFunctionalColor;
|
|
622
|
-
* The file component size
|
|
623
|
-
*/
|
|
631
|
+
type: () => NeonFunctionalColor;
|
|
624
632
|
default: NeonFunctionalColor;
|
|
625
633
|
};
|
|
626
634
|
inputmode: {
|
|
@@ -813,6 +821,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
813
821
|
type: () => NeonFunctionalColor;
|
|
814
822
|
default: NeonFunctionalColor;
|
|
815
823
|
};
|
|
824
|
+
/**
|
|
825
|
+
* The style of button to use for the upload
|
|
826
|
+
*/
|
|
827
|
+
buttonStyle: {
|
|
828
|
+
type: () => NeonButtonStyle;
|
|
829
|
+
default: NeonButtonStyle;
|
|
830
|
+
};
|
|
816
831
|
/**
|
|
817
832
|
* Make the button circular. NOTE: This is only for icon only buttons.
|
|
818
833
|
*/
|
|
@@ -851,6 +866,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
851
866
|
size: NeonSize;
|
|
852
867
|
color: NeonFunctionalColor;
|
|
853
868
|
id: string;
|
|
869
|
+
buttonStyle: NeonButtonStyle;
|
|
854
870
|
state: NeonState;
|
|
855
871
|
circular: boolean;
|
|
856
872
|
directUpload: boolean;
|
|
@@ -887,19 +903,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
887
903
|
default: null;
|
|
888
904
|
};
|
|
889
905
|
iconAriaLabel: {
|
|
890
|
-
type: StringConstructor;
|
|
891
|
-
|
|
892
|
-
*/
|
|
893
|
-
}; /**
|
|
894
|
-
* The icon of the file component button
|
|
895
|
-
*/
|
|
906
|
+
type: StringConstructor;
|
|
907
|
+
};
|
|
896
908
|
iconPosition: {
|
|
897
909
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
898
910
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
899
911
|
};
|
|
900
912
|
buttonStyle: {
|
|
901
|
-
type: () =>
|
|
902
|
-
default:
|
|
913
|
+
type: () => NeonButtonStyle;
|
|
914
|
+
default: NeonButtonStyle;
|
|
903
915
|
};
|
|
904
916
|
buttonType: {
|
|
905
917
|
type: () => import("../../../neon").NeonButtonType;
|
|
@@ -990,19 +1002,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
990
1002
|
default: null;
|
|
991
1003
|
};
|
|
992
1004
|
iconAriaLabel: {
|
|
993
|
-
type: StringConstructor;
|
|
994
|
-
|
|
995
|
-
*/
|
|
996
|
-
}; /**
|
|
997
|
-
* The icon of the file component button
|
|
998
|
-
*/
|
|
1005
|
+
type: StringConstructor;
|
|
1006
|
+
};
|
|
999
1007
|
iconPosition: {
|
|
1000
1008
|
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
1001
1009
|
default: import("../../../neon").NeonHorizontalPosition;
|
|
1002
1010
|
};
|
|
1003
1011
|
buttonStyle: {
|
|
1004
|
-
type: () =>
|
|
1005
|
-
default:
|
|
1012
|
+
type: () => NeonButtonStyle;
|
|
1013
|
+
default: NeonButtonStyle;
|
|
1006
1014
|
};
|
|
1007
1015
|
buttonType: {
|
|
1008
1016
|
type: () => import("../../../neon").NeonButtonType;
|
|
@@ -1053,7 +1061,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1053
1061
|
inverse: boolean;
|
|
1054
1062
|
alternateColor: NeonFunctionalColor;
|
|
1055
1063
|
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
1056
|
-
buttonStyle:
|
|
1064
|
+
buttonStyle: NeonButtonStyle;
|
|
1057
1065
|
buttonType: import("../../../neon").NeonButtonType;
|
|
1058
1066
|
state: NeonState;
|
|
1059
1067
|
transparent: boolean;
|
|
@@ -1108,7 +1116,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1108
1116
|
required: true;
|
|
1109
1117
|
};
|
|
1110
1118
|
id: {
|
|
1111
|
-
type: StringConstructor;
|
|
1119
|
+
type: StringConstructor; /**
|
|
1120
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1121
|
+
*/
|
|
1112
1122
|
default: null;
|
|
1113
1123
|
};
|
|
1114
1124
|
color: {
|
|
@@ -1134,7 +1144,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1134
1144
|
required: true;
|
|
1135
1145
|
};
|
|
1136
1146
|
id: {
|
|
1137
|
-
type: StringConstructor;
|
|
1147
|
+
type: StringConstructor; /**
|
|
1148
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1149
|
+
*/
|
|
1138
1150
|
default: null;
|
|
1139
1151
|
};
|
|
1140
1152
|
color: {
|
|
@@ -1162,12 +1174,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1162
1174
|
};
|
|
1163
1175
|
noStyle: {
|
|
1164
1176
|
type: BooleanConstructor;
|
|
1165
|
-
default: boolean;
|
|
1166
|
-
|
|
1177
|
+
default: boolean; /**
|
|
1178
|
+
* The disabled state of the component
|
|
1179
|
+
*/
|
|
1180
|
+
}; /**
|
|
1181
|
+
* The disabled state of the component
|
|
1182
|
+
*/
|
|
1167
1183
|
outlineStyle: {
|
|
1168
1184
|
type: () => import("../../../neon").NeonOutlineStyle;
|
|
1169
|
-
default: import("../../../neon").NeonOutlineStyle;
|
|
1170
|
-
|
|
1185
|
+
default: import("../../../neon").NeonOutlineStyle; /**
|
|
1186
|
+
* Support multiple files.
|
|
1187
|
+
*/
|
|
1188
|
+
}; /**
|
|
1189
|
+
* Support multiple files.
|
|
1190
|
+
*/
|
|
1171
1191
|
externalIndicator: {
|
|
1172
1192
|
type: BooleanConstructor;
|
|
1173
1193
|
default: boolean;
|
|
@@ -1189,12 +1209,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1189
1209
|
};
|
|
1190
1210
|
noStyle: {
|
|
1191
1211
|
type: BooleanConstructor;
|
|
1192
|
-
default: boolean;
|
|
1193
|
-
|
|
1212
|
+
default: boolean; /**
|
|
1213
|
+
* The disabled state of the component
|
|
1214
|
+
*/
|
|
1215
|
+
}; /**
|
|
1216
|
+
* The disabled state of the component
|
|
1217
|
+
*/
|
|
1194
1218
|
outlineStyle: {
|
|
1195
1219
|
type: () => import("../../../neon").NeonOutlineStyle;
|
|
1196
|
-
default: import("../../../neon").NeonOutlineStyle;
|
|
1197
|
-
|
|
1220
|
+
default: import("../../../neon").NeonOutlineStyle; /**
|
|
1221
|
+
* Support multiple files.
|
|
1222
|
+
*/
|
|
1223
|
+
}; /**
|
|
1224
|
+
* Support multiple files.
|
|
1225
|
+
*/
|
|
1198
1226
|
externalIndicator: {
|
|
1199
1227
|
type: BooleanConstructor;
|
|
1200
1228
|
default: boolean;
|
|
@@ -1213,7 +1241,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1213
1241
|
required: true;
|
|
1214
1242
|
};
|
|
1215
1243
|
id: {
|
|
1216
|
-
type: StringConstructor;
|
|
1244
|
+
type: StringConstructor; /**
|
|
1245
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1246
|
+
*/
|
|
1217
1247
|
default: null;
|
|
1218
1248
|
};
|
|
1219
1249
|
color: {
|
|
@@ -1239,7 +1269,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1239
1269
|
required: true;
|
|
1240
1270
|
};
|
|
1241
1271
|
id: {
|
|
1242
|
-
type: StringConstructor;
|
|
1272
|
+
type: StringConstructor; /**
|
|
1273
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1274
|
+
*/
|
|
1243
1275
|
default: null;
|
|
1244
1276
|
};
|
|
1245
1277
|
color: {
|
|
@@ -1284,9 +1316,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1284
1316
|
default: NeonSize;
|
|
1285
1317
|
};
|
|
1286
1318
|
color: {
|
|
1287
|
-
type: () => NeonFunctionalColor;
|
|
1288
|
-
* The file component size
|
|
1289
|
-
*/
|
|
1319
|
+
type: () => NeonFunctionalColor;
|
|
1290
1320
|
default: NeonFunctionalColor;
|
|
1291
1321
|
};
|
|
1292
1322
|
inputmode: {
|
|
@@ -1385,9 +1415,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1385
1415
|
default: NeonSize;
|
|
1386
1416
|
};
|
|
1387
1417
|
color: {
|
|
1388
|
-
type: () => NeonFunctionalColor;
|
|
1389
|
-
* The file component size
|
|
1390
|
-
*/
|
|
1418
|
+
type: () => NeonFunctionalColor;
|
|
1391
1419
|
default: NeonFunctionalColor;
|
|
1392
1420
|
};
|
|
1393
1421
|
inputmode: {
|
|
@@ -1479,7 +1507,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1479
1507
|
required: true;
|
|
1480
1508
|
};
|
|
1481
1509
|
id: {
|
|
1482
|
-
type: StringConstructor;
|
|
1510
|
+
type: StringConstructor; /**
|
|
1511
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1512
|
+
*/
|
|
1483
1513
|
default: null;
|
|
1484
1514
|
};
|
|
1485
1515
|
color: {
|
|
@@ -1505,7 +1535,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1505
1535
|
required: true;
|
|
1506
1536
|
};
|
|
1507
1537
|
id: {
|
|
1508
|
-
type: StringConstructor;
|
|
1538
|
+
type: StringConstructor; /**
|
|
1539
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1540
|
+
*/
|
|
1509
1541
|
default: null;
|
|
1510
1542
|
};
|
|
1511
1543
|
color: {
|
|
@@ -1577,7 +1609,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1577
1609
|
required: true;
|
|
1578
1610
|
};
|
|
1579
1611
|
id: {
|
|
1580
|
-
type: StringConstructor;
|
|
1612
|
+
type: StringConstructor; /**
|
|
1613
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1614
|
+
*/
|
|
1581
1615
|
default: null;
|
|
1582
1616
|
};
|
|
1583
1617
|
color: {
|
|
@@ -1603,7 +1637,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1603
1637
|
required: true;
|
|
1604
1638
|
};
|
|
1605
1639
|
id: {
|
|
1606
|
-
type: StringConstructor;
|
|
1640
|
+
type: StringConstructor; /**
|
|
1641
|
+
* The state of the input, used to indicate loading, success and error states
|
|
1642
|
+
*/
|
|
1607
1643
|
default: null;
|
|
1608
1644
|
};
|
|
1609
1645
|
color: {
|
|
@@ -365,6 +365,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
365
365
|
color: {
|
|
366
366
|
type: () => NeonFunctionalColor;
|
|
367
367
|
default: NeonFunctionalColor;
|
|
368
|
+
}; /**
|
|
369
|
+
* Allow multi-select.
|
|
370
|
+
*/
|
|
371
|
+
buttonStyle: {
|
|
372
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
373
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
368
374
|
};
|
|
369
375
|
circular: {
|
|
370
376
|
type: BooleanConstructor;
|
|
@@ -1092,6 +1098,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1092
1098
|
color: {
|
|
1093
1099
|
type: () => NeonFunctionalColor;
|
|
1094
1100
|
default: NeonFunctionalColor;
|
|
1101
|
+
}; /**
|
|
1102
|
+
* Allow multi-select.
|
|
1103
|
+
*/
|
|
1104
|
+
buttonStyle: {
|
|
1105
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
1106
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
1095
1107
|
};
|
|
1096
1108
|
circular: {
|
|
1097
1109
|
type: BooleanConstructor;
|
|
@@ -1119,6 +1131,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1119
1131
|
size: NeonSize;
|
|
1120
1132
|
color: NeonFunctionalColor;
|
|
1121
1133
|
id: string;
|
|
1134
|
+
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1122
1135
|
state: import("../../../neon").NeonState;
|
|
1123
1136
|
circular: boolean;
|
|
1124
1137
|
directUpload: boolean;
|
|
@@ -1531,7 +1544,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1531
1544
|
inverse: boolean;
|
|
1532
1545
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1533
1546
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1534
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1547
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
1548
|
+
* <p>
|
|
1549
|
+
* The <strong>NeonSearch</strong> component is equivalent to an HTML <input type="search"> element. It is
|
|
1550
|
+
* useful as an alternative to <em>NeonSelect</em> to provide filtered results when the universe of results is very
|
|
1551
|
+
* large and/or the results need to be requested from a server side API.
|
|
1552
|
+
* </p>
|
|
1553
|
+
* <p><strong>NeonSearch</strong> provides input chips in the case the search allows multiple selection.</p>
|
|
1554
|
+
*/
|
|
1535
1555
|
NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1536
1556
|
id: {
|
|
1537
1557
|
type: StringConstructor;
|
|
@@ -2805,6 +2825,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2805
2825
|
color: {
|
|
2806
2826
|
type: () => NeonFunctionalColor;
|
|
2807
2827
|
default: NeonFunctionalColor;
|
|
2828
|
+
}; /**
|
|
2829
|
+
* Allow multi-select.
|
|
2830
|
+
*/
|
|
2831
|
+
buttonStyle: {
|
|
2832
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
2833
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
2808
2834
|
};
|
|
2809
2835
|
circular: {
|
|
2810
2836
|
type: BooleanConstructor;
|
|
@@ -3532,6 +3558,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3532
3558
|
color: {
|
|
3533
3559
|
type: () => NeonFunctionalColor;
|
|
3534
3560
|
default: NeonFunctionalColor;
|
|
3561
|
+
}; /**
|
|
3562
|
+
* Allow multi-select.
|
|
3563
|
+
*/
|
|
3564
|
+
buttonStyle: {
|
|
3565
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
3566
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
3535
3567
|
};
|
|
3536
3568
|
circular: {
|
|
3537
3569
|
type: BooleanConstructor;
|
|
@@ -3559,6 +3591,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3559
3591
|
size: NeonSize;
|
|
3560
3592
|
color: NeonFunctionalColor;
|
|
3561
3593
|
id: string;
|
|
3594
|
+
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
3562
3595
|
state: import("../../../neon").NeonState;
|
|
3563
3596
|
circular: boolean;
|
|
3564
3597
|
directUpload: boolean;
|
|
@@ -3971,7 +4004,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3971
4004
|
inverse: boolean;
|
|
3972
4005
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3973
4006
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3974
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4007
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
4008
|
+
* <p>
|
|
4009
|
+
* The <strong>NeonSearch</strong> component is equivalent to an HTML <input type="search"> element. It is
|
|
4010
|
+
* useful as an alternative to <em>NeonSelect</em> to provide filtered results when the universe of results is very
|
|
4011
|
+
* large and/or the results need to be requested from a server side API.
|
|
4012
|
+
* </p>
|
|
4013
|
+
* <p><strong>NeonSearch</strong> provides input chips in the case the search allows multiple selection.</p>
|
|
4014
|
+
*/
|
|
3975
4015
|
NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3976
4016
|
id: {
|
|
3977
4017
|
type: StringConstructor;
|
|
@@ -5781,10 +5821,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5781
5821
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5782
5822
|
}>, {
|
|
5783
5823
|
disabled: boolean;
|
|
5824
|
+
action: import("../../../neon").NeonChipAction;
|
|
5784
5825
|
icon: string;
|
|
5785
5826
|
size: NeonSize;
|
|
5786
5827
|
color: NeonFunctionalColor;
|
|
5787
|
-
action: import("../../../neon").NeonChipAction;
|
|
5788
5828
|
}, {}, {
|
|
5789
5829
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5790
5830
|
name: {
|
|
@@ -6193,6 +6233,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6193
6233
|
color: {
|
|
6194
6234
|
type: () => NeonFunctionalColor;
|
|
6195
6235
|
default: NeonFunctionalColor;
|
|
6236
|
+
}; /**
|
|
6237
|
+
* Allow multi-select.
|
|
6238
|
+
*/
|
|
6239
|
+
buttonStyle: {
|
|
6240
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
6241
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
6196
6242
|
};
|
|
6197
6243
|
circular: {
|
|
6198
6244
|
type: BooleanConstructor;
|
|
@@ -6920,6 +6966,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6920
6966
|
color: {
|
|
6921
6967
|
type: () => NeonFunctionalColor;
|
|
6922
6968
|
default: NeonFunctionalColor;
|
|
6969
|
+
}; /**
|
|
6970
|
+
* Allow multi-select.
|
|
6971
|
+
*/
|
|
6972
|
+
buttonStyle: {
|
|
6973
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
6974
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
6923
6975
|
};
|
|
6924
6976
|
circular: {
|
|
6925
6977
|
type: BooleanConstructor;
|
|
@@ -6947,6 +6999,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6947
6999
|
size: NeonSize;
|
|
6948
7000
|
color: NeonFunctionalColor;
|
|
6949
7001
|
id: string;
|
|
7002
|
+
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
6950
7003
|
state: import("../../../neon").NeonState;
|
|
6951
7004
|
circular: boolean;
|
|
6952
7005
|
directUpload: boolean;
|
|
@@ -7359,7 +7412,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7359
7412
|
inverse: boolean;
|
|
7360
7413
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7361
7414
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7362
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7415
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; /**
|
|
7416
|
+
* <p>
|
|
7417
|
+
* The <strong>NeonSearch</strong> component is equivalent to an HTML <input type="search"> element. It is
|
|
7418
|
+
* useful as an alternative to <em>NeonSelect</em> to provide filtered results when the universe of results is very
|
|
7419
|
+
* large and/or the results need to be requested from a server side API.
|
|
7420
|
+
* </p>
|
|
7421
|
+
* <p><strong>NeonSearch</strong> provides input chips in the case the search allows multiple selection.</p>
|
|
7422
|
+
*/
|
|
7363
7423
|
NeonInput: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7364
7424
|
id: {
|
|
7365
7425
|
type: StringConstructor;
|