@oub/fusion 0.2.28 → 0.2.30
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/form/button/FusionButton.vue.d.ts +3 -2
- package/dist/components/link/text/FusionTextLink.d.ts +2 -0
- package/dist/components/link/text/FusionTextLink.vue.d.ts +21 -3
- package/dist/fusion.js +1162 -1145
- package/dist/fusion.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
};
|
|
33
33
|
disabled: {
|
|
34
34
|
type: BooleanConstructor;
|
|
35
|
-
|
|
35
|
+
default: boolean;
|
|
36
36
|
};
|
|
37
37
|
dataTest: {
|
|
38
38
|
type: StringConstructor;
|
|
@@ -84,7 +84,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
84
84
|
};
|
|
85
85
|
disabled: {
|
|
86
86
|
type: BooleanConstructor;
|
|
87
|
-
|
|
87
|
+
default: boolean;
|
|
88
88
|
};
|
|
89
89
|
dataTest: {
|
|
90
90
|
type: StringConstructor;
|
|
@@ -96,6 +96,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
96
|
variantType: keyof FusionButtonVariantType;
|
|
97
97
|
dataTest: string;
|
|
98
98
|
type: "button" | "submit" | "reset" | undefined;
|
|
99
|
+
disabled: boolean;
|
|
99
100
|
variantStyle: keyof FusionButtonVariantStyle;
|
|
100
101
|
size: keyof FusionButtonSize;
|
|
101
102
|
loading: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type PropType } from "vue";
|
|
2
2
|
import type { VariantTypes, Sizes } from '../../../../types/Global.d.ts';
|
|
3
|
-
import type { FusionTextLinkIconPlacement } from './FusionTextLink';
|
|
3
|
+
import type { FusionTextLinkIconPlacement, FusionTextLinkElement } from './FusionTextLink';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
5
|
id: {
|
|
6
6
|
type: StringConstructor;
|
|
@@ -13,7 +13,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
};
|
|
14
14
|
href: {
|
|
15
15
|
type: StringConstructor;
|
|
16
|
-
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
target: {
|
|
19
|
+
type: StringConstructor;
|
|
17
20
|
default: string;
|
|
18
21
|
};
|
|
19
22
|
variantType: {
|
|
@@ -43,10 +46,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
46
|
type: StringConstructor;
|
|
44
47
|
default: string;
|
|
45
48
|
};
|
|
49
|
+
elementType: {
|
|
50
|
+
type: PropType<FusionTextLinkElement>;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
46
53
|
}, unknown, unknown, {
|
|
47
54
|
sizeClasses(): "fusion-text-link-small" | "fusion-text-link-regular";
|
|
48
55
|
variationClasses(): "" | "fusion-text-link-primary" | "fusion-text-link-secondary";
|
|
49
56
|
iconClasses(): "" | "fusion-text-link-icon-left" | "fusion-text-link-icon-right";
|
|
57
|
+
buttonClasses(): "" | "fusion-text-link-button";
|
|
58
|
+
isButton(): boolean;
|
|
50
59
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input:blur" | "input:focus")[], "input:blur" | "input:focus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
60
|
id: {
|
|
52
61
|
type: StringConstructor;
|
|
@@ -59,7 +68,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
68
|
};
|
|
60
69
|
href: {
|
|
61
70
|
type: StringConstructor;
|
|
62
|
-
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
target: {
|
|
74
|
+
type: StringConstructor;
|
|
63
75
|
default: string;
|
|
64
76
|
};
|
|
65
77
|
variantType: {
|
|
@@ -89,6 +101,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
101
|
type: StringConstructor;
|
|
90
102
|
default: string;
|
|
91
103
|
};
|
|
104
|
+
elementType: {
|
|
105
|
+
type: PropType<FusionTextLinkElement>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
92
108
|
}>> & {
|
|
93
109
|
"onInput:blur"?: ((...args: any[]) => any) | undefined;
|
|
94
110
|
"onInput:focus"?: ((...args: any[]) => any) | undefined;
|
|
@@ -96,10 +112,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
112
|
id: string;
|
|
97
113
|
variantType: keyof VariantTypes;
|
|
98
114
|
dataTest: string;
|
|
115
|
+
target: string;
|
|
99
116
|
disabled: boolean;
|
|
100
117
|
size: keyof Sizes;
|
|
101
118
|
tabIndex: string;
|
|
102
119
|
href: string;
|
|
103
120
|
iconPlacement: keyof FusionTextLinkIconPlacement;
|
|
121
|
+
elementType: FusionTextLinkElement;
|
|
104
122
|
}, {}>;
|
|
105
123
|
export default _default;
|