@frollo/frollo-web-ui 5.0.3 → 5.0.5

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 (46) hide show
  1. package/cjs/index.js +11300 -1047
  2. package/esm/es.date.to-string-1ffba857.js +23 -0
  3. package/esm/fw-accordion.js +1 -1
  4. package/esm/fw-animations.js +2 -2
  5. package/esm/fw-bar-chart.js +2 -2
  6. package/esm/{fw-button-b7a12ae1.js → fw-button-99dba2bc.js} +1 -1
  7. package/esm/fw-button.js +3 -3
  8. package/esm/fw-date-picker.js +10340 -0
  9. package/esm/fw-drawer.js +3 -3
  10. package/esm/{fw-dropdown-765dbbba.js → fw-dropdown-b476e015.js} +1 -1
  11. package/esm/fw-dropdown.js +2 -2
  12. package/esm/{fw-image-660d3e75.js → fw-image-ae643123.js} +1 -1
  13. package/esm/fw-image.js +2 -2
  14. package/esm/{fw-input-7d25de48.js → fw-input-fdc8fe1b.js} +1 -1
  15. package/esm/fw-input.js +2 -2
  16. package/esm/{fw-loading-spinner-3fda633e.js → fw-loading-spinner-cc1ca2fa.js} +1 -1
  17. package/esm/fw-modal.js +3 -3
  18. package/esm/fw-navigation-menu.js +3 -3
  19. package/esm/fw-provider-list.js +10 -9
  20. package/esm/fw-sidebar-menu.js +3 -3
  21. package/esm/{fw-table-row-d390fe77.js → fw-table-row-e8520a1d.js} +2 -2
  22. package/esm/fw-table.js +3 -3
  23. package/esm/{fw-tag-9ef5331a.js → fw-tag-a8a83c0a.js} +3 -3
  24. package/esm/fw-tag.js +5 -5
  25. package/esm/fw-toast.js +1 -1
  26. package/esm/fw-transactions-card.js +2 -2
  27. package/esm/get-root-colours-865a52ba.js +37 -0
  28. package/esm/{index-04d3cb23.js → index-0a63f2c3.js} +130 -102
  29. package/esm/{index-8c78a422.js → index-6423a6ab.js} +38 -33
  30. package/esm/{index-c15f5641.js → index-be5b4afa.js} +2 -6
  31. package/esm/index.js +64 -66
  32. package/frollo-web-ui.esm.js +11392 -1009
  33. package/icons/calendar-day.svg +3 -0
  34. package/icons/calendar.svg +3 -0
  35. package/icons/index.ts +5 -1
  36. package/index.d.ts +196 -4
  37. package/package.json +3 -1
  38. package/types/components/fw-date-picker/fw-date-picker.vue.d.ts +177 -0
  39. package/types/components/fw-date-picker/index.d.ts +2 -0
  40. package/types/components/fw-date-picker/index.types.d.ts +16 -0
  41. package/types/components/index.d.ts +1 -0
  42. package/types/components/index.types.d.ts +1 -0
  43. package/types/helpers/get-root-colours.d.ts +8 -0
  44. package/types/icons/index.d.ts +3 -1
  45. package/web-components/index.js +11542 -1155
  46. package/esm/get-root-colours-e2a1cb28.js +0 -21
@@ -0,0 +1,23 @@
1
+ import { f as functionUncurryThis, b as defineBuiltIn$1 } from './is-forced-fc680e39.js';
2
+
3
+ var es_date_toString = {};
4
+
5
+ // TODO: Remove from `core-js@4`
6
+ var uncurryThis = functionUncurryThis;
7
+ var defineBuiltIn = defineBuiltIn$1;
8
+
9
+ var DatePrototype = Date.prototype;
10
+ var INVALID_DATE = 'Invalid Date';
11
+ var TO_STRING = 'toString';
12
+ var un$DateToString = uncurryThis(DatePrototype[TO_STRING]);
13
+ var getTime = uncurryThis(DatePrototype.getTime);
14
+
15
+ // `Date.prototype.toString` method
16
+ // https://tc39.es/ecma262/#sec-date.prototype.tostring
17
+ if (String(new Date(NaN)) != INVALID_DATE) {
18
+ defineBuiltIn(DatePrototype, TO_STRING, function toString() {
19
+ var value = getTime(this);
20
+ // eslint-disable-next-line no-self-compare -- NaN check
21
+ return value === value ? un$DateToString(this) : INVALID_DATE;
22
+ });
23
+ }
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, useCssVars, pushScopeId, popScopeId, openBlock, createElementBlock, createElementVNode, normalizeClass, createCommentVNode, toDisplayString, createVNode, Transition, withCtx, withDirectives, renderSlot, vShow } from 'vue';
2
- import { u as useColours } from './get-root-colours-e2a1cb28.js';
2
+ import { u as useColours } from './get-root-colours-865a52ba.js';
3
3
  import { s as styleInject } from './style-inject.es-1f59c1d0.js';
