@frollo/frollo-web-ui 5.0.1 → 5.0.3

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.
Files changed (67) hide show
  1. package/cjs/index.js +1169 -784
  2. package/esm/{add-to-unscopables-2400f45b.js → add-to-unscopables-31609885.js} +2 -2
  3. package/esm/{array-iteration-107f927f.js → array-iteration-ec356eb3.js} +2 -2
  4. package/esm/{array-method-has-species-support-3d413468.js → array-method-has-species-support-8a4b1310.js} +1 -1
  5. package/esm/{array-method-is-strict-055b1830.js → array-method-is-strict-fc2e0d8d.js} +1 -1
  6. package/esm/{array-species-create-a5f5503b.js → array-species-create-b125f4a4.js} +2 -2
  7. package/esm/{classof-39c30bd5.js → classof-ee4b3b5b.js} +1 -1
  8. package/esm/{create-property-534611fd.js → create-property-c70ecc08.js} +1 -1
  9. package/esm/{delete-property-or-throw-8032646c.js → delete-property-or-throw-cd4c57d6.js} +3 -3
  10. package/esm/{does-not-exceed-safe-integer-31d08811.js → does-not-exceed-safe-integer-8e0042ec.js} +1 -1
  11. package/esm/{es.array.concat-987938be.js → es.array.concat-fe990345.js} +6 -6
  12. package/esm/{es.array.find-dfa1f42f.js → es.array.find-67b3b514.js} +5 -5
  13. package/esm/{es.array.includes-91be7771.js → es.array.includes-a06445a5.js} +3 -3
  14. package/esm/es.array.map-ae6c9437.js +43 -0
  15. package/esm/{es.function.name-557cb1f9.js → es.function.name-6daefaeb.js} +1 -1
  16. package/esm/{es.number.constructor-d6ff8874.js → es.number.constructor-98bae04f.js} +2 -2
  17. package/esm/es.string.includes-ade04f96.js +66 -0
  18. package/esm/{es.string.iterator-590198a8.js → es.string.iterator-0992bb28.js} +8 -8
  19. package/esm/{export-a37ba078.js → export-8a363004.js} +1 -1
  20. package/esm/{function-apply-ce251590.js → function-apply-b908d7e6.js} +1 -1
  21. package/esm/fw-animations.js +5 -5
  22. package/esm/fw-bar-chart.js +17 -16
  23. package/esm/{fw-button-8d131219.js → fw-button-b7a12ae1.js} +2 -2
  24. package/esm/fw-button.js +9 -9
  25. package/esm/fw-checkbox.js +43 -22
  26. package/esm/fw-drawer.js +9 -9
  27. package/esm/fw-dropdown-765dbbba.js +223 -0
  28. package/esm/fw-dropdown.js +15 -222
  29. package/esm/{fw-image-4787a8bd.js → fw-image-660d3e75.js} +10 -10
  30. package/esm/fw-image.js +18 -18
  31. package/esm/fw-input-7d25de48.js +235 -0
  32. package/esm/fw-input.js +20 -245
  33. package/esm/{fw-loading-spinner-c394fafc.js → fw-loading-spinner-3fda633e.js} +1 -1
  34. package/esm/fw-loading.js +3 -3
  35. package/esm/fw-modal.js +9 -9
  36. package/esm/fw-navigation-menu.js +9 -9
  37. package/esm/fw-progress-bar.js +3 -3
  38. package/esm/fw-provider-list.js +36 -0
  39. package/esm/fw-sidebar-menu.js +9 -9
  40. package/esm/fw-table-row-d390fe77.js +492 -0
  41. package/esm/fw-table.js +14 -489
  42. package/esm/fw-tabs.js +10 -10
  43. package/esm/fw-tag-9ef5331a.js +157 -0
  44. package/esm/fw-tag.js +13 -162
  45. package/esm/fw-toast.js +24 -85
  46. package/esm/fw-transactions-card.js +18 -18
  47. package/esm/{index-e4a2f8b0.js → index-04d3cb23.js} +1 -1
  48. package/esm/index-8c78a422.js +417 -0
  49. package/esm/{index-2766bfe4.js → index-c15f5641.js} +18 -55
  50. package/esm/index.js +48 -54
  51. package/esm/{is-forced-752b5893.js → is-forced-fc680e39.js} +1 -1
  52. package/esm/{object-create-f6f3a673.js → object-create-bc771493.js} +2 -2
  53. package/esm/{object-keys-4f5bf4e7.js → object-keys-17f3b440.js} +1 -1
  54. package/esm/{web.timers-0f117224.js → web.timers-c5316125.js} +3 -3
  55. package/frollo-web-ui.esm.js +1255 -839
  56. package/index.d.ts +138 -22
  57. package/package.json +1 -1
  58. package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +19 -0
  59. package/types/components/fw-checkbox/index.types.d.ts +1 -0
  60. package/types/components/fw-dropdown/fw-dropdown.vue.d.ts +17 -0
  61. package/types/components/fw-dropdown/index.types.d.ts +1 -0
  62. package/types/components/fw-provider-list/fw-provider-list.vue.d.ts +68 -0
  63. package/types/components/fw-provider-list/index.d.ts +2 -0
  64. package/types/components/fw-provider-list/index.types.d.ts +11 -0
  65. package/types/components/index.d.ts +1 -0
  66. package/types/components/index.types.d.ts +1 -0
  67. package/web-components/index.js +1300 -869
