@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.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. 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** (coming soon):
81
- - **React**: `@smilodon/react` - React hooks and components
82
- - **Vue**: `@smilodon/vue` - Vue composables and components
83
- - **Svelte**: `@smilodon/svelte` - Svelte stores and components
84
- - **Angular**: `@smilodon/angular` - Angular directives and services
85
-
86
- These adapters provide framework-native APIs for enhanced developer experience, but are **not required** - the core package works everywhere!
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smilodon/core",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "High-performance native select component with extreme-scale virtualization",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",