@oub/fusion 0.2.93 → 0.2.94

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.
@@ -1,5 +1,6 @@
1
1
  import type { PropType } from "vue";
2
2
  import type { FusionKeyValuePairEmphasis, FusionKeyValuePairOrder } from '../../../../types/components/FusionKeyValuePair';
3
+ import type { FusionButtonVariantStyle, FusionButtonVariantType } from '../../../../types/components/FusionTag';
3
4
  declare const _default: import("vue").DefineComponent<{
4
5
  keyText: {
5
6
  type: StringConstructor;
@@ -26,6 +27,26 @@ declare const _default: import("vue").DefineComponent<{
26
27
  type: BooleanConstructor;
27
28
  default: boolean;
28
29
  };
30
+ showTag: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ tagText: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ tagVariantType: {
39
+ type: PropType<keyof FusionButtonVariantType>;
40
+ default: string;
41
+ };
42
+ tagVariantStyle: {
43
+ type: PropType<keyof FusionButtonVariantStyle>;
44
+ default: string;
45
+ };
46
+ tagEmphasis: {
47
+ type: NumberConstructor;
48
+ default: null;
49
+ };
29
50
  }, unknown, unknown, {
30
51
  orderClass: () => "flex-col" | "flex-col-reverse";
31
52
  valueTextEmphasisClass: () => "text-base" | "text-medium" | "text-heading-xl" | "text-heading-3xl";
@@ -55,6 +76,26 @@ declare const _default: import("vue").DefineComponent<{
55
76
  type: BooleanConstructor;
56
77
  default: boolean;
57
78
  };
79
+ showTag: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
83
+ tagText: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ tagVariantType: {
88
+ type: PropType<keyof FusionButtonVariantType>;
89
+ default: string;
90
+ };
91
+ tagVariantStyle: {
92
+ type: PropType<keyof FusionButtonVariantStyle>;
93
+ default: string;
94
+ };
95
+ tagEmphasis: {
96
+ type: NumberConstructor;
97
+ default: null;
98
+ };
58
99
  }>>, {
59
100
  keyText: string;
60
101
  valueText: string;
@@ -62,5 +103,10 @@ declare const _default: import("vue").DefineComponent<{
62
103
  valueTextEmphasis: keyof FusionKeyValuePairEmphasis;
63
104
  secondaryValueText: string;
64
105
  strikeThroughSecondaryValueText: boolean;
106
+ showTag: boolean;
107
+ tagText: string;
108
+ tagVariantType: keyof FusionButtonVariantType;
109
+ tagVariantStyle: keyof FusionButtonVariantStyle;
110
+ tagEmphasis: number;
65
111
  }, {}>;
66
112
  export default _default;