jssm 5.154.0 → 5.155.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 +5 -5
- package/custom-elements.json +3 -3
- package/dist/cdn/instance.js +1 -1
- package/dist/cdn/viz.js +1 -1
- package/dist/cli/fsl-export-system-prompt.cjs +1 -1
- package/dist/cli/fsl-render.cjs +1 -1
- package/dist/cli/fsl.cjs +1 -1
- package/dist/cli/lib.cjs +1 -1
- package/dist/cli/lib.mjs +1 -1
- package/dist/deno/README.md +5 -5
- package/dist/deno/jssm.js +1 -1
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/dist/jssm.es6.mjs +1 -1
- package/dist/jssm_viz.cjs +1 -1
- package/dist/jssm_viz.iife.cjs +1 -1
- package/dist/jssm_viz.mjs +1 -1
- package/dist/wc/docs.js +3 -3
- package/dist/wc/widgets.js +7 -7
- package/package.json +1 -1
package/dist/wc/docs.js
CHANGED
|
@@ -2143,10 +2143,10 @@ FslDocs.styles = css `
|
|
|
2143
2143
|
.nav { list-style: none; margin: 0.3rem 0; padding: 0; }
|
|
2144
2144
|
.nav li { margin: 0.1rem 0; }
|
|
2145
2145
|
.nav a { display: block; padding: 0.35rem 0.25rem; border-radius: 4px; }
|
|
2146
|
-
.nav a:hover { background:
|
|
2146
|
+
.nav a:hover { background: color-mix(in srgb, var(--_fsl-text) 12%, transparent); }
|
|
2147
2147
|
.docs-page { font-size: 0.82rem; line-height: 1.55; }
|
|
2148
|
-
.docs-page pre { background: var(--_fsl-
|
|
2149
|
-
.docs-page pre code { font-family:
|
|
2148
|
+
.docs-page pre { background: color-mix(in srgb, var(--_fsl-text) 6%, var(--_fsl-surface)); padding: 0.5rem 0.6rem; border-radius: 6px; overflow-x: auto; }
|
|
2149
|
+
.docs-page pre code { font-family: var(--_fsl-font-mono); font-size: 0.78rem; }
|
|
2150
2150
|
.docs-page .fsl-tok-comment { color: var(--fsl-tok-comment, #7d8590); font-style: italic; }
|
|
2151
2151
|
.docs-page .fsl-tok-string { color: var(--fsl-tok-string, #2e9e5b); }
|
|
2152
2152
|
.docs-page .fsl-tok-action { color: var(--fsl-tok-action, #c2710c); }
|
package/dist/wc/widgets.js
CHANGED
|
@@ -398,13 +398,6 @@ class FslToolbar extends LitElement {
|
|
|
398
398
|
return html `
|
|
399
399
|
<div class="toolbar" part="toolbar" role="toolbar" aria-label="Workbench controls">
|
|
400
400
|
<span class="spacer"></span>
|
|
401
|
-
${host ? html `
|
|
402
|
-
<div class="grp">
|
|
403
|
-
${this.noValidate ? '' : html `
|
|
404
|
-
<button class="tb icon" aria-label="Validate" title="Validate" @click=${() => this._fireAction('fsl-validate')}>${ICON_VALIDATE}</button>`}
|
|
405
|
-
${this.noLint ? '' : html `
|
|
406
|
-
<button class="tb icon" aria-label="Lint" title="Lint" @click=${() => this._fireAction('fsl-lint')}>${ICON_LINT}</button>`}
|
|
407
|
-
</div>` : ''}
|
|
408
401
|
<div class="grp">
|
|
409
402
|
${host
|
|
410
403
|
? this._present.map(p => html `
|
|
@@ -412,6 +405,13 @@ class FslToolbar extends LitElement {
|
|
|
412
405
|
@click=${() => { host.togglePanel(p.slot); this.requestUpdate(); }}>${p.icon}</button>`)
|
|
413
406
|
: ''}
|
|
414
407
|
</div>
|
|
408
|
+
${host ? html `
|
|
409
|
+
<div class="grp">
|
|
410
|
+
${this.noValidate ? '' : html `
|
|
411
|
+
<button class="tb icon" aria-label="Validate" title="Validate" @click=${() => this._fireAction('fsl-validate')}>${ICON_VALIDATE}</button>`}
|
|
412
|
+
${this.noLint ? '' : html `
|
|
413
|
+
<button class="tb icon" aria-label="Lint" title="Lint" @click=${() => this._fireAction('fsl-lint')}>${ICON_LINT}</button>`}
|
|
414
|
+
</div>` : ''}
|
|
415
415
|
<div class="grp">
|
|
416
416
|
<button class="tb layout" aria-haspopup="true" aria-expanded=${this._openMenu === 'layout'} aria-label="Layout" title="Layout" @click=${() => this._toggleMenu('layout')}>${layoutIcon}<span class="caret">▾</span></button>
|
|
417
417
|
${this._openMenu === 'layout' ? html `
|