@keenmate/web-multiselect 1.0.0-rc02 → 1.0.0-rc04
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 +11 -0
- package/dist/multiselect.js +540 -523
- package/dist/multiselect.umd.js +11 -11
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/scss/_input-dropdown.scss +1 -0
- package/src/scss/_pills-display.scss +2 -2
- package/src/scss/_rtl.scss +142 -0
- package/src/scss/_variables.scss +2 -2
- package/src/scss/main.scss +2 -0
- package/dist/index.d.ts +0 -26
- package/dist/multiselect.d.ts +0 -117
- package/dist/types.d.ts +0 -187
- package/dist/web-component.d.ts +0 -103
package/README.md
CHANGED
|
@@ -528,6 +528,17 @@ For users with a build system, you can import and customize the SCSS:
|
|
|
528
528
|
- Firefox 63+
|
|
529
529
|
- Safari 10.1+
|
|
530
530
|
|
|
531
|
+
## SSR Compatibility
|
|
532
|
+
|
|
533
|
+
⚠️ **Important for SSR frameworks (SvelteKit, Next.js, Nuxt, etc.):**
|
|
534
|
+
|
|
535
|
+
This is a **client-side only** web component that uses Shadow DOM and browser APIs. While the module is safe to import during Server-Side Rendering (it won't crash), the component will only work in the browser.
|
|
536
|
+
|
|
537
|
+
**The component automatically handles SSR compatibility** - no special configuration needed. However, be aware that:
|
|
538
|
+
- The component will not render during SSR
|
|
539
|
+
- It will only become interactive after hydration in the browser
|
|
540
|
+
- No special client-side import wrappers are required
|
|
541
|
+
|
|
531
542
|
## Development
|
|
532
543
|
|
|
533
544
|
```bash
|