@oub/fusion 0.2.55 → 0.2.56

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.
@@ -0,0 +1,45 @@
1
+ import { type PropType } from "vue";
2
+ import type { FusionButtonVariantStyle, FusionButtonVariantType } from '../../../../types/components/FusionTag';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ variantStyle: {
5
+ type: PropType<keyof FusionButtonVariantStyle>;
6
+ default: string;
7
+ };
8
+ variantType: {
9
+ type: PropType<keyof FusionButtonVariantType>;
10
+ default: string;
11
+ };
12
+ emphasis: {
13
+ type: NumberConstructor;
14
+ default: null;
15
+ };
16
+ label: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
20
+ }, unknown, unknown, {
21
+ variantTypeClass(): "danger" | "info" | "success" | "warning" | "emphasis-one" | "emphasis-two" | "emphasis-three" | "gradient-primary";
22
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
+ variantStyle: {
24
+ type: PropType<keyof FusionButtonVariantStyle>;
25
+ default: string;
26
+ };
27
+ variantType: {
28
+ type: PropType<keyof FusionButtonVariantType>;
29
+ default: string;
30
+ };
31
+ emphasis: {
32
+ type: NumberConstructor;
33
+ default: null;
34
+ };
35
+ label: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ }>>, {
40
+ label: string;
41
+ variantType: keyof FusionButtonVariantType;
42
+ variantStyle: keyof FusionButtonVariantStyle;
43
+ emphasis: number;
44
+ }, {}>;
45
+ export default _default;