@haloduck/ui 2.0.37 → 2.0.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/README.md +10 -1
- package/fesm2022/haloduck-ui.mjs +516 -222
- package/fesm2022/haloduck-ui.mjs.map +1 -1
- package/index.d.ts +11 -1
- package/package.json +1 -1
- package/public/i18n/haloduck/ko.json +1 -1
- package/src/tailwind.css +79 -1
package/README.md
CHANGED
|
@@ -9,8 +9,11 @@ npm install @haloduck/ui
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Post Installation
|
|
12
|
+
|
|
12
13
|
### update `angular.json`
|
|
14
|
+
|
|
13
15
|
Update `angular.json` file.
|
|
16
|
+
|
|
14
17
|
```json
|
|
15
18
|
"build": {
|
|
16
19
|
"options": {
|
|
@@ -23,7 +26,9 @@ Update `angular.json` file.
|
|
|
23
26
|
```
|
|
24
27
|
|
|
25
28
|
### Copy i18n
|
|
29
|
+
|
|
26
30
|
Copy i18n files to `public/i18n` folder in the root folder.
|
|
31
|
+
|
|
27
32
|
```bash
|
|
28
33
|
npx haloduck-copy-i18n
|
|
29
34
|
```
|
|
@@ -31,6 +36,7 @@ npx haloduck-copy-i18n
|
|
|
31
36
|
## Key Components
|
|
32
37
|
|
|
33
38
|
### Control Components
|
|
39
|
+
|
|
34
40
|
- **Button**: Button components with various styles
|
|
35
41
|
- **Input**: Form input component
|
|
36
42
|
- **Select**: Dropdown selection component
|
|
@@ -51,12 +57,14 @@ npx haloduck-copy-i18n
|
|
|
51
57
|
- **Table**: Data table component
|
|
52
58
|
|
|
53
59
|
### Layout Components
|
|
60
|
+
|
|
54
61
|
- **Breadcrumb**: Breadcrumb navigation
|
|
55
62
|
- **DialogContainer**: Dialog container
|
|
56
63
|
- **Notification**: Notification component
|
|
57
64
|
- **SideMenu**: Side menu component
|
|
58
65
|
|
|
59
66
|
### Widget Components
|
|
67
|
+
|
|
60
68
|
- **PictureName**: Image and name display widget
|
|
61
69
|
|
|
62
70
|
## Styling
|
|
@@ -83,4 +91,5 @@ MIT License
|
|
|
83
91
|
|
|
84
92
|
## Support
|
|
85
93
|
|
|
86
|
-
If you have any issues or questions, please register them in
|
|
94
|
+
If you have any issues or questions, please register them in
|
|
95
|
+
[GitHub Issues](https://github.com/haloduck/haloduck-frontend/issues)
|