@thecb/components 9.2.10-beta.7 → 9.2.10-beta.8
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/dist/index.cjs.js
CHANGED
|
@@ -22716,12 +22716,12 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
22716
22716
|
return hasOwnProperty(toObject(it), key);
|
|
22717
22717
|
};
|
|
22718
22718
|
|
|
22719
|
-
var id
|
|
22719
|
+
var id = 0;
|
|
22720
22720
|
var postfix = Math.random();
|
|
22721
22721
|
var toString$3 = functionUncurryThis(1.0.toString);
|
|
22722
22722
|
|
|
22723
22723
|
var uid = function (key) {
|
|
22724
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id
|
|
22724
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
|
|
22725
22725
|
};
|
|
22726
22726
|
|
|
22727
22727
|
var WellKnownSymbolsStore = shared('wks');
|
|
@@ -47862,7 +47862,9 @@ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
|
47862
47862
|
error = _ref$error === void 0 ? false : _ref$error,
|
|
47863
47863
|
linkVariant = _ref.linkVariant,
|
|
47864
47864
|
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
47865
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele
|
|
47865
|
+
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
47866
|
+
_ref$id = _ref.id,
|
|
47867
|
+
id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id;
|
|
47866
47868
|
|
|
47867
47869
|
var _useState = React.useState(false),
|
|
47868
47870
|
_useState2 = _slicedToArray(_useState, 2),
|