@aotearoan/neon 23.2.2 → 23.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/enums/NeonLayoutSize.cjs.js +2 -0
- package/dist/common/enums/NeonLayoutSize.cjs.js.map +1 -0
- package/dist/common/enums/NeonLayoutSize.es.js +5 -0
- package/dist/common/enums/NeonLayoutSize.es.js.map +1 -0
- package/dist/components/layout/inline/NeonInline.cjs.js +1 -1
- package/dist/components/layout/inline/NeonInline.cjs.js.map +1 -1
- package/dist/components/layout/inline/NeonInline.es.js +5 -6
- package/dist/components/layout/inline/NeonInline.es.js.map +1 -1
- package/dist/components/layout/inline/NeonInline.vue.cjs.js +1 -1
- package/dist/components/layout/inline/NeonInline.vue.cjs.js.map +1 -1
- package/dist/components/layout/inline/NeonInline.vue.es.js +4 -4
- package/dist/components/layout/inline/NeonInline.vue.es.js.map +1 -1
- package/dist/components/layout/stack/NeonStack.cjs.js +1 -1
- package/dist/components/layout/stack/NeonStack.cjs.js.map +1 -1
- package/dist/components/layout/stack/NeonStack.es.js +3 -3
- package/dist/components/layout/stack/NeonStack.es.js.map +1 -1
- 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 +8 -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 +15 -13
- 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/neon.cjs.js +1 -1
- package/dist/neon.es.js +97 -95
- package/dist/neon.es.js.map +1 -1
- package/dist/src/common/enums/NeonLayoutSize.d.ts +10 -0
- package/dist/src/components/feedback/banner/NeonBanner.d.ts +12 -15
- package/dist/src/components/feedback/note/NeonNote.d.ts +12 -15
- package/dist/src/components/layout/card-list/NeonCardList.d.ts +12 -15
- package/dist/src/components/layout/inline/NeonInline.d.ts +13 -16
- package/dist/src/components/layout/page/NeonPage.d.ts +12 -15
- package/dist/src/components/layout/stack/NeonStack.d.ts +6 -6
- 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/presentation/image-carousel/NeonImageCarousel.d.ts +5 -5
- 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 +19 -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/dist/src/neon.d.ts +1 -0
- package/package.json +1 -1
- package/src/sass/components/_drop-zone.scss +4 -9
- package/src/sass/components/_field.scss +5 -0
- package/src/sass/components/_file.scss +8 -0
- package/src/sass/components/_inline.scss +2 -35
- package/src/sass/components/_page-container.scss +2 -0
- package/src/sass/components/_select.scss +18 -1
- package/src/sass/components/_stack.scss +2 -35
- package/src/sass/includes/_layout.scss +42 -0
- package/src/sass/variables.scss +26 -10
|
@@ -434,6 +434,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
434
434
|
type: () => NeonFunctionalColor;
|
|
435
435
|
default: NeonFunctionalColor;
|
|
436
436
|
};
|
|
437
|
+
buttonStyle: {
|
|
438
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
439
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
440
|
+
};
|
|
437
441
|
circular: {
|
|
438
442
|
type: BooleanConstructor;
|
|
439
443
|
default: null;
|
|
@@ -443,9 +447,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
443
447
|
default: null;
|
|
444
448
|
};
|
|
445
449
|
icon: {
|
|
446
|
-
type: StringConstructor;
|
|
447
|
-
* aria label of the button icon
|
|
448
|
-
*/
|
|
450
|
+
type: StringConstructor;
|
|
449
451
|
default: null;
|
|
450
452
|
};
|
|
451
453
|
title: {
|
|
@@ -1155,6 +1157,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1155
1157
|
type: () => NeonFunctionalColor;
|
|
1156
1158
|
default: NeonFunctionalColor;
|
|
1157
1159
|
};
|
|
1160
|
+
buttonStyle: {
|
|
1161
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
1162
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
1163
|
+
};
|
|
1158
1164
|
circular: {
|
|
1159
1165
|
type: BooleanConstructor;
|
|
1160
1166
|
default: null;
|
|
@@ -1164,9 +1170,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1164
1170
|
default: null;
|
|
1165
1171
|
};
|
|
1166
1172
|
icon: {
|
|
1167
|
-
type: StringConstructor;
|
|
1168
|
-
* aria label of the button icon
|
|
1169
|
-
*/
|
|
1173
|
+
type: StringConstructor;
|
|
1170
1174
|
default: null;
|
|
1171
1175
|
};
|
|
1172
1176
|
title: {
|
|
@@ -1183,6 +1187,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1183
1187
|
size: NeonSize;
|
|
1184
1188
|
color: NeonFunctionalColor;
|
|
1185
1189
|
id: string;
|
|
1190
|
+
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1186
1191
|
state: import("../../../neon").NeonState;
|
|
1187
1192
|
circular: boolean;
|
|
1188
1193
|
directUpload: boolean;
|
|
@@ -681,16 +681,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
681
681
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
682
682
|
NeonStack: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
683
683
|
gap: {
|
|
684
|
-
type: () => import("../../../neon").
|
|
685
|
-
default: () => import("../../../neon").
|
|
684
|
+
type: () => import("../../../neon").NeonLayoutSize;
|
|
685
|
+
default: () => import("../../../neon").NeonLayoutSize;
|
|
686
686
|
};
|
|
687
687
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
688
688
|
gap: {
|
|
689
|
-
type: () => import("../../../neon").
|
|
690
|
-
default: () => import("../../../neon").
|
|
689
|
+
type: () => import("../../../neon").NeonLayoutSize;
|
|
690
|
+
default: () => import("../../../neon").NeonLayoutSize;
|
|
691
691
|
};
|
|
692
692
|
}>> & Readonly<{}>, {
|
|
693
|
-
gap: import("../../../neon").
|
|
693
|
+
gap: import("../../../neon").NeonLayoutSize;
|
|
694
694
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
695
695
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
696
696
|
export default _default;
|
|
@@ -115,10 +115,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
115
115
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
116
116
|
}>, {
|
|
117
117
|
disabled: boolean;
|
|
118
|
+
action: NeonChipAction;
|
|
118
119
|
icon: string;
|
|
119
120
|
size: NeonSize;
|
|
120
121
|
color: NeonFunctionalColor;
|
|
121
|
-
action: NeonChipAction;
|
|
122
122
|
}, {}, {
|
|
123
123
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
124
124
|
name: {
|
|
@@ -1119,10 +1119,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1119
1119
|
default: null;
|
|
1120
1120
|
};
|
|
1121
1121
|
id: {
|
|
1122
|
+
type: StringConstructor;
|
|
1122
1123
|
/**
|
|
1123
|
-
*
|
|
1124
|
+
* The selected date. A date string in the
|
|
1125
|
+
* <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format.
|
|
1124
1126
|
*/
|
|
1125
|
-
type: StringConstructor;
|
|
1126
1127
|
default: null;
|
|
1127
1128
|
};
|
|
1128
1129
|
size: {
|
|
@@ -1137,6 +1138,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1137
1138
|
type: () => NeonFunctionalColor;
|
|
1138
1139
|
default: NeonFunctionalColor;
|
|
1139
1140
|
};
|
|
1141
|
+
buttonStyle: {
|
|
1142
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
1143
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
1144
|
+
};
|
|
1140
1145
|
circular: {
|
|
1141
1146
|
type: BooleanConstructor;
|
|
1142
1147
|
default: null;
|
|
@@ -1815,10 +1820,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1815
1820
|
text: () => Promise<string>;
|
|
1816
1821
|
}[]>;
|
|
1817
1822
|
fileList: import("vue").ComputedRef<{
|
|
1818
|
-
key: string;
|
|
1819
|
-
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
1820
|
-
* dates for which to disable selection.
|
|
1821
|
-
*/
|
|
1823
|
+
key: string;
|
|
1822
1824
|
label: string;
|
|
1823
1825
|
}[]>;
|
|
1824
1826
|
fileInputModel: import("vue").Ref<string, string>;
|
|
@@ -1844,10 +1846,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1844
1846
|
default: null;
|
|
1845
1847
|
};
|
|
1846
1848
|
id: {
|
|
1849
|
+
type: StringConstructor;
|
|
1847
1850
|
/**
|
|
1848
|
-
*
|
|
1851
|
+
* The selected date. A date string in the
|
|
1852
|
+
* <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format.
|
|
1849
1853
|
*/
|
|
1850
|
-
type: StringConstructor;
|
|
1851
1854
|
default: null;
|
|
1852
1855
|
};
|
|
1853
1856
|
size: {
|
|
@@ -1862,6 +1865,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1862
1865
|
type: () => NeonFunctionalColor;
|
|
1863
1866
|
default: NeonFunctionalColor;
|
|
1864
1867
|
};
|
|
1868
|
+
buttonStyle: {
|
|
1869
|
+
type: () => import("../../../neon").NeonButtonStyle;
|
|
1870
|
+
default: import("../../../neon").NeonButtonStyle;
|
|
1871
|
+
};
|
|
1865
1872
|
circular: {
|
|
1866
1873
|
type: BooleanConstructor;
|
|
1867
1874
|
default: null;
|
|
@@ -1888,6 +1895,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1888
1895
|
size: NeonSize;
|
|
1889
1896
|
color: NeonFunctionalColor;
|
|
1890
1897
|
id: string;
|
|
1898
|
+
buttonStyle: import("../../../neon").NeonButtonStyle;
|
|
1891
1899
|
state: import("../../../neon").NeonState;
|
|
1892
1900
|
circular: boolean;
|
|
1893
1901
|
directUpload: boolean;
|
|
@@ -39,12 +39,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
39
39
|
type: StringConstructor;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Remove empty message space below input. By default, a blank message will be displayed below each input which
|
|
44
|
+
* helps simplify form layouts.
|
|
45
|
+
*/
|
|
46
|
+
noMessage: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
42
50
|
/**
|
|
43
51
|
* Message to display below the input field.
|
|
44
52
|
*/
|
|
45
53
|
message: {
|
|
46
54
|
type: StringConstructor;
|
|
47
|
-
default:
|
|
55
|
+
default: string;
|
|
48
56
|
};
|
|
49
57
|
/**
|
|
50
58
|
* The color of message displayed under input. Can be any functional color.
|
|
@@ -89,12 +97,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
89
97
|
type: StringConstructor;
|
|
90
98
|
default: string;
|
|
91
99
|
};
|
|
100
|
+
/**
|
|
101
|
+
* Remove empty message space below input. By default, a blank message will be displayed below each input which
|
|
102
|
+
* helps simplify form layouts.
|
|
103
|
+
*/
|
|
104
|
+
noMessage: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
92
108
|
/**
|
|
93
109
|
* Message to display below the input field.
|
|
94
110
|
*/
|
|
95
111
|
message: {
|
|
96
112
|
type: StringConstructor;
|
|
97
|
-
default:
|
|
113
|
+
default: string;
|
|
98
114
|
};
|
|
99
115
|
/**
|
|
100
116
|
* The color of message displayed under input. Can be any functional color.
|
|
@@ -109,6 +125,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
109
125
|
optional: boolean;
|
|
110
126
|
labelFor: string;
|
|
111
127
|
optionalLabel: string;
|
|
128
|
+
noMessage: boolean;
|
|
112
129
|
messageColor: NeonFunctionalColor;
|
|
113
130
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
114
131
|
export default _default;
|
|
@@ -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: {
|