tailwind-to-style 4.0.2 → 5.0.0
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 -0
- package/dist/animations/index.cjs +793 -469
- package/dist/animations/index.esm.js +793 -469
- package/dist/animations/index.esm.js.map +1 -1
- package/dist/className/index.cjs +793 -469
- package/dist/className/index.d.ts +41 -0
- package/dist/className/index.esm.js +793 -469
- package/dist/className/index.esm.js.map +1 -1
- package/dist/core/tws.cjs +322 -182
- package/dist/core/tws.esm.js +322 -182
- package/dist/core/tws.esm.js.map +1 -1
- package/dist/cx.cjs +1 -1
- package/dist/cx.esm.js +1 -1
- package/dist/index.cjs +882 -505
- package/dist/index.esm.js +882 -505
- package/dist/index.esm.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/react/index.cjs +882 -505
- package/dist/react/index.esm.js +882 -505
- package/dist/react/index.esm.js.map +1 -1
- package/dist/tokens/index.cjs +1 -1
- package/dist/tokens/index.esm.js +1 -1
- package/package.json +12 -4
- package/types/README.md +214 -0
package/README.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/tailwind-to-style)
|
|
4
4
|
[](https://bundlephobia.com/package/tailwind-to-style)
|
|
5
5
|
[](https://github.com/Bigetion/tailwind-to-style/blob/main/LICENSE)
|
|
6
|
+
[](./TYPESCRIPT.md)
|
|
6
7
|
|
|
7
8
|
**Zero-build runtime Tailwind CSS engine.** Convert utility classes to real CSS — with variants, slots, design tokens, and React bindings. No build step, no PostCSS, no config file. Just works.
|
|
8
9
|
|
|
10
|
+
**[📘 TypeScript Guide](./TYPESCRIPT.md)** • **[📊 Bundle Analysis](./BUNDLE_SIZE_REPORT.md)** • **[🎯 Examples](./examples/)**
|
|
11
|
+
|
|
9
12
|
---
|
|
10
13
|
|
|
11
14
|
## Why tailwind-to-style?
|