@mcp-b/design-tokens 0.20.1 → 0.20.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-b/design-tokens",
3
- "version": "0.20.1",
3
+ "version": "0.20.5",
4
4
  "description": "Shared design tokens for MCP-B React applications.",
5
5
  "homepage": "https://mcp-b-design-system-storybook.alexmnahas.workers.dev",
6
6
  "bugs": {
package/src/focus.css CHANGED
@@ -6,4 +6,6 @@
6
6
  --sigvelo-focus-width: 3px;
7
7
  --sigvelo-focus-offset: 1px;
8
8
  --sigvelo-backdrop-filter: blur(6px);
9
+ /* Focus ring used in forced-colors mode, where the box-shadow ring is dropped. */
10
+ --sigvelo-focus-ring-forced: 2px solid Highlight;
9
11
  }
package/src/motion.css CHANGED
@@ -13,6 +13,9 @@
13
13
  --sigvelo-motion-duration-presence: var(--sigvelo-duration-fast);
14
14
  --sigvelo-motion-duration-disclosure: var(--sigvelo-duration-medium);
15
15
  --sigvelo-motion-duration-layout: var(--sigvelo-duration-slow);
16
+ /* Looping "busy/streaming" text shimmer sweep. Not reduced with the
17
+ interaction scale — reduced motion turns the shimmer off entirely. */
18
+ --sigvelo-motion-duration-shimmer: 2400ms;
16
19
 
17
20
  --sigvelo-motion-ease-enter: var(--sigvelo-ease-emphasized);
18
21
  --sigvelo-motion-ease-exit: var(--sigvelo-ease-accelerate);