@indxsearch/systm 1.2.1 → 1.2.2

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 CHANGED
@@ -66,13 +66,12 @@ import '@indxsearch/systm/cursors.css'; // Optional custom cursors
66
66
 
67
67
  All cursors automatically adapt to dark mode via `prefers-color-scheme`.
68
68
 
69
- ## Patterns (Optional)
69
+ ## Patterns
70
70
 
71
- Systm includes optional SVG patterns as CSS custom properties. Import the patterns stylesheet to enable:
71
+ Systm includes SVG patterns as CSS custom properties, automatically bundled in `styles.css`:
72
72
 
73
73
  ```tsx
74
- import '@indxsearch/systm/styles.css';
75
- import '@indxsearch/systm/patterns.css'; // Optional SVG patterns
74
+ import '@indxsearch/systm/styles.css'; // Patterns included by default
76
75
  ```
77
76
 
78
77
  **Available patterns:**
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import './globals/globals.css';
2
+ import './globals/patterns.css';
2
3
  export { Button } from './components/Button/Button';
3
4
  export { Checkbox } from './components/Checkbox/Checkbox';
4
5
  export { Base, type BaseProps } from './components/Base/Base';