@oub/fusion 0.2.167 → 0.2.169
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 +2509 -2548
- package/dist/fusion.umd.cjs +5 -5
- package/dist/lib/components/common/bars/toolbar/FusionToolBar.vue.d.ts +18 -8
- package/dist/lib/components/common/toast/FusionToastMessage.vue.d.ts +93 -16
- package/dist/lib/main.d.ts +1 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/lib/components/common/bars/subheading-bar/FusionSubheadingBar.vue.d.ts +0 -12
- package/dist/lib/components/svgs/SVGExclamationCircle.vue.d.ts +0 -2
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
3
|
title: {
|
|
3
4
|
type: StringConstructor;
|
|
4
5
|
default: string;
|
|
5
6
|
};
|
|
7
|
+
headingSize: {
|
|
8
|
+
type: PropType<"h2" | "h3" | "h4">;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
6
11
|
helperText: {
|
|
7
12
|
type: StringConstructor;
|
|
8
13
|
default: string;
|
|
@@ -22,6 +27,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
22
27
|
type: StringConstructor;
|
|
23
28
|
default: string;
|
|
24
29
|
};
|
|
30
|
+
headingSize: {
|
|
31
|
+
type: PropType<"h2" | "h3" | "h4">;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
25
34
|
helperText: {
|
|
26
35
|
type: StringConstructor;
|
|
27
36
|
default: string;
|
|
@@ -39,6 +48,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
39
48
|
}>, {
|
|
40
49
|
title: string;
|
|
41
50
|
helperText: string;
|
|
51
|
+
headingSize: "h2" | "h3" | "h4";
|
|
42
52
|
showBackButton: boolean;
|
|
43
53
|
backButtonAriaLabel: string;
|
|
44
54
|
}, {}, {
|
|
@@ -48,19 +58,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
58
|
default: string;
|
|
49
59
|
};
|
|
50
60
|
variantType: {
|
|
51
|
-
type:
|
|
61
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
52
62
|
default: string;
|
|
53
63
|
};
|
|
54
64
|
variantStyle: {
|
|
55
|
-
type:
|
|
65
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
56
66
|
default: string;
|
|
57
67
|
};
|
|
58
68
|
size: {
|
|
59
|
-
type:
|
|
69
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
60
70
|
default: string;
|
|
61
71
|
};
|
|
62
72
|
type: {
|
|
63
|
-
type:
|
|
73
|
+
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
64
74
|
default: string;
|
|
65
75
|
};
|
|
66
76
|
disabled: {
|
|
@@ -92,19 +102,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
92
102
|
default: string;
|
|
93
103
|
};
|
|
94
104
|
variantType: {
|
|
95
|
-
type:
|
|
105
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
96
106
|
default: string;
|
|
97
107
|
};
|
|
98
108
|
variantStyle: {
|
|
99
|
-
type:
|
|
109
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
100
110
|
default: string;
|
|
101
111
|
};
|
|
102
112
|
size: {
|
|
103
|
-
type:
|
|
113
|
+
type: PropType<keyof import('../../../../../types/components/FusionButton').FusionButtonSize>;
|
|
104
114
|
default: string;
|
|
105
115
|
};
|
|
106
116
|
type: {
|
|
107
|
-
type:
|
|
117
|
+
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
108
118
|
default: string;
|
|
109
119
|
};
|
|
110
120
|
disabled: {
|
|
@@ -4,11 +4,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4
4
|
type: {
|
|
5
5
|
type: PropType<ToastType>;
|
|
6
6
|
default: string;
|
|
7
|
-
validator: (value: string) => boolean;
|
|
8
|
-
};
|
|
9
|
-
title: {
|
|
10
|
-
type: StringConstructor;
|
|
11
|
-
default: string;
|
|
12
7
|
};
|
|
13
8
|
message: {
|
|
14
9
|
type: StringConstructor;
|
|
@@ -19,19 +14,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
14
|
default: boolean;
|
|
20
15
|
};
|
|
21
16
|
}>, {}, {}, {
|
|
22
|
-
|
|
23
|
-
iconComponent(): import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
|
+
iconComponent: () => import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
24
18
|
}, {
|
|
25
|
-
handleDismiss()
|
|
19
|
+
handleDismiss: () => void;
|
|
26
20
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "dismiss"[], "dismiss", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
27
21
|
type: {
|
|
28
22
|
type: PropType<ToastType>;
|
|
29
23
|
default: string;
|
|
30
|
-
validator: (value: string) => boolean;
|
|
31
|
-
};
|
|
32
|
-
title: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: string;
|
|
35
24
|
};
|
|
36
25
|
message: {
|
|
37
26
|
type: StringConstructor;
|
|
@@ -45,14 +34,102 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
34
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
46
35
|
}>, {
|
|
47
36
|
type: ToastType;
|
|
48
|
-
title: string;
|
|
49
37
|
message: string;
|
|
50
38
|
dismissable: boolean;
|
|
51
39
|
}, {}, {
|
|
40
|
+
SVGClose: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
41
|
SVGCheckCircle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
53
|
-
SVGExclamationCircle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
54
42
|
SVGInformationCircle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
43
|
+
SVGExclamationOctagon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
55
44
|
SVGExclamationTriangle: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
56
|
-
|
|
45
|
+
FusionIconButton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
46
|
+
id: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
variantType: {
|
|
51
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
variantStyle: {
|
|
55
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
size: {
|
|
59
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
type: {
|
|
63
|
+
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
disabled: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
dataTest: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
ariaLabel: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
78
|
+
}>, {}, {
|
|
79
|
+
focus: boolean;
|
|
80
|
+
hover: boolean;
|
|
81
|
+
fusionIconButtonEl: import('vue').Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
|
|
82
|
+
}, {
|
|
83
|
+
variantTypeClass: () => "primary" | "danger";
|
|
84
|
+
variantStyleClass: () => "filled" | "outline" | "ghost" | "plain";
|
|
85
|
+
}, {
|
|
86
|
+
onClick: (event: Event) => void;
|
|
87
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
88
|
+
click: null;
|
|
89
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
90
|
+
id: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
variantType: {
|
|
95
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantType>;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
variantStyle: {
|
|
99
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle>;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
size: {
|
|
103
|
+
type: PropType<keyof import('../../../../types/components/FusionButton').FusionButtonSize>;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
type: {
|
|
107
|
+
type: PropType<"button" | "submit" | "reset" | undefined>;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
disabled: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
dataTest: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
ariaLabel: {
|
|
119
|
+
type: StringConstructor;
|
|
120
|
+
default: undefined;
|
|
121
|
+
};
|
|
122
|
+
}>> & Readonly<{
|
|
123
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
124
|
+
}>, {
|
|
125
|
+
type: "button" | "submit" | "reset" | undefined;
|
|
126
|
+
dataTest: string;
|
|
127
|
+
id: string;
|
|
128
|
+
variantType: keyof import('../../../../types/components/FusionButton').FusionButtonVariantType;
|
|
129
|
+
variantStyle: keyof import('../../../../types/components/FusionButton').FusionButtonVariantStyle;
|
|
130
|
+
size: keyof import('../../../../types/components/FusionButton').FusionButtonSize;
|
|
131
|
+
disabled: boolean;
|
|
132
|
+
ariaLabel: string;
|
|
133
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
57
134
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
135
|
export default _default;
|
package/dist/lib/main.d.ts
CHANGED
|
@@ -33,7 +33,6 @@ import { default as FusionActionBar } from './components/common/bars/action-bar/
|
|
|
33
33
|
import { default as FusionIconButton } from './components/form/icon-button/FusionIconButton.vue';
|
|
34
34
|
import { default as FusionKeyValuePair } from './components/common/key-value-pair/FusionKeyValuePair.vue';
|
|
35
35
|
import { default as FusionFooterBar } from './components/common/bars/footer/FusionFooterBar.vue';
|
|
36
|
-
import { default as FusionSubheadingBar } from './components/common/bars/subheading-bar/FusionSubheadingBar.vue';
|
|
37
36
|
import { default as FusionModal } from './components/common/modal/FusionModal.vue';
|
|
38
37
|
import { default as FusionCircularProgressIndicator } from './components/common/circular-progress-bar/circular-progress-indicator/FusionCircularProgressIndicator.vue';
|
|
39
38
|
import { default as FusionCircularProgressIndicatorLabel } from './components/common/circular-progress-bar/circular-progress-indicator-label/FusionCircularProgressIndicatorLabel.vue';
|
|
@@ -42,4 +41,4 @@ import { default as FusionCircularProgressIndicatorLabelCollection } from './com
|
|
|
42
41
|
import { default as FusionFileUploaderButton } from './components/form/file-uploader/button/FusionFileUploaderButton.vue';
|
|
43
42
|
import { default as FusionProgressStepper } from './components/common/progress-stepper/FusionProgressStepper.vue';
|
|
44
43
|
import { default as FusionProgressBar } from './components/common/progress-bar/FusionProgressBar.vue';
|
|
45
|
-
export { FusionInput, FusionButton, FusionTextarea, FusionCheckbox, FusionRadio, FusionTextLink, FusionSelect, FusionPasswordInput, FusionPhoneInput, FusionBanner, FusionLoadingSpinner, FusionDatePicker, FusionSearchableInput, FusionNumericInputStepper, FusionTag, FusionDivider, FusionCard, FusionProgressStepper, FusionProgressBar, FusionContextMenu, FusionMenuItem, FusionPlatformBar, FusionSideNavigation, FusionSideNavigationItem, FusionListItem, FusionListBox, FusionWidget, FusionToastMessage, FusionToolBar, FusionActionBar, FusionIconButton, FusionKeyValuePair, FusionFooterBar,
|
|
44
|
+
export { FusionInput, FusionButton, FusionTextarea, FusionCheckbox, FusionRadio, FusionTextLink, FusionSelect, FusionPasswordInput, FusionPhoneInput, FusionBanner, FusionLoadingSpinner, FusionDatePicker, FusionSearchableInput, FusionNumericInputStepper, FusionTag, FusionDivider, FusionCard, FusionProgressStepper, FusionProgressBar, FusionContextMenu, FusionMenuItem, FusionPlatformBar, FusionSideNavigation, FusionSideNavigationItem, FusionListItem, FusionListBox, FusionWidget, FusionToastMessage, FusionToolBar, FusionActionBar, FusionIconButton, FusionKeyValuePair, FusionFooterBar, FusionRadioGroup, FusionCheckboxGroup, FusionModal, FusionCircularProgressIndicator, FusionCircularProgressIndicatorLabel, FusionCircularProgressIndicatorLabelChecklist, FusionCircularProgressIndicatorLabelCollection, FusionMonthDatePicker, FusionFileUploaderButton, FusionRangeDatePicker, };
|