@frollo/frollo-web-ui 0.1.2 → 0.2.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.
Files changed (33) hide show
  1. package/cjs/index.js +282 -212
  2. package/esm/add-to-unscopables-82352072.js +239 -0
  3. package/esm/{es.array.includes-debcb50f.js → es.array.includes-33e186c4.js} +3 -2
  4. package/esm/{es.function.name-e746680f.js → es.function.name-3a9c8706.js} +1 -1
  5. package/esm/es.number.constructor-f646730f.js +243 -0
  6. package/esm/{function-name-f0c1223e.js → function-name-3bda6320.js} +1 -1
  7. package/esm/fw-animations.js +136 -0
  8. package/esm/{fw-button-ab906734.js → fw-button-22301a2f.js} +1 -1
  9. package/esm/fw-button.js +5 -4
  10. package/esm/fw-card.js +1 -1
  11. package/esm/fw-checkbox.js +2 -2
  12. package/esm/fw-input.js +5 -4
  13. package/esm/fw-modal.js +6 -5
  14. package/esm/fw-navigation-menu.js +12 -67
  15. package/esm/fw-tabs.js +5 -4
  16. package/esm/{index-963039a3.js → index-59d76908.js} +2 -2
  17. package/esm/{index-5ee56f7d.js → index-dd50b12a.js} +31 -219
  18. package/esm/index.js +19 -14
  19. package/esm/is-forced-3323c994.js +438 -0
  20. package/frollo-web-ui.esm.js +307 -229
  21. package/index.d.ts +64 -16
  22. package/package.json +1 -1
  23. package/types/components/fw-animations/fw-email-pulse.vue.d.ts +24 -0
  24. package/types/components/fw-animations/fw-success-pulse.vue.d.ts +24 -0
  25. package/types/components/fw-animations/index.d.ts +3 -0
  26. package/types/components/fw-button/index.types.d.ts +1 -9
  27. package/types/components/fw-input/index.types.d.ts +1 -4
  28. package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +0 -2
  29. package/types/components/fw-tabs/fw-tab.vue.d.ts +11 -0
  30. package/types/components/fw-tabs/fw-tabs.vue.d.ts +1 -1
  31. package/types/components/index.d.ts +1 -0
  32. package/esm/add-to-unscopables-81c17489.js +0 -673
  33. package/esm/to-string-139f1ee8.js +0 -52
@@ -1,52 +0,0 @@
1
- import { w as wellKnownSymbol$2, i as isCallable$1 } from './function-name-f0c1223e.js';
2
- import { b as classofRaw$1 } from './add-to-unscopables-81c17489.js';
3
-
4
- var wellKnownSymbol$1 = wellKnownSymbol$2;
5
-
6
- var TO_STRING_TAG$1 = wellKnownSymbol$1('toStringTag');
7
- var test = {};
8
-
9
- test[TO_STRING_TAG$1] = 'z';
10
-
11
- var toStringTagSupport = String(test) === '[object z]';
12
-
13
- var TO_STRING_TAG_SUPPORT = toStringTagSupport;
14
- var isCallable = isCallable$1;
15
- var classofRaw = classofRaw$1;
16
- var wellKnownSymbol = wellKnownSymbol$2;
17
-
18
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
19
- var $Object = Object;
20
-
21
- // ES3 wrong here
22
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
23
-
24
- // fallback for IE11 Script Access Denied error
25
- var tryGet = function (it, key) {
26
- try {
27
- return it[key];
28
- } catch (error) { /* empty */ }
29
- };
30
-
31
- // getting tag from ES6+ `Object.prototype.toString`
32
- var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
33
- var O, tag, result;
34
- return it === undefined ? 'Undefined' : it === null ? 'Null'
35
- // @@toStringTag case
36
- : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
37
- // builtinTag case
38
- : CORRECT_ARGUMENTS ? classofRaw(O)
39
- // ES3 arguments fallback
40
- : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
41
- };
42
-
43
- var classof = classof$1;
44
-
45
- var $String = String;
46
-
47
- var toString = function (argument) {
48
- if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
49
- return $String(argument);
50
- };
51
-
52
- export { toString as a, classof$1 as c, toStringTagSupport as t };