@kolkrabbi/kol-component 0.205.0 → 0.206.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/package.json +1 -1
- package/src/organisms/Canvas.jsx +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.206.0",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/organisms/Canvas.jsx
CHANGED
|
@@ -868,7 +868,11 @@ function GuideLine({ axis, screenPos, interactive, onGrab }) {
|
|
|
868
868
|
...(h
|
|
869
869
|
? { left: 0, top: slop, width: '100%', height: 1 }
|
|
870
870
|
: { left: slop, top: 0, width: 1, height: '100%' }),
|
|
871
|
-
|
|
871
|
+
/* GUIDES ARE NOT THE ACCENT (editor-chrome-review, kol-fxr
|
|
872
|
+
2026-09-03 — ruled magenta, deliberately separated so a guide and
|
|
873
|
+
a selection never read as the same thing). Falls back to the
|
|
874
|
+
accent, so a consumer that binds nothing is unchanged. */
|
|
875
|
+
background: 'var(--kol-canvas-guide, var(--kol-accent-primary))',
|
|
872
876
|
}}
|
|
873
877
|
/>
|
|
874
878
|
</div>
|