@indxsearch/systm 1.2.1 → 1.2.3
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 +3 -4
- package/dist/index.d.ts +1 -0
- package/dist/systm.css +1 -1
- package/package.json +18 -3
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
|
|
69
|
+
## Patterns
|
|
70
70
|
|
|
71
|
-
Systm includes
|
|
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