@knime/kds-styles 0.0.14 → 0.0.16

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.
@@ -1,3 +1,3 @@
1
1
  @import "modern-normalize/modern-normalize.css";
2
- @import "./variables";
2
+ @import "@knime/kds-styles/kds-variables.css";
3
3
  @import "./basics";
@@ -1769,7 +1769,7 @@ syntax: "<color>";
1769
1769
  @property --kds-color-blanket-default {
1770
1770
  syntax: "<color>";
1771
1771
  inherits: true;
1772
- initial-value: hsl(330 0% 11% / 0.8);
1772
+ initial-value: light-dark(hsl(330 0% 11% / 0.8), hsl(240 0% 13% / 0.6));
1773
1773
  }
1774
1774
 
1775
1775
  @property --kds-color-nodes-and-variables-flow-variable {
@@ -2564,6 +2564,12 @@ syntax: "<length>";
2564
2564
  initial-value: AUTO;
2565
2565
  }
2566
2566
 
2567
+ @property --kds-spacing-offset-focus {
2568
+ syntax: "<length>";
2569
+ inherits: false;
2570
+ initial-value: 1px;
2571
+ }
2572
+
2567
2573
  @property --kds-spacing-input-label-spacing-bottom {
2568
2574
  syntax: "<length>";
2569
2575
  inherits: false;
@@ -2690,6 +2696,24 @@ syntax: "<length>";
2690
2696
  initial-value: 64px;
2691
2697
  }
2692
2698
 
2699
+ @property --kds-dimension-component-width-25x {
2700
+ syntax: "<length>";
2701
+ inherits: false;
2702
+ initial-value: 400px;
2703
+ }
2704
+
2705
+ @property --kds-dimension-component-width-32x {
2706
+ syntax: "<length>";
2707
+ inherits: false;
2708
+ initial-value: 512px;
2709
+ }
2710
+
2711
+ @property --kds-dimension-component-width-45x {
2712
+ syntax: "<length>";
2713
+ inherits: false;
2714
+ initial-value: 720px;
2715
+ }
2716
+
2693
2717
  @property --kds-dimension-icon-0-56x {
2694
2718
  syntax: "<length>";
2695
2719
  inherits: false;
@@ -297,7 +297,7 @@
297
297
  --kds-color-border-neutral-bold-active: light-dark(hsl(345 0% 10% / 0.74), hsl(330 0% 99% / 0.68));
298
298
  --kds-color-focus-outline: light-dark(hsl(209 57% 50%), hsl(214 92% 77%));
299
299
  --kds-color-focus-background: light-dark(hsl(217 100% 97%), hsl(211.86 41.035% 17.864%));
300
- --kds-color-blanket-default: hsl(330 0% 11% / 0.8);
300
+ --kds-color-blanket-default: light-dark(hsl(330 0% 11% / 0.8), hsl(240 0% 13% / 0.6));
301
301
  --kds-color-nodes-and-variables-flow-variable: light-dark(hsl(360 84% 63%), hsl(0 100% 66%));
302
302
  --kds-color-nodes-and-variables-loop: hsl(188 52% 77%);
303
303
  --kds-color-nodes-and-variables-manipulator: hsl(51 100% 50%);
@@ -430,6 +430,7 @@
430
430
  --kds-spacing-container-4x: 64px;
431
431
  --kds-spacing-container-5x: 80px;
432
432
  --kds-spacing-container-auto: AUTO;
433
+ --kds-spacing-offset-focus: 1px;
433
434
  --kds-spacing-input-label-spacing-bottom: 6px;
434
435
  --kds-spacing-sub-text-spacing-top: 4px;
435
436
  --kds-dimension-component-height-0-25x: 4px;
@@ -451,6 +452,9 @@
451
452
  --kds-dimension-component-width-1-75x: 28px;
452
453
  --kds-dimension-component-width-2-25x: 36px;
453
454
  --kds-dimension-component-width-4x: 64px;
455
+ --kds-dimension-component-width-25x: 400px;
456
+ --kds-dimension-component-width-32x: 512px;
457
+ --kds-dimension-component-width-45x: 720px;
454
458
  --kds-dimension-icon-0-56x: 9px;
455
459
  --kds-dimension-icon-0-75x: 12px;
456
460
  --kds-dimension-icon-1x: 16px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/kds-styles",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Package containing the design tokens and icons for the KNIME Design System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "jsdom": "^27.0.0",
23
23
  "style-dictionary": "^5.1.1",
24
24
  "svgo": "^4.0.0",
25
- "typescript": "^5.9.2"
25
+ "typescript": "^5.9.3"
26
26
  },
27
27
  "files": [
28
28
  "dist"
@@ -1,5 +0,0 @@
1
- @import "@knime/kds-styles/kds-variables.css";
2
-
3
- :root {
4
- --kds-focus-outline-offset: 1px;
5
- }