@dafaz-ui/react 4.0.19 → 7.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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +61 -0
- package/dist/index.d.mts +678 -42
- package/dist/index.d.ts +678 -42
- package/dist/index.js +782 -147
- package/dist/index.mjs +786 -149
- package/package.json +1 -1
- package/src/components/Box/styles.ts +64 -10
- package/src/components/Button/index.tsx +1 -1
- package/src/components/Button/styles.ts +14 -7
- package/src/components/CheckBox/index.tsx +10 -26
- package/src/components/CheckBox/styles.ts +3 -1
- package/src/components/Heading/index.tsx +1 -1
- package/src/components/Heading/styles.ts +29 -15
- package/src/components/MultiSelect/index.tsx +234 -0
- package/src/components/MultiSelect/styles.ts +146 -0
- package/src/components/Radio/RadioItem/index.tsx +6 -4
- package/src/components/Radio/RadioItem/styles.ts +4 -1
- package/src/components/Radio/index.tsx +38 -23
- package/src/components/Radio/styles.ts +2 -1
- package/src/components/Select/index.tsx +49 -35
- package/src/components/Select/styles.ts +79 -12
- package/src/components/Separator/index.tsx +7 -0
- package/src/components/Separator/styles.ts +51 -0
- package/src/components/Text/index.tsx +3 -2
- package/src/components/Text/styles.ts +24 -3
- package/src/components/TextArea/index.tsx +17 -9
- package/src/components/TextArea/styles.ts +7 -2
- package/src/components/TextInput/index.tsx +38 -4
- package/src/components/TextInput/styles.ts +60 -3
- package/src/index.tsx +2 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @dafaz-ui/react@
|
2
|
+
> @dafaz-ui/react@7.0.0 build
|
3
3
|
> tsup src/index.tsx --format esm,cjs --dts --external react
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -8,11 +8,11 @@
|
|
8
8
|
[34mCLI[39m Target: es6
|
9
9
|
[34mESM[39m Build start
|
10
10
|
[34mCJS[39m Build start
|
11
|
-
[
|
12
|
-
[
|
13
|
-
[
|
14
|
-
[
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m38.94 KB[39m
|
12
|
+
[32mCJS[39m ⚡️ Build success in 48ms
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m35.66 KB[39m
|
14
|
+
[32mESM[39m ⚡️ Build success in 49ms
|
15
15
|
[34mDTS[39m Build start
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
16
|
+
[32mDTS[39m ⚡️ Build success in 4622ms
|
17
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m121.54 KB[39m
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m121.54 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,66 @@
|
|
1
1
|
# @dafaz-ui/react
|
2
2
|
|
3
|
+
## 7.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- Add new features and multiselect fix
|
8
|
+
|
9
|
+
## 6.0.5
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- Add new feat
|
14
|
+
|
15
|
+
## 6.0.4
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- Add new feat
|
20
|
+
|
21
|
+
## 6.0.3
|
22
|
+
|
23
|
+
### Patch Changes
|
24
|
+
|
25
|
+
- Add feat
|
26
|
+
|
27
|
+
## 6.0.2
|
28
|
+
|
29
|
+
### Patch Changes
|
30
|
+
|
31
|
+
- add new featu
|
32
|
+
|
33
|
+
## 6.0.1
|
34
|
+
|
35
|
+
### Patch Changes
|
36
|
+
|
37
|
+
- 2c074d8: Update feat
|
38
|
+
- c5b9b45: Add new feat
|
39
|
+
|
40
|
+
## 6.0.0
|
41
|
+
|
42
|
+
### Major Changes
|
43
|
+
|
44
|
+
- Ad new color (red) and components
|
45
|
+
|
46
|
+
## 5.0.2
|
47
|
+
|
48
|
+
### Patch Changes
|
49
|
+
|
50
|
+
- Add new features
|
51
|
+
|
52
|
+
## 5.0.1
|
53
|
+
|
54
|
+
### Patch Changes
|
55
|
+
|
56
|
+
- Add new features
|
57
|
+
|
58
|
+
## 5.0.0
|
59
|
+
|
60
|
+
### Major Changes
|
61
|
+
|
62
|
+
- Add new features: multiselect, new font sizes
|
63
|
+
|
3
64
|
## 4.0.19
|
4
65
|
|
5
66
|
### Patch Changes
|