package/esm/index.js CHANGED
@@ -1,18 +1,16 @@
1
- import { _ as _unsupportedIterableToArray, s as script$i } from './index-2766bfe4.js';
2
- export { s as FwBarChart } from './index-2766bfe4.js';
3
- import { s as script$c } from './fw-image-4787a8bd.js';
4
- export { s as FwImage } from './fw-image-4787a8bd.js';
5
- import './es.array.find-dfa1f42f.js';
6
- import { d as descriptors, f as functionUncurryThis, t as toIndexedObject$1, o as objectPropertyIsEnumerable } from './is-forced-752b5893.js';
7
- import { _ as _export } from './export-a37ba078.js';
8
- import { o as objectKeys$1 } from './object-keys-4f5bf4e7.js';
1
+ import { _ as _unsupportedIterableToArray, s as script$i } from './index-c15f5641.js';
2
+ export { s as FwBarChart } from './index-c15f5641.js';
3
+ import { s as script$c } from './fw-image-660d3e75.js';
4
+ export { s as FwImage } from './fw-image-660d3e75.js';
5
+ import './es.array.find-67b3b514.js';
6
+ import { d as descriptors, f as functionUncurryThis, t as toIndexedObject$1, o as objectPropertyIsEnumerable } from './is-forced-fc680e39.js';
7
+ import { _ as _export } from './export-8a363004.js';
8
+ import { o as objectKeys$1 } from './object-keys-17f3b440.js';
9
9
  import './fw-form.js';
10
- import { FwInput as script } from './fw-input.js';
11
- export { FwInput } from './fw-input.js';
10
+ import './fw-input.js';
12
11
  import { FwCheckbox as script$1 } from './fw-checkbox.js';
13
12
  export { FwCheckbox } from './fw-checkbox.js';
14
- import { FwDropdown as script$2 } from './fw-dropdown.js';
15
- export { FwDropdown } from './fw-dropdown.js';
13
+ import './fw-dropdown.js';
16
14
  import './fw-card.js';
17
15
  import './fw-button.js';
18
16
  import { FwNavigationMenu as script$5 } from './fw-navigation-menu.js';
@@ -23,10 +21,8 @@ import { FwModal as script$8 } from './fw-modal.js';
23
21
  export { FwModal } from './fw-modal.js';
24
22
  import { FwProgressBar as script$9 } from './fw-progress-bar.js';
25
23
  export { FwProgressBar } from './fw-progress-bar.js';
