@frollo/frollo-web-ui 6.0.1 → 6.0.2
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 +270 -246
- package/esm/{add-to-unscopables-31609885.js → add-to-unscopables-cfb87985.js} +2 -2
- package/esm/{array-iteration-ec356eb3.js → array-iteration-2181d2bd.js} +2 -2
- package/esm/{array-method-has-species-support-8a4b1310.js → array-method-has-species-support-dfbd0c7f.js} +1 -1
- package/esm/{array-method-is-strict-fc2e0d8d.js → array-method-is-strict-7dac83d7.js} +1 -1
- package/esm/{array-species-create-b125f4a4.js → array-species-create-ff1f78e1.js} +2 -2
- package/esm/{classof-ee4b3b5b.js → classof-7ba4c6c3.js} +1 -1
- package/esm/{create-property-c70ecc08.js → create-property-1bf185fa.js} +1 -1
- package/esm/{does-not-exceed-safe-integer-8e0042ec.js → does-not-exceed-safe-integer-b66f7ee2.js} +1 -1
- package/esm/{es.array.concat-fe990345.js → es.array.concat-d9281ad1.js} +6 -6
- package/esm/es.array.find-ee91a966.js +28 -0
- package/esm/{es.array.includes-a06445a5.js → es.array.includes-d57031df.js} +3 -3
- package/esm/es.array.map-582a2b69.js +22 -0
- package/esm/{es.date.to-string-1ffba857.js → es.date.to-string-dc67483a.js} +1 -1
- package/esm/{es.function.name-6daefaeb.js → es.function.name-14d69869.js} +1 -1
- package/esm/{es.number.constructor-98bae04f.js → es.number.constructor-bed13ae4.js} +2 -2
- package/esm/es.object.to-string-31ad45ad.js +24 -0
- package/esm/{es.string.includes-ade04f96.js → es.string.includes-01e4d90f.js} +3 -3
- package/esm/{es.string.iterator-0992bb28.js → es.string.iterator-27b735a3.js} +8 -8
- package/esm/{export-8a363004.js → export-44690f0d.js} +1 -1
- package/esm/{function-apply-b908d7e6.js → function-apply-5580128b.js} +1 -1
- package/esm/fw-animations.js +3 -3
- package/esm/fw-bar-chart.js +16 -17
- package/esm/{fw-button-b00853dd.js → fw-button-cbaedd16.js} +1 -1
- package/esm/fw-button.js +6 -7
- package/esm/fw-checkbox.js +9 -9
- package/esm/fw-date-picker.js +10 -10
- package/esm/fw-drawer.js +6 -7
- package/esm/{fw-dropdown-1c89f793.js → fw-dropdown-3f1ae8ee.js} +3 -2
- package/esm/fw-dropdown.js +11 -11
- package/esm/{fw-image-af8c5745.js → fw-image-9c1032f2.js} +10 -9
- package/esm/fw-image.js +17 -17
- package/esm/{fw-input-46dd3134.js → fw-input-8fa201f7.js} +4 -4
- package/esm/fw-input.js +14 -15
- package/esm/fw-loading.js +3 -3
- package/esm/fw-modal.js +6 -7
- package/esm/fw-navigation-menu.js +6 -7
- package/esm/fw-popover.js +7 -8
- package/esm/fw-progress-bar.js +3 -3
- package/esm/fw-provider-list.js +60 -128
- package/esm/fw-sidebar-menu.js +6 -7
- package/esm/{fw-table-row-1050a386.js → fw-table-row-cfbd796c.js} +113 -18
- package/esm/fw-table.js +11 -9
- package/esm/fw-tabs.js +9 -10
- package/esm/{fw-tag-fdcaf92c.js → fw-tag-749b4fc6.js} +2 -2
- package/esm/fw-tag.js +7 -8
- package/esm/fw-toast.js +15 -16
- package/esm/fw-transactions-card.js +17 -17
- package/esm/{index-be5b4afa.js → index-95659c75.js} +13 -13
- package/esm/index.js +38 -38
- package/esm/{is-forced-fc680e39.js → is-forced-b8806e4b.js} +1 -1
- package/esm/{object-create-bc771493.js → object-create-200e3764.js} +13 -4
- package/esm/regexp-flags-8d5e20e1.js +50 -0
- package/esm/{web.timers-c5316125.js → web.timers-991ce9a8.js} +3 -3
- package/frollo-web-ui.esm.js +288 -264
- package/index.d.ts +41 -9
- package/package.json +1 -1
- package/types/components/fw-provider-list/fw-provider-list.vue.d.ts +41 -9
- package/web-components/index.js +288 -264
- package/esm/delete-property-or-throw-cd4c57d6.js +0 -31
- package/esm/es.array.find-67b3b514.js +0 -51
- package/esm/es.array.map-ae6c9437.js +0 -43
- package/esm/object-keys-17f3b440.js +0 -13
package/index.d.ts
CHANGED
|
@@ -2101,16 +2101,30 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
2101
2101
|
required: true;
|
|
2102
2102
|
};
|
|
2103
2103
|
/**
|
|
2104
|
-
* The
|
|
2104
|
+
* The table header title.
|
|
2105
|
+
*/
|
|
2106
|
+
tableHeaderName: {
|
|
2107
|
+
type: StringConstructor;
|
|
2108
|
+
default: string;
|
|
2109
|
+
};
|
|
2110
|
+
/**
|
|
2111
|
+
* The placeholder text for the search input.
|
|
2105
2112
|
*/
|
|
2106
2113
|
searchPlaceholder: {
|
|
2107
2114
|
type: StringConstructor;
|
|
2108
2115
|
default: string;
|
|
2109
2116
|
};
|
|
2110
2117
|
/**
|
|
2111
|
-
* The
|
|
2118
|
+
* The label text for the search input.
|
|
2112
2119
|
*/
|
|
2113
|
-
|
|
2120
|
+
searchLabel: {
|
|
2121
|
+
type: StringConstructor;
|
|
2122
|
+
default: string;
|
|
2123
|
+
};
|
|
2124
|
+
/**
|
|
2125
|
+
* The label text for the status filter dropdown.
|
|
2126
|
+
*/
|
|
2127
|
+
statusFilterLabel: {
|
|
2114
2128
|
type: StringConstructor;
|
|
2115
2129
|
default: string;
|
|
2116
2130
|
};
|
|
@@ -2119,7 +2133,7 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
2119
2133
|
sortedTableItems: vue.ComputedRef<FwTableItem[]>;
|
|
2120
2134
|
searchFilterModel: vue.Ref<string>;
|
|
2121
2135
|
statusFilterModel: vue.Ref<string>;
|
|
2122
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
2136
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "changed"[], "changed", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
2123
2137
|
/**
|
|
2124
2138
|
* The header heading of the list.
|
|
2125
2139
|
*/
|
|
@@ -2134,22 +2148,40 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
2134
2148
|
required: true;
|
|
2135
2149
|
};
|
|
2136
2150
|
/**
|
|
2137
|
-
* The
|
|
2151
|
+
* The table header title.
|
|
2152
|
+
*/
|
|
2153
|
+
tableHeaderName: {
|
|
2154
|
+
type: StringConstructor;
|
|
2155
|
+
default: string;
|
|
2156
|
+
};
|
|
2157
|
+
/**
|
|
2158
|
+
* The placeholder text for the search input.
|
|
2138
2159
|
*/
|
|
2139
2160
|
searchPlaceholder: {
|
|
2140
2161
|
type: StringConstructor;
|
|
2141
2162
|
default: string;
|
|
2142
2163
|
};
|
|
2143
2164
|
/**
|
|
2144
|
-
* The
|
|
2165
|
+
* The label text for the search input.
|
|
2145
2166
|
*/
|
|
2146
|
-
|
|
2167
|
+
searchLabel: {
|
|
2147
2168
|
type: StringConstructor;
|
|
2148
2169
|
default: string;
|
|
2149
2170
|
};
|
|
2150
|
-
|
|
2151
|
-
|
|
2171
|
+
/**
|
|
2172
|
+
* The label text for the status filter dropdown.
|
|
2173
|
+
*/
|
|
2174
|
+
statusFilterLabel: {
|
|
2175
|
+
type: StringConstructor;
|
|
2176
|
+
default: string;
|
|
2177
|
+
};
|
|
2178
|
+
}>> & {
|
|
2179
|
+
onChanged?: ((...args: any[]) => any) | undefined;
|
|
2180
|
+
}, {
|
|
2152
2181
|
tableHeaderName: string;
|
|
2182
|
+
searchPlaceholder: string;
|
|
2183
|
+
searchLabel: string;
|
|
2184
|
+
statusFilterLabel: string;
|
|
2153
2185
|
}>;
|
|
2154
2186
|
|
|
2155
2187
|
declare const __default__$3: vue.DefineComponent<{
|
package/package.json
CHANGED
|
@@ -15,16 +15,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
required: true;
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
* The
|
|
18
|
+
* The table header title.
|
|
19
|
+
*/
|
|
20
|
+
tableHeaderName: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* The placeholder text for the search input.
|
|
19
26
|
*/
|
|
20
27
|
searchPlaceholder: {
|
|
21
28
|
type: StringConstructor;
|
|
22
29
|
default: string;
|
|
23
30
|
};
|
|
24
31
|
/**
|
|
25
|
-
* The
|
|
32
|
+
* The label text for the search input.
|
|
26
33
|
*/
|
|
27
|
-
|
|
34
|
+
searchLabel: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* The label text for the status filter dropdown.
|
|
40
|
+
*/
|
|
41
|
+
statusFilterLabel: {
|
|
28
42
|
type: StringConstructor;
|
|
29
43
|
default: string;
|
|
30
44
|
};
|
|
@@ -33,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
47
|
sortedTableItems: import("vue").ComputedRef<import("../fw-table/index.types").FwTableItem[]>;
|
|
34
48
|
searchFilterModel: import("vue").Ref<string>;
|
|
35
49
|
statusFilterModel: import("vue").Ref<string>;
|
|
36
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
50
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changed"[], "changed", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
51
|
/**
|
|
38
52
|
* The header heading of the list.
|
|
39
53
|
*/
|
|
@@ -48,21 +62,39 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
62
|
required: true;
|
|
49
63
|
};
|
|
50
64
|
/**
|
|
51
|
-
* The
|
|
65
|
+
* The table header title.
|
|
66
|
+
*/
|
|
67
|
+
tableHeaderName: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* The placeholder text for the search input.
|
|
52
73
|
*/
|
|
53
74
|
searchPlaceholder: {
|
|
54
75
|
type: StringConstructor;
|
|
55
76
|
default: string;
|
|
56
77
|
};
|
|
57
78
|
/**
|
|
58
|
-
* The
|
|
79
|
+
* The label text for the search input.
|
|
59
80
|
*/
|
|
60
|
-
|
|
81
|
+
searchLabel: {
|
|
61
82
|
type: StringConstructor;
|
|
62
83
|
default: string;
|
|
63
84
|
};
|
|
64
|
-
|
|
65
|
-
|
|
85
|
+
/**
|
|
86
|
+
* The label text for the status filter dropdown.
|
|
87
|
+
*/
|
|
88
|
+
statusFilterLabel: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
}>> & {
|
|
93
|
+
onChanged?: ((...args: any[]) => any) | undefined;
|
|
94
|
+
}, {
|
|
66
95
|
tableHeaderName: string;
|
|
96
|
+
searchPlaceholder: string;
|
|
97
|
+
searchLabel: string;
|
|
98
|
+
statusFilterLabel: string;
|
|
67
99
|
}>;
|
|
68
100
|
export default _default;
|