@pixelmatters/markup 1.4.0 → 1.4.1

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.
Files changed (3) hide show
  1. package/README.md +6 -6
  2. package/dist/widget.js +277 -269
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,9 +35,9 @@ CDN drop-in (no build step) — paste this just before `</body>`:
35
35
  ```html
36
36
  <script type="module">
37
37
  // Pin the exact version — esm.sh resolves it from npm
38
- import { init } from 'https://esm.sh/@pixelmatters/markup@1.4.0'
38
+ import { init } from 'https://esm.sh/@pixelmatters/markup@1.4.1'
39
39
  // or
40
- // import { init } from 'https://esm.run/@pixelmatters/markup@1.4.0'
40
+ // import { init } from 'https://esm.run/@pixelmatters/markup@1.4.1'
41
41
 
42
42
  init({
43
43
  apiUrl: 'https://your-deployment.convex.site',
@@ -49,14 +49,14 @@ CDN drop-in (no build step) — paste this just before `</body>`:
49
49
  </script>
50
50
  ```
51
51
 
52
- > **Why pin the version?** CDN URLs without a version (`@pixelmatters/markup`) resolve to whatever's `latest` on npm — a future major release will break your page silently. Always pin (`@pixelmatters/markup@1.4.0`).
52
+ > **Why pin the version?** CDN URLs without a version (`@pixelmatters/markup`) resolve to whatever's `latest` on npm — a future major release will break your page silently. Always pin (`@pixelmatters/markup@1.4.1`).
53
53
 
54
54
  If your platform doesn't allow inline JS (some CMS / page-builder editors), use the auto-init form instead — point a `<script src=…>` at the bundle and pass config via `data-*` attributes:
55
55
 
56
56
  ```html
57
57
  <script
58
58
  type="module"
59
- src="https://esm.sh/@pixelmatters/markup@1.4.0"
59
+ src="https://esm.sh/@pixelmatters/markup@1.4.1"
60
60
  data-markup-widget="true"
61
61
  data-api-url="https://your-deployment.convex.site"
62
62
  data-api-key="markup_..."
@@ -244,7 +244,7 @@ For a `<script>` tag drop-in (no bundler), use the inline ESM form and **pin the
244
244
 
245
245
  ```html
246
246
  <script type="module">
247
- import { init } from 'https://esm.sh/@pixelmatters/markup@1.4.0'
247
+ import { init } from 'https://esm.sh/@pixelmatters/markup@1.4.1'
248
248
 
249
249
  init({
250
250
  apiUrl: '...',
@@ -261,7 +261,7 @@ If inline JS is disallowed (some CMS / page-builder editors), use the auto-init
261
261
  ```html
262
262
  <script
263
263
  type="module"
264
- src="https://esm.sh/@pixelmatters/markup@1.4.0"
264
+ src="https://esm.sh/@pixelmatters/markup@1.4.1"
265
265
  data-markup-widget="true"
266
266
  data-api-url="..."
267
267
  data-api-key="..."