4
4
 
5
5
  var __default__ = defineComponent({
@@ -1,10 +1,10 @@
1
1
  import './es.number.constructor-98bae04f.js';
2
2
  import { defineComponent, useCssVars, pushScopeId, popScopeId, createElementVNode, openBlock, createElementBlock, createStaticVNode } from 'vue';
3
3
  import { s as styleInject } from './style-inject.es-1f59c1d0.js';
4
- export { s as FwLoadingSpinner } from './fw-loading-spinner-3fda633e.js';
4
+ export { s as FwLoadingSpinner } from './fw-loading-spinner-cc1ca2fa.js';
5
5
  import './is-forced-fc680e39.js';
6
6
  import './classof-ee4b3b5b.js';
7
- import './index-04d3cb23.js';
7
+ import './index-0a63f2c3.js';
8
8
  import './check-94a5917a.js';
9
9
 
10
10
  var __default__$1 = defineComponent({
@@ -1,4 +1,4 @@
1
- export { s as FwBarChart } from './index-c15f5641.js';
1
+ export { s as FwBarChart } from './index-be5b4afa.js';
2
2
  import './es.number.constructor-98bae04f.js';
3
3
  import './is-forced-fc680e39.js';
4
4
  import './classof-ee4b3b5b.js';
@@ -16,5 +16,5 @@ import './delete-property-or-throw-cd4c57d6.js';
16
16
  import './es.function.name-6daefaeb.js';
17
17
  import './does-not-exceed-safe-integer-8e0042ec.js';
18
18
  import 'vue';
19
- import './get-root-colours-e2a1cb28.js';
19
+ import './get-root-colours-865a52ba.js';
20
20
  import './uniqueId-fe08534a.js';
@@ -1,6 +1,6 @@
1
1
  import './es.array.includes-a06445a5.js';
2
2
  import { defineComponent, ref, computed, resolveComponent, openBlock, createBlock, resolveDynamicComponent, normalizeClass, withCtx, createElementBlock, createElementVNode, renderSlot, createVNode, createCommentVNode } from 'vue';
3
- import { s as script$1 } from './fw-loading-spinner-3fda633e.js';
3
+ import { s as script$1 } from './fw-loading-spinner-cc1ca2fa.js';
4
4
  import { s as styleInject } from './style-inject.es-1f59c1d0.js';
5
5
 
6
6
  var script = defineComponent({
package/esm/fw-button.js CHANGED
@@ -1,4 +1,4 @@
1
- export { s as FwButton } from './fw-button-b7a12ae1.js';
1
+ export { s as FwButton } from './fw-button-99dba2bc.js';
2
2
  import './es.array.includes-a06445a5.js';
3
3
  import './is-forced-fc680e39.js';
4
4
  import './export-8a363004.js';
@@ -6,7 +6,7 @@ import './add-to-unscopables-31609885.js';
6
6
  import './object-create-bc771493.js';
7
7
  import './object-keys-17f3b440.js';
8
8
  import 'vue';
9
- import './fw-loading-spinner-3fda633e.js';
10
- import './index-04d3cb23.js';
9
+ import './fw-loading-spinner-cc1ca2fa.js';
10
+ import './index-0a63f2c3.js';
11
11
  import './check-94a5917a.js';
12
12
  import './style-inject.es-1f59c1d0.js';