@klodd/ds 3.5.1 → 3.5.3
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/SKILL.md +7 -4
- package/css/base/typography.css +12 -0
- package/css/components/panel.css +14 -6
- package/package.json +2 -2
package/SKILL.md
CHANGED
|
@@ -97,9 +97,12 @@ En källa, alla projekt ser samma skill automatiskt. Ändringar i
|
|
|
97
97
|
`~/dev/klodd-ds/SKILL.md`, `POLICY.md` eller `references/` syns
|
|
98
98
|
omedelbart i nästa CC-session - ingen synk-fas behövs.
|
|
99
99
|
|
|
100
|
-
Updated: 2026-05-
|
|
100
|
+
Updated: 2026-05-09 (matchar @klodd/ds 3.5.3 - sprint C fas 1+2: ny
|
|
101
101
|
sheet-content.css-komponent (24 BEM-klasser för Sprint-65-pattern),
|
|
102
102
|
foreman-typografi-utokning (.text-caption/-tiny/-num/-num--display/-positive/-warning),
|
|
103
|
-
btn-modifiers (--block, --add),
|
|
104
|
-
|
|
105
|
-
|
|
103
|
+
btn-modifiers (--block, --add), .heading (17px medium tight), och utokningar
|
|
104
|
+
i panel/setting-row/chip.
|
|
105
|
+
v3.5.2 rattade .panel--attention__pill (felaktig BEM) till .panel__pill +
|
|
106
|
+
context-styling via .panel--attention .panel__pill.
|
|
107
|
+
v3.5.3 lagger till .heading-utan-N (17px) for dialog-titlar och sheet-rubriker.
|
|
108
|
+
Sprint C fas 2 template-migration pagaar.)
|
package/css/base/typography.css
CHANGED
|
@@ -62,6 +62,18 @@
|
|
|
62
62
|
text-transform: uppercase;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
/* .heading (utan -N) - 17px medium tight. Anvands for sheet-titlar
|
|
66
|
+
och dialog-titlar dar .heading-2 (18px) ar for stort och .heading-3
|
|
67
|
+
(15px) for litet. Tillagd v3.5.3 (2026-05-09) - tackar in .heading-
|
|
68
|
+
forekomster som tidigare bodde i Ekonoms components.css. */
|
|
69
|
+
.heading {
|
|
70
|
+
font-size: var(--fs-17);
|
|
71
|
+
font-weight: var(--fw-medium);
|
|
72
|
+
line-height: var(--lh-tight);
|
|
73
|
+
letter-spacing: var(--ls-tight);
|
|
74
|
+
color: var(--text-default);
|
|
75
|
+
}
|
|
76
|
+
|
|
65
77
|
|
|
66
78
|
/* ================================================================
|
|
67
79
|
==== BRODTEXT (storleksbaserad)
|
package/css/components/panel.css
CHANGED
|
@@ -83,23 +83,31 @@
|
|
|
83
83
|
color: var(--warning);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
/* Pill inom
|
|
87
|
-
|
|
88
|
-
.panel--attention__pill
|
|
86
|
+
/* Pill-element inom panel - generisk, neutral default. Anvands for
|
|
87
|
+
count-badges, status-indikatorer i panel-headers. v3.5.2 (rattad
|
|
88
|
+
fran v3.5.1 .panel--attention__pill till korrekt BEM). */
|
|
89
|
+
.panel__pill {
|
|
89
90
|
display: inline-flex;
|
|
90
91
|
align-items: center;
|
|
91
92
|
height: 24px;
|
|
92
93
|
padding: 0 var(--space-10);
|
|
93
|
-
background: var(--
|
|
94
|
-
color: var(--
|
|
94
|
+
background: var(--surface-default);
|
|
95
|
+
color: var(--text-muted);
|
|
95
96
|
font-size: var(--fs-12);
|
|
96
97
|
font-weight: var(--fw-medium);
|
|
97
|
-
border: 1px solid var(--
|
|
98
|
+
border: 1px solid var(--border-default);
|
|
98
99
|
border-radius: var(--radius-full);
|
|
99
100
|
white-space: nowrap;
|
|
100
101
|
font-variant-numeric: tabular-nums;
|
|
101
102
|
}
|
|
102
103
|
|
|
104
|
+
/* Context-styling: pill inom attention-panel arver warning-fargschema. */
|
|
105
|
+
.panel--attention .panel__pill {
|
|
106
|
+
background: var(--warning-dim);
|
|
107
|
+
color: var(--warning);
|
|
108
|
+
border-color: var(--warning-border);
|
|
109
|
+
}
|
|
110
|
+
|
|
103
111
|
.panel__step-row {
|
|
104
112
|
display: flex;
|
|
105
113
|
align-items: center;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@klodd/ds",
|
|
3
|
-
"version": "3.5.
|
|
4
|
-
"description": "Klodd Design System - shared tokens, typography, components and JS for Jubb, Ekonom, and future apps. v3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
|
+
"description": "Klodd Design System - shared tokens, typography, components and JS for Jubb, Ekonom, and future apps. v3.5.3 (2026-05-09): tillagg .heading (17px medium tight) i base/typography.css for dialog-titlar och sheet-rubriker. Tackar luckan mellan .heading-2 (18px) och .heading-3 (15px) - matchar Ekonoms gamla .heading-class.",
|
|
5
5
|
"main": "css/index.css",
|
|
6
6
|
"bin": {
|
|
7
7
|
"klodd-ds": "./bin/klodd-ds.js"
|