@oub/fusion 0.2.147 → 0.2.149
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 +1224 -1256
- package/dist/fusion.umd.cjs +6 -6
- package/dist/lib/components/common/banner/FusionBanner.vue.d.ts +16 -53
- package/dist/lib/components/common/bars/toolbar/FusionToolBar.vue.d.ts +16 -53
- package/dist/lib/components/common/modal/FusionModal.vue.d.ts +16 -53
- package/dist/lib/components/common/modal/modal-header/FusionModalHeader.vue.d.ts +16 -53
- package/dist/lib/components/common/numeric-input-stepper/FusionNumericInputStepper.vue.d.ts +16 -53
- package/dist/lib/components/common/side-navigation/FusionSideNavigation.vue.d.ts +16 -53
- package/dist/lib/components/form/file-uploader/button/FusionFileUploaderButton.vue.d.ts +16 -53
- package/dist/lib/components/form/file-uploader/components/FileUploaderList.vue.d.ts +16 -53
- package/dist/lib/components/form/file-uploader/components/FileUploaderListItem.vue.d.ts +16 -53
- package/dist/lib/components/form/icon-button/FusionIconButton.vue.d.ts +16 -53
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -81,31 +81,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
81
81
|
minValue: number;
|
|
82
82
|
}, {}, {
|
|
83
83
|
FusionIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
84
|
+
id: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
84
88
|
variantType: {
|
|
85
89
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
86
|
-
required: false;
|
|
87
90
|
default: string;
|
|
88
91
|
};
|
|
89
92
|
variantStyle: {
|
|
90
93
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
91
|
-
required: false;
|
|
92
94
|
default: string;
|
|
93
95
|
};
|
|
94
96
|
size: {
|
|
95
97
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
96
|
-
required: false;
|
|
97
98
|
default: string;
|
|
98
99
|
};
|
|
99
100
|
type: {
|
|
100
101
|
type: import('vue').PropType<"button" | "submit" | "reset" | undefined>;
|
|
101
|
-
required: false;
|
|
102
102
|
default: string;
|
|
103
103
|
};
|
|
104
|
-
loading: {
|
|
105
|
-
type: BooleanConstructor;
|
|
106
|
-
required: false;
|
|
107
|
-
default: boolean;
|
|
108
|
-
};
|
|
109
104
|
disabled: {
|
|
110
105
|
type: BooleanConstructor;
|
|
111
106
|
default: boolean;
|
|
@@ -116,7 +111,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
116
111
|
};
|
|
117
112
|
ariaLabel: {
|
|
118
113
|
type: StringConstructor;
|
|
119
|
-
required: false;
|
|
120
114
|
default: undefined;
|
|
121
115
|
};
|
|
122
116
|
}>, {}, {
|
|
@@ -124,40 +118,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
118
|
hover: boolean;
|
|
125
119
|
fusionIconButtonEl: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
126
120
|
}, {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
spinnerColourValue(): string | undefined;
|
|
130
|
-
variantTypeClass(): "" | "fusion-button-primary" | "fusion-button-danger";
|
|
131
|
-
variantStyleClass(): "" | "fusion-button-filled" | "fusion-button-outline" | "fusion-button-ghost" | "fusion-button-plain";
|
|
132
|
-
buttonSizeClass(): "" | "fusion-icon-button-small" | "fusion-icon-button-regular";
|
|
121
|
+
variantTypeClass: () => "primary" | "danger";
|
|
122
|
+
variantStyleClass: () => "filled" | "outline" | "ghost" | "plain";
|
|
133
123
|
}, {
|
|
134
|
-
onClick(event: Event)
|
|
135
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin,
|
|
124
|
+
onClick: (event: Event) => void;
|
|
125
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
126
|
+
click: null;
|
|
127
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
128
|
+
id: {
|
|
129
|
+
type: StringConstructor;
|
|
130
|
+
default: string;
|
|
131
|
+
};
|
|
136
132
|
variantType: {
|
|
137
133
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
138
|
-
required: false;
|
|
139
134
|
default: string;
|
|
140
135
|
};
|
|
141
136
|
variantStyle: {
|
|
142
137
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
143
|
-
required: false;
|
|
144
138
|
default: string;
|
|
145
139
|
};
|
|
146
140
|
size: {
|
|
147
141
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
148
|
-
required: false;
|
|
149
142
|
default: string;
|
|
150
143
|
};
|
|
151
144
|
type: {
|
|
152
145
|
type: import('vue').PropType<"button" | "submit" | "reset" | undefined>;
|
|
153
|
-
required: false;
|
|
154
146
|
default: string;
|
|
155
147
|
};
|
|
156
|
-
loading: {
|
|
157
|
-
type: BooleanConstructor;
|
|
158
|
-
required: false;
|
|
159
|
-
default: boolean;
|
|
160
|
-
};
|
|
161
148
|
disabled: {
|
|
162
149
|
type: BooleanConstructor;
|
|
163
150
|
default: boolean;
|
|
@@ -168,7 +155,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
168
155
|
};
|
|
169
156
|
ariaLabel: {
|
|
170
157
|
type: StringConstructor;
|
|
171
|
-
required: false;
|
|
172
158
|
default: undefined;
|
|
173
159
|
};
|
|
174
160
|
}>> & Readonly<{
|
|
@@ -176,36 +162,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
176
162
|
}>, {
|
|
177
163
|
type: "button" | "submit" | "reset" | undefined;
|
|
178
164
|
dataTest: string;
|
|
165
|
+
id: string;
|
|
179
166
|
variantType: keyof import('../../../../types/components/FusionButton').FusionButtonVariantType;
|
|
180
167
|
variantStyle: keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle;
|
|
181
168
|
size: keyof import('../../../../types/components/FusionButton').FusionButtonSize;
|
|
182
|
-
loading: boolean;
|
|
183
169
|
disabled: boolean;
|
|
184
170
|
ariaLabel: string;
|
|
185
|
-
}, {}, {
|
|
186
|
-
FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
187
|
-
spinnerColour: {
|
|
188
|
-
type: StringConstructor;
|
|
189
|
-
default: string;
|
|
190
|
-
};
|
|
191
|
-
dataTest: {
|
|
192
|
-
type: StringConstructor;
|
|
193
|
-
default: string;
|
|
194
|
-
};
|
|
195
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
196
|
-
spinnerColour: {
|
|
197
|
-
type: StringConstructor;
|
|
198
|
-
default: string;
|
|
199
|
-
};
|
|
200
|
-
dataTest: {
|
|
201
|
-
type: StringConstructor;
|
|
202
|
-
default: string;
|
|
203
|
-
};
|
|
204
|
-
}>> & Readonly<{}>, {
|
|
205
|
-
spinnerColour: string;
|
|
206
|
-
dataTest: string;
|
|
207
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
208
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
171
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
209
172
|
SVGDecrement: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
210
173
|
SVGIncrement: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
211
174
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -32,31 +32,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
32
32
|
mobileBreakpoint: number;
|
|
33
33
|
}, {}, {
|
|
34
34
|
FusionIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
35
|
+
id: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
35
39
|
variantType: {
|
|
36
40
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
37
|
-
required: false;
|
|
38
41
|
default: string;
|
|
39
42
|
};
|
|
40
43
|
variantStyle: {
|
|
41
44
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
42
|
-
required: false;
|
|
43
45
|
default: string;
|
|
44
46
|
};
|
|
45
47
|
size: {
|
|
46
48
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
47
|
-
required: false;
|
|
48
49
|
default: string;
|
|
49
50
|
};
|
|
50
51
|
type: {
|
|
51
52
|
type: import('vue').PropType<"button" | "submit" | "reset" | undefined>;
|
|
52
|
-
required: false;
|
|
53
53
|
default: string;
|
|
54
54
|
};
|
|
55
|
-
loading: {
|
|
56
|
-
type: BooleanConstructor;
|
|
57
|
-
required: false;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
55
|
disabled: {
|
|
61
56
|
type: BooleanConstructor;
|
|
62
57
|
default: boolean;
|
|
@@ -67,7 +62,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
67
62
|
};
|
|
68
63
|
ariaLabel: {
|
|
69
64
|
type: StringConstructor;
|
|
70
|
-
required: false;
|
|
71
65
|
default: undefined;
|
|
72
66
|
};
|
|
73
67
|
}>, {}, {
|
|
@@ -75,40 +69,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
69
|
hover: boolean;
|
|
76
70
|
fusionIconButtonEl: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
77
71
|
}, {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
spinnerColourValue(): string | undefined;
|
|
81
|
-
variantTypeClass(): "" | "fusion-button-primary" | "fusion-button-danger";
|
|
82
|
-
variantStyleClass(): "" | "fusion-button-filled" | "fusion-button-outline" | "fusion-button-ghost" | "fusion-button-plain";
|
|
83
|
-
buttonSizeClass(): "" | "fusion-icon-button-small" | "fusion-icon-button-regular";
|
|
72
|
+
variantTypeClass: () => "primary" | "danger";
|
|
73
|
+
variantStyleClass: () => "filled" | "outline" | "ghost" | "plain";
|
|
84
74
|
}, {
|
|
85
|
-
onClick(event: Event)
|
|
86
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin,
|
|
75
|
+
onClick: (event: Event) => void;
|
|
76
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
77
|
+
click: null;
|
|
78
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
79
|
+
id: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
87
83
|
variantType: {
|
|
88
84
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
89
|
-
required: false;
|
|
90
85
|
default: string;
|
|
91
86
|
};
|
|
92
87
|
variantStyle: {
|
|
93
88
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
94
|
-
required: false;
|
|
95
89
|
default: string;
|
|
96
90
|
};
|
|
97
91
|
size: {
|
|
98
92
|
type: import('vue').PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
99
|
-
required: false;
|
|
100
93
|
default: string;
|
|
101
94
|
};
|
|
102
95
|
type: {
|
|
103
96
|
type: import('vue').PropType<"button" | "submit" | "reset" | undefined>;
|
|
104
|
-
required: false;
|
|
105
97
|
default: string;
|
|
106
98
|
};
|
|
107
|
-
loading: {
|
|
108
|
-
type: BooleanConstructor;
|
|
109
|
-
required: false;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
99
|
disabled: {
|
|
113
100
|
type: BooleanConstructor;
|
|
114
101
|
default: boolean;
|
|
@@ -119,7 +106,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
119
106
|
};
|
|
120
107
|
ariaLabel: {
|
|
121
108
|
type: StringConstructor;
|
|
122
|
-
required: false;
|
|
123
109
|
default: undefined;
|
|
124
110
|
};
|
|
125
111
|
}>> & Readonly<{
|
|
@@ -127,36 +113,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
127
113
|
}>, {
|
|
128
114
|
type: "button" | "submit" | "reset" | undefined;
|
|
129
115
|
dataTest: string;
|
|
116
|
+
id: string;
|
|
130
117
|
variantType: keyof import('../../../../types/components/FusionButton').FusionButtonVariantType;
|
|
131
118
|
variantStyle: keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle;
|
|
132
119
|
size: keyof import('../../../../types/components/FusionButton').FusionButtonSize;
|
|
133
|
-
loading: boolean;
|
|
134
120
|
disabled: boolean;
|
|
135
121
|
ariaLabel: string;
|
|
136
|
-
}, {}, {
|
|
137
|
-
FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
138
|
-
spinnerColour: {
|
|
139
|
-
type: StringConstructor;
|
|
140
|
-
default: string;
|
|
141
|
-
};
|
|
142
|
-
dataTest: {
|
|
143
|
-
type: StringConstructor;
|
|
144
|
-
default: string;
|
|
145
|
-
};
|
|
146
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
147
|
-
spinnerColour: {
|
|
148
|
-
type: StringConstructor;
|
|
149
|
-
default: string;
|
|
150
|
-
};
|
|
151
|
-
dataTest: {
|
|
152
|
-
type: StringConstructor;
|
|
153
|
-
default: string;
|
|
154
|
-
};
|
|
155
|
-
}>> & Readonly<{}>, {
|
|
156
|
-
spinnerColour: string;
|
|
157
|
-
dataTest: string;
|
|
158
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
159
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
122
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
160
123
|
SVGXMark: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
161
124
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
162
125
|
export default _default;
|
|
@@ -331,31 +331,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
331
331
|
SVGBin: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
332
332
|
SVGImagePlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
333
333
|
FusionIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
334
|
+
id: {
|
|
335
|
+
type: StringConstructor;
|
|
336
|
+
default: string;
|
|
337
|
+
};
|
|
334
338
|
variantType: {
|
|
335
339
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
336
|
-
required: false;
|
|
337
340
|
default: string;
|
|
338
341
|
};
|
|
339
342
|
variantStyle: {
|
|
340
343
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
341
|
-
required: false;
|
|
342
344
|
default: string;
|
|
343
345
|
};
|
|
344
346
|
size: {
|
|
345
347
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
346
|
-
required: false;
|
|
347
348
|
default: string;
|
|
348
349
|
};
|
|
349
350
|
type: {
|
|
350
351
|
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
351
|
-
required: false;
|
|
352
352
|
default: string;
|
|
353
353
|
};
|
|
354
|
-
loading: {
|
|
355
|
-
type: BooleanConstructor;
|
|
356
|
-
required: false;
|
|
357
|
-
default: boolean;
|
|
358
|
-
};
|
|
359
354
|
disabled: {
|
|
360
355
|
type: BooleanConstructor;
|
|
361
356
|
default: boolean;
|
|
@@ -366,7 +361,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
366
361
|
};
|
|
367
362
|
ariaLabel: {
|
|
368
363
|
type: StringConstructor;
|
|
369
|
-
required: false;
|
|
370
364
|
default: undefined;
|
|
371
365
|
};
|
|
372
366
|
}>, {}, {
|
|
@@ -374,40 +368,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
374
368
|
hover: boolean;
|
|
375
369
|
fusionIconButtonEl: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
376
370
|
}, {
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
spinnerColourValue(): string | undefined;
|
|
380
|
-
variantTypeClass(): "" | "fusion-button-primary" | "fusion-button-danger";
|
|
381
|
-
variantStyleClass(): "" | "fusion-button-filled" | "fusion-button-outline" | "fusion-button-ghost" | "fusion-button-plain";
|
|
382
|
-
buttonSizeClass(): "" | "fusion-icon-button-small" | "fusion-icon-button-regular";
|
|
371
|
+
variantTypeClass: () => "primary" | "danger";
|
|
372
|
+
variantStyleClass: () => "filled" | "outline" | "ghost" | "plain";
|
|
383
373
|
}, {
|
|
384
|
-
onClick(event: Event)
|
|
385
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin,
|
|
374
|
+
onClick: (event: Event) => void;
|
|
375
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
376
|
+
click: null;
|
|
377
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
378
|
+
id: {
|
|
379
|
+
type: StringConstructor;
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
386
382
|
variantType: {
|
|
387
383
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
388
|
-
required: false;
|
|
389
384
|
default: string;
|
|
390
385
|
};
|
|
391
386
|
variantStyle: {
|
|
392
387
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
393
|
-
required: false;
|
|
394
388
|
default: string;
|
|
395
389
|
};
|
|
396
390
|
size: {
|
|
397
391
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
398
|
-
required: false;
|
|
399
392
|
default: string;
|
|
400
393
|
};
|
|
401
394
|
type: {
|
|
402
395
|
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
403
|
-
required: false;
|
|
404
396
|
default: string;
|
|
405
397
|
};
|
|
406
|
-
loading: {
|
|
407
|
-
type: BooleanConstructor;
|
|
408
|
-
required: false;
|
|
409
|
-
default: boolean;
|
|
410
|
-
};
|
|
411
398
|
disabled: {
|
|
412
399
|
type: BooleanConstructor;
|
|
413
400
|
default: boolean;
|
|
@@ -418,7 +405,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
418
405
|
};
|
|
419
406
|
ariaLabel: {
|
|
420
407
|
type: StringConstructor;
|
|
421
|
-
required: false;
|
|
422
408
|
default: undefined;
|
|
423
409
|
};
|
|
424
410
|
}>> & Readonly<{
|
|
@@ -426,36 +412,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
426
412
|
}>, {
|
|
427
413
|
type: "button" | "submit" | "reset" | undefined;
|
|
428
414
|
dataTest: string;
|
|
415
|
+
id: string;
|
|
429
416
|
variantType: keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType;
|
|
430
417
|
variantStyle: keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle;
|
|
431
418
|
size: keyof import('../../../../../types/components/FusionButton').FusionButtonSize;
|
|
432
|
-
loading: boolean;
|
|
433
419
|
disabled: boolean;
|
|
434
420
|
ariaLabel: string;
|
|
435
|
-
}, {}, {
|
|
436
|
-
FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
437
|
-
spinnerColour: {
|
|
438
|
-
type: StringConstructor;
|
|
439
|
-
default: string;
|
|
440
|
-
};
|
|
441
|
-
dataTest: {
|
|
442
|
-
type: StringConstructor;
|
|
443
|
-
default: string;
|
|
444
|
-
};
|
|
445
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
446
|
-
spinnerColour: {
|
|
447
|
-
type: StringConstructor;
|
|
448
|
-
default: string;
|
|
449
|
-
};
|
|
450
|
-
dataTest: {
|
|
451
|
-
type: StringConstructor;
|
|
452
|
-
default: string;
|
|
453
|
-
};
|
|
454
|
-
}>> & Readonly<{}>, {
|
|
455
|
-
spinnerColour: string;
|
|
456
|
-
dataTest: string;
|
|
457
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
458
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
421
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
459
422
|
FusionProgressBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
460
423
|
mode: {
|
|
461
424
|
type: () => "steps" | "percentage";
|
|
@@ -60,31 +60,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
60
60
|
SVGBin: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
61
61
|
SVGImagePlaceholder: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
62
62
|
FusionIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
63
|
+
id: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
63
67
|
variantType: {
|
|
64
68
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
65
|
-
required: false;
|
|
66
69
|
default: string;
|
|
67
70
|
};
|
|
68
71
|
variantStyle: {
|
|
69
72
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
70
|
-
required: false;
|
|
71
73
|
default: string;
|
|
72
74
|
};
|
|
73
75
|
size: {
|
|
74
76
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
75
|
-
required: false;
|
|
76
77
|
default: string;
|
|
77
78
|
};
|
|
78
79
|
type: {
|
|
79
80
|
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
80
|
-
required: false;
|
|
81
81
|
default: string;
|
|
82
82
|
};
|
|
83
|
-
loading: {
|
|
84
|
-
type: BooleanConstructor;
|
|
85
|
-
required: false;
|
|
86
|
-
default: boolean;
|
|
87
|
-
};
|
|
88
83
|
disabled: {
|
|
89
84
|
type: BooleanConstructor;
|
|
90
85
|
default: boolean;
|
|
@@ -95,7 +90,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
95
90
|
};
|
|
96
91
|
ariaLabel: {
|
|
97
92
|
type: StringConstructor;
|
|
98
|
-
required: false;
|
|
99
93
|
default: undefined;
|
|
100
94
|
};
|
|
101
95
|
}>, {}, {
|
|
@@ -103,40 +97,33 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
103
97
|
hover: boolean;
|
|
104
98
|
fusionIconButtonEl: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
105
99
|
}, {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
spinnerColourValue(): string | undefined;
|
|
109
|
-
variantTypeClass(): "" | "fusion-button-primary" | "fusion-button-danger";
|
|
110
|
-
variantStyleClass(): "" | "fusion-button-filled" | "fusion-button-outline" | "fusion-button-ghost" | "fusion-button-plain";
|
|
111
|
-
buttonSizeClass(): "" | "fusion-icon-button-small" | "fusion-icon-button-regular";
|
|
100
|
+
variantTypeClass: () => "primary" | "danger";
|
|
101
|
+
variantStyleClass: () => "filled" | "outline" | "ghost" | "plain";
|
|
112
102
|
}, {
|
|
113
|
-
onClick(event: Event)
|
|
114
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin,
|
|
103
|
+
onClick: (event: Event) => void;
|
|
104
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
105
|
+
click: null;
|
|
106
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
107
|
+
id: {
|
|
108
|
+
type: StringConstructor;
|
|
109
|
+
default: string;
|
|
110
|
+
};
|
|
115
111
|
variantType: {
|
|
116
112
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
117
|
-
required: false;
|
|
118
113
|
default: string;
|
|
119
114
|
};
|
|
120
115
|
variantStyle: {
|
|
121
116
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
122
|
-
required: false;
|
|
123
117
|
default: string;
|
|
124
118
|
};
|
|
125
119
|
size: {
|
|
126
120
|
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
127
|
-
required: false;
|
|
128
121
|
default: string;
|
|
129
122
|
};
|
|
130
123
|
type: {
|
|
131
124
|
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
132
|
-
required: false;
|
|
133
125
|
default: string;
|
|
134
126
|
};
|
|
135
|
-
loading: {
|
|
136
|
-
type: BooleanConstructor;
|
|
137
|
-
required: false;
|
|
138
|
-
default: boolean;
|
|
139
|
-
};
|
|
140
127
|
disabled: {
|
|
141
128
|
type: BooleanConstructor;
|
|
142
129
|
default: boolean;
|
|
@@ -147,7 +134,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
147
134
|
};
|
|
148
135
|
ariaLabel: {
|
|
149
136
|
type: StringConstructor;
|
|
150
|
-
required: false;
|
|
151
137
|
default: undefined;
|
|
152
138
|
};
|
|
153
139
|
}>> & Readonly<{
|
|
@@ -155,36 +141,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
155
141
|
}>, {
|
|
156
142
|
type: "button" | "submit" | "reset" | undefined;
|
|
157
143
|
dataTest: string;
|
|
144
|
+
id: string;
|
|
158
145
|
variantType: keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType;
|
|
159
146
|
variantStyle: keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle;
|
|
160
147
|
size: keyof import('../../../../../types/components/FusionButton').FusionButtonSize;
|
|
161
|
-
loading: boolean;
|
|
162
148
|
disabled: boolean;
|
|
163
149
|
ariaLabel: string;
|
|
164
|
-
}, {}, {
|
|
165
|
-
FusionLoadingSpinner: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
166
|
-
spinnerColour: {
|
|
167
|
-
type: StringConstructor;
|
|
168
|
-
default: string;
|
|
169
|
-
};
|
|
170
|
-
dataTest: {
|
|
171
|
-
type: StringConstructor;
|
|
172
|
-
default: string;
|
|
173
|
-
};
|
|
174
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
175
|
-
spinnerColour: {
|
|
176
|
-
type: StringConstructor;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
179
|
-
dataTest: {
|
|
180
|
-
type: StringConstructor;
|
|
181
|
-
default: string;
|
|
182
|
-
};
|
|
183
|
-
}>> & Readonly<{}>, {
|
|
184
|
-
spinnerColour: string;
|
|
185
|
-
dataTest: string;
|
|
186
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
187
|
-
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
150
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
188
151
|
FusionProgressBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
189
152
|
mode: {
|
|
190
153
|
type: () => "steps" | "percentage";
|