26
- import { FwTag as __default__ } from './fw-tag.js';
27
- export { FwTag } from './fw-tag.js';
28
- import { FwTable as __default__$1, FwTableHead as script$a, FwTableRow as script$b } from './fw-table.js';
29
- export { FwTable, FwTableHead, FwTableRow } from './fw-table.js';
24
+ import './fw-tag.js';
25
+ import './fw-table.js';
30
26
  import { FwAccordion as __default__$2 } from './fw-accordion.js';
31
27
  export { FwAccordion } from './fw-accordion.js';
32
28
  import './fw-image.js';
@@ -40,41 +36,53 @@ import { FwSidebarMenu as script$j } from './fw-sidebar-menu.js';
40
36
  export { FwSidebarMenu } from './fw-sidebar-menu.js';
41
37
  import { FwDrawer as script$k } from './fw-drawer.js';
42
38
  export { FwDrawer } from './fw-drawer.js';
39
+ import { s as script$l, _ as _defineProperty } from './index-8c78a422.js';
40
+ export { s as FwProviderList } from './index-8c78a422.js';
43
41
  import { FwEmailPulse as __default__$3, FwSuccessPulse as __default__$4 } from './fw-animations.js';
44
42
  export { FwEmailPulse, FwSuccessPulse } from './fw-animations.js';
45
43
  import { F as Form } from './vee-validate.esm-a17a23c3.js';
46
44
  export { F as FwForm } from './vee-validate.esm-a17a23c3.js';
45
+ import { s as script } from './fw-input-7d25de48.js';
46
+ export { s as FwInput } from './fw-input-7d25de48.js';
47
+ import { s as script$2 } from './fw-dropdown-765dbbba.js';
48
+ export { s as FwDropdown } from './fw-dropdown-765dbbba.js';
47
49
  import { s as script$3 } from './fw-card-1b6a67fe.js';
48
50
  export { s as FwCard } from './fw-card-1b6a67fe.js';
49
- import { s as script$4 } from './fw-button-8d131219.js';
50
- export { s as FwButton } from './fw-button-8d131219.js';
51
+ import { s as script$4 } from './fw-button-b7a12ae1.js';
52
+ export { s as FwButton } from './fw-button-b7a12ae1.js';
53
+ import { _ as __default__ } from './fw-tag-9ef5331a.js';
54
+ export { _ as FwTag } from './fw-tag-9ef5331a.js';
55
+ import { _ as __default__$1, s as script$a, a as script$b } from './fw-table-row-d390fe77.js';
56
+ export { _ as FwTable, s as FwTableHead, a as FwTableRow } from './fw-table-row-d390fe77.js';
51
57
  import { s as script$d } from './fw-loading-bar-f5ca605c.js';
52
58
  export { s as FwLoadingBar } from './fw-loading-bar-f5ca605c.js';
53
- import { s as script$l } from './fw-loading-spinner-c394fafc.js';
54
- export { s as FwLoadingSpinner } from './fw-loading-spinner-c394fafc.js';
59
+ import { s as script$m } from './fw-loading-spinner-3fda633e.js';
60
+ export { s as FwLoadingSpinner } from './fw-loading-spinner-3fda633e.js';
55
61
  import { reactive, createApp, h } from 'vue';
