@kungal/ui-tokens 1.9.0 → 1.9.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/CHANGELOG.md +15 -0
- package/package.json +1 -1
- package/src/palette.generated.css +1 -1
- package/src/tokens.css +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @kungal/ui-tokens
|
|
2
2
|
|
|
3
|
+
## 1.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7a2c64d: fix(vue,tokens): bordered inputs, softer shadows, lighter page background
|
|
8
|
+
|
|
9
|
+
- Form controls (Input, Textarea, Select, NumberInput, Autocomplete, DatePicker,
|
|
10
|
+
TagInput flat, PinInput, Pagination jump field, Select's inline search) get a
|
|
11
|
+
card-like neutral border back on top of the filled surface — the borderless
|
|
12
|
+
fill was too hard to spot on a card. Error state recolours the border to danger
|
|
13
|
+
instead of a persistent ring. (= the shadcn "border + fill + subtle shadow" input.)
|
|
14
|
+
- Elevation scale softened ~30% across all three tiers (sm/md/lg) — lighter, tighter
|
|
15
|
+
shadows on cards, inputs, dropdowns, modals.
|
|
16
|
+
- Light page background nudged brighter (#f2f2f5 → #f4f4f7). Dark unchanged.
|
|
17
|
+
|
|
3
18
|
## 1.9.0
|
|
4
19
|
|
|
5
20
|
## 1.8.3
|
package/package.json
CHANGED
package/src/tokens.css
CHANGED
|
@@ -106,11 +106,11 @@
|
|
|
106
106
|
* sm → tooltips / small hints
|
|
107
107
|
* md → popovers, dropdowns, menus, select & date lists, toasts
|
|
108
108
|
* lg → modals, drawers (the highest surfaces) */
|
|
109
|
-
--shadow-kun-sm: 0
|
|
109
|
+
--shadow-kun-sm: 0 1px 5px -2px rgb(0 0 0 / 0.08);
|
|
110
110
|
--shadow-kun-md:
|
|
111
|
-
0
|
|
111
|
+
0 3px 10px -4px rgb(0 0 0 / 0.07), 0 6px 18px -6px rgb(0 0 0 / 0.1);
|
|
112
112
|
--shadow-kun-lg:
|
|
113
|
-
0
|
|
113
|
+
0 6px 18px -8px rgb(0 0 0 / 0.11), 0 12px 36px -12px rgb(0 0 0 / 0.16);
|
|
114
114
|
|
|
115
115
|
/* Animations */
|
|
116
116
|
--animate-shake: shake 1s ease-in-out;
|