@dbmx/confy 0.0.23 → 0.0.24
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/esm/components/App/index.js +23 -14
- package/esm/components/App/index.js.map +1 -1
- package/esm/components/AuthOTP/ConfirmCode/index.js +188 -0
- package/esm/components/AuthOTP/ConfirmCode/index.js.map +1 -0
- package/esm/components/AuthOTP/ConfirmCode/messages.js +47 -0
- package/esm/components/AuthOTP/ConfirmCode/messages.js.map +1 -0
- package/esm/components/AuthOTP/SignIn/index.js +141 -0
- package/esm/components/AuthOTP/SignIn/index.js.map +1 -0
- package/esm/components/AuthOTP/SignIn/messages.js +23 -0
- package/esm/components/AuthOTP/SignIn/messages.js.map +1 -0
- package/esm/components/AuthOTP/index.js +269 -0
- package/esm/components/AuthOTP/index.js.map +1 -0
- package/esm/components/AuthOTP/messages.js +23 -0
- package/esm/components/AuthOTP/messages.js.map +1 -0
- package/esm/components/AuthOTP/utils.js +22 -0
- package/esm/components/AuthOTP/utils.js.map +1 -0
- package/esm/components/AuthRedirect/index.js +1 -2
- package/esm/components/AuthRedirect/index.js.map +1 -1
- package/esm/components/Buttons/SignInWithEmail.js +18 -0
- package/esm/components/Buttons/SignInWithEmail.js.map +1 -0
- package/esm/components/Buttons/messages.js +4 -0
- package/esm/components/Buttons/messages.js.map +1 -1
- package/esm/components/Confy/index.js +28 -11
- package/esm/components/Confy/index.js.map +1 -1
- package/esm/components/Notification/index.js +9 -1
- package/esm/components/Notification/index.js.map +1 -1
- package/esm/components/Notification/messages.js +11 -0
- package/esm/components/Notification/messages.js.map +1 -0
- package/esm/components/NotificationProvider/index.js +2 -2
- package/esm/components/NotificationProvider/index.js.map +1 -1
- package/esm/components/SessionAlert/index.js +126 -0
- package/esm/components/SessionAlert/index.js.map +1 -0
- package/esm/components/SessionAlert/messages.js +27 -0
- package/esm/components/SessionAlert/messages.js.map +1 -0
- package/esm/ducks/auth.js +25 -1
- package/esm/ducks/auth.js.map +1 -1
- package/esm/ducks/core.js +15 -7
- package/esm/ducks/core.js.map +1 -1
- package/esm/forms/EmailField/EmailFieldAdaptor.js +24 -0
- package/esm/forms/EmailField/EmailFieldAdaptor.js.map +1 -0
- package/esm/forms/EmailField/index.js +68 -0
- package/esm/forms/EmailField/index.js.map +1 -0
- package/esm/forms/RecaptchaField/index.js +43 -0
- package/esm/forms/RecaptchaField/index.js.map +1 -0
- package/esm/forms/RecaptchaField/messages.js +11 -0
- package/esm/forms/RecaptchaField/messages.js.map +1 -0
- package/esm/forms/SixDigitField/index.js +137 -0
- package/esm/forms/SixDigitField/index.js.map +1 -0
- package/esm/forms/utils.js +10 -1
- package/esm/forms/utils.js.map +1 -1
- package/esm/hooks/authOTP.js +92 -0
- package/esm/hooks/authOTP.js.map +1 -0
- package/esm/hooks/notification.js +2 -2
- package/esm/hooks/notification.js.map +1 -1
- package/esm/hooks/session.js +9 -0
- package/esm/hooks/session.js.map +1 -0
- package/esm/hooks/window.js +6 -1
- package/esm/hooks/window.js.map +1 -1
- package/esm/lib/api/auth.js +39 -0
- package/esm/lib/api/auth.js.map +1 -0
- package/esm/lib/api/config.js.map +1 -1
- package/esm/lib/api/index.js +7 -1
- package/esm/lib/api/index.js.map +1 -1
- package/esm/node_modules/ramda/es/all.js +49 -0
- package/esm/node_modules/ramda/es/all.js.map +1 -0
- package/esm/node_modules/ramda/es/ap.js +44 -0
- package/esm/node_modules/ramda/es/ap.js.map +1 -0
- package/esm/node_modules/ramda/es/complement.js +32 -0
- package/esm/node_modules/ramda/es/complement.js.map +1 -0
- package/esm/node_modules/ramda/es/drop.js +40 -0
- package/esm/node_modules/ramda/es/drop.js.map +1 -0
- package/esm/node_modules/ramda/es/internal/_xall.js +43 -0
- package/esm/node_modules/ramda/es/internal/_xall.js.map +1 -0
- package/esm/node_modules/ramda/es/internal/_xdrop.js +34 -0
- package/esm/node_modules/ramda/es/internal/_xdrop.js.map +1 -0
- package/esm/node_modules/ramda/es/lift.js +34 -0
- package/esm/node_modules/ramda/es/lift.js.map +1 -0
- package/esm/node_modules/ramda/es/liftN.js +35 -0
- package/esm/node_modules/ramda/es/liftN.js.map +1 -0
- package/esm/node_modules/ramda/es/not.js +30 -0
- package/esm/node_modules/ramda/es/not.js.map +1 -0
- package/esm/selectors/auth.js +2 -1
- package/esm/selectors/auth.js.map +1 -1
- package/esm/store/index.js +6 -2
- package/esm/store/index.js.map +1 -1
- package/esm/utils/confy.js +10 -2
- package/esm/utils/confy.js.map +1 -1
- package/package.json +9 -5
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import _concat from './internal/_concat.js';
|
|
2
|
+
import _curry2 from './internal/_curry2.js';
|
|
3
|
+
import _reduce from './internal/_reduce.js';
|
|
4
|
+
import map from './map.js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* ap applies a list of functions to a list of values.
|
|
8
|
+
*
|
|
9
|
+
* Dispatches to the `ap` method of the second argument, if present. Also
|
|
10
|
+
* treats curried functions as applicatives.
|
|
11
|
+
*
|
|
12
|
+
* @func
|
|
13
|
+
* @memberOf R
|
|
14
|
+
* @since v0.3.0
|
|
15
|
+
* @category Function
|
|
16
|
+
* @sig [a -> b] -> [a] -> [b]
|
|
17
|
+
* @sig Apply f => f (a -> b) -> f a -> f b
|
|
18
|
+
* @sig (r -> a -> b) -> (r -> a) -> (r -> b)
|
|
19
|
+
* @param {*} applyF
|
|
20
|
+
* @param {*} applyX
|
|
21
|
+
* @return {*}
|
|
22
|
+
* @example
|
|
23
|
+
*
|
|
24
|
+
* R.ap([R.multiply(2), R.add(3)], [1,2,3]); //=> [2, 4, 6, 4, 5, 6]
|
|
25
|
+
* R.ap([R.concat('tasty '), R.toUpper], ['pizza', 'salad']); //=> ["tasty pizza", "tasty salad", "PIZZA", "SALAD"]
|
|
26
|
+
*
|
|
27
|
+
* // R.ap can also be used as S combinator
|
|
28
|
+
* // when only two functions are passed
|
|
29
|
+
* R.ap(R.concat, R.toUpper)('Ramda') //=> 'RamdaRAMDA'
|
|
30
|
+
* @symb R.ap([f, g], [a, b]) = [f(a), f(b), g(a), g(b)]
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
var ap =
|
|
34
|
+
/*#__PURE__*/
|
|
35
|
+
_curry2(function ap(applyF, applyX) {
|
|
36
|
+
return typeof applyX['fantasy-land/ap'] === 'function' ? applyX['fantasy-land/ap'](applyF) : typeof applyF.ap === 'function' ? applyF.ap(applyX) : typeof applyF === 'function' ? function (x) {
|
|
37
|
+
return applyF(x)(applyX(x));
|
|
38
|
+
} : _reduce(function (acc, f) {
|
|
39
|
+
return _concat(acc, map(f, applyX));
|
|
40
|
+
}, [], applyF);
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
export { ap as default };
|
|
44
|
+
//# sourceMappingURL=ap.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ap.js","sources":["../../../../node_modules/ramda/es/ap.js"],"sourcesContent":["import _concat from \"./internal/_concat.js\";\nimport _curry2 from \"./internal/_curry2.js\";\nimport _reduce from \"./internal/_reduce.js\";\nimport map from \"./map.js\";\n/**\n * ap applies a list of functions to a list of values.\n *\n * Dispatches to the `ap` method of the second argument, if present. Also\n * treats curried functions as applicatives.\n *\n * @func\n * @memberOf R\n * @since v0.3.0\n * @category Function\n * @sig [a -> b] -> [a] -> [b]\n * @sig Apply f => f (a -> b) -> f a -> f b\n * @sig (r -> a -> b) -> (r -> a) -> (r -> b)\n * @param {*} applyF\n * @param {*} applyX\n * @return {*}\n * @example\n *\n * R.ap([R.multiply(2), R.add(3)], [1,2,3]); //=> [2, 4, 6, 4, 5, 6]\n * R.ap([R.concat('tasty '), R.toUpper], ['pizza', 'salad']); //=> [\"tasty pizza\", \"tasty salad\", \"PIZZA\", \"SALAD\"]\n *\n * // R.ap can also be used as S combinator\n * // when only two functions are passed\n * R.ap(R.concat, R.toUpper)('Ramda') //=> 'RamdaRAMDA'\n * @symb R.ap([f, g], [a, b]) = [f(a), f(b), g(a), g(b)]\n */\n\nvar ap =\n/*#__PURE__*/\n_curry2(function ap(applyF, applyX) {\n return typeof applyX['fantasy-land/ap'] === 'function' ? applyX['fantasy-land/ap'](applyF) : typeof applyF.ap === 'function' ? applyF.ap(applyX) : typeof applyF === 'function' ? function (x) {\n return applyF(x)(applyX(x));\n } : _reduce(function (acc, f) {\n return _concat(acc, map(f, applyX));\n }, [], applyF);\n});\n\nexport default ap;"],"names":[],"mappings":";;;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,EAAE;AACN;AACA,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE;AACpC,EAAE,OAAO,OAAO,MAAM,CAAC,iBAAiB,CAAC,KAAK,UAAU,GAAG,MAAM,CAAC,iBAAiB,CAAC,CAAC,MAAM,CAAC,GAAG,OAAO,MAAM,CAAC,EAAE,KAAK,UAAU,GAAG,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,GAAG,OAAO,MAAM,KAAK,UAAU,GAAG,UAAU,CAAC,EAAE;AACjM,IAAI,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;AAC/B,GAAG,GAAG,OAAO,CAAC,UAAU,GAAG,EAAE,CAAC,EAAE;AAChC,IAAI,OAAO,OAAO,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;AACvC,GAAG,EAAE,EAAE,EAAE,MAAM,CAAC;AAChB,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import lift from './lift.js';
|
|
2
|
+
import not from './not.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Takes a function `f` and returns a function `g` such that if called with the same arguments
|
|
6
|
+
* when `f` returns a "truthy" value, `g` returns `false` and when `f` returns a "falsy" value `g` returns `true`.
|
|
7
|
+
*
|
|
8
|
+
* `R.complement` may be applied to any functor
|
|
9
|
+
*
|
|
10
|
+
* @func
|
|
11
|
+
* @memberOf R
|
|
12
|
+
* @since v0.12.0
|
|
13
|
+
* @category Logic
|
|
14
|
+
* @sig (*... -> *) -> (*... -> Boolean)
|
|
15
|
+
* @param {Function} f
|
|
16
|
+
* @return {Function}
|
|
17
|
+
* @see R.not
|
|
18
|
+
* @example
|
|
19
|
+
*
|
|
20
|
+
* const isNotNil = R.complement(R.isNil);
|
|
21
|
+
* isNil(null); //=> true
|
|
22
|
+
* isNotNil(null); //=> false
|
|
23
|
+
* isNil(7); //=> false
|
|
24
|
+
* isNotNil(7); //=> true
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
var complement =
|
|
28
|
+
/*#__PURE__*/
|
|
29
|
+
lift(not);
|
|
30
|
+
|
|
31
|
+
export { complement as default };
|
|
32
|
+
//# sourceMappingURL=complement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"complement.js","sources":["../../../../node_modules/ramda/es/complement.js"],"sourcesContent":["import lift from \"./lift.js\";\nimport not from \"./not.js\";\n/**\n * Takes a function `f` and returns a function `g` such that if called with the same arguments\n * when `f` returns a \"truthy\" value, `g` returns `false` and when `f` returns a \"falsy\" value `g` returns `true`.\n *\n * `R.complement` may be applied to any functor\n *\n * @func\n * @memberOf R\n * @since v0.12.0\n * @category Logic\n * @sig (*... -> *) -> (*... -> Boolean)\n * @param {Function} f\n * @return {Function}\n * @see R.not\n * @example\n *\n * const isNotNil = R.complement(R.isNil);\n * isNil(null); //=> true\n * isNotNil(null); //=> false\n * isNil(7); //=> false\n * isNotNil(7); //=> true\n */\n\nvar complement =\n/*#__PURE__*/\nlift(not);\nexport default complement;"],"names":[],"mappings":";;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,UAAU;AACd;AACA,IAAI,CAAC,GAAG;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import _curry2 from './internal/_curry2.js';
|
|
2
|
+
import _dispatchable from './internal/_dispatchable.js';
|
|
3
|
+
import _xdrop from './internal/_xdrop.js';
|
|
4
|
+
import slice from './slice.js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Returns all but the first `n` elements of the given list, string, or
|
|
8
|
+
* transducer/transformer (or object with a `drop` method).
|
|
9
|
+
*
|
|
10
|
+
* Dispatches to the `drop` method of the second argument, if present.
|
|
11
|
+
*
|
|
12
|
+
* @func
|
|
13
|
+
* @memberOf R
|
|
14
|
+
* @since v0.1.0
|
|
15
|
+
* @category List
|
|
16
|
+
* @sig Number -> [a] -> [a]
|
|
17
|
+
* @sig Number -> String -> String
|
|
18
|
+
* @param {Number} n
|
|
19
|
+
* @param {*} list
|
|
20
|
+
* @return {*} A copy of list without the first `n` elements
|
|
21
|
+
* @see R.take, R.transduce, R.dropLast, R.dropWhile
|
|
22
|
+
* @example
|
|
23
|
+
*
|
|
24
|
+
* R.drop(1, ['foo', 'bar', 'baz']); //=> ['bar', 'baz']
|
|
25
|
+
* R.drop(2, ['foo', 'bar', 'baz']); //=> ['baz']
|
|
26
|
+
* R.drop(3, ['foo', 'bar', 'baz']); //=> []
|
|
27
|
+
* R.drop(4, ['foo', 'bar', 'baz']); //=> []
|
|
28
|
+
* R.drop(3, 'ramda'); //=> 'da'
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
var drop =
|
|
32
|
+
/*#__PURE__*/
|
|
33
|
+
_curry2(
|
|
34
|
+
/*#__PURE__*/
|
|
35
|
+
_dispatchable(['drop'], _xdrop, function drop(n, xs) {
|
|
36
|
+
return slice(Math.max(0, n), Infinity, xs);
|
|
37
|
+
}));
|
|
38
|
+
|
|
39
|
+
export { drop as default };
|
|
40
|
+
//# sourceMappingURL=drop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"drop.js","sources":["../../../../node_modules/ramda/es/drop.js"],"sourcesContent":["import _curry2 from \"./internal/_curry2.js\";\nimport _dispatchable from \"./internal/_dispatchable.js\";\nimport _xdrop from \"./internal/_xdrop.js\";\nimport slice from \"./slice.js\";\n/**\n * Returns all but the first `n` elements of the given list, string, or\n * transducer/transformer (or object with a `drop` method).\n *\n * Dispatches to the `drop` method of the second argument, if present.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category List\n * @sig Number -> [a] -> [a]\n * @sig Number -> String -> String\n * @param {Number} n\n * @param {*} list\n * @return {*} A copy of list without the first `n` elements\n * @see R.take, R.transduce, R.dropLast, R.dropWhile\n * @example\n *\n * R.drop(1, ['foo', 'bar', 'baz']); //=> ['bar', 'baz']\n * R.drop(2, ['foo', 'bar', 'baz']); //=> ['baz']\n * R.drop(3, ['foo', 'bar', 'baz']); //=> []\n * R.drop(4, ['foo', 'bar', 'baz']); //=> []\n * R.drop(3, 'ramda'); //=> 'da'\n */\n\nvar drop =\n/*#__PURE__*/\n_curry2(\n/*#__PURE__*/\n_dispatchable(['drop'], _xdrop, function drop(n, xs) {\n return slice(Math.max(0, n), Infinity, xs);\n}));\n\nexport default drop;"],"names":[],"mappings":";;;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,IAAI;AACR;AACA,OAAO;AACP;AACA,aAAa,CAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE;AACrD,EAAE,OAAO,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,QAAQ,EAAE,EAAE,CAAC;AAC5C,CAAC,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import _curry2 from './_curry2.js';
|
|
2
|
+
import _reduced from './_reduced.js';
|
|
3
|
+
import _xfBase from './_xfBase.js';
|
|
4
|
+
|
|
5
|
+
var XAll =
|
|
6
|
+
/*#__PURE__*/
|
|
7
|
+
function () {
|
|
8
|
+
function XAll(f, xf) {
|
|
9
|
+
this.xf = xf;
|
|
10
|
+
this.f = f;
|
|
11
|
+
this.all = true;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
XAll.prototype['@@transducer/init'] = _xfBase.init;
|
|
15
|
+
|
|
16
|
+
XAll.prototype['@@transducer/result'] = function (result) {
|
|
17
|
+
if (this.all) {
|
|
18
|
+
result = this.xf['@@transducer/step'](result, true);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
return this.xf['@@transducer/result'](result);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
XAll.prototype['@@transducer/step'] = function (result, input) {
|
|
25
|
+
if (!this.f(input)) {
|
|
26
|
+
this.all = false;
|
|
27
|
+
result = _reduced(this.xf['@@transducer/step'](result, false));
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return result;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
return XAll;
|
|
34
|
+
}();
|
|
35
|
+
|
|
36
|
+
var _xall =
|
|
37
|
+
/*#__PURE__*/
|
|
38
|
+
_curry2(function _xall(f, xf) {
|
|
39
|
+
return new XAll(f, xf);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
export { _xall as default };
|
|
43
|
+
//# sourceMappingURL=_xall.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_xall.js","sources":["../../../../../node_modules/ramda/es/internal/_xall.js"],"sourcesContent":["import _curry2 from \"./_curry2.js\";\nimport _reduced from \"./_reduced.js\";\nimport _xfBase from \"./_xfBase.js\";\n\nvar XAll =\n/*#__PURE__*/\nfunction () {\n function XAll(f, xf) {\n this.xf = xf;\n this.f = f;\n this.all = true;\n }\n\n XAll.prototype['@@transducer/init'] = _xfBase.init;\n\n XAll.prototype['@@transducer/result'] = function (result) {\n if (this.all) {\n result = this.xf['@@transducer/step'](result, true);\n }\n\n return this.xf['@@transducer/result'](result);\n };\n\n XAll.prototype['@@transducer/step'] = function (result, input) {\n if (!this.f(input)) {\n this.all = false;\n result = _reduced(this.xf['@@transducer/step'](result, false));\n }\n\n return result;\n };\n\n return XAll;\n}();\n\nvar _xall =\n/*#__PURE__*/\n_curry2(function _xall(f, xf) {\n return new XAll(f, xf);\n});\n\nexport default _xall;"],"names":[],"mappings":";;;;AAIA,IAAI,IAAI;AACR;AACA,YAAY;AACZ,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE;AACvB,IAAI,IAAI,CAAC,EAAE,GAAG,EAAE;AAChB,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC;AACd,IAAI,IAAI,CAAC,GAAG,GAAG,IAAI;AACnB;;AAEA,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAmB,CAAC,GAAG,OAAO,CAAC,IAAI;;AAEpD,EAAE,IAAI,CAAC,SAAS,CAAC,qBAAqB,CAAC,GAAG,UAAU,MAAM,EAAE;AAC5D,IAAI,IAAI,IAAI,CAAC,GAAG,EAAE;AAClB,MAAM,MAAM,GAAG,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,MAAM,EAAE,IAAI,CAAC;AACzD;;AAEA,IAAI,OAAO,IAAI,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,MAAM,CAAC;AACjD,GAAG;;AAEH,EAAE,IAAI,CAAC,SAAS,CAAC,mBAAmB,CAAC,GAAG,UAAU,MAAM,EAAE,KAAK,EAAE;AACjE,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE;AACxB,MAAM,IAAI,CAAC,GAAG,GAAG,KAAK;AACtB,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AACpE;;AAEA,IAAI,OAAO,MAAM;AACjB,GAAG;;AAEH,EAAE,OAAO,IAAI;AACb,CAAC,EAAE;;AAEA,IAAC,KAAK;AACT;AACA,OAAO,CAAC,SAAS,KAAK,CAAC,CAAC,EAAE,EAAE,EAAE;AAC9B,EAAE,OAAO,IAAI,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC;AACxB,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import _curry2 from './_curry2.js';
|
|
2
|
+
import _xfBase from './_xfBase.js';
|
|
3
|
+
|
|
4
|
+
var XDrop =
|
|
5
|
+
/*#__PURE__*/
|
|
6
|
+
function () {
|
|
7
|
+
function XDrop(n, xf) {
|
|
8
|
+
this.xf = xf;
|
|
9
|
+
this.n = n;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
XDrop.prototype['@@transducer/init'] = _xfBase.init;
|
|
13
|
+
XDrop.prototype['@@transducer/result'] = _xfBase.result;
|
|
14
|
+
|
|
15
|
+
XDrop.prototype['@@transducer/step'] = function (result, input) {
|
|
16
|
+
if (this.n > 0) {
|
|
17
|
+
this.n -= 1;
|
|
18
|
+
return result;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
return this.xf['@@transducer/step'](result, input);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
return XDrop;
|
|
25
|
+
}();
|
|
26
|
+
|
|
27
|
+
var _xdrop =
|
|
28
|
+
/*#__PURE__*/
|
|
29
|
+
_curry2(function _xdrop(n, xf) {
|
|
30
|
+
return new XDrop(n, xf);
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export { _xdrop as default };
|
|
34
|
+
//# sourceMappingURL=_xdrop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_xdrop.js","sources":["../../../../../node_modules/ramda/es/internal/_xdrop.js"],"sourcesContent":["import _curry2 from \"./_curry2.js\";\nimport _xfBase from \"./_xfBase.js\";\n\nvar XDrop =\n/*#__PURE__*/\nfunction () {\n function XDrop(n, xf) {\n this.xf = xf;\n this.n = n;\n }\n\n XDrop.prototype['@@transducer/init'] = _xfBase.init;\n XDrop.prototype['@@transducer/result'] = _xfBase.result;\n\n XDrop.prototype['@@transducer/step'] = function (result, input) {\n if (this.n > 0) {\n this.n -= 1;\n return result;\n }\n\n return this.xf['@@transducer/step'](result, input);\n };\n\n return XDrop;\n}();\n\nvar _xdrop =\n/*#__PURE__*/\n_curry2(function _xdrop(n, xf) {\n return new XDrop(n, xf);\n});\n\nexport default _xdrop;"],"names":[],"mappings":";;;AAGA,IAAI,KAAK;AACT;AACA,YAAY;AACZ,EAAE,SAAS,KAAK,CAAC,CAAC,EAAE,EAAE,EAAE;AACxB,IAAI,IAAI,CAAC,EAAE,GAAG,EAAE;AAChB,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC;AACd;;AAEA,EAAE,KAAK,CAAC,SAAS,CAAC,mBAAmB,CAAC,GAAG,OAAO,CAAC,IAAI;AACrD,EAAE,KAAK,CAAC,SAAS,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,MAAM;;AAEzD,EAAE,KAAK,CAAC,SAAS,CAAC,mBAAmB,CAAC,GAAG,UAAU,MAAM,EAAE,KAAK,EAAE;AAClE,IAAI,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE;AACpB,MAAM,IAAI,CAAC,CAAC,IAAI,CAAC;AACjB,MAAM,OAAO,MAAM;AACnB;;AAEA,IAAI,OAAO,IAAI,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,MAAM,EAAE,KAAK,CAAC;AACtD,GAAG;;AAEH,EAAE,OAAO,KAAK;AACd,CAAC,EAAE;;AAEA,IAAC,MAAM;AACV;AACA,OAAO,CAAC,SAAS,MAAM,CAAC,CAAC,EAAE,EAAE,EAAE;AAC/B,EAAE,OAAO,IAAI,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC;AACzB,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import _curry1 from './internal/_curry1.js';
|
|
2
|
+
import liftN from './liftN.js';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* "lifts" a function of arity > 1 so that it may "map over" a list, Function or other
|
|
6
|
+
* object that satisfies the [FantasyLand Apply spec](https://github.com/fantasyland/fantasy-land#apply).
|
|
7
|
+
*
|
|
8
|
+
* @func
|
|
9
|
+
* @memberOf R
|
|
10
|
+
* @since v0.7.0
|
|
11
|
+
* @category Function
|
|
12
|
+
* @sig (*... -> *) -> ([*]... -> [*])
|
|
13
|
+
* @param {Function} fn The function to lift into higher context
|
|
14
|
+
* @return {Function} The lifted function.
|
|
15
|
+
* @see R.liftN
|
|
16
|
+
* @example
|
|
17
|
+
*
|
|
18
|
+
* const madd3 = R.lift((a, b, c) => a + b + c);
|
|
19
|
+
*
|
|
20
|
+
* madd3([1,2,3], [1,2,3], [1]); //=> [3, 4, 5, 4, 5, 6, 5, 6, 7]
|
|
21
|
+
*
|
|
22
|
+
* const madd5 = R.lift((a, b, c, d, e) => a + b + c + d + e);
|
|
23
|
+
*
|
|
24
|
+
* madd5([1,2], [3], [4, 5], [6], [7, 8]); //=> [21, 22, 22, 23, 22, 23, 23, 24]
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
var lift =
|
|
28
|
+
/*#__PURE__*/
|
|
29
|
+
_curry1(function lift(fn) {
|
|
30
|
+
return liftN(fn.length, fn);
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export { lift as default };
|
|
34
|
+
//# sourceMappingURL=lift.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lift.js","sources":["../../../../node_modules/ramda/es/lift.js"],"sourcesContent":["import _curry1 from \"./internal/_curry1.js\";\nimport liftN from \"./liftN.js\";\n/**\n * \"lifts\" a function of arity > 1 so that it may \"map over\" a list, Function or other\n * object that satisfies the [FantasyLand Apply spec](https://github.com/fantasyland/fantasy-land#apply).\n *\n * @func\n * @memberOf R\n * @since v0.7.0\n * @category Function\n * @sig (*... -> *) -> ([*]... -> [*])\n * @param {Function} fn The function to lift into higher context\n * @return {Function} The lifted function.\n * @see R.liftN\n * @example\n *\n * const madd3 = R.lift((a, b, c) => a + b + c);\n *\n * madd3([1,2,3], [1,2,3], [1]); //=> [3, 4, 5, 4, 5, 6, 5, 6, 7]\n *\n * const madd5 = R.lift((a, b, c, d, e) => a + b + c + d + e);\n *\n * madd5([1,2], [3], [4, 5], [6], [7, 8]); //=> [21, 22, 22, 23, 22, 23, 23, 24]\n */\n\nvar lift =\n/*#__PURE__*/\n_curry1(function lift(fn) {\n return liftN(fn.length, fn);\n});\n\nexport default lift;"],"names":[],"mappings":";;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,IAAI;AACR;AACA,OAAO,CAAC,SAAS,IAAI,CAAC,EAAE,EAAE;AAC1B,EAAE,OAAO,KAAK,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC;AAC7B,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import _curry2 from './internal/_curry2.js';
|
|
2
|
+
import _reduce from './internal/_reduce.js';
|
|
3
|
+
import ap from './ap.js';
|
|
4
|
+
import curryN from './curryN.js';
|
|
5
|
+
import map from './map.js';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* "lifts" a function to be the specified arity, so that it may "map over" that
|
|
9
|
+
* many lists, Functions or other objects that satisfy the [FantasyLand Apply spec](https://github.com/fantasyland/fantasy-land#apply).
|
|
10
|
+
*
|
|
11
|
+
* @func
|
|
12
|
+
* @memberOf R
|
|
13
|
+
* @since v0.7.0
|
|
14
|
+
* @category Function
|
|
15
|
+
* @sig Number -> (*... -> *) -> ([*]... -> [*])
|
|
16
|
+
* @param {Function} fn The function to lift into higher context
|
|
17
|
+
* @return {Function} The lifted function.
|
|
18
|
+
* @see R.lift, R.ap
|
|
19
|
+
* @example
|
|
20
|
+
*
|
|
21
|
+
* const madd3 = R.liftN(3, (...args) => R.sum(args));
|
|
22
|
+
* madd3([1,2,3], [1,2,3], [1]); //=> [3, 4, 5, 4, 5, 6, 5, 6, 7]
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
var liftN =
|
|
26
|
+
/*#__PURE__*/
|
|
27
|
+
_curry2(function liftN(arity, fn) {
|
|
28
|
+
var lifted = curryN(arity, fn);
|
|
29
|
+
return curryN(arity, function () {
|
|
30
|
+
return _reduce(ap, map(lifted, arguments[0]), Array.prototype.slice.call(arguments, 1));
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export { liftN as default };
|
|
35
|
+
//# sourceMappingURL=liftN.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"liftN.js","sources":["../../../../node_modules/ramda/es/liftN.js"],"sourcesContent":["import _curry2 from \"./internal/_curry2.js\";\nimport _reduce from \"./internal/_reduce.js\";\nimport ap from \"./ap.js\";\nimport curryN from \"./curryN.js\";\nimport map from \"./map.js\";\n/**\n * \"lifts\" a function to be the specified arity, so that it may \"map over\" that\n * many lists, Functions or other objects that satisfy the [FantasyLand Apply spec](https://github.com/fantasyland/fantasy-land#apply).\n *\n * @func\n * @memberOf R\n * @since v0.7.0\n * @category Function\n * @sig Number -> (*... -> *) -> ([*]... -> [*])\n * @param {Function} fn The function to lift into higher context\n * @return {Function} The lifted function.\n * @see R.lift, R.ap\n * @example\n *\n * const madd3 = R.liftN(3, (...args) => R.sum(args));\n * madd3([1,2,3], [1,2,3], [1]); //=> [3, 4, 5, 4, 5, 6, 5, 6, 7]\n */\n\nvar liftN =\n/*#__PURE__*/\n_curry2(function liftN(arity, fn) {\n var lifted = curryN(arity, fn);\n return curryN(arity, function () {\n return _reduce(ap, map(lifted, arguments[0]), Array.prototype.slice.call(arguments, 1));\n });\n});\n\nexport default liftN;"],"names":[],"mappings":";;;;;;AAKA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,KAAK;AACT;AACA,OAAO,CAAC,SAAS,KAAK,CAAC,KAAK,EAAE,EAAE,EAAE;AAClC,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,KAAK,EAAE,EAAE,CAAC;AAChC,EAAE,OAAO,MAAM,CAAC,KAAK,EAAE,YAAY;AACnC,IAAI,OAAO,OAAO,CAAC,EAAE,EAAE,GAAG,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;AAC3F,GAAG,CAAC;AACJ,CAAC;;;;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import _curry1 from './internal/_curry1.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A function that returns the `!` of its argument. It will return `true` when
|
|
5
|
+
* passed false-y value, and `false` when passed a truth-y one.
|
|
6
|
+
*
|
|
7
|
+
* @func
|
|
8
|
+
* @memberOf R
|
|
9
|
+
* @since v0.1.0
|
|
10
|
+
* @category Logic
|
|
11
|
+
* @sig * -> Boolean
|
|
12
|
+
* @param {*} a any value
|
|
13
|
+
* @return {Boolean} the logical inverse of passed argument.
|
|
14
|
+
* @see R.complement
|
|
15
|
+
* @example
|
|
16
|
+
*
|
|
17
|
+
* R.not(true); //=> false
|
|
18
|
+
* R.not(false); //=> true
|
|
19
|
+
* R.not(0); //=> true
|
|
20
|
+
* R.not(1); //=> false
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
var not =
|
|
24
|
+
/*#__PURE__*/
|
|
25
|
+
_curry1(function not(a) {
|
|
26
|
+
return !a;
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
export { not as default };
|
|
30
|
+
//# sourceMappingURL=not.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"not.js","sources":["../../../../node_modules/ramda/es/not.js"],"sourcesContent":["import _curry1 from \"./internal/_curry1.js\";\n/**\n * A function that returns the `!` of its argument. It will return `true` when\n * passed false-y value, and `false` when passed a truth-y one.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Logic\n * @sig * -> Boolean\n * @param {*} a any value\n * @return {Boolean} the logical inverse of passed argument.\n * @see R.complement\n * @example\n *\n * R.not(true); //=> false\n * R.not(false); //=> true\n * R.not(0); //=> true\n * R.not(1); //=> false\n */\n\nvar not =\n/*#__PURE__*/\n_curry1(function not(a) {\n return !a;\n});\n\nexport default not;"],"names":[],"mappings":";;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEG,IAAC,GAAG;AACP;AACA,OAAO,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE;AACxB,EAAE,OAAO,CAAC,CAAC;AACX,CAAC;;;;","x_google_ignoreList":[0]}
|
package/esm/selectors/auth.js
CHANGED
|
@@ -5,6 +5,7 @@ var root = prop('auth');
|
|
|
5
5
|
var getToken = createSelector(root, prop('token'));
|
|
6
6
|
var getUser = createSelector(root, prop('user'));
|
|
7
7
|
var loading = createSelector(root, prop('loading'));
|
|
8
|
+
var sessionEnding = createSelector(root, prop('sessionEnding'));
|
|
8
9
|
|
|
9
|
-
export { getToken, getUser, loading };
|
|
10
|
+
export { getToken, getUser, loading, sessionEnding };
|
|
10
11
|
//# sourceMappingURL=auth.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","sources":["../../src/selectors/auth.js"],"sourcesContent":["import { prop } from 'ramda'\nimport { createSelector } from 'reselect'\n\nconst root = prop('auth')\nexport const getToken = createSelector(root, prop('token'))\nexport const getUser = createSelector(root, prop('user'))\nexport const loading = createSelector(root, prop('loading'))\n"],"names":["root","prop","getToken","createSelector","getUser","loading"],"mappings":";;;AAGA,IAAMA,IAAI,GAAGC,IAAI,CAAC,MAAM,CAAC;AAClB,IAAMC,QAAQ,GAAGC,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,OAAO,CAAC;AACnD,IAAMG,OAAO,GAAGD,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,MAAM,CAAC;AACjD,IAAMI,OAAO,GAAGF,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,SAAS,CAAC;;;;"}
|
|
1
|
+
{"version":3,"file":"auth.js","sources":["../../src/selectors/auth.js"],"sourcesContent":["import { prop } from 'ramda'\nimport { createSelector } from 'reselect'\n\nconst root = prop('auth')\nexport const getToken = createSelector(root, prop('token'))\nexport const getUser = createSelector(root, prop('user'))\nexport const loading = createSelector(root, prop('loading'))\nexport const sessionEnding = createSelector(root, prop('sessionEnding'))\n"],"names":["root","prop","getToken","createSelector","getUser","loading","sessionEnding"],"mappings":";;;AAGA,IAAMA,IAAI,GAAGC,IAAI,CAAC,MAAM,CAAC;AAClB,IAAMC,QAAQ,GAAGC,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,OAAO,CAAC;AACnD,IAAMG,OAAO,GAAGD,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,MAAM,CAAC;AACjD,IAAMI,OAAO,GAAGF,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,SAAS,CAAC;AACpD,IAAMK,aAAa,GAAGH,cAAc,CAACH,IAAI,EAAEC,IAAI,CAAC,eAAe,CAAC;;;;"}
|
package/esm/store/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import configureStore from './configureStore.dev.js';
|
|
2
|
-
import
|
|
2
|
+
import 'redux';
|
|
3
|
+
import 'redux-thunk';
|
|
4
|
+
import '../reducers.js';
|
|
3
5
|
|
|
4
|
-
|
|
6
|
+
// const store = process.env.REDUX_MODE === 'development' ? configureStoreDev() : configureStoreProd()
|
|
7
|
+
|
|
8
|
+
var store = configureStore();
|
|
5
9
|
|
|
6
10
|
export { store as default };
|
|
7
11
|
//# sourceMappingURL=index.js.map
|
package/esm/store/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../src/store/index.js"],"sourcesContent":["import configureStoreDev from './configureStore.dev'\nimport configureStoreProd from './configureStore.prod'\n\
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/store/index.js"],"sourcesContent":["import configureStoreDev from './configureStore.dev'\nimport configureStoreProd from './configureStore.prod'\n\n// const store = process.env.REDUX_MODE === 'development' ? configureStoreDev() : configureStoreProd()\n\nconst store = configureStoreDev()\n\nexport default store\n"],"names":["store","configureStoreDev"],"mappings":";;;;;AAGA;;AAEA,IAAMA,KAAK,GAAGC,cAAiB;;;;"}
|
package/esm/utils/confy.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AuthIFrame, AuthRedirect, AuthOTP } from '@dbmx/auth';
|
|
2
2
|
import map from '../node_modules/ramda/es/map.js';
|
|
3
3
|
import prop from '../node_modules/ramda/es/prop.js';
|
|
4
4
|
import filter from '../node_modules/ramda/es/filter.js';
|
|
@@ -12,7 +12,15 @@ var getAvailableModules = function getAvailableModules(activeModules, allModules
|
|
|
12
12
|
}, allModules);
|
|
13
13
|
};
|
|
14
14
|
var getAuth = function getAuth(oidc) {
|
|
15
|
-
|
|
15
|
+
switch (oidc.authType) {
|
|
16
|
+
case 'otp':
|
|
17
|
+
return AuthOTP(oidc);
|
|
18
|
+
case 'redirect':
|
|
19
|
+
return AuthRedirect(oidc);
|
|
20
|
+
case 'iframe':
|
|
21
|
+
default:
|
|
22
|
+
return AuthIFrame(oidc);
|
|
23
|
+
}
|
|
16
24
|
};
|
|
17
25
|
|
|
18
26
|
export { getAuth, getAvailableModules };
|
package/esm/utils/confy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"confy.js","sources":["../../src/utils/confy.js"],"sourcesContent":["import { map, prop, filter, includes } from 'ramda'\nimport {
|
|
1
|
+
{"version":3,"file":"confy.js","sources":["../../src/utils/confy.js"],"sourcesContent":["import { map, prop, filter, includes } from 'ramda'\nimport { AuthRedirect, AuthIFrame, AuthOTP } from '@dbmx/auth'\n\nexport const getAvailableModules = (activeModules, allModules) => {\n if (!activeModules) return allModules\n const activeModulesIds = map(prop('id'))(activeModules)\n return filter(module => includes(module.id, activeModulesIds), allModules)\n}\n\nexport const getAuth = oidc => {\n switch (oidc.authType) {\n case 'otp':\n return AuthOTP(oidc)\n case 'redirect':\n return AuthRedirect(oidc)\n case 'iframe':\n default:\n return AuthIFrame(oidc)\n }\n}\n"],"names":["getAvailableModules","activeModules","allModules","activeModulesIds","map","prop","filter","module","includes","id","getAuth","oidc","authType","AuthOTP","AuthRedirect","AuthIFrame"],"mappings":";;;;;;AAGO,IAAMA,mBAAmB,GAAG,SAAtBA,mBAAmBA,CAAIC,aAAa,EAAEC,UAAU,EAAK;AAChE,EAAA,IAAI,CAACD,aAAa,EAAE,OAAOC,UAAU;EACrC,IAAMC,gBAAgB,GAAGC,GAAG,CAACC,IAAI,CAAC,IAAI,CAAC,CAAC,CAACJ,aAAa,CAAC;EACvD,OAAOK,MAAM,CAAC,UAAAC,MAAM,EAAA;AAAA,IAAA,OAAIC,QAAQ,CAACD,MAAM,CAACE,EAAE,EAAEN,gBAAgB,CAAC;AAAA,GAAA,EAAED,UAAU,CAAC;AAC5E;IAEaQ,OAAO,GAAG,SAAVA,OAAOA,CAAGC,IAAI,EAAI;EAC7B,QAAQA,IAAI,CAACC,QAAQ;AACnB,IAAA,KAAK,KAAK;MACR,OAAOC,OAAO,CAACF,IAAI,CAAC;AACtB,IAAA,KAAK,UAAU;MACb,OAAOG,YAAY,CAACH,IAAI,CAAC;AAC3B,IAAA,KAAK,QAAQ;AACb,IAAA;MACE,OAAOI,UAAU,CAACJ,IAAI,CAAC;AAC3B;AACF;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbmx/confy",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Eric Basley <eric.basley@redpelicans.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"esm"
|
|
23
23
|
],
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@dbmx/auth": "^1.3.
|
|
25
|
+
"@dbmx/auth": "^1.3.29",
|
|
26
26
|
"@dbmx/semver": "^1.1.1",
|
|
27
27
|
"@dbmx/users": "^1.1.21",
|
|
28
28
|
"@emotion/react": "^11.11.0",
|
|
@@ -37,9 +37,10 @@
|
|
|
37
37
|
"dagre": "^0.8.5",
|
|
38
38
|
"date-fns": "^2.0.0",
|
|
39
39
|
"dayjs": "^1.11.10",
|
|
40
|
-
"nanoid": "^
|
|
40
|
+
"nanoid": "^5.1.6",
|
|
41
41
|
"react": "^18.2.0",
|
|
42
42
|
"react-dom": "^18.2.0",
|
|
43
|
+
"react-final-form": "^6.5.3",
|
|
43
44
|
"react-flow-renderer": "^10.0.8",
|
|
44
45
|
"react-full-screen": "^1.1.1",
|
|
45
46
|
"react-intl": "^5.8.2",
|
|
@@ -69,12 +70,15 @@
|
|
|
69
70
|
"dagre": "^0.8.5",
|
|
70
71
|
"date-fns": "^2.0.0",
|
|
71
72
|
"dayjs": "^1.11.10",
|
|
72
|
-
"
|
|
73
|
+
"final-form": "^5.0.0",
|
|
74
|
+
"nanoid": "^5.1.6",
|
|
73
75
|
"ramda": "^0.27.1",
|
|
74
76
|
"react": "^18.2.0",
|
|
75
77
|
"react-dom": "^18.2.0",
|
|
78
|
+
"react-final-form": "^6.5.3",
|
|
76
79
|
"react-flow-renderer": "^10.0.8",
|
|
77
80
|
"react-full-screen": "^1.1.1",
|
|
81
|
+
"react-google-recaptcha": "^3.1.0",
|
|
78
82
|
"react-intl": "^5.8.2",
|
|
79
83
|
"react-query": "^3.34.19",
|
|
80
84
|
"react-router-dom": "^5.2.0",
|
|
@@ -163,5 +167,5 @@
|
|
|
163
167
|
"@babel/preset-react"
|
|
164
168
|
]
|
|
165
169
|
},
|
|
166
|
-
"gitHead": "
|
|
170
|
+
"gitHead": "bc18162186079489b8a5dcc8dd58545658325561"
|
|
167
171
|
}
|