56
- import './es.number.constructor-d6ff8874.js';
57
- import './classof-39c30bd5.js';
58
- import './object-create-f6f3a673.js';
59
- import './function-apply-ce251590.js';
60
- import './es.string.iterator-590198a8.js';
61
- import './array-iteration-107f927f.js';
62
- import './array-species-create-a5f5503b.js';
63
- import './create-property-534611fd.js';
64
- import './delete-property-or-throw-8032646c.js';
65
- import './array-method-has-species-support-3d413468.js';
66
- import './es.function.name-557cb1f9.js';
67
- import './does-not-exceed-safe-integer-31d08811.js';
62
+ import './es.number.constructor-98bae04f.js';
63
+ import './classof-ee4b3b5b.js';
64
+ import './es.array.map-ae6c9437.js';
65
+ import './array-iteration-ec356eb3.js';
66
+ import './array-species-create-b125f4a4.js';
67
+ import './array-method-has-species-support-8a4b1310.js';
68
+ import './object-create-bc771493.js';
69
+ import './function-apply-b908d7e6.js';
70
+ import './es.string.iterator-0992bb28.js';
71
+ import './create-property-c70ecc08.js';
72
+ import './delete-property-or-throw-cd4c57d6.js';
73
+ import './es.function.name-6daefaeb.js';
74
+ import './does-not-exceed-safe-integer-8e0042ec.js';
68
75
  import './get-root-colours-e2a1cb28.js';
69
76
  import './uniqueId-fe08534a.js';
70
- import './es.array.includes-91be7771.js';
71
- import './add-to-unscopables-2400f45b.js';
72
- import './array-method-is-strict-055b1830.js';
73
- import './web.timers-0f117224.js';
74
- import './index-e4a2f8b0.js';
77
+ import './es.array.includes-a06445a5.js';
78
+ import './add-to-unscopables-31609885.js';
79
+ import './array-method-is-strict-fc2e0d8d.js';
80
+ import './web.timers-c5316125.js';
81
+ import './index-04d3cb23.js';
75
82
  import './check-94a5917a.js';
76
83
  import './style-inject.es-1f59c1d0.js';
77
- import './es.array.concat-987938be.js';
84
+ import './es.array.concat-fe990345.js';
85
+ import './es.string.includes-ade04f96.js';
78
86
 
