contentoh-components-library 21.0.34 → 21.0.35
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.js +1 -22
- package/package.json +1 -1
- package/src/index.js +0 -16
package/dist/index.js
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
|
|
5
3
|
Object.defineProperty(exports, "__esModule", {
|
|
6
4
|
value: true
|
|
7
5
|
});
|
|
8
6
|
|
|
9
|
-
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
10
|
-
|
|
11
|
-
var _App = _interopRequireDefault(require("./App.jsx"));
|
|
12
|
-
|
|
13
|
-
var _awsAmplify = _interopRequireDefault(require("aws-amplify"));
|
|
14
|
-
|
|
15
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
16
|
-
|
|
17
7
|
var _index = require("./components/atoms/ActivedFilter/index");
|
|
18
8
|
|
|
19
9
|
Object.keys(_index).forEach(function (key) {
|
|
@@ -805,15 +795,4 @@ Object.keys(_VerificationCodeResetPassword).forEach(function (key) {
|
|
|
805
795
|
return _VerificationCodeResetPassword[key];
|
|
806
796
|
}
|
|
807
797
|
});
|
|
808
|
-
});
|
|
809
|
-
|
|
810
|
-
_reactDom.default.render( /*#__PURE__*/(0, _jsxRuntime.jsx)(_App.default, {}), document.getElementById("root"));
|
|
811
|
-
|
|
812
|
-
_awsAmplify.default.configure({
|
|
813
|
-
Auth: {
|
|
814
|
-
region: "us-east-1",
|
|
815
|
-
userPoolId: process.env.REACT_APP_USER_POOL_ID,
|
|
816
|
-
userPoolWebClientId: process.env.REACT_APP_USER_POOL_WEB_CLIENT_ID,
|
|
817
|
-
mandatorySignIn: true
|
|
818
|
-
}
|
|
819
|
-
}); //atoms
|
|
798
|
+
});
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,19 +1,3 @@
|
|
|
1
|
-
import ReactDOM from "react-dom";
|
|
2
|
-
import App from "./App.jsx";
|
|
3
|
-
import Amplify from "aws-amplify";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
ReactDOM.render(<App />, document.getElementById("root"));
|
|
7
|
-
|
|
8
|
-
Amplify.configure({
|
|
9
|
-
Auth: {
|
|
10
|
-
region: "us-east-1",
|
|
11
|
-
userPoolId: process.env.REACT_APP_USER_POOL_ID,
|
|
12
|
-
userPoolWebClientId: process.env.REACT_APP_USER_POOL_WEB_CLIENT_ID,
|
|
13
|
-
mandatorySignIn: true,
|
|
14
|
-
},
|
|
15
|
-
});
|
|
16
|
-
|
|
17
1
|
//atoms
|
|
18
2
|
export * from "./components/atoms/ActivedFilter/index";
|
|
19
3
|
export * from "./components/atoms/AsignationOption/index";
|