@dbmx/toasts 0.0.73 → 0.0.75

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 (45) hide show
  1. package/cjs/components/SdmxDatagrid/utils/index.cjs +9 -7
  2. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/concat.cjs +69 -0
  3. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/equals.cjs +42 -0
  4. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/filter.cjs +63 -0
  5. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_arrayFromIterator.cjs +13 -0
  6. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_complement.cjs +10 -0
  7. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_equals.cjs +143 -0
  8. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_filter.cjs +17 -0
  9. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_functionName.cjs +10 -0
  10. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_includes.cjs +11 -0
  11. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_includesWith.cjs +16 -0
  12. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_indexOf.cjs +61 -0
  13. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_isFunction.cjs +9 -0
  14. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_isObject.cjs +8 -0
  15. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_objectIs.cjs +18 -0
  16. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_quote.cjs +10 -0
  17. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_toISOString.cjs +17 -0
  18. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_toString.cjs +62 -0
  19. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/internal/_xfilter.cjs +26 -0
  20. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/reject.cjs +43 -0
  21. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/times.cjs +49 -0
  22. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/toString.cjs +53 -0
  23. package/cjs/node_modules/@dbmx/sdmx/cjs/node_modules/ramda/es/type.cjs +41 -0
  24. package/esm/index-FCPRKLj2.js +720 -0
  25. package/esm/index-FCPRKLj2.js.map +1 -0
  26. package/esm/index-Mh78z9aW.js +562 -0
  27. package/esm/index-Mh78z9aW.js.map +1 -0
  28. package/esm/index-T2bcfyHI.js +8510 -0
  29. package/esm/index-T2bcfyHI.js.map +1 -0
  30. package/esm/index-W7MLRHBf.js +87 -0
  31. package/esm/index-W7MLRHBf.js.map +1 -0
  32. package/esm/index-gBe37Ynf.js +8438 -0
  33. package/esm/index-gBe37Ynf.js.map +1 -0
  34. package/esm/index-ndYjFD6I.js +8438 -0
  35. package/esm/index-ndYjFD6I.js.map +1 -0
  36. package/esm/index.js +1 -1
  37. package/package.json +3 -3
  38. package/cjs/fake-ZW05emqw.js +0 -35
  39. package/cjs/fake-ZW05emqw.js.map +0 -1
  40. package/cjs/index.cjs.map +0 -1
  41. package/esm/fake-JHdVf8lQ.js +0 -14
  42. package/esm/fake-JHdVf8lQ.js.map +0 -1
  43. package/esm/index-lo-MKsEb.js +0 -556
  44. package/esm/index-lo-MKsEb.js.map +0 -1
  45. package/yarn-error.log +0 -7136
