@oub/fusion 0.3.8 → 0.3.10
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 +969 -947
- package/dist/fusion.umd.cjs +5 -5
- package/dist/lib/components/common/bars/tool-bar/FusionToolBar.vue.d.ts +19 -0
- package/dist/lib/components/common/modal/FusionModal.vue.d.ts +25 -7
- package/dist/lib/components/common/modal/modal-footer/FusionModalFooter.vue.d.ts +13 -4
- package/dist/lib/components/form/sorter/FusionSorter.d.ts +1 -0
- package/dist/lib/components/form/sorter/FusionSorter.vue.d.ts +10 -0
- package/dist/style.css +1 -1
- package/package.json +4 -2
|
@@ -48,6 +48,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
48
|
type: StringConstructor;
|
|
49
49
|
default: string;
|
|
50
50
|
};
|
|
51
|
+
hideSortArrow: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
51
55
|
}>, {}, {
|
|
52
56
|
isMobile: boolean;
|
|
53
57
|
}, {
|
|
@@ -109,6 +113,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
109
113
|
type: StringConstructor;
|
|
110
114
|
default: string;
|
|
111
115
|
};
|
|
116
|
+
hideSortArrow: {
|
|
117
|
+
type: BooleanConstructor;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
112
120
|
}>> & Readonly<{
|
|
113
121
|
onFilter?: ((...args: any[]) => any) | undefined;
|
|
114
122
|
"onUpdate:sorterModelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -118,6 +126,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
118
126
|
name: string;
|
|
119
127
|
dataTest: string;
|
|
120
128
|
id: string;
|
|
129
|
+
hideSortArrow: boolean;
|
|
121
130
|
mobileBreakpoint: number;
|
|
122
131
|
showFilter: boolean;
|
|
123
132
|
hideSorter: boolean;
|
|
@@ -380,6 +389,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
380
389
|
type: StringConstructor;
|
|
381
390
|
default: string;
|
|
382
391
|
};
|
|
392
|
+
hideSortArrow: {
|
|
393
|
+
type: BooleanConstructor;
|
|
394
|
+
default: boolean;
|
|
395
|
+
};
|
|
383
396
|
}>, {}, {
|
|
384
397
|
selected: any;
|
|
385
398
|
currentOrder: FusionSortOrder;
|
|
@@ -394,6 +407,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
394
407
|
focused: boolean;
|
|
395
408
|
};
|
|
396
409
|
orderAriaLabel: () => "Sort ascending" | "Sort descending";
|
|
410
|
+
hasFixedOptionOrders: () => boolean;
|
|
397
411
|
}, {
|
|
398
412
|
resolveSelected: (value: FusionSortOption | undefined) => FusionSortOption;
|
|
399
413
|
handleInputClick: () => void;
|
|
@@ -448,6 +462,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
448
462
|
type: StringConstructor;
|
|
449
463
|
default: string;
|
|
450
464
|
};
|
|
465
|
+
hideSortArrow: {
|
|
466
|
+
type: BooleanConstructor;
|
|
467
|
+
default: boolean;
|
|
468
|
+
};
|
|
451
469
|
}>> & Readonly<{
|
|
452
470
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
453
471
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -463,6 +481,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
463
481
|
ariaLabel: string;
|
|
464
482
|
autofocus: boolean;
|
|
465
483
|
order: FusionSortOrder;
|
|
484
|
+
hideSortArrow: boolean;
|
|
466
485
|
}, {}, {
|
|
467
486
|
FusionListBox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
468
487
|
selectId: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { FusionButtonVariantType } from '../../../../types/components/FusionButton';
|
|
2
|
+
import { FusionButtonVariantStyle, FusionButtonVariantType } from '../../../../types/components/FusionButton';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
title: {
|
|
5
5
|
type: StringConstructor;
|
|
@@ -29,6 +29,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
type: PropType<keyof FusionButtonVariantType>;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
|
+
confirmButtonStyle: {
|
|
33
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
32
36
|
cancelButtonLoading: {
|
|
33
37
|
type: BooleanConstructor;
|
|
34
38
|
default: boolean;
|
|
@@ -86,6 +90,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
90
|
type: PropType<keyof FusionButtonVariantType>;
|
|
87
91
|
default: string;
|
|
88
92
|
};
|
|
93
|
+
confirmButtonStyle: {
|
|
94
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
89
97
|
cancelButtonLoading: {
|
|
90
98
|
type: BooleanConstructor;
|
|
91
99
|
default: boolean;
|
|
@@ -110,6 +118,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
110
118
|
hideCancel: boolean;
|
|
111
119
|
hideConfirm: boolean;
|
|
112
120
|
confirmButtonVariant: keyof FusionButtonVariantType;
|
|
121
|
+
confirmButtonStyle: keyof FusionButtonVariantStyle;
|
|
113
122
|
cancelButtonLoading: boolean;
|
|
114
123
|
formElementId: string;
|
|
115
124
|
}, {}, {
|
|
@@ -159,7 +168,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
159
168
|
default: string;
|
|
160
169
|
};
|
|
161
170
|
variantStyle: {
|
|
162
|
-
type: PropType<keyof
|
|
171
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
163
172
|
default: string;
|
|
164
173
|
};
|
|
165
174
|
size: {
|
|
@@ -203,7 +212,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
203
212
|
default: string;
|
|
204
213
|
};
|
|
205
214
|
variantStyle: {
|
|
206
|
-
type: PropType<keyof
|
|
215
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
207
216
|
default: string;
|
|
208
217
|
};
|
|
209
218
|
size: {
|
|
@@ -233,7 +242,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
233
242
|
dataTest: string;
|
|
234
243
|
id: string;
|
|
235
244
|
variantType: keyof FusionButtonVariantType;
|
|
236
|
-
variantStyle: keyof
|
|
245
|
+
variantStyle: keyof FusionButtonVariantStyle;
|
|
237
246
|
size: keyof import('../../../../types/components/FusionButton').FusionButtonSize;
|
|
238
247
|
disabled: boolean;
|
|
239
248
|
ariaLabel: string;
|
|
@@ -269,6 +278,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
269
278
|
type: PropType<keyof FusionButtonVariantType>;
|
|
270
279
|
default: string;
|
|
271
280
|
};
|
|
281
|
+
confirmButtonStyle: {
|
|
282
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
283
|
+
default: string;
|
|
284
|
+
};
|
|
272
285
|
cancelButtonLoading: {
|
|
273
286
|
type: BooleanConstructor;
|
|
274
287
|
default: boolean;
|
|
@@ -316,6 +329,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
316
329
|
type: PropType<keyof FusionButtonVariantType>;
|
|
317
330
|
default: string;
|
|
318
331
|
};
|
|
332
|
+
confirmButtonStyle: {
|
|
333
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
334
|
+
default: string;
|
|
335
|
+
};
|
|
319
336
|
cancelButtonLoading: {
|
|
320
337
|
type: BooleanConstructor;
|
|
321
338
|
default: boolean;
|
|
@@ -340,6 +357,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
340
357
|
hideCancel: boolean;
|
|
341
358
|
hideConfirm: boolean;
|
|
342
359
|
confirmButtonVariant: keyof FusionButtonVariantType;
|
|
360
|
+
confirmButtonStyle: keyof FusionButtonVariantStyle;
|
|
343
361
|
cancelButtonLoading: boolean;
|
|
344
362
|
formElementId: string;
|
|
345
363
|
}, {}, {
|
|
@@ -357,7 +375,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
357
375
|
default: string;
|
|
358
376
|
};
|
|
359
377
|
variantStyle: {
|
|
360
|
-
type: PropType<keyof
|
|
378
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
361
379
|
default: string;
|
|
362
380
|
};
|
|
363
381
|
size: {
|
|
@@ -405,7 +423,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
405
423
|
default: string;
|
|
406
424
|
};
|
|
407
425
|
variantStyle: {
|
|
408
|
-
type: PropType<keyof
|
|
426
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
409
427
|
default: string;
|
|
410
428
|
};
|
|
411
429
|
size: {
|
|
@@ -435,7 +453,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
435
453
|
dataTest: string;
|
|
436
454
|
id: string;
|
|
437
455
|
variantType: keyof FusionButtonVariantType;
|
|
438
|
-
variantStyle: keyof
|
|
456
|
+
variantStyle: keyof FusionButtonVariantStyle;
|
|
439
457
|
size: keyof import('../../../../types/components/FusionButton').FusionButtonSize;
|
|
440
458
|
loading: boolean;
|
|
441
459
|
disabled: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { FusionButtonVariantType } from '../../../../../types/components/FusionButton';
|
|
2
|
+
import { FusionButtonVariantStyle, FusionButtonVariantType } from '../../../../../types/components/FusionButton';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
hideCancel: {
|
|
5
5
|
type: BooleanConstructor;
|
|
@@ -29,6 +29,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
type: PropType<keyof FusionButtonVariantType>;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
|
+
confirmButtonStyle: {
|
|
33
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
32
36
|
cancelButtonLoading: {
|
|
33
37
|
type: BooleanConstructor;
|
|
34
38
|
default: boolean;
|
|
@@ -76,6 +80,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
80
|
type: PropType<keyof FusionButtonVariantType>;
|
|
77
81
|
default: string;
|
|
78
82
|
};
|
|
83
|
+
confirmButtonStyle: {
|
|
84
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
79
87
|
cancelButtonLoading: {
|
|
80
88
|
type: BooleanConstructor;
|
|
81
89
|
default: boolean;
|
|
@@ -100,6 +108,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
100
108
|
hideCancel: boolean;
|
|
101
109
|
hideConfirm: boolean;
|
|
102
110
|
confirmButtonVariant: keyof FusionButtonVariantType;
|
|
111
|
+
confirmButtonStyle: keyof FusionButtonVariantStyle;
|
|
103
112
|
cancelButtonLoading: boolean;
|
|
104
113
|
formElementId: string;
|
|
105
114
|
}, {}, {
|
|
@@ -117,7 +126,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
117
126
|
default: string;
|
|
118
127
|
};
|
|
119
128
|
variantStyle: {
|
|
120
|
-
type: PropType<keyof
|
|
129
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
121
130
|
default: string;
|
|
122
131
|
};
|
|
123
132
|
size: {
|
|
@@ -165,7 +174,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
165
174
|
default: string;
|
|
166
175
|
};
|
|
167
176
|
variantStyle: {
|
|
168
|
-
type: PropType<keyof
|
|
177
|
+
type: PropType<keyof FusionButtonVariantStyle>;
|
|
169
178
|
default: string;
|
|
170
179
|
};
|
|
171
180
|
size: {
|
|
@@ -195,7 +204,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
195
204
|
dataTest: string;
|
|
196
205
|
id: string;
|
|
197
206
|
variantType: keyof FusionButtonVariantType;
|
|
198
|
-
variantStyle: keyof
|
|
207
|
+
variantStyle: keyof FusionButtonVariantStyle;
|
|
199
208
|
size: keyof import('../../../../../types/components/FusionButton').FusionButtonSize;
|
|
200
209
|
loading: boolean;
|
|
201
210
|
disabled: boolean;
|
|
@@ -44,6 +44,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
44
44
|
type: StringConstructor;
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
|
+
hideSortArrow: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
47
51
|
}>, {}, {
|
|
48
52
|
selected: any;
|
|
49
53
|
currentOrder: FusionSortOrder;
|
|
@@ -58,6 +62,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
58
62
|
focused: boolean;
|
|
59
63
|
};
|
|
60
64
|
orderAriaLabel: () => "Sort ascending" | "Sort descending";
|
|
65
|
+
hasFixedOptionOrders: () => boolean;
|
|
61
66
|
}, {
|
|
62
67
|
resolveSelected: (value: FusionSortOption | undefined) => FusionSortOption;
|
|
63
68
|
handleInputClick: () => void;
|
|
@@ -112,6 +117,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
117
|
type: StringConstructor;
|
|
113
118
|
default: string;
|
|
114
119
|
};
|
|
120
|
+
hideSortArrow: {
|
|
121
|
+
type: BooleanConstructor;
|
|
122
|
+
default: boolean;
|
|
123
|
+
};
|
|
115
124
|
}>> & Readonly<{
|
|
116
125
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
117
126
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -127,6 +136,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
127
136
|
ariaLabel: string;
|
|
128
137
|
autofocus: boolean;
|
|
129
138
|
order: FusionSortOrder;
|
|
139
|
+
hideSortArrow: boolean;
|
|
130
140
|
}, {}, {
|
|
131
141
|
FusionListBox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
132
142
|
selectId: {
|