@oub/fusion 0.3.17 → 0.3.19
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 +334 -312
- package/dist/fusion.umd.cjs +4 -4
- package/dist/lib/components/common/key-value-pair/FusionKeyValuePair.vue.d.ts +20 -2
- package/dist/style.css +1 -1
- package/dist/themes-v2.css +1 -1
- package/dist/types/components/FusionKeyValuePair.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { FusionKeyValuePairEmphasis, FusionKeyValuePairOrder } from '../../../../types/components/FusionKeyValuePair';
|
|
2
|
+
import { FusionKeyValuePairEmphasis, FusionKeyValuePairOrder, FusionKeyValuePairOrientation } from '../../../../types/components/FusionKeyValuePair';
|
|
3
3
|
import { FusionTagVariantStyle, FusionTagVariantType } from '../../../../types/components/FusionTag';
|
|
4
4
|
import { VariantTypes, Sizes } from '../../../../types/Global.d.ts';
|
|
5
5
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -11,6 +11,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
default: string;
|
|
13
13
|
};
|
|
14
|
+
orientation: {
|
|
15
|
+
type: PropType<keyof FusionKeyValuePairOrientation>;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
keyFullWidth: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
14
22
|
order: {
|
|
15
23
|
type: PropType<keyof FusionKeyValuePairOrder>;
|
|
16
24
|
default: string;
|
|
@@ -76,7 +84,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
84
|
default: boolean;
|
|
77
85
|
};
|
|
78
86
|
}>, {}, {}, {
|
|
79
|
-
orderClass: () => "flex-col" | "flex-col-reverse";
|
|
87
|
+
orderClass: () => "flex-col" | "flex-row" | "flex-row-reverse" | "flex-col-reverse";
|
|
80
88
|
valueTextEmphasisClass: () => "text-body" | "text-body-500" | "text-h4" | "text-h3" | "text-h2" | "text-h1";
|
|
81
89
|
iconSizeClass: () => "w-7 h-7" | "w-6 h-6";
|
|
82
90
|
showValueContainer: () => string | import('vue').Slot<any> | undefined;
|
|
@@ -89,6 +97,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
97
|
type: StringConstructor;
|
|
90
98
|
default: string;
|
|
91
99
|
};
|
|
100
|
+
orientation: {
|
|
101
|
+
type: PropType<keyof FusionKeyValuePairOrientation>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
keyFullWidth: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
92
108
|
order: {
|
|
93
109
|
type: PropType<keyof FusionKeyValuePairOrder>;
|
|
94
110
|
default: string;
|
|
@@ -157,6 +173,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
157
173
|
order: keyof FusionKeyValuePairOrder;
|
|
158
174
|
keyText: string;
|
|
159
175
|
valueText: string;
|
|
176
|
+
orientation: keyof FusionKeyValuePairOrientation;
|
|
177
|
+
keyFullWidth: boolean;
|
|
160
178
|
valueTextEmphasis: keyof FusionKeyValuePairEmphasis;
|
|
161
179
|
secondaryValueText: string;
|
|
162
180
|
strikeThroughSecondaryValueText: boolean;
|