@manhphi1309/components 0.2.2 → 1.0.0
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 +1 -0
- package/dist/index.cjs +36 -0
- package/dist/index.d.cts +4 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -24,6 +24,7 @@ This master-package bundles the following components and utilities:
|
|
|
24
24
|
- **Checkbox**: `Checkbox`
|
|
25
25
|
- **DatePicker**: `DatePicker`, `DateRange`
|
|
26
26
|
- **Field**: `Field`, `FieldLabel`, `FieldDescription`, `FieldError`, `FieldGroup`, `FieldLegend`, `FieldSeparator`, `FieldSet`, `FieldContent`, `FieldTitle`
|
|
27
|
+
- **Form**: `FormWrapper`
|
|
27
28
|
- **Hooks**: `useIsMobile`
|
|
28
29
|
- **Input**: `Input`
|
|
29
30
|
- **InputGroup**: `InputGroup`, `InputGroupAddon`, `InputGroupButton`, `InputGroupText`, `InputGroupInput`, `InputGroupTextarea`
|
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,31 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
var _manhphi1309_accordion = require("@manhphi1309/accordion");
|
|
3
|
+
Object.keys(_manhphi1309_accordion).forEach(function(k) {
|
|
4
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
5
|
+
enumerable: true,
|
|
6
|
+
get: function() {
|
|
7
|
+
return _manhphi1309_accordion[k];
|
|
8
|
+
}
|
|
9
|
+
});
|
|
10
|
+
});
|
|
11
|
+
var _manhphi1309_avatar = require("@manhphi1309/avatar");
|
|
12
|
+
Object.keys(_manhphi1309_avatar).forEach(function(k) {
|
|
13
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function() {
|
|
16
|
+
return _manhphi1309_avatar[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
var _manhphi1309_badge = require("@manhphi1309/badge");
|
|
21
|
+
Object.keys(_manhphi1309_badge).forEach(function(k) {
|
|
22
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function() {
|
|
25
|
+
return _manhphi1309_badge[k];
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
});
|
|
2
29
|
var _manhphi1309_button = require("@manhphi1309/button");
|
|
3
30
|
Object.keys(_manhphi1309_button).forEach(function(k) {
|
|
4
31
|
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
@@ -62,6 +89,15 @@ Object.keys(_manhphi1309_field).forEach(function(k) {
|
|
|
62
89
|
}
|
|
63
90
|
});
|
|
64
91
|
});
|
|
92
|
+
var _manhphi1309_form = require("@manhphi1309/form");
|
|
93
|
+
Object.keys(_manhphi1309_form).forEach(function(k) {
|
|
94
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
95
|
+
enumerable: true,
|
|
96
|
+
get: function() {
|
|
97
|
+
return _manhphi1309_form[k];
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
});
|
|
65
101
|
var _manhphi1309_hooks = require("@manhphi1309/hooks");
|
|
66
102
|
Object.keys(_manhphi1309_hooks).forEach(function(k) {
|
|
67
103
|
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export * from "@manhphi1309/accordion";
|
|
2
|
+
export * from "@manhphi1309/avatar";
|
|
3
|
+
export * from "@manhphi1309/badge";
|
|
1
4
|
export * from "@manhphi1309/button";
|
|
2
5
|
export * from "@manhphi1309/button-group";
|
|
3
6
|
export * from "@manhphi1309/calendar";
|
|
@@ -5,6 +8,7 @@ export * from "@manhphi1309/card";
|
|
|
5
8
|
export * from "@manhphi1309/checkbox";
|
|
6
9
|
export * from "@manhphi1309/date-picker";
|
|
7
10
|
export * from "@manhphi1309/field";
|
|
11
|
+
export * from "@manhphi1309/form";
|
|
8
12
|
export * from "@manhphi1309/hooks";
|
|
9
13
|
export * from "@manhphi1309/input";
|
|
10
14
|
export * from "@manhphi1309/input-group";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export * from "@manhphi1309/accordion";
|
|
2
|
+
export * from "@manhphi1309/avatar";
|
|
3
|
+
export * from "@manhphi1309/badge";
|
|
1
4
|
export * from "@manhphi1309/button";
|
|
2
5
|
export * from "@manhphi1309/button-group";
|
|
3
6
|
export * from "@manhphi1309/calendar";
|
|
@@ -5,6 +8,7 @@ export * from "@manhphi1309/card";
|
|
|
5
8
|
export * from "@manhphi1309/checkbox";
|
|
6
9
|
export * from "@manhphi1309/date-picker";
|
|
7
10
|
export * from "@manhphi1309/field";
|
|
11
|
+
export * from "@manhphi1309/form";
|
|
8
12
|
export * from "@manhphi1309/hooks";
|
|
9
13
|
export * from "@manhphi1309/input";
|
|
10
14
|
export * from "@manhphi1309/input-group";
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
export * from "@manhphi1309/accordion";
|
|
3
|
+
export * from "@manhphi1309/avatar";
|
|
4
|
+
export * from "@manhphi1309/badge";
|
|
2
5
|
export * from "@manhphi1309/button";
|
|
3
6
|
export * from "@manhphi1309/button-group";
|
|
4
7
|
export * from "@manhphi1309/calendar";
|
|
@@ -6,6 +9,7 @@ export * from "@manhphi1309/card";
|
|
|
6
9
|
export * from "@manhphi1309/checkbox";
|
|
7
10
|
export * from "@manhphi1309/date-picker";
|
|
8
11
|
export * from "@manhphi1309/field";
|
|
12
|
+
export * from "@manhphi1309/form";
|
|
9
13
|
export * from "@manhphi1309/hooks";
|
|
10
14
|
export * from "@manhphi1309/input";
|
|
11
15
|
export * from "@manhphi1309/input-group";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manhphi1309/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"main": "./dist/index.cjs",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
"react-dom": "^19.0.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
+
"@manhphi1309/accordion": "*",
|
|
26
|
+
"@manhphi1309/avatar": "*",
|
|
27
|
+
"@manhphi1309/badge": "*",
|
|
25
28
|
"@manhphi1309/button": "*",
|
|
26
29
|
"@manhphi1309/button-group": "*",
|
|
27
30
|
"@manhphi1309/calendar": "*",
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
"@manhphi1309/checkbox": "*",
|
|
30
33
|
"@manhphi1309/date-picker": "*",
|
|
31
34
|
"@manhphi1309/field": "*",
|
|
35
|
+
"@manhphi1309/form": "*",
|
|
32
36
|
"@manhphi1309/hooks": "*",
|
|
33
37
|
"@manhphi1309/input": "*",
|
|
34
38
|
"@manhphi1309/input-group": "*",
|