@guillotinaweb/react-gmi 0.34.1 → 0.34.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.
- package/README.md +28 -9
- package/dist/react-gmi.js +13 -8
- package/dist/react-gmi.js.map +1 -1
- package/dist/react-gmi.modern.js +13 -8
- package/dist/react-gmi.modern.js.map +1 -1
- package/package.json +3 -2
package/dist/react-gmi.modern.js
CHANGED
|
@@ -750,13 +750,18 @@ function requireReactIs_development$1() {
|
|
|
750
750
|
}
|
|
751
751
|
return reactIs_development$1;
|
|
752
752
|
}
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
753
|
+
var hasRequiredReactIs;
|
|
754
|
+
function requireReactIs() {
|
|
755
|
+
if (hasRequiredReactIs) return reactIs$2.exports;
|
|
756
|
+
hasRequiredReactIs = 1;
|
|
757
|
+
if (process.env.NODE_ENV === "production") {
|
|
758
|
+
reactIs$2.exports = requireReactIs_production_min$1();
|
|
759
|
+
} else {
|
|
760
|
+
reactIs$2.exports = requireReactIs_development$1();
|
|
761
|
+
}
|
|
762
|
+
return reactIs$2.exports;
|
|
757
763
|
}
|
|
758
|
-
var
|
|
759
|
-
var reactIs$1 = reactIsExports$1;
|
|
764
|
+
var reactIs$1 = requireReactIs();
|
|
760
765
|
var REACT_STATICS = {
|
|
761
766
|
childContextTypes: true,
|
|
762
767
|
contextType: true,
|
|
@@ -5864,7 +5869,7 @@ var hasRequiredFactoryWithTypeCheckers;
|
|
|
5864
5869
|
function requireFactoryWithTypeCheckers() {
|
|
5865
5870
|
if (hasRequiredFactoryWithTypeCheckers) return factoryWithTypeCheckers;
|
|
5866
5871
|
hasRequiredFactoryWithTypeCheckers = 1;
|
|
5867
|
-
var ReactIs =
|
|
5872
|
+
var ReactIs = requireReactIs();
|
|
5868
5873
|
var assign = requireObjectAssign();
|
|
5869
5874
|
var ReactPropTypesSecret = requireReactPropTypesSecret();
|
|
5870
5875
|
var checkPropTypes = requireCheckPropTypes();
|
|
@@ -6337,7 +6342,7 @@ function requireFactoryWithThrowingShims() {
|
|
|
6337
6342
|
return factoryWithThrowingShims;
|
|
6338
6343
|
}
|
|
6339
6344
|
if (process.env.NODE_ENV !== "production") {
|
|
6340
|
-
var ReactIs =
|
|
6345
|
+
var ReactIs = requireReactIs();
|
|
6341
6346
|
var throwOnDirectAccess = true;
|
|
6342
6347
|
propTypes.exports = requireFactoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
|
6343
6348
|
} else {
|