@frollo/frollo-web-ui 6.0.4 → 7.0.1
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 +134 -79
- package/esm/fw-accordion.js +68 -17
- package/esm/fw-date-picker.js +19 -13
- package/esm/fw-drawer.js +7 -8
- 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 +3 -4
- package/esm/fw-tabs.js +2 -3
- package/esm/index.js +2 -2
- package/frollo-web-ui.esm.js +135 -80
- package/index.d.ts +64 -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/web-components/index.js +136 -81
package/index.d.ts
CHANGED
|
@@ -1168,9 +1168,13 @@ declare interface FwTableProps {
|
|
|
1168
1168
|
|
|
1169
1169
|
declare interface FwAccordionProps {
|
|
1170
1170
|
title?: string;
|
|
1171
|
+
titleClass?: string;
|
|
1171
1172
|
suffixTitle?: string;
|
|
1172
1173
|
isOpened?: boolean;
|
|
1173
1174
|
iconPositionStart?: boolean;
|
|
1175
|
+
isArrow?: boolean;
|
|
1176
|
+
buttonPadding?: string;
|
|
1177
|
+
borderStyle?: string;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1176
1180
|
declare interface FwImageProps {
|
|
@@ -1227,7 +1231,6 @@ declare interface FwSidebarMenuItem {
|
|
|
1227
1231
|
declare interface FwDrawerProps {
|
|
1228
1232
|
modelValue: boolean;
|
|
1229
1233
|
header?: string;
|
|
1230
|
-
element?: string;
|
|
1231
1234
|
body?: string;
|
|
1232
1235
|
role?: string;
|
|
1233
1236
|
showCancel?: boolean;
|
|
@@ -1427,6 +1430,13 @@ declare const __default__$4: vue.DefineComponent<{
|
|
|
1427
1430
|
title: {
|
|
1428
1431
|
type: StringConstructor;
|
|
1429
1432
|
};
|
|
1433
|
+
/**
|
|
1434
|
+
* Classname for the title
|
|
1435
|
+
*/
|
|
1436
|
+
titleClass: {
|
|
1437
|
+
type: StringConstructor;
|
|
1438
|
+
default: string;
|
|
1439
|
+
};
|
|
1430
1440
|
/**
|
|
1431
1441
|
* Title suffix of the accordion header
|
|
1432
1442
|
*/
|
|
@@ -1447,6 +1457,27 @@ declare const __default__$4: vue.DefineComponent<{
|
|
|
1447
1457
|
type: BooleanConstructor;
|
|
1448
1458
|
default: boolean;
|
|
1449
1459
|
};
|
|
1460
|
+
/**
|
|
1461
|
+
* Icon type (arrow or plus)
|
|
1462
|
+
*/
|
|
1463
|
+
isArrow: {
|
|
1464
|
+
type: BooleanConstructor;
|
|
1465
|
+
default: boolean;
|
|
1466
|
+
};
|
|
1467
|
+
/**
|
|
1468
|
+
* Padding className for the accordion button
|
|
1469
|
+
*/
|
|
1470
|
+
buttonPadding: {
|
|
1471
|
+
type: StringConstructor;
|
|
1472
|
+
default: string;
|
|
1473
|
+
};
|
|
1474
|
+
/**
|
|
1475
|
+
* Border style className for the accordion button
|
|
1476
|
+
*/
|
|
1477
|
+
borderStyle: {
|
|
1478
|
+
type: StringConstructor;
|
|
1479
|
+
default: string;
|
|
1480
|
+
};
|
|
1450
1481
|
}, {
|
|
1451
1482
|
isOpen: vue.Ref<boolean>;
|
|
1452
1483
|
beforeEnter: (el: Element) => void;
|
|
@@ -1461,6 +1492,13 @@ declare const __default__$4: vue.DefineComponent<{
|
|
|
1461
1492
|
title: {
|
|
1462
1493
|
type: StringConstructor;
|
|
1463
1494
|
};
|
|
1495
|
+
/**
|
|
1496
|
+
* Classname for the title
|
|
1497
|
+
*/
|
|
1498
|
+
titleClass: {
|
|
1499
|
+
type: StringConstructor;
|
|
1500
|
+
default: string;
|
|
1501
|
+
};
|
|
1464
1502
|
/**
|
|
1465
1503
|
* Title suffix of the accordion header
|
|
1466
1504
|
*/
|
|
@@ -1481,11 +1519,36 @@ declare const __default__$4: vue.DefineComponent<{
|
|
|
1481
1519
|
type: BooleanConstructor;
|
|
1482
1520
|
default: boolean;
|
|
1483
1521
|
};
|
|
1522
|
+
/**
|
|
1523
|
+
* Icon type (arrow or plus)
|
|
1524
|
+
*/
|
|
1525
|
+
isArrow: {
|
|
1526
|
+
type: BooleanConstructor;
|
|
1527
|
+
default: boolean;
|
|
1528
|
+
};
|
|
1529
|
+
/**
|
|
1530
|
+
* Padding className for the accordion button
|
|
1531
|
+
*/
|
|
1532
|
+
buttonPadding: {
|
|
1533
|
+
type: StringConstructor;
|
|
1534
|
+
default: string;
|
|
1535
|
+
};
|
|
1536
|
+
/**
|
|
1537
|
+
* Border style className for the accordion button
|
|
1538
|
+
*/
|
|
1539
|
+
borderStyle: {
|
|
1540
|
+
type: StringConstructor;
|
|
1541
|
+
default: string;
|
|
1542
|
+
};
|
|
1484
1543
|
}>> & {
|
|
1485
1544
|
onToggled?: ((...args: any[]) => any) | undefined;
|
|
1486
1545
|
}, {
|
|
1546
|
+
titleClass: string;
|
|
1487
1547
|
isOpened: boolean;
|
|
1488
1548
|
iconPositionStart: boolean;
|
|
1549
|
+
isArrow: boolean;
|
|
1550
|
+
buttonPadding: string;
|
|
1551
|
+
borderStyle: string;
|
|
1489
1552
|
}>;
|
|
1490
1553
|
|
|
1491
1554
|
declare const _default$a: vue.DefineComponent<{
|
package/package.json
CHANGED
|
@@ -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__;
|