@barocss/browser 0.0.1 → 0.4.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 +2 -2
- package/dist/cdn/barocss.js +307 -229
- package/dist/cdn/barocss.js.map +1 -1
- package/dist/cdn/barocss.umd.cjs +1 -1
- package/dist/cdn/barocss.umd.cjs.map +1 -1
- package/dist/index.d.ts +268 -5
- package/dist/index.es.js +63 -53
- package/dist/index.umd.js +3 -3
- package/package.json +10 -6
- package/dist/baro-boot.d.ts +0 -8
- package/dist/browser-runtime.d.ts +0 -119
- package/dist/change-detector.d.ts +0 -80
- package/dist/style-partition-manager.d.ts +0 -51
- package/dist/utils.d.ts +0 -2
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ document.body.innerHTML = `
|
|
|
68
68
|
</div>
|
|
69
69
|
|
|
70
70
|
<script type="module">
|
|
71
|
-
import { BrowserRuntime } from 'https://unpkg.com/@barocss/browser/dist/
|
|
71
|
+
import { BrowserRuntime } from 'https://unpkg.com/@barocss/browser@latest/dist/cdn/barocss.js';
|
|
72
72
|
|
|
73
73
|
const runtime = new BrowserRuntime();
|
|
74
74
|
runtime.observe(document.body, { scan: true });
|
|
@@ -270,4 +270,4 @@ This project is licensed under the MIT License - see the [LICENSE](../../LICENSE
|
|
|
270
270
|
|
|
271
271
|
---
|
|
272
272
|
|
|
273
|
-
**@barocss/browser** - Real-time CSS generation for browsers.
|
|
273
|
+
**@barocss/browser** - Real-time CSS generation for browsers.
|