contentoh-components-library 21.3.38 → 21.3.39
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 +1 -0
package/dist/index.js
CHANGED
|
@@ -979,6 +979,19 @@ Object.keys(_RangeCalendar).forEach(function (key) {
|
|
|
979
979
|
});
|
|
980
980
|
});
|
|
981
981
|
|
|
982
|
+
var _TableResizable = require("./components/organisms/TableResizable");
|
|
983
|
+
|
|
984
|
+
Object.keys(_TableResizable).forEach(function (key) {
|
|
985
|
+
if (key === "default" || key === "__esModule") return;
|
|
986
|
+
if (key in exports && exports[key] === _TableResizable[key]) return;
|
|
987
|
+
Object.defineProperty(exports, key, {
|
|
988
|
+
enumerable: true,
|
|
989
|
+
get: function get() {
|
|
990
|
+
return _TableResizable[key];
|
|
991
|
+
}
|
|
992
|
+
});
|
|
993
|
+
});
|
|
994
|
+
|
|
982
995
|
var _ChangePasswordLogin = require("./components/pages/ChangePasswordLogin");
|
|
983
996
|
|
|
984
997
|
Object.keys(_ChangePasswordLogin).forEach(function (key) {
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -78,6 +78,7 @@ export * from "./components/organisms/Chat/index";
|
|
|
78
78
|
export * from "./components/organisms/Modal/index";
|
|
79
79
|
export * from "./components/organisms/OrderDetail/index";
|
|
80
80
|
export * from "./components/organisms/RangeCalendar";
|
|
81
|
+
export * from "./components/organisms/TableResizable";
|
|
81
82
|
|
|
82
83
|
//pages
|
|
83
84
|
export * from "./components/pages/ChangePasswordLogin";
|