@oub/fusion 0.2.142 → 0.2.144
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/fusion.js +1042 -1057
- package/dist/fusion.umd.cjs +6 -6
- package/dist/lib/components/form/searchable-input/FusionSearchableInput.vue.d.ts +66 -77
- package/dist/lib/components/form/select/FusionSelect.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/lib/components/form/input/FusionInput.d.ts +0 -2
- package/dist/lib/components/form/password-input/FusionPasswordInput.d.ts +0 -2
- package/dist/lib/components/form/searchable-input/FusionSearchableInput.d.ts +0 -9
|
@@ -9,43 +9,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
type: StringConstructor;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
options: {
|
|
13
|
-
type: PropType<FusionSelectOption[]>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
12
|
label: {
|
|
17
13
|
type: StringConstructor;
|
|
18
14
|
default: string;
|
|
19
15
|
};
|
|
20
|
-
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
searchText: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
searchPlaceholder: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
searchLoading: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
searchErrorTitle: {
|
|
37
|
-
type: StringConstructor;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
searchErrorDescription: {
|
|
16
|
+
helperLabel: {
|
|
41
17
|
type: StringConstructor;
|
|
42
18
|
default: string;
|
|
43
19
|
};
|
|
44
|
-
|
|
45
|
-
type: NumberConstructor;
|
|
46
|
-
default: number;
|
|
47
|
-
};
|
|
48
|
-
helperLabel: {
|
|
20
|
+
placeholder: {
|
|
49
21
|
type: StringConstructor;
|
|
50
22
|
default: string;
|
|
51
23
|
};
|
|
@@ -60,10 +32,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
60
32
|
value: null;
|
|
61
33
|
};
|
|
62
34
|
};
|
|
63
|
-
required: {
|
|
64
|
-
type: BooleanConstructor;
|
|
65
|
-
default: boolean;
|
|
66
|
-
};
|
|
67
35
|
tabIndex: {
|
|
68
36
|
type: NumberConstructor;
|
|
69
37
|
default: number;
|
|
@@ -72,19 +40,47 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
40
|
type: StringConstructor;
|
|
73
41
|
default: string;
|
|
74
42
|
};
|
|
75
|
-
|
|
43
|
+
disabled: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
autofocus: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
options: {
|
|
52
|
+
type: PropType<FusionSelectOption[]>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
searchText: {
|
|
76
56
|
type: StringConstructor;
|
|
77
57
|
default: string;
|
|
78
58
|
};
|
|
79
|
-
|
|
59
|
+
searchPlaceholder: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
searchLoading: {
|
|
80
64
|
type: BooleanConstructor;
|
|
81
65
|
default: boolean;
|
|
82
66
|
};
|
|
67
|
+
searchErrorTitle: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
searchErrorDescription: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
minSearchLength: {
|
|
76
|
+
type: NumberConstructor;
|
|
77
|
+
default: number;
|
|
78
|
+
};
|
|
83
79
|
readonly: {
|
|
84
80
|
type: BooleanConstructor;
|
|
85
81
|
default: boolean;
|
|
86
82
|
};
|
|
87
|
-
|
|
83
|
+
required: {
|
|
88
84
|
type: BooleanConstructor;
|
|
89
85
|
default: boolean;
|
|
90
86
|
};
|
|
@@ -99,7 +95,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
99
95
|
}>, {}, {
|
|
100
96
|
selected: FusionSelectOption;
|
|
101
97
|
searchInputValue: string;
|
|
102
|
-
styleVariables: {};
|
|
103
98
|
interactionStates: {
|
|
104
99
|
opened: boolean;
|
|
105
100
|
focused: boolean;
|
|
@@ -107,7 +102,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
107
102
|
}, {
|
|
108
103
|
stateClasses(): {
|
|
109
104
|
disabled: boolean;
|
|
110
|
-
error: boolean;
|
|
111
105
|
opened: boolean;
|
|
112
106
|
};
|
|
113
107
|
}, {
|
|
@@ -128,43 +122,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
128
122
|
type: StringConstructor;
|
|
129
123
|
required: true;
|
|
130
124
|
};
|
|
131
|
-
options: {
|
|
132
|
-
type: PropType<FusionSelectOption[]>;
|
|
133
|
-
required: true;
|
|
134
|
-
};
|
|
135
125
|
label: {
|
|
136
126
|
type: StringConstructor;
|
|
137
127
|
default: string;
|
|
138
128
|
};
|
|
139
|
-
|
|
140
|
-
type: StringConstructor;
|
|
141
|
-
default: string;
|
|
142
|
-
};
|
|
143
|
-
searchText: {
|
|
144
|
-
type: StringConstructor;
|
|
145
|
-
default: string;
|
|
146
|
-
};
|
|
147
|
-
searchPlaceholder: {
|
|
148
|
-
type: StringConstructor;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
|
-
searchLoading: {
|
|
152
|
-
type: BooleanConstructor;
|
|
153
|
-
default: boolean;
|
|
154
|
-
};
|
|
155
|
-
searchErrorTitle: {
|
|
156
|
-
type: StringConstructor;
|
|
157
|
-
default: string;
|
|
158
|
-
};
|
|
159
|
-
searchErrorDescription: {
|
|
129
|
+
helperLabel: {
|
|
160
130
|
type: StringConstructor;
|
|
161
131
|
default: string;
|
|
162
132
|
};
|
|
163
|
-
|
|
164
|
-
type: NumberConstructor;
|
|
165
|
-
default: number;
|
|
166
|
-
};
|
|
167
|
-
helperLabel: {
|
|
133
|
+
placeholder: {
|
|
168
134
|
type: StringConstructor;
|
|
169
135
|
default: string;
|
|
170
136
|
};
|
|
@@ -179,10 +145,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
179
145
|
value: null;
|
|
180
146
|
};
|
|
181
147
|
};
|
|
182
|
-
required: {
|
|
183
|
-
type: BooleanConstructor;
|
|
184
|
-
default: boolean;
|
|
185
|
-
};
|
|
186
148
|
tabIndex: {
|
|
187
149
|
type: NumberConstructor;
|
|
188
150
|
default: number;
|
|
@@ -191,19 +153,47 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
191
153
|
type: StringConstructor;
|
|
192
154
|
default: string;
|
|
193
155
|
};
|
|
194
|
-
|
|
156
|
+
disabled: {
|
|
157
|
+
type: BooleanConstructor;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
autofocus: {
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
default: boolean;
|
|
163
|
+
};
|
|
164
|
+
options: {
|
|
165
|
+
type: PropType<FusionSelectOption[]>;
|
|
166
|
+
required: true;
|
|
167
|
+
};
|
|
168
|
+
searchText: {
|
|
195
169
|
type: StringConstructor;
|
|
196
170
|
default: string;
|
|
197
171
|
};
|
|
198
|
-
|
|
172
|
+
searchPlaceholder: {
|
|
173
|
+
type: StringConstructor;
|
|
174
|
+
default: string;
|
|
175
|
+
};
|
|
176
|
+
searchLoading: {
|
|
199
177
|
type: BooleanConstructor;
|
|
200
178
|
default: boolean;
|
|
201
179
|
};
|
|
180
|
+
searchErrorTitle: {
|
|
181
|
+
type: StringConstructor;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
searchErrorDescription: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
minSearchLength: {
|
|
189
|
+
type: NumberConstructor;
|
|
190
|
+
default: number;
|
|
191
|
+
};
|
|
202
192
|
readonly: {
|
|
203
193
|
type: BooleanConstructor;
|
|
204
194
|
default: boolean;
|
|
205
195
|
};
|
|
206
|
-
|
|
196
|
+
required: {
|
|
207
197
|
type: BooleanConstructor;
|
|
208
198
|
default: boolean;
|
|
209
199
|
};
|
|
@@ -225,7 +215,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
225
215
|
}>, {
|
|
226
216
|
dataTest: string;
|
|
227
217
|
label: string;
|
|
228
|
-
title: string;
|
|
229
218
|
required: boolean;
|
|
230
219
|
disabled: boolean;
|
|
231
220
|
placeholder: string;
|
|
@@ -625,6 +625,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
625
625
|
SVGCheck: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
626
626
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
627
627
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
628
|
-
|
|
628
|
+
SVGExclamationOctagon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
629
629
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
630
630
|
export default _default;
|