contentoh-components-library 21.2.35 → 21.2.36
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 +13 -0
- package/package.json +1 -1
- package/src/index.js +3 -0
package/dist/index.js
CHANGED
|
@@ -886,4 +886,17 @@ Object.keys(_VerificationCodeResetPassword).forEach(function (key) {
|
|
|
886
886
|
return _VerificationCodeResetPassword[key];
|
|
887
887
|
}
|
|
888
888
|
});
|
|
889
|
+
});
|
|
890
|
+
|
|
891
|
+
var _dashboardUtils = require("./components/pages/Dashboard/dashboardUtils");
|
|
892
|
+
|
|
893
|
+
Object.keys(_dashboardUtils).forEach(function (key) {
|
|
894
|
+
if (key === "default" || key === "__esModule") return;
|
|
895
|
+
if (key in exports && exports[key] === _dashboardUtils[key]) return;
|
|
896
|
+
Object.defineProperty(exports, key, {
|
|
897
|
+
enumerable: true,
|
|
898
|
+
get: function get() {
|
|
899
|
+
return _dashboardUtils[key];
|
|
900
|
+
}
|
|
901
|
+
});
|
|
889
902
|
});
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -73,3 +73,6 @@ export * from "./components/pages/RegistrationLoginThirdStep";
|
|
|
73
73
|
export * from "./components/pages/RetailerProductEdition";
|
|
74
74
|
export * from "./components/pages/ProviderProductEdition";
|
|
75
75
|
export * from "./components/pages/VerificationCodeResetPassword";
|
|
76
|
+
|
|
77
|
+
//functions
|
|
78
|
+
export * from "./components/pages/Dashboard/dashboardUtils";
|