@frollo/frollo-web-ui 1.2.4 → 1.2.6

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/index.d.ts CHANGED
@@ -605,6 +605,13 @@ declare const _default$d: vue.DefineComponent<{
605
605
  actionLabel: {
606
606
  type: StringConstructor;
607
607
  };
608
+ /**
609
+ * The class for the container wrapper.
610
+ */
611
+ containerClass: {
612
+ type: StringConstructor;
613
+ default: string;
614
+ };
608
615
  }, {
609
616
  mobileMenuClass: vue.Ref<string>;
610
617
  isMobileMenuOpen: vue.Ref<boolean>;
@@ -625,9 +632,18 @@ declare const _default$d: vue.DefineComponent<{
625
632
  actionLabel: {
626
633
  type: StringConstructor;
627
634
  };
635
+ /**
636
+ * The class for the container wrapper.
637
+ */
638
+ containerClass: {
639
+ type: StringConstructor;
640
+ default: string;
641
+ };
628
642
  }>> & {
629
643
  onAction?: ((...args: any[]) => any) | undefined;
630
- }, {}>;
644
+ }, {
645
+ containerClass: string;
646
+ }>;
631
647
 
632
648
  declare const _default$c: vue.DefineComponent<{
633
649
  /**
@@ -1071,6 +1087,26 @@ declare const _default$3: vue.DefineComponent<{
1071
1087
  default: string;
1072
1088
  validator: (value: string) => boolean;
1073
1089
  };
1090
+ /**
1091
+ * Whether the loading bar and error state are rounded.
1092
+ */
1093
+ rounded: {
1094
+ type: BooleanConstructor;
1095
+ default: boolean;
1096
+ };
1097
+ /**
1098
+ * The class for the native image element
1099
+ */
1100
+ imageClass: {
1101
+ type: StringConstructor;
1102
+ };
1103
+ /**
1104
+ * Controls the threshold before the component triggers the src url.
1105
+ */
1106
+ threshold: {
1107
+ type: NumberConstructor;
1108
+ default: number;
1109
+ };
1074
1110
  }, {
1075
1111
  fwImageRef: vue.Ref<null>;
1076
1112
  isBackground: vue.ComputedRef<boolean>;
@@ -1091,8 +1127,30 @@ declare const _default$3: vue.DefineComponent<{
1091
1127
  default: string;
1092
1128
  validator: (value: string) => boolean;
1093
1129
  };
1130
+ /**
1131
+ * Whether the loading bar and error state are rounded.
1132
+ */
1133
+ rounded: {
1134
+ type: BooleanConstructor;
1135
+ default: boolean;
1136
+ };
1137
+ /**
1138
+ * The class for the native image element
1139
+ */
1140
+ imageClass: {
1141
+ type: StringConstructor;
1142
+ };
1143
+ /**
1144
+ * Controls the threshold before the component triggers the src url.
1145
+ */
1146
+ threshold: {
1147
+ type: NumberConstructor;
1148
+ default: number;
1149
+ };
1094
1150
  }>>, {
1095
1151
  type: "native" | "background" | undefined;
1152
+ rounded: boolean;
1153
+ threshold: number;
1096
1154
  }>;
1097
1155
 
1098
1156
  declare const _default$2: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, vue.EmitsOptions, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{}>>, {}>;
@@ -1221,6 +1279,9 @@ declare interface FwImageProps {
1221
1279
  src?: string;
1222
1280
  alt?: string;
1223
1281
  type?: 'native' | 'background';
1282
+ rounded?: boolean;
1283
+ imageClass?: string;
1284
+ threshold?: number;
1224
1285
  }
1225
1286
 
1226
1287
  declare module '@frollo/frollo-web-ui/icons' { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frollo/frollo-web-ui",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Frollo's UI library for components, utilities and configs",
5
5
  "exports": {
6
6
  "./icons": "./icons/index.ts",
@@ -16,6 +16,26 @@ declare const _default: import("vue").DefineComponent<{
16
16
  default: string;
17
17
  validator: (value: string) => boolean;
18
18
  };
19
+ /**
20
+ * Whether the loading bar and error state are rounded.
21
+ */
22
+ rounded: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ /**
27
+ * The class for the native image element
28
+ */
29
+ imageClass: {
30
+ type: StringConstructor;
31
+ };
32
+ /**
33
+ * Controls the threshold before the component triggers the src url.
34
+ */
35
+ threshold: {
36
+ type: NumberConstructor;
37
+ default: number;
38
+ };
19
39
  }, {
20
40
  fwImageRef: import("vue").Ref<null>;
21
41
  isBackground: import("vue").ComputedRef<boolean>;
@@ -36,7 +56,29 @@ declare const _default: import("vue").DefineComponent<{
36
56
  default: string;
37
57
  validator: (value: string) => boolean;
38
58
  };
59
+ /**
60
+ * Whether the loading bar and error state are rounded.
61
+ */
62
+ rounded: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ /**
67
+ * The class for the native image element
68
+ */
69
+ imageClass: {
70
+ type: StringConstructor;
71
+ };
72
+ /**
73
+ * Controls the threshold before the component triggers the src url.
74
+ */
75
+ threshold: {
76
+ type: NumberConstructor;
77
+ default: number;
78
+ };
39
79
  }>>, {
40
80
  type: "native" | "background" | undefined;
81
+ rounded: boolean;
82
+ threshold: number;
41
83
  }>;
42
84
  export default _default;
@@ -2,4 +2,7 @@ export declare interface FwImageProps {
2
2
  src?: string;
3
3
  alt?: string;
4
4
  type?: 'native' | 'background';
5
+ rounded?: boolean;
6
+ imageClass?: string;
7
+ threshold?: number;
5
8
  }
@@ -15,6 +15,13 @@ declare const _default: import("vue").DefineComponent<{
15
15
  actionLabel: {
16
16
  type: StringConstructor;
17
17
  };
18
+ /**
19
+ * The class for the container wrapper.
20
+ */
21
+ containerClass: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
18
25
  }, {
19
26
  mobileMenuClass: import("vue").Ref<string>;
20
27
  isMobileMenuOpen: import("vue").Ref<boolean>;
@@ -35,7 +42,16 @@ declare const _default: import("vue").DefineComponent<{
35
42
  actionLabel: {
36
43
  type: StringConstructor;
37
44
  };
45
+ /**
46
+ * The class for the container wrapper.
47
+ */
48
+ containerClass: {
49
+ type: StringConstructor;
50
+ default: string;
51
+ };
38
52
  }>> & {
39
53
  onAction?: ((...args: any[]) => any) | undefined;
40
- }, {}>;
54
+ }, {
55
+ containerClass: string;
56
+ }>;
41
57
  export default _default;