79
87
  function _arrayWithHoles(arr) {
80
88
  if (Array.isArray(arr)) return arr;
@@ -197,26 +205,12 @@ var components = /*#__PURE__*/Object.freeze({
197
205
  FwBarChart: script$i,
198
206
  FwSidebarMenu: script$j,
199
207
  FwDrawer: script$k,
208
+ FwProviderList: script$l,
200
209
  FwEmailPulse: __default__$3,
201
210
  FwSuccessPulse: __default__$4,
202
- FwLoadingSpinner: script$l
211
+ FwLoadingSpinner: script$m
203
212
  });
204
213
 
205
- function _defineProperty(obj, key, value) {
206
- if (key in obj) {
207
- Object.defineProperty(obj, key, {
208
- value: value,
209
- enumerable: true,
210
- configurable: true,
211
- writable: true
212
- });
213
- } else {
214
- obj[key] = value;
215
- }
216
-
217
- return obj;
218
- }
219
-
220
214
  function ownKeys(object, enumerableOnly) {
221
215
  var keys = Object.keys(object);
222
216
 
@@ -924,4 +924,4 @@ var POLYFILL = isForced.POLYFILL = 'P';
924
924
 
925
925
  var isForced_1 = isForced;
926
926
 
927
- export { getMethod$1 as A, getBuiltIn$2 as B, objectGetOwnPropertyNames as C, hasOwnProperty_1 as D, objectGetOwnPropertyDescriptor as E, objectDefineProperty as F, defineGlobalProperty$2 as G, isForced_1 as H, arrayIncludes as I, objectIsPrototypeOf as J, isSymbol$2 as K, toPrimitive$1 as L, tryToString$1 as M, functionName as N, sharedKey$1 as O, isPure as P, createPropertyDescriptor$2 as Q, functionBindNative as R, indexedObject as S, objectKeysInternal as T, enumBugKeys$1 as U, inspectSource$2 as V, toPropertyKey$2 as W, v8PrototypeDefineBug as X, hiddenKeys$3 as Y, documentCreateElement as a, defineBuiltIn as b, createNonEnumerableProperty$1 as c, descriptors as d, toObject$1 as e, functionUncurryThis as f, global$9 as g, fails$8 as h, toAbsoluteIndex$1 as i, engineUserAgent as j, aCallable$1 as k, lengthOfArrayLike$1 as l, engineV8Version as m, isObject$5 as n, objectPropertyIsEnumerable as o, classofRaw as p, anObject$1 as q, requireObjectCoercible$2 as r, functionCall as s, toIndexedObject$3 as t, shared$4 as u, internalState as v, wellKnownSymbol$1 as w, isCallable$a as x, toIntegerOrInfinity$2 as y, toLength$1 as z };
927
+ export { hasOwnProperty_1 as A, objectIsPrototypeOf as B, functionName as C, getBuiltIn$2 as D, objectGetOwnPropertyNames as E, objectGetOwnPropertyDescriptor as F, objectDefineProperty as G, defineGlobalProperty$2 as H, isForced_1 as I, arrayIncludes as J, isObject$5 as K, isSymbol$2 as L, toPrimitive$1 as M, tryToString$1 as N, sharedKey$1 as O, isPure as P, createPropertyDescriptor$2 as Q, functionBindNative as R, indexedObject as S, objectKeysInternal as T, enumBugKeys$1 as U, inspectSource$2 as V, toPropertyKey$2 as W, v8PrototypeDefineBug as X, hiddenKeys$3 as Y, documentCreateElement as a, defineBuiltIn as b, createNonEnumerableProperty$1 as c, descriptors as d, toObject$1 as e, functionUncurryThis as f, global$9 as g, fails$8 as h, toAbsoluteIndex$1 as i, engineUserAgent as j, aCallable$1 as k, lengthOfArrayLike$1 as l, engineV8Version as m, functionCall as n, objectPropertyIsEnumerable as o, internalState as p, anObject$1 as q, isCallable$a as r, shared$4 as s, toIndexedObject$3 as t, classofRaw as u, toIntegerOrInfinity$2 as v, wellKnownSymbol$1 as w, toLength$1 as x, requireObjectCoercible$2 as y, getMethod$1 as z };
@@ -1,5 +1,5 @@
1
- import { d as descriptors, X as v8PrototypeDefineBug, F as objectDefineProperty, q as anObject$2, t as toIndexedObject$1, B as getBuiltIn$1, U as enumBugKeys$1, Y as hiddenKeys$1, a as documentCreateElement$1, O as sharedKey$1 } from './is-forced-752b5893.js';
2
- import { o as objectKeys$1 } from './object-keys-4f5bf4e7.js';
1
+ import { d as descriptors, X as v8PrototypeDefineBug, G as objectDefineProperty, q as anObject$2, t as toIndexedObject$1, D as getBuiltIn$1, U as enumBugKeys$1, Y as hiddenKeys$1, a as documentCreateElement$1, O as sharedKey$1 } from './is-forced-fc680e39.js';
2
+ import { o as objectKeys$1 } from './object-keys-17f3b440.js';
3
3
 
4
4
  var objectDefineProperties = {};
5
5
 
@@ -1,4 +1,4 @@
1
- import { T as objectKeysInternal, U as enumBugKeys$1 } from './is-forced-752b5893.js';
1
+ import { T as objectKeysInternal, U as enumBugKeys$1 } from './is-forced-fc680e39.js';
2
2
 
3
3
  var internalObjectKeys = objectKeysInternal;
4
4
  var enumBugKeys = enumBugKeys$1;
@@ -1,6 +1,6 @@
1
- import { f as functionUncurryThis, g as global$3, x as isCallable$1, j as engineUserAgent } from './is-forced-752b5893.js';
2
- import { _ as _export } from './export-a37ba078.js';
3
- import { f as functionApply } from './function-apply-ce251590.js';
1
+ import { f as functionUncurryThis, g as global$3, r as isCallable$1, j as engineUserAgent } from './is-forced-fc680e39.js';
2
+ import { _ as _export } from './export-8a363004.js';
3
+ import { f as functionApply } from './function-apply-b908d7e6.js';
4
4
 
5
5
  var web_timers = {};
6
6