@manhphi1309/components 1.1.4 → 1.1.6
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.cjs +9 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -1
package/dist/index.cjs
CHANGED
|
@@ -188,6 +188,15 @@ Object.keys(_manhphi1309_skeleton).forEach(function(k) {
|
|
|
188
188
|
}
|
|
189
189
|
});
|
|
190
190
|
});
|
|
191
|
+
var _manhphi1309_table = require("@manhphi1309/table");
|
|
192
|
+
Object.keys(_manhphi1309_table).forEach(function(k) {
|
|
193
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
194
|
+
enumerable: true,
|
|
195
|
+
get: function() {
|
|
196
|
+
return _manhphi1309_table[k];
|
|
197
|
+
}
|
|
198
|
+
});
|
|
199
|
+
});
|
|
191
200
|
var _manhphi1309_textarea = require("@manhphi1309/textarea");
|
|
192
201
|
Object.keys(_manhphi1309_textarea).forEach(function(k) {
|
|
193
202
|
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
package/dist/index.d.cts
CHANGED
|
@@ -19,6 +19,7 @@ export * from "@manhphi1309/separator";
|
|
|
19
19
|
export * from "@manhphi1309/sheet";
|
|
20
20
|
export * from "@manhphi1309/sidebar";
|
|
21
21
|
export * from "@manhphi1309/skeleton";
|
|
22
|
+
export * from "@manhphi1309/table";
|
|
22
23
|
export * from "@manhphi1309/textarea";
|
|
23
24
|
export * from "@manhphi1309/tooltip";
|
|
24
25
|
export * from "@manhphi1309/utils";
|
package/dist/index.d.mts
CHANGED
|
@@ -19,6 +19,7 @@ export * from "@manhphi1309/separator";
|
|
|
19
19
|
export * from "@manhphi1309/sheet";
|
|
20
20
|
export * from "@manhphi1309/sidebar";
|
|
21
21
|
export * from "@manhphi1309/skeleton";
|
|
22
|
+
export * from "@manhphi1309/table";
|
|
22
23
|
export * from "@manhphi1309/textarea";
|
|
23
24
|
export * from "@manhphi1309/tooltip";
|
|
24
25
|
export * from "@manhphi1309/utils";
|
package/dist/index.mjs
CHANGED
|
@@ -20,6 +20,7 @@ export * from "@manhphi1309/separator";
|
|
|
20
20
|
export * from "@manhphi1309/sheet";
|
|
21
21
|
export * from "@manhphi1309/sidebar";
|
|
22
22
|
export * from "@manhphi1309/skeleton";
|
|
23
|
+
export * from "@manhphi1309/table";
|
|
23
24
|
export * from "@manhphi1309/textarea";
|
|
24
25
|
export * from "@manhphi1309/tooltip";
|
|
25
26
|
export * from "@manhphi1309/utils";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manhphi1309/components",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"main": "./dist/index.cjs",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.cts",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@manhphi1309/sheet": "*",
|
|
49
49
|
"@manhphi1309/sidebar": "*",
|
|
50
50
|
"@manhphi1309/skeleton": "*",
|
|
51
|
+
"@manhphi1309/table": "*",
|
|
51
52
|
"@manhphi1309/textarea": "*",
|
|
52
53
|
"@manhphi1309/tooltip": "*",
|
|
53
54
|
"@manhphi1309/utils": "*"
|