@cashdoc/cashdoc-cms-design-system 1.4.0 β 1.5.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 +12 -0
- package/dist/index.es.js +4000 -3908
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/Button/Button.d.ts +5 -3
- package/dist/src/components/Checkbox/Checkbox.d.ts +6 -3
- package/dist/src/components/DatePicker/DatePicker.d.ts +2 -2
- package/dist/src/components/DateRangePicker/DateRangePicker.d.ts +4 -4
- package/dist/src/components/Dropdown/Combobox.d.ts +7 -3
- package/dist/src/components/Dropdown/Dropdown.d.ts +21 -5
- package/dist/src/components/Dropdown/Select.d.ts +8 -3
- package/dist/src/components/FileUpload/FileUpload.d.ts +2 -2
- package/dist/src/components/ImageUpload/ImageUpload.d.ts +4 -4
- package/dist/src/components/LoadingCircle/LoadingCircle.d.ts +2 -2
- package/dist/src/components/Modal/ConfirmModal.d.ts +2 -2
- package/dist/src/components/Modal/DeleteModal.d.ts +2 -2
- package/dist/src/components/Modal/ErrorModal.d.ts +2 -2
- package/dist/src/components/Modal/Modal.d.ts +2 -2
- package/dist/src/components/Modal/SuccessModal.d.ts +2 -2
- package/dist/src/components/Modal/WarningModal.d.ts +2 -2
- package/dist/src/components/Pagination/Pagination.d.ts +2 -2
- package/dist/src/components/Popover/PopoverMenuItem.d.ts +7 -3
- package/dist/src/components/RadioButton/RadioButton.d.ts +5 -3
- package/dist/src/components/SegmentedControls/SegmentedControls.d.ts +55 -0
- package/dist/src/components/SegmentedControls/index.d.ts +1 -0
- package/dist/src/components/SideNavigation/SideNavigation.d.ts +6 -6
- package/dist/src/components/Switch/Switch.d.ts +21 -3
- package/dist/src/components/Table/Table.d.ts +49 -24
- package/dist/src/components/TagInput/TagInput.d.ts +20 -3
- package/dist/src/components/Text/Text.d.ts +10 -3
- package/dist/src/components/TextInput/TextInput.d.ts +15 -3
- package/dist/src/components/TimePicker/TimePicker.d.ts +2 -2
- package/dist/src/components/ToolTip/ToolTip.d.ts +28 -3
- package/dist/src/components/icons/index.d.ts +3 -3
- package/dist/src/components/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +15 -12
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Cashdoc CMS Design System
|
|
2
2
|
|
|
3
|
+
π [CCDS Contribution Guide](./CONTRIBUTING.md)
|
|
4
|
+
|
|
3
5
|
Cashdoc CMSμ© λμμΈ μμ€ν
μ»΄ν¬λνΈ λΌμ΄λΈλ¬λ¦¬
|
|
4
6
|
|
|
5
7
|
## λ¬Έμ
|
|
@@ -147,4 +149,14 @@ pnpm type-check
|
|
|
147
149
|
pnpm lint
|
|
148
150
|
```
|
|
149
151
|
|
|
152
|
+
### λ¦΄λ¦¬μ¦ λ²μ κ·μΉ
|
|
153
|
+
|
|
154
|
+
- μλ λ°°ν¬: `Actions > Release > Run workflow`μμ `patch/minor/major` μ ν
|
|
155
|
+
- μλ λ°°ν¬(`main` push): κΈ°λ³Έμ `patch`
|
|
156
|
+
- μ»€λ° λ©μμ§μ `chore` λλ `doc`μ΄ ν¬ν¨λλ©΄ μλ λ°°ν¬ μ€ν΅
|
|
157
|
+
- μ»€λ° λ©μμ§μ ν ν°μ λ£μΌλ©΄ λ²μ νμ
μ§μ κ°λ₯
|
|
158
|
+
- `major`: `[major]`
|
|
159
|
+
- `minor`: `[minor]`
|
|
160
|
+
- `patch`: `[patch]` (μλ΅νλ©΄ κΈ°λ³Έ `patch`)
|
|
161
|
+
|
|
150
162
|
<!-- trigger release workflow -->
|