@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.
- package/cjs/index.js +114 -64
- package/esm/fw-accordion.js +68 -17
- package/esm/fw-drawer.js +3 -4
- package/esm/{fw-input-259e2e18.js → fw-input-8969b226.js} +6 -2
- package/esm/fw-input.js +1 -1
- package/esm/fw-modal.js +3 -4
- package/esm/fw-provider-list.js +1 -1
- package/esm/fw-sidebar-menu.js +6 -6
- package/esm/fw-tabs.js +2 -3
- package/esm/index.js +2 -2
- package/frollo-web-ui.esm.js +115 -65
- package/index.d.ts +65 -1
- package/package.json +1 -1
- package/types/components/fw-accordion/fw-accordion.vue.d.ts +60 -0
- package/types/components/fw-accordion/index.types.d.ts +4 -0
- package/types/components/fw-drawer/index.types.d.ts +0 -1
- package/types/components/fw-sidebar-menu/index.types.d.ts +1 -0
- package/web-components/index.js +116 -66
|
@@ -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__;
|