@paygreen/pgui 2.9.0 → 2.9.1
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/cjs/index.js +64 -54
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +65 -55
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -200,7 +200,7 @@ var ActionsButton = react.forwardRef(function (_a, ref) {
|
|
|
200
200
|
});
|
|
201
201
|
ActionsButton.displayName = 'ActionsButton';
|
|
202
202
|
|
|
203
|
-
var Card = function (props) { return (React__default["default"].createElement(react.Card, __assign$1({ p: 6,
|
|
203
|
+
var Card = function (props) { return (React__default["default"].createElement(react.Card, __assign$1({ p: 6, backgroundColor: "white", h: "fit-content", w: "full" }, props))); };
|
|
204
204
|
|
|
205
205
|
var _a$1 = react.createStylesContext('Menu'), StylesProvider = _a$1[0], useStyles = _a$1[1];
|
|
206
206
|
var StyledMenuItem = react.forwardRef(function (props, ref) {
|
|
@@ -49716,6 +49716,7 @@ var RULESET = 'rule';
|
|
|
49716
49716
|
var DECLARATION = 'decl';
|
|
49717
49717
|
var IMPORT = '@import';
|
|
49718
49718
|
var KEYFRAMES = '@keyframes';
|
|
49719
|
+
var LAYER = '@layer';
|
|
49719
49720
|
|
|
49720
49721
|
/**
|
|
49721
49722
|
* @param {number}
|
|
@@ -50130,7 +50131,7 @@ function parse (value, root, parent, rule, rules, rulesets, pseudo, points, decl
|
|
|
50130
50131
|
// \0 }
|
|
50131
50132
|
case 0: case 125: scanning = 0;
|
|
50132
50133
|
// ;
|
|
50133
|
-
case 59 + offset:
|
|
50134
|
+
case 59 + offset: if (ampersand == -1) characters = replace(characters, /\f/g, '');
|
|
50134
50135
|
if (property > 0 && (strlen(characters) - length))
|
|
50135
50136
|
append(property > 32 ? declaration(characters + ';', rule, parent, length - 1) : declaration(replace(characters, ' ', '') + ';', rule, parent, length - 2), declarations);
|
|
50136
50137
|
break
|
|
@@ -50145,8 +50146,8 @@ function parse (value, root, parent, rule, rules, rulesets, pseudo, points, decl
|
|
|
50145
50146
|
parse(characters, root, reference, reference, props, rulesets, length, points, children);
|
|
50146
50147
|
else
|
|
50147
50148
|
switch (atrule === 99 && charat(characters, 3) === 110 ? 100 : atrule) {
|
|
50148
|
-
// d m s
|
|
50149
|
-
case 100: case 109: case 115:
|
|
50149
|
+
// d l m s
|
|
50150
|
+
case 100: case 108: case 109: case 115:
|
|
50150
50151
|
parse(value, reference, reference, rule && append(ruleset(value, reference, reference, 0, 0, rules, points, type, rules, props = [], length), children), rules, children, length, points, rule ? props : children);
|
|
50151
50152
|
break
|
|
50152
50153
|
default:
|
|
@@ -50265,6 +50266,7 @@ function serialize (children, callback) {
|
|
|
50265
50266
|
*/
|
|
50266
50267
|
function stringify (element, index, children, callback) {
|
|
50267
50268
|
switch (element.type) {
|
|
50269
|
+
case LAYER: if (element.children.length) break
|
|
50268
50270
|
case IMPORT: case DECLARATION: return element.return = element.return || element.value
|
|
50269
50271
|
case COMMENT: return ''
|
|
50270
50272
|
case KEYFRAMES: return element.return = element.value + '{' + serialize(element.children, callback) + '}'
|
|
@@ -50462,7 +50464,7 @@ var createUnsafeSelectorsAlarm = function createUnsafeSelectorsAlarm(cache) {
|
|
|
50462
50464
|
var unsafePseudoClasses = element.value.match(/(:first|:nth|:nth-last)-child/g);
|
|
50463
50465
|
|
|
50464
50466
|
if (unsafePseudoClasses) {
|
|
50465
|
-
var isNested = element.parent
|
|
50467
|
+
var isNested = !!element.parent; // in nested rules comments become children of the "auto-inserted" rule and that's always the `element.parent`
|
|
50466
50468
|
//
|
|
50467
50469
|
// considering this input:
|
|
50468
50470
|
// .a {
|
|
@@ -50478,7 +50480,7 @@ var createUnsafeSelectorsAlarm = function createUnsafeSelectorsAlarm(cache) {
|
|
|
50478
50480
|
// .b {}
|
|
50479
50481
|
// }
|
|
50480
50482
|
|
|
50481
|
-
var commentContainer = isNested ?
|
|
50483
|
+
var commentContainer = isNested ? element.parent.children : // global rule at the root level
|
|
50482
50484
|
children;
|
|
50483
50485
|
|
|
50484
50486
|
for (var i = commentContainer.length - 1; i >= 0; i--) {
|
|
@@ -51111,6 +51113,7 @@ function murmur2(str) {
|
|
|
51111
51113
|
|
|
51112
51114
|
var unitlessKeys = {
|
|
51113
51115
|
animationIterationCount: 1,
|
|
51116
|
+
aspectRatio: 1,
|
|
51114
51117
|
borderImageOutset: 1,
|
|
51115
51118
|
borderImageSlice: 1,
|
|
51116
51119
|
borderImageWidth: 1,
|
|
@@ -51477,12 +51480,12 @@ var syncFallback = function syncFallback(create) {
|
|
|
51477
51480
|
|
|
51478
51481
|
var useInsertionEffect = React__namespace['useInsertion' + 'Effect'] ? React__namespace['useInsertion' + 'Effect'] : false;
|
|
51479
51482
|
var useInsertionEffectAlwaysWithSyncFallback = !isBrowser$3 ? syncFallback : useInsertionEffect || syncFallback;
|
|
51480
|
-
var useInsertionEffectWithLayoutFallback = useInsertionEffect ||
|
|
51483
|
+
var useInsertionEffectWithLayoutFallback = useInsertionEffect || React__namespace.useLayoutEffect;
|
|
51481
51484
|
|
|
51482
51485
|
var isBrowser$2 = typeof document !== 'undefined';
|
|
51483
51486
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
51484
51487
|
|
|
51485
|
-
var EmotionCacheContext = /* #__PURE__ */
|
|
51488
|
+
var EmotionCacheContext = /* #__PURE__ */React__namespace.createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
|
|
51486
51489
|
// because this module is primarily intended for the browser and node
|
|
51487
51490
|
// but it's also required in react native and similar environments sometimes
|
|
51488
51491
|
// and we could have a special build just for that
|
|
@@ -51521,7 +51524,7 @@ if (!isBrowser$2) {
|
|
|
51521
51524
|
cache = createCache({
|
|
51522
51525
|
key: 'css'
|
|
51523
51526
|
});
|
|
51524
|
-
return /*#__PURE__*/
|
|
51527
|
+
return /*#__PURE__*/React__namespace.createElement(EmotionCacheContext.Provider, {
|
|
51525
51528
|
value: cache
|
|
51526
51529
|
}, func(props, cache));
|
|
51527
51530
|
} else {
|
|
@@ -51531,7 +51534,7 @@ if (!isBrowser$2) {
|
|
|
51531
51534
|
};
|
|
51532
51535
|
}
|
|
51533
51536
|
|
|
51534
|
-
var ThemeContext = /* #__PURE__ */
|
|
51537
|
+
var ThemeContext = /* #__PURE__ */React__namespace.createContext({});
|
|
51535
51538
|
|
|
51536
51539
|
if (process.env.NODE_ENV !== 'production') {
|
|
51537
51540
|
ThemeContext.displayName = 'EmotionThemeContext';
|
|
@@ -51627,7 +51630,7 @@ var Insertion$2 = function Insertion(_ref) {
|
|
|
51627
51630
|
next = next.next;
|
|
51628
51631
|
}
|
|
51629
51632
|
|
|
51630
|
-
return /*#__PURE__*/
|
|
51633
|
+
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
|
51631
51634
|
__html: rules
|
|
51632
51635
|
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
|
51633
51636
|
}
|
|
@@ -51654,7 +51657,7 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
|
|
|
51654
51657
|
className = props.className + " ";
|
|
51655
51658
|
}
|
|
51656
51659
|
|
|
51657
|
-
var serialized = serializeStyles(registeredStyles, undefined,
|
|
51660
|
+
var serialized = serializeStyles(registeredStyles, undefined, React__namespace.useContext(ThemeContext));
|
|
51658
51661
|
|
|
51659
51662
|
if (process.env.NODE_ENV !== 'production' && serialized.name.indexOf('-') === -1) {
|
|
51660
51663
|
var labelFromStack = props[labelPropName];
|
|
@@ -51675,20 +51678,22 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
|
|
|
51675
51678
|
|
|
51676
51679
|
newProps.ref = ref;
|
|
51677
51680
|
newProps.className = className;
|
|
51678
|
-
return /*#__PURE__*/
|
|
51681
|
+
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion$2, {
|
|
51679
51682
|
cache: cache,
|
|
51680
51683
|
serialized: serialized,
|
|
51681
51684
|
isStringTag: typeof WrappedComponent === 'string'
|
|
51682
|
-
}), /*#__PURE__*/
|
|
51685
|
+
}), /*#__PURE__*/React__namespace.createElement(WrappedComponent, newProps));
|
|
51683
51686
|
});
|
|
51684
51687
|
|
|
51685
51688
|
if (process.env.NODE_ENV !== 'production') {
|
|
51686
51689
|
Emotion.displayName = 'EmotionCssPropInternal';
|
|
51687
51690
|
}
|
|
51688
51691
|
|
|
51692
|
+
var Emotion$1 = Emotion;
|
|
51693
|
+
|
|
51689
51694
|
var pkg = {
|
|
51690
51695
|
name: "@emotion/react",
|
|
51691
|
-
version: "11.
|
|
51696
|
+
version: "11.11.1",
|
|
51692
51697
|
main: "dist/emotion-react.cjs.js",
|
|
51693
51698
|
module: "dist/emotion-react.esm.js",
|
|
51694
51699
|
browser: {
|
|
@@ -51701,6 +51706,7 @@ var pkg = {
|
|
|
51701
51706
|
browser: "./dist/emotion-react.browser.esm.js",
|
|
51702
51707
|
"default": "./dist/emotion-react.esm.js"
|
|
51703
51708
|
},
|
|
51709
|
+
"import": "./dist/emotion-react.cjs.mjs",
|
|
51704
51710
|
"default": "./dist/emotion-react.cjs.js"
|
|
51705
51711
|
},
|
|
51706
51712
|
"./jsx-runtime": {
|
|
@@ -51709,6 +51715,7 @@ var pkg = {
|
|
|
51709
51715
|
browser: "./jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js",
|
|
51710
51716
|
"default": "./jsx-runtime/dist/emotion-react-jsx-runtime.esm.js"
|
|
51711
51717
|
},
|
|
51718
|
+
"import": "./jsx-runtime/dist/emotion-react-jsx-runtime.cjs.mjs",
|
|
51712
51719
|
"default": "./jsx-runtime/dist/emotion-react-jsx-runtime.cjs.js"
|
|
51713
51720
|
},
|
|
51714
51721
|
"./_isolated-hnrs": {
|
|
@@ -51717,6 +51724,7 @@ var pkg = {
|
|
|
51717
51724
|
browser: "./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js",
|
|
51718
51725
|
"default": "./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.esm.js"
|
|
51719
51726
|
},
|
|
51727
|
+
"import": "./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.mjs",
|
|
51720
51728
|
"default": "./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.js"
|
|
51721
51729
|
},
|
|
51722
51730
|
"./jsx-dev-runtime": {
|
|
@@ -51725,11 +51733,18 @@ var pkg = {
|
|
|
51725
51733
|
browser: "./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.esm.js",
|
|
51726
51734
|
"default": "./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.esm.js"
|
|
51727
51735
|
},
|
|
51736
|
+
"import": "./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.mjs",
|
|
51728
51737
|
"default": "./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.js"
|
|
51729
51738
|
},
|
|
51730
51739
|
"./package.json": "./package.json",
|
|
51731
51740
|
"./types/css-prop": "./types/css-prop.d.ts",
|
|
51732
|
-
"./macro":
|
|
51741
|
+
"./macro": {
|
|
51742
|
+
types: {
|
|
51743
|
+
"import": "./macro.d.mts",
|
|
51744
|
+
"default": "./macro.d.ts"
|
|
51745
|
+
},
|
|
51746
|
+
"default": "./macro.js"
|
|
51747
|
+
}
|
|
51733
51748
|
},
|
|
51734
51749
|
types: "types/index.d.ts",
|
|
51735
51750
|
files: [
|
|
@@ -51739,9 +51754,7 @@ var pkg = {
|
|
|
51739
51754
|
"jsx-dev-runtime",
|
|
51740
51755
|
"_isolated-hnrs",
|
|
51741
51756
|
"types/*.d.ts",
|
|
51742
|
-
"macro
|
|
51743
|
-
"macro.d.ts",
|
|
51744
|
-
"macro.js.flow"
|
|
51757
|
+
"macro.*"
|
|
51745
51758
|
],
|
|
51746
51759
|
sideEffects: false,
|
|
51747
51760
|
author: "Emotion Contributors",
|
|
@@ -51751,33 +51764,28 @@ var pkg = {
|
|
|
51751
51764
|
},
|
|
51752
51765
|
dependencies: {
|
|
51753
51766
|
"@babel/runtime": "^7.18.3",
|
|
51754
|
-
"@emotion/babel-plugin": "^11.
|
|
51755
|
-
"@emotion/cache": "^11.
|
|
51756
|
-
"@emotion/serialize": "^1.1.
|
|
51757
|
-
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.
|
|
51758
|
-
"@emotion/utils": "^1.2.
|
|
51759
|
-
"@emotion/weak-memoize": "^0.3.
|
|
51767
|
+
"@emotion/babel-plugin": "^11.11.0",
|
|
51768
|
+
"@emotion/cache": "^11.11.0",
|
|
51769
|
+
"@emotion/serialize": "^1.1.2",
|
|
51770
|
+
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
|
|
51771
|
+
"@emotion/utils": "^1.2.1",
|
|
51772
|
+
"@emotion/weak-memoize": "^0.3.1",
|
|
51760
51773
|
"hoist-non-react-statics": "^3.3.1"
|
|
51761
51774
|
},
|
|
51762
51775
|
peerDependencies: {
|
|
51763
|
-
"@babel/core": "^7.0.0",
|
|
51764
51776
|
react: ">=16.8.0"
|
|
51765
51777
|
},
|
|
51766
51778
|
peerDependenciesMeta: {
|
|
51767
|
-
"@babel/core": {
|
|
51768
|
-
optional: true
|
|
51769
|
-
},
|
|
51770
51779
|
"@types/react": {
|
|
51771
51780
|
optional: true
|
|
51772
51781
|
}
|
|
51773
51782
|
},
|
|
51774
51783
|
devDependencies: {
|
|
51775
|
-
"@babel/core": "^7.18.5",
|
|
51776
51784
|
"@definitelytyped/dtslint": "0.0.112",
|
|
51777
|
-
"@emotion/css": "11.
|
|
51778
|
-
"@emotion/css-prettifier": "1.1.
|
|
51779
|
-
"@emotion/server": "11.
|
|
51780
|
-
"@emotion/styled": "11.
|
|
51785
|
+
"@emotion/css": "11.11.0",
|
|
51786
|
+
"@emotion/css-prettifier": "1.1.3",
|
|
51787
|
+
"@emotion/server": "11.11.0",
|
|
51788
|
+
"@emotion/styled": "11.11.0",
|
|
51781
51789
|
"html-tag-names": "^1.1.2",
|
|
51782
51790
|
react: "16.14.0",
|
|
51783
51791
|
"svg-tag-names": "^1.1.1",
|
|
@@ -51803,7 +51811,13 @@ var pkg = {
|
|
|
51803
51811
|
],
|
|
51804
51812
|
extra: {
|
|
51805
51813
|
"./types/css-prop": "./types/css-prop.d.ts",
|
|
51806
|
-
"./macro":
|
|
51814
|
+
"./macro": {
|
|
51815
|
+
types: {
|
|
51816
|
+
"import": "./macro.d.mts",
|
|
51817
|
+
"default": "./macro.d.ts"
|
|
51818
|
+
},
|
|
51819
|
+
"default": "./macro.js"
|
|
51820
|
+
}
|
|
51807
51821
|
}
|
|
51808
51822
|
}
|
|
51809
51823
|
}
|
|
@@ -51814,12 +51828,12 @@ var jsx = function jsx(type, props) {
|
|
|
51814
51828
|
|
|
51815
51829
|
if (props == null || !hasOwnProperty.call(props, 'css')) {
|
|
51816
51830
|
// $FlowFixMe
|
|
51817
|
-
return
|
|
51831
|
+
return React__namespace.createElement.apply(undefined, args);
|
|
51818
51832
|
}
|
|
51819
51833
|
|
|
51820
51834
|
var argsLength = args.length;
|
|
51821
51835
|
var createElementArgArray = new Array(argsLength);
|
|
51822
|
-
createElementArgArray[0] = Emotion;
|
|
51836
|
+
createElementArgArray[0] = Emotion$1;
|
|
51823
51837
|
createElementArgArray[1] = createEmotionProps(type, props);
|
|
51824
51838
|
|
|
51825
51839
|
for (var i = 2; i < argsLength; i++) {
|
|
@@ -51827,7 +51841,7 @@ var jsx = function jsx(type, props) {
|
|
|
51827
51841
|
} // $FlowFixMe
|
|
51828
51842
|
|
|
51829
51843
|
|
|
51830
|
-
return
|
|
51844
|
+
return React__namespace.createElement.apply(null, createElementArgArray);
|
|
51831
51845
|
};
|
|
51832
51846
|
|
|
51833
51847
|
var warnedAboutCssPropForGlobal = false; // maintain place over rerenders.
|
|
@@ -51845,7 +51859,7 @@ var Global = /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
|
51845
51859
|
}
|
|
51846
51860
|
|
|
51847
51861
|
var styles = props.styles;
|
|
51848
|
-
var serialized = serializeStyles([styles], undefined,
|
|
51862
|
+
var serialized = serializeStyles([styles], undefined, React__namespace.useContext(ThemeContext));
|
|
51849
51863
|
|
|
51850
51864
|
if (!isBrowser$2) {
|
|
51851
51865
|
var _ref;
|
|
@@ -51870,7 +51884,7 @@ var Global = /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
|
51870
51884
|
return null;
|
|
51871
51885
|
}
|
|
51872
51886
|
|
|
51873
|
-
return /*#__PURE__*/
|
|
51887
|
+
return /*#__PURE__*/React__namespace.createElement("style", (_ref = {}, _ref["data-emotion"] = cache.key + "-global " + serializedNames, _ref.dangerouslySetInnerHTML = {
|
|
51874
51888
|
__html: rules
|
|
51875
51889
|
}, _ref.nonce = cache.sheet.nonce, _ref));
|
|
51876
51890
|
} // yes, i know these hooks are used conditionally
|
|
@@ -51879,7 +51893,7 @@ var Global = /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
|
51879
51893
|
// so it's not actually breaking anything
|
|
51880
51894
|
|
|
51881
51895
|
|
|
51882
|
-
var sheetRef =
|
|
51896
|
+
var sheetRef = React__namespace.useRef();
|
|
51883
51897
|
useInsertionEffectWithLayoutFallback(function () {
|
|
51884
51898
|
var key = cache.key + "-global"; // use case of https://github.com/emotion-js/emotion/issues/2675
|
|
51885
51899
|
|
|
@@ -52046,7 +52060,7 @@ var Insertion$1 = function Insertion(_ref) {
|
|
|
52046
52060
|
if (!isBrowser$2 && rules.length !== 0) {
|
|
52047
52061
|
var _ref2;
|
|
52048
52062
|
|
|
52049
|
-
return /*#__PURE__*/
|
|
52063
|
+
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedArr.map(function (serialized) {
|
|
52050
52064
|
return serialized.name;
|
|
52051
52065
|
}).join(' '), _ref2.dangerouslySetInnerHTML = {
|
|
52052
52066
|
__html: rules
|
|
@@ -52091,11 +52105,11 @@ var ClassNames = /* #__PURE__ */withEmotionCache(function (props, cache) {
|
|
|
52091
52105
|
var content = {
|
|
52092
52106
|
css: css,
|
|
52093
52107
|
cx: cx,
|
|
52094
|
-
theme:
|
|
52108
|
+
theme: React__namespace.useContext(ThemeContext)
|
|
52095
52109
|
};
|
|
52096
52110
|
var ele = props.children(content);
|
|
52097
52111
|
hasRendered = true;
|
|
52098
|
-
return /*#__PURE__*/
|
|
52112
|
+
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion$1, {
|
|
52099
52113
|
cache: cache,
|
|
52100
52114
|
serializedArr: serializedArr
|
|
52101
52115
|
}), ele);
|
|
@@ -52290,7 +52304,7 @@ var Insertion = function Insertion(_ref) {
|
|
|
52290
52304
|
next = next.next;
|
|
52291
52305
|
}
|
|
52292
52306
|
|
|
52293
|
-
return /*#__PURE__*/
|
|
52307
|
+
return /*#__PURE__*/React__namespace.createElement("style", (_ref2 = {}, _ref2["data-emotion"] = cache.key + " " + serializedNames, _ref2.dangerouslySetInnerHTML = {
|
|
52294
52308
|
__html: rules
|
|
52295
52309
|
}, _ref2.nonce = cache.sheet.nonce, _ref2));
|
|
52296
52310
|
}
|
|
@@ -52360,7 +52374,7 @@ var createStyled = function createStyled(tag, options) {
|
|
|
52360
52374
|
mergedProps[key] = props[key];
|
|
52361
52375
|
}
|
|
52362
52376
|
|
|
52363
|
-
mergedProps.theme =
|
|
52377
|
+
mergedProps.theme = React__namespace.useContext(ThemeContext);
|
|
52364
52378
|
}
|
|
52365
52379
|
|
|
52366
52380
|
if (typeof props.className === 'string') {
|
|
@@ -52390,11 +52404,11 @@ var createStyled = function createStyled(tag, options) {
|
|
|
52390
52404
|
|
|
52391
52405
|
newProps.className = className;
|
|
52392
52406
|
newProps.ref = ref;
|
|
52393
|
-
return /*#__PURE__*/
|
|
52407
|
+
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(Insertion, {
|
|
52394
52408
|
cache: cache,
|
|
52395
52409
|
serialized: serialized,
|
|
52396
52410
|
isStringTag: typeof FinalTag === 'string'
|
|
52397
|
-
}), /*#__PURE__*/
|
|
52411
|
+
}), /*#__PURE__*/React__namespace.createElement(FinalTag, newProps));
|
|
52398
52412
|
});
|
|
52399
52413
|
Styled.displayName = identifierName !== undefined ? identifierName : "Styled(" + (typeof baseTag === 'string' ? baseTag : baseTag.displayName || baseTag.name || 'Component') + ")";
|
|
52400
52414
|
Styled.defaultProps = tag.defaultProps;
|
|
@@ -56606,9 +56620,7 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
56606
56620
|
if (_x = (_i = _i.call(arr)).next, 0 === i) {
|
|
56607
56621
|
if (Object(_i) !== _i) return;
|
|
56608
56622
|
_n = !1;
|
|
56609
|
-
} else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0)
|
|
56610
|
-
;
|
|
56611
|
-
}
|
|
56623
|
+
} else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0);
|
|
56612
56624
|
} catch (err) {
|
|
56613
56625
|
_d = !0, _e = err;
|
|
56614
56626
|
} finally {
|
|
@@ -56624,9 +56636,7 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
56624
56636
|
|
|
56625
56637
|
function _arrayLikeToArray(arr, len) {
|
|
56626
56638
|
if (len == null || len > arr.length) len = arr.length;
|
|
56627
|
-
for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
56628
|
-
arr2[i] = arr[i];
|
|
56629
|
-
}
|
|
56639
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
|
|
56630
56640
|
return arr2;
|
|
56631
56641
|
}
|
|
56632
56642
|
|