@undefine-ui/design-system 2.4.0 → 2.6.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 +5 -4
- package/dist/index.cjs +507 -331
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -3
- package/dist/index.d.ts +56 -3
- package/dist/index.js +483 -311
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,16 +76,17 @@ Storybook (`pnpm dev:storybook`) documents each component and token surface.
|
|
|
76
76
|
|
|
77
77
|
### Icon library
|
|
78
78
|
|
|
79
|
-
The package includes a comprehensive icon library with
|
|
79
|
+
The package includes a comprehensive icon library with 26 SVG icons organized by category.
|
|
80
80
|
|
|
81
81
|
**Available icons:**
|
|
82
82
|
|
|
83
83
|
- **Navigation:** NavArrowLeft, NavArrowRight, NavArrowDown, LongArrowUpLeftSolid
|
|
84
84
|
- **User:** UserFill, UserOutline
|
|
85
85
|
- **Form Controls:** CheckboxDefault, CheckboxSelect, CheckboxIndeterminate, RadioDefault, RadioSelect
|
|
86
|
-
- **Actions:** Search, Copy, Trash, XMark, XMarkSolid, CloudUpload
|
|
87
|
-
- **Feedback:** InfoCircleFill, InfoCircleOutline, ClipboardCheck, Loader
|
|
86
|
+
- **Actions:** Search, Copy, Trash, XMark, XMarkSolid, CloudUpload, Settings
|
|
87
|
+
- **Feedback:** InfoCircleFill, InfoCircleOutline, ClipboardCheck, Loader, BellNotification
|
|
88
88
|
- **Visibility:** Eye, EyeClosed
|
|
89
|
+
- **System:** KeyCommand
|
|
89
90
|
|
|
90
91
|
**Usage:**
|
|
91
92
|
|
|
@@ -172,7 +173,7 @@ Everything is re-exported from `src/index.ts`. Key groups:
|
|
|
172
173
|
| Group | Exports |
|
|
173
174
|
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
174
175
|
| Components | `CopyButton`, `HookForm` helpers (`Form`, `Field`, `RHFSwitch`, etc.), `Icon`, `Logo`, `LoadingScreen`, `Table`, `Upload` |
|
|
175
|
-
| Hooks | `useBoolean`, `useCopyToClipboard`, `useEventListener`, `useLocalStorage`, `useResponsive`, `useSettings`, `useSetState`, `useScrollOffsetTop`
|
|
176
|
+
| Hooks | `useBoolean`, `useCopyToClipboard`, `useEventListener`, `useLocalStorage`, `useResponsive`, `useSettings`, `useSetState`, `useScrollOffsetTop`, `usePopover` |
|
|
176
177
|
| Contexts | `SettingsProvider`, `SettingsContext`, `defaultSettings`, `SettingsValueProps` |
|
|
177
178
|
| Theme | `ThemeProvider`, `createTheme`, `colorSchemes`, `components`, `palette`, `radius`, `shadows`, `customSpacing`, utilities such as `varAlpha`, `bgGradient`, `hideScrollX/Y` |
|
|
178
179
|
| Utilities | `changeCase` helpers, `formatNumber`, generic `helpers` |
|