@pixelmatters/markup 1.18.0 → 1.18.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.
- package/README.md +6 -6
- package/dist/widget.js +3 -3
- package/dist/widget.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,9 +37,9 @@ CDN drop-in (no build step) — paste this just before `</body>`:
|
|
|
37
37
|
```html
|
|
38
38
|
<script type="module">
|
|
39
39
|
// Pin the exact version — esm.sh resolves it from npm
|
|
40
|
-
import { init } from 'https://esm.sh/@pixelmatters/markup@1.18.
|
|
40
|
+
import { init } from 'https://esm.sh/@pixelmatters/markup@1.18.1'
|
|
41
41
|
// or
|
|
42
|
-
// import { init } from 'https://esm.run/@pixelmatters/markup@1.18.
|
|
42
|
+
// import { init } from 'https://esm.run/@pixelmatters/markup@1.18.1'
|
|
43
43
|
|
|
44
44
|
init({
|
|
45
45
|
apiUrl: 'https://your-deployment.convex.site',
|
|
@@ -50,14 +50,14 @@ CDN drop-in (no build step) — paste this just before `</body>`:
|
|
|
50
50
|
</script>
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
> **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.18.
|
|
53
|
+
> **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.18.1`).
|
|
54
54
|
|
|
55
55
|
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:
|
|
56
56
|
|
|
57
57
|
```html
|
|
58
58
|
<script
|
|
59
59
|
type="module"
|
|
60
|
-
src="https://esm.sh/@pixelmatters/markup@1.18.
|
|
60
|
+
src="https://esm.sh/@pixelmatters/markup@1.18.1"
|
|
61
61
|
data-markup-widget="true"
|
|
62
62
|
data-api-url="https://your-deployment.convex.site"
|
|
63
63
|
data-api-key="markup_..."
|
|
@@ -358,7 +358,7 @@ For a `<script>` tag drop-in (no bundler), use the inline ESM form and **pin the
|
|
|
358
358
|
|
|
359
359
|
```html
|
|
360
360
|
<script type="module">
|
|
361
|
-
import { init } from 'https://esm.sh/@pixelmatters/markup@1.18.
|
|
361
|
+
import { init } from 'https://esm.sh/@pixelmatters/markup@1.18.1'
|
|
362
362
|
|
|
363
363
|
init({
|
|
364
364
|
apiUrl: '...',
|
|
@@ -374,7 +374,7 @@ If inline JS is disallowed (some CMS / page-builder editors), use the auto-init
|
|
|
374
374
|
```html
|
|
375
375
|
<script
|
|
376
376
|
type="module"
|
|
377
|
-
src="https://esm.sh/@pixelmatters/markup@1.18.
|
|
377
|
+
src="https://esm.sh/@pixelmatters/markup@1.18.1"
|
|
378
378
|
data-markup-widget="true"
|
|
379
379
|
data-api-url="..."
|
|
380
380
|
data-api-key="..."
|
package/dist/widget.js
CHANGED
|
@@ -7495,7 +7495,7 @@ function Dc({ apiUrl: e, apiKey: t, position: n = "bottom-right", screenshots: r
|
|
|
7495
7495
|
onOpenPrivacy: () => C("privacy"),
|
|
7496
7496
|
onOpenShortcuts: () => C("shortcuts"),
|
|
7497
7497
|
onHideForSession: () => Ce({ type: "hide-with-toast" }),
|
|
7498
|
-
version: "1.18.
|
|
7498
|
+
version: "1.18.1",
|
|
7499
7499
|
dashboardUrl: i
|
|
7500
7500
|
})
|
|
7501
7501
|
}) : null,
|
|
@@ -7592,11 +7592,11 @@ function jc(e, t) {
|
|
|
7592
7592
|
a.className = "markup-shadow-root", r.appendChild(a), je({
|
|
7593
7593
|
apiUrl: t.apiUrl,
|
|
7594
7594
|
apiKey: t.apiKey,
|
|
7595
|
-
widgetVersion: "1.18.
|
|
7595
|
+
widgetVersion: "1.18.1"
|
|
7596
7596
|
}), be(t.analytics === !1 ? null : {
|
|
7597
7597
|
apiUrl: t.apiUrl,
|
|
7598
7598
|
apiKey: t.apiKey,
|
|
7599
|
-
widgetVersion: "1.18.
|
|
7599
|
+
widgetVersion: "1.18.1"
|
|
7600
7600
|
}), F("widget_loaded");
|
|
7601
7601
|
let { theme: o, analytics: s, ...c } = t;
|
|
7602
7602
|
return de(/* @__PURE__ */ Q(Ce, {
|