@@ -0,0 +1,43 @@
1
+ 'use strict';
2
+
3
+ var _complement$1 = require('./internal/_complement.cjs');
4
+ var _curry2$1 = require('./internal/_curry2.cjs');
5
+ var filter$1 = require('./filter.cjs');
6
+
7
+ var _complement = _complement$1._complement_1;
8
+ var _curry2 = _curry2$1._curry2_1;
9
+ var filter = filter$1.filter_1;
10
+
11
+ /**
12
+ * The complement of [`filter`](#filter).
13
+ *
14
+ * Acts as a transducer if a transformer is given in list position. Filterable
15
+ * objects include plain objects or any object that has a filter method such
16
+ * as `Array`.
17
+ *
18
+ * @func
19
+ * @memberOf R
20
+ * @since v0.1.0
21
+ * @category List
22
+ * @sig Filterable f => (a -> Boolean) -> f a -> f a
23
+ * @param {Function} pred
24
+ * @param {Array} filterable
25
+ * @return {Array}
26
+ * @see R.filter, R.transduce, R.addIndex
27
+ * @example
28
+ *
29
+ * const isOdd = (n) => n % 2 !== 0;
30
+ *
31
+ * R.reject(isOdd, [1, 2, 3, 4]); //=> [2, 4]
32
+ *
33
+ * R.reject(isOdd, {a: 1, b: 2, c: 3, d: 4}); //=> {b: 2, d: 4}
34
+ */
35
+
36
+ var reject = /*#__PURE__*/
37
+ _curry2(function reject(pred, filterable) {
38
+ return filter(_complement(pred), filterable);
39
+ });
40
+ var reject$1 = reject;
41
+ var reject_1 = reject$1;
42
+
43
+ exports.reject_1 = reject_1;
@@ -0,0 +1,49 @@
1
+ 'use strict';
2
+
3
+ var _curry2$1 = require('./internal/_curry2.cjs');
4
+
5
+ var _curry2 = _curry2$1._curry2_1;
6
+
7
+ /**
8
+ * Calls an input function `n` times, returning an array containing the results
9
+ * of those function calls.
10
+ *
11
+ * `fn` is passed one argument: The current value of `n`, which begins at `0`
12
+ * and is gradually incremented to `n - 1`.
13
+ *
14
+ * @func
15
+ * @memberOf R
16
+ * @since v0.2.3
17
+ * @category List
18
+ * @sig (Number -> a) -> Number -> [a]
19
+ * @param {Function} fn The function to invoke. Passed one argument, the current value of `n`.
20
+ * @param {Number} n A value between `0` and `n - 1`. Increments after each function call.
21
+ * @return {Array} An array containing the return values of all calls to `fn`.
22
+ * @see R.repeat
23
+ * @example
24
+ *
25
+ * R.times(R.identity, 5); //=> [0, 1, 2, 3, 4]
26
+ * @symb R.times(f, 0) = []
27
+ * @symb R.times(f, 1) = [f(0)]
28
+ * @symb R.times(f, 2) = [f(0), f(1)]
29
+ */
30
+
31
+ var times = /*#__PURE__*/
32
+ _curry2(function times(fn, n) {
33
+ var len = Number(n);
34
+ var idx = 0;
35
+ var list;
36
+ if (len < 0 || isNaN(len)) {
37
+ throw new RangeError('n must be a non-negative number');
38
+ }
39
+ list = [];
40
+ while (idx < len) {
41
+ list.push(fn(idx));
42
+ idx += 1;
43
+ }
44
+ return list;
45
+ });
46
+ var times$1 = times;
47
+ var times_1 = times$1;
48
+
49
+ exports.times_1 = times_1;
@@ -0,0 +1,53 @@
1
+ 'use strict';
2
+
3
+ var _curry1$1 = require('./internal/_curry1.cjs');
4
+ var _toString$1 = require('./internal/_toString.cjs');
5
+
6
+ var _curry1 = _curry1$1._curry1_1;
7
+ var _toString = _toString$1._toString_1;
8
+
9
+ /**
10
+ * Returns the string representation of the given value. `eval`'ing the output
11
+ * should result in a value equivalent to the input value. Many of the built-in
12
+ * `toString` methods do not satisfy this requirement.
13
+ *
14
+ * If the given value is an `[object Object]` with a `toString` method other
15
+ * than `Object.prototype.toString`, this method is invoked with no arguments
16
+ * to produce the return value. This means user-defined constructor functions
17
+ * can provide a suitable `toString` method. For example:
18
+ *
19
+ * function Point(x, y) {
20
+ * this.x = x;
21
+ * this.y = y;
22
+ * }
23
+ *
24
+ * Point.prototype.toString = function() {
25
+ * return 'new Point(' + this.x + ', ' + this.y + ')';
26
+ * };
27
+ *
28
+ * R.toString(new Point(1, 2)); //=> 'new Point(1, 2)'
29
+ *
30
+ * @func
31
+ * @memberOf R
32
+ * @since v0.14.0
33
+ * @category String
34
+ * @sig * -> String
35
+ * @param {*} val
36
+ * @return {String}
37
+ * @example
38
+ *
39
+ * R.toString(42); //=> '42'
40
+ * R.toString('abc'); //=> '"abc"'
41
+ * R.toString([1, 2, 3]); //=> '[1, 2, 3]'
42
+ * R.toString({foo: 1, bar: 2, baz: 3}); //=> '{"bar": 2, "baz": 3, "foo": 1}'
43
+ * R.toString(new Date('2001-02-03T04:05:06Z')); //=> 'new Date("2001-02-03T04:05:06.000Z")'
44
+ */
45
+
46
+ var toString = /*#__PURE__*/
47
+ _curry1(function toString(val) {
48
+ return _toString(val, []);
49
+ });
50
+ var toString$1 = toString;
51
+ var toString_1 = toString$1;
52
+
53
+ exports.toString_1 = toString_1;
@@ -0,0 +1,41 @@
1
+ 'use strict';
2
+
3
+ var _curry1$1 = require('./internal/_curry1.cjs');
4
+
5
+ var _curry1 = _curry1$1._curry1_1;
6
+
7
+ /**
8
+ * Gives a single-word string description of the (native) type of a value,
9
+ * returning such answers as 'Object', 'Number', 'Array', or 'Null'. Does not
10
+ * attempt to distinguish user Object types any further, reporting them all as
11
+ * 'Object'.
12
+ *
13
+ * @func
14
+ * @memberOf R
15
+ * @since v0.8.0
16
+ * @category Type
17
+ * @sig * -> String
18
+ * @param {*} val The value to test
19
+ * @return {String}
20
+ * @example
21
+ *
22
+ * R.type({}); //=> "Object"
23
+ * R.type(1); //=> "Number"
24
+ * R.type(false); //=> "Boolean"
25
+ * R.type('s'); //=> "String"
26
+ * R.type(null); //=> "Null"
27
+ * R.type([]); //=> "Array"
28
+ * R.type(/[A-z]/); //=> "RegExp"
29
+ * R.type(() => {}); //=> "Function"
30
+ * R.type(async () => {}); //=> "AsyncFunction"
31
+ * R.type(undefined); //=> "Undefined"
32
+ */
33
+
34
+ var type = /*#__PURE__*/
35
+ _curry1(function type(val) {
36
+ return val === null ? 'Null' : val === undefined ? 'Undefined' : Object.prototype.toString.call(val).slice(8, -1);
37
+ });
38
+ var type$1 = type;
39
+ var type_1 = type$1;
40
+
41
+ exports.type_1 = type_1;