@frollo/frollo-web-ui 6.0.3 → 7.0.0

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.
@@ -5,6 +5,13 @@ declare const __default__: import("vue").DefineComponent<{
5
5
  title: {
6
6
  type: StringConstructor;
7
7
  };
8
+ /**
9
+ * Classname for the title
10
+ */
11
+ titleClass: {
12
+ type: StringConstructor;
13
+ default: string;
14
+ };
8
15
  /**
9
16
  * Title suffix of the accordion header
10
17
  */
@@ -25,6 +32,27 @@ declare const __default__: import("vue").DefineComponent<{
25
32
  type: BooleanConstructor;
26
33
  default: boolean;
27
34
  };
35
+ /**
36
+ * Icon type (arrow or plus)
37
+ */
38
+ isArrow: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ /**
43
+ * Padding className for the accordion button
44
+ */
45
+ buttonPadding: {
46
+ type: StringConstructor;
47
+ default: string;
48
+ };
49
+ /**
50
+ * Border style className for the accordion button
51
+ */
52
+ borderStyle: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
28
56
  }, {
29
57
  isOpen: import("vue").Ref<boolean>;
30
58
  beforeEnter: (el: Element) => void;
@@ -39,6 +67,13 @@ declare const __default__: import("vue").DefineComponent<{
39
67
  title: {
40
68
  type: StringConstructor;
41
69
  };
70
+ /**
71
+ * Classname for the title
72
+ */
73
+ titleClass: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
42
77
  /**
43
78
  * Title suffix of the accordion header
44
79
  */
@@ -59,10 +94,35 @@ declare const __default__: import("vue").DefineComponent<{
59
94
  type: BooleanConstructor;
60
95
  default: boolean;
61
96
  };
97
+ /**
98
+ * Icon type (arrow or plus)
99
+ */
100
+ isArrow: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
104
+ /**
105
+ * Padding className for the accordion button
106
+ */
107
+ buttonPadding: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ /**
112
+ * Border style className for the accordion button
113
+ */
114
+ borderStyle: {
115
+ type: StringConstructor;
116
+ default: string;
117
+ };
62
118
  }>> & {
63
119
  onToggled?: ((...args: any[]) => any) | undefined;
64
120
  }, {
121
+ titleClass: string;
65
122
  isOpened: boolean;
66
123
  iconPositionStart: boolean;
124
+ isArrow: boolean;
125
+ buttonPadding: string;
126
+ borderStyle: string;
67
127
  }>;
68
128
  export default __default__;
@@ -1,6 +1,10 @@
1
1
  export declare interface FwAccordionProps {
2
2
  title?: string;
3
+ titleClass?: string;
3
4
  suffixTitle?: string;
4
5
  isOpened?: boolean;
5
6
  iconPositionStart?: boolean;
7
+ isArrow?: boolean;
8
+ buttonPadding?: string;
9
+ borderStyle?: string;
6
10
  }
@@ -2,7 +2,6 @@ import { ButtonVariantName } from '../fw-button/index.types';
2
2
  export declare interface FwDrawerProps {
3
3
  modelValue: boolean;
4
4
  header?: string;
5
- element?: string;
6
5
  body?: string;
7
6
  role?: string;
8
7
  showCancel?: boolean;
@@ -4,4 +4,5 @@ export declare interface FwSidebarMenuItem {
4
4
  label: string;
5
5
  external?: boolean;
6
6
  disabled?: boolean;
7
+ onClick?: () => void;
7
8
  }