@smilodon/core 1.0.4 → 1.0.5
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 +8 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,13 +77,14 @@ import '@smilodon/core';
|
|
|
77
77
|
<smilodon-select ref={selectRef} />
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
**Optional Framework Adapters** (
|
|
81
|
-
- **React**:
|
|
82
|
-
- **Vue**:
|
|
83
|
-
- **Svelte**:
|
|
84
|
-
- **Angular**:
|
|
85
|
-
|
|
86
|
-
|
|
80
|
+
**Optional Framework Adapters** (for enhanced developer experience):
|
|
81
|
+
- **React**: `npm install @smilodon/react` - React hooks and components
|
|
82
|
+
- **Vue**: `npm install @smilodon/vue` - Vue composables and components
|
|
83
|
+
- **Svelte**: `npm install @smilodon/svelte` - Svelte stores and components
|
|
84
|
+
- **Angular**: `npm install @smilodon/angular` - Angular directives and services
|
|
85
|
+
- **Vanilla**: `npm install @smilodon/vanilla` - Vanilla JS helpers
|
|
86
|
+
|
|
87
|
+
These adapters provide framework-native APIs (hooks, composables, directives) for enhanced developer experience, but are **not required** - the core package works everywhere!
|
|
87
88
|
|
|
88
89
|
See the [main documentation](https://github.com/navidrezadoost/smilodon#readme) for framework-specific examples.
|
|
89
90
|
|