@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kungal/ui-tokens",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "KunUI design tokens — framework-agnostic Tailwind v4 theme (semantic colors, radius, z-index, animations).",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -117,7 +117,7 @@
117
117
 
118
118
  @layer base {
119
119
  :root {
120
- --background: 0.962 0.004 286.32;
120
+ --background: 0.968 0.004 286.33;
121
121
  --foreground: 0.2057 0.0132 233.66;
122
122
  --content1: 1 0 0;
123
123
  --content2: 0.9683 0.0014 286.37;
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 2px 8px -2px rgb(0 0 0 / 0.12);
109
+ --shadow-kun-sm: 0 1px 5px -2px rgb(0 0 0 / 0.08);
110
110
  --shadow-kun-md:
111
- 0 4px 12px -4px rgb(0 0 0 / 0.1), 0 8px 24px -6px rgb(0 0 0 / 0.14);
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 8px 24px -8px rgb(0 0 0 / 0.14), 0 16px 48px -12px rgb(0 0 0 / 0.22);
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;