@mhmo91/schmancy 0.10.14 → 0.10.15

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.
@@ -203,7 +203,7 @@ The manifest already has everything needed; the package is just the JSON-RPC wra
203
203
 
204
204
  **Problem.** `handover/agent-runtime-v1.md` had `<PENDING>` placeholders that we manually replaced with `0.9.13` after the first publish. Future handover docs will have the same issue.
205
205
 
206
- **Fix.** A build step that substitutes `0.10.14` in `handover/**/*.md` against `package.json`'s `version` field on every build. `dist/handover/**/*.md` gets the rendered version; the source stays templated.
206
+ **Fix.** A build step that substitutes `0.10.15` in `handover/**/*.md` against `package.json`'s `version` field on every build. `dist/handover/**/*.md` gets the rendered version; the source stays templated.
207
207
 
208
208
  **Effort:** ~30 min (one sed step or a tiny script).
209
209
 
@@ -7,8 +7,8 @@
7
7
  ## The URLs you asked for
8
8
 
9
9
  ```
10
- https://esm.sh/@mhmo91/schmancy/agent@0.10.14
11
- https://esm.sh/@mhmo91/schmancy/agent/manifest@0.10.14
10
+ https://esm.sh/@mhmo91/schmancy/agent@0.10.15
11
+ https://esm.sh/@mhmo91/schmancy/agent/manifest@0.10.15
12
12
  ```
13
13
 
14
14
  `0.9.13` is the first release containing `/agent`; every subsequent publish serves the same subpath. `npm view @mhmo91/schmancy version` always returns the current pin if you want to float forward.
@@ -20,7 +20,7 @@ One script tag. No bundler, no bare specifiers, no npm install.
20
20
  ```html
21
21
  <!doctype html>
22
22
  <script type="module">
23
- import { $dialog, theme } from 'https://esm.sh/@mhmo91/schmancy/agent@0.10.14';
23
+ import { $dialog, theme } from 'https://esm.sh/@mhmo91/schmancy/agent@0.10.15';
24
24
  </script>
25
25
  <schmancy-theme root scheme="dark">
26
26
  <schmancy-surface type="solid" fill="all">
@@ -493,3 +493,8 @@ the element — useful when only one or two namespaces need scoping.
493
493
  later moves into a different `<schmancy-context>` subtree, the
494
494
  cached reference lags. Read inline (`cart.value`, `cart.$`) instead
495
495
  of caching.
496
+ - **NO_DUPLICATE_FIELD_ACROSS_STATES.** Two `state(...)` declarations
497
+ do not carry the same field; the second declaration is removed and
498
+ consumers read the first. *Remediation:* delete the second
499
+ `state(...)` and replace its readers with reads of the field on the
500
+ pre-existing state.
@@ -493,3 +493,8 @@ the element — useful when only one or two namespaces need scoping.
493
493
  later moves into a different `<schmancy-context>` subtree, the
494
494
  cached reference lags. Read inline (`cart.value`, `cart.$`) instead
495
495
  of caching.
496
+ - **NO_DUPLICATE_FIELD_ACROSS_STATES.** Two `state(...)` declarations
497
+ do not carry the same field; the second declaration is removed and
498
+ consumers read the first. *Remediation:* delete the second
499
+ `state(...)` and replace its readers with reads of the field on the
500
+ pre-existing state.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mhmo91/schmancy",
3
- "version": "0.10.14",
3
+ "version": "0.10.15",
4
4
  "description": "UI library build with web components",
5
5
  "main": "./dist/index.js",
6
6
  "customElements": "custom-elements.json",
@@ -493,3 +493,8 @@ the element — useful when only one or two namespaces need scoping.
493
493
  later moves into a different `<schmancy-context>` subtree, the
494
494
  cached reference lags. Read inline (`cart.value`, `cart.$`) instead
495
495
  of caching.
496
+ - **NO_DUPLICATE_FIELD_ACROSS_STATES.** Two `state(...)` declarations
497
+ do not carry the same field; the second declaration is removed and
498
+ consumers read the first. *Remediation:* delete the second
499
+ `state(...)` and replace its readers with reads of the field on the
500
+ pre-existing state.