@arkyn/components 3.0.1-beta.23 → 3.0.1-beta.25
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 +2 -0
- package/dist/bundle.js +1821 -1353
- package/dist/bundle.umd.cjs +177 -1
- package/dist/components/popover/index.d.ts +146 -0
- package/dist/components/popover/index.d.ts.map +1 -0
- package/dist/components/popover/index.js +151 -0
- package/dist/components/tab/tabContainer/index.d.ts +1 -1
- package/dist/components/tab/tabContainer/index.d.ts.map +1 -1
- package/dist/hooks/useToast.d.ts +70 -0
- package/dist/hooks/useToast.d.ts.map +1 -0
- package/dist/hooks/useToast.js +72 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/providers/toastProvider.d.ts +48 -0
- package/dist/providers/toastProvider.d.ts.map +1 -0
- package/dist/providers/toastProvider.js +73 -0
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
@@ -89,6 +89,7 @@ function App() {
|
|
89
89
|
- **Modal** - Modal dialogs
|
90
90
|
- **Tooltip** - Contextual tooltips
|
91
91
|
- **Badge** - Status and count badges
|
92
|
+
- **Popover** - Floating content containers with positioning
|
92
93
|
|
93
94
|
### Layout
|
94
95
|
|
@@ -111,6 +112,7 @@ function App() {
|
|
111
112
|
- **useHydrated** - Check if component is hydrated
|
112
113
|
- **useScopedParams** - URL parameter utilities
|
113
114
|
- **useScrollLock** - Prevent page scrolling
|
115
|
+
- **useToast** - Toast state management
|
114
116
|
|
115
117
|
## 🎨 Component Examples
|
116
118
|
|