@oub/fusion 0.2.63 → 0.2.64
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/common/bars/footer/FusionFooterBar.vue.d.ts +63 -0
- package/dist/components/common/bars/subheading-bar/FusionSubheadingBar.vue.d.ts +12 -0
- package/dist/components/common/card/FusionCard.vue.d.ts +1 -1
- package/dist/components/common/date-picker/FusionDatePicker.vue.d.ts +1 -1
- package/dist/components/common/key-value-pair/FusionKeyValuePair.vue.d.ts +32 -0
- package/dist/components/form/button/FusionButton.vue.d.ts +1 -1
- package/dist/components/form/checkbox/FusionCheckbox.vue.d.ts +1 -1
- package/dist/components/form/checkbox/FusionCheckboxGroup.vue.d.ts +45 -0
- package/dist/components/form/icon-button/FusionIconButton.vue.d.ts +1 -1
- package/dist/components/form/input/FusionInput.vue.d.ts +1 -1
- package/dist/components/form/password-input/FusionPasswordInput.vue.d.ts +1 -1
- package/dist/components/form/phone/FusionPhoneInput.vue.d.ts +1 -1
- package/dist/components/form/radio/FusionRadio.vue.d.ts +1 -1
- package/dist/components/form/radio/FusionRadioGroup.vue.d.ts +45 -0
- package/dist/components/form/searchable-input/FusionSearchableInput.vue.d.ts +1 -1
- package/dist/components/form/select/FusionSelect.vue.d.ts +1 -1
- package/dist/components/form/textarea/FusionTextarea.vue.d.ts +1 -1
- package/dist/components/link/text/FusionTextLink.vue.d.ts +1 -1
- package/dist/fusion.js +2952 -2714
- package/dist/fusion.umd.cjs +3 -3
- package/dist/main.d.ts +7 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- /package/dist/components/common/{toolbar → bars/toolbar}/FusionToolBar.vue.d.ts +0 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
hideCancelButton: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
hideBackButton: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
hideConfirmButton: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
cancelButtonLabel: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
backButtonLabel: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
confirmButtonLabel: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "back" | "confirm")[], "cancel" | "back" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
hideCancelButton: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
hideBackButton: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
hideConfirmButton: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
cancelButtonLabel: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
backButtonLabel: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
confirmButtonLabel: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
}>> & {
|
|
52
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
hideCancelButton: boolean;
|
|
57
|
+
hideBackButton: boolean;
|
|
58
|
+
hideConfirmButton: boolean;
|
|
59
|
+
cancelButtonLabel: string;
|
|
60
|
+
backButtonLabel: string;
|
|
61
|
+
confirmButtonLabel: string;
|
|
62
|
+
}, {}>;
|
|
63
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
label: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
label: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}, {}>;
|
|
12
|
+
export default _default;
|
|
@@ -45,9 +45,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
45
|
}>> & {
|
|
46
46
|
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
47
47
|
}, {
|
|
48
|
+
disabled: boolean;
|
|
48
49
|
shadow: boolean;
|
|
49
50
|
variant: string;
|
|
50
|
-
disabled: boolean;
|
|
51
51
|
selected: boolean;
|
|
52
52
|
selectable: boolean;
|
|
53
53
|
}, {}>;
|
|
@@ -151,11 +151,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
151
151
|
}, {
|
|
152
152
|
dataTest: string;
|
|
153
153
|
disabled: boolean;
|
|
154
|
+
required: boolean;
|
|
154
155
|
modelValue: string | Date;
|
|
155
156
|
placeholder: string;
|
|
156
157
|
minDate: string;
|
|
157
158
|
maxDate: string;
|
|
158
|
-
required: boolean;
|
|
159
159
|
format: string;
|
|
160
160
|
clearable: boolean;
|
|
161
161
|
autocomplete: string;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
keyText: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
valueText: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
orientation: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
keyText: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
valueText: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
orientation: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
keyText: string;
|
|
29
|
+
valueText: string;
|
|
30
|
+
orientation: string;
|
|
31
|
+
}, {}>;
|
|
32
|
+
export default _default;
|
|
@@ -99,9 +99,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
99
|
variantType: keyof FusionButtonVariantType;
|
|
100
100
|
dataTest: string;
|
|
101
101
|
type: "button" | "submit" | "reset" | undefined;
|
|
102
|
-
disabled: boolean;
|
|
103
102
|
variantStyle: keyof FusionButtonVariantStyle;
|
|
104
103
|
size: keyof FusionButtonSize;
|
|
105
104
|
loading: boolean;
|
|
105
|
+
disabled: boolean;
|
|
106
106
|
}, {}>;
|
|
107
107
|
export default _default;
|
|
@@ -110,9 +110,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
110
110
|
dataTest: string;
|
|
111
111
|
value: string;
|
|
112
112
|
disabled: boolean;
|
|
113
|
+
helperText: string;
|
|
113
114
|
error: boolean;
|
|
114
115
|
tabIndex: number;
|
|
115
|
-
helperText: string;
|
|
116
116
|
defaultValue: boolean;
|
|
117
117
|
focusable: boolean;
|
|
118
118
|
}, {}>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { Checkbox } from '../../../../types/components/FusionCheckbox';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
label: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
helperText: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
errorText: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
checkboxes: {
|
|
16
|
+
type: () => Checkbox[];
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
}, unknown, unknown, {}, {
|
|
20
|
+
updateValue(index: number, value: boolean): void;
|
|
21
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:checkboxes"[], "update:checkboxes", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
label: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
helperText: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
errorText: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
checkboxes: {
|
|
35
|
+
type: () => Checkbox[];
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
}>> & {
|
|
39
|
+
"onUpdate:checkboxes"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
label: string;
|
|
42
|
+
helperText: string;
|
|
43
|
+
errorText: string;
|
|
44
|
+
}, {}>;
|
|
45
|
+
export default _default;
|
|
@@ -87,9 +87,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
variantType: keyof FusionButtonVariantType;
|
|
88
88
|
dataTest: string;
|
|
89
89
|
type: "button" | "submit" | "reset" | undefined;
|
|
90
|
-
disabled: boolean;
|
|
91
90
|
variantStyle: keyof FusionButtonVariantStyle;
|
|
92
91
|
size: keyof FusionButtonSize;
|
|
93
92
|
loading: boolean;
|
|
93
|
+
disabled: boolean;
|
|
94
94
|
}, {}>;
|
|
95
95
|
export default _default;
|
|
@@ -153,9 +153,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
153
153
|
dataTest: string;
|
|
154
154
|
type: string;
|
|
155
155
|
disabled: boolean;
|
|
156
|
+
required: boolean;
|
|
156
157
|
placeholder: string;
|
|
157
158
|
readonly: boolean;
|
|
158
|
-
required: boolean;
|
|
159
159
|
autocomplete: string;
|
|
160
160
|
helperLabel: string;
|
|
161
161
|
errorLabel: string;
|
|
@@ -124,8 +124,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
124
124
|
input: string;
|
|
125
125
|
dataTest: string;
|
|
126
126
|
disabled: boolean;
|
|
127
|
-
placeholder: string;
|
|
128
127
|
required: boolean;
|
|
128
|
+
placeholder: string;
|
|
129
129
|
autocomplete: string;
|
|
130
130
|
helperLabel: string;
|
|
131
131
|
errorLabel: string;
|
|
@@ -175,9 +175,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
175
175
|
id: string;
|
|
176
176
|
dataTest: string;
|
|
177
177
|
disabled: boolean;
|
|
178
|
+
required: boolean;
|
|
178
179
|
placeholder: string;
|
|
179
180
|
readonly: boolean;
|
|
180
|
-
required: boolean;
|
|
181
181
|
autocomplete: string;
|
|
182
182
|
helperLabel: string;
|
|
183
183
|
errorLabel: string;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { Radio } from '../../../../types/components/FusionRadio';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
label: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
helperText: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
errorText: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
radios: {
|
|
16
|
+
type: () => Radio[];
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
}, unknown, unknown, {}, {
|
|
20
|
+
updateValue(index: number, value: string): void;
|
|
21
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:radios"[], "update:radios", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
label: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
helperText: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
errorText: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
radios: {
|
|
35
|
+
type: () => Radio[];
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
}>> & {
|
|
39
|
+
"onUpdate:radios"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
label: string;
|
|
42
|
+
helperText: string;
|
|
43
|
+
errorText: string;
|
|
44
|
+
}, {}>;
|
|
45
|
+
export default _default;
|
|
@@ -227,11 +227,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
227
|
title: string;
|
|
228
228
|
dataTest: string;
|
|
229
229
|
disabled: boolean;
|
|
230
|
+
required: boolean;
|
|
230
231
|
searchText: string;
|
|
231
232
|
modelValue: FusionSelectOption;
|
|
232
233
|
placeholder: string;
|
|
233
234
|
readonly: boolean;
|
|
234
|
-
required: boolean;
|
|
235
235
|
autocomplete: string;
|
|
236
236
|
helperLabel: string;
|
|
237
237
|
errorLabel: string;
|
|
@@ -224,11 +224,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
224
224
|
title: string;
|
|
225
225
|
dataTest: string;
|
|
226
226
|
disabled: boolean;
|
|
227
|
+
required: boolean;
|
|
227
228
|
searchText: string;
|
|
228
229
|
modelValue: FusionSelectOption;
|
|
229
230
|
placeholder: string;
|
|
230
231
|
readonly: boolean;
|
|
231
|
-
required: boolean;
|
|
232
232
|
autocomplete: string;
|
|
233
233
|
helperLabel: string;
|
|
234
234
|
errorLabel: string;
|
|
@@ -164,10 +164,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
164
164
|
}, {
|
|
165
165
|
dataTest: string;
|
|
166
166
|
disabled: boolean;
|
|
167
|
+
required: boolean;
|
|
167
168
|
modelValue: string;
|
|
168
169
|
placeholder: string;
|
|
169
170
|
readonly: boolean;
|
|
170
|
-
required: boolean;
|
|
171
171
|
autocomplete: string;
|
|
172
172
|
helperLabel: string;
|
|
173
173
|
errorLabel: string;
|
|
@@ -113,9 +113,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
113
|
variantType: keyof VariantTypes;
|
|
114
114
|
dataTest: string;
|
|
115
115
|
target: string;
|
|
116
|
+
size: keyof Sizes;
|
|
116
117
|
disabled: boolean;
|
|
117
118
|
href: string;
|
|
118
|
-
size: keyof Sizes;
|
|
119
119
|
tabIndex: string;
|
|
120
120
|
iconPlacement: keyof FusionTextLinkIconPlacement;
|
|
121
121
|
elementType: FusionTextLinkElement;
|