@ngrr/ds 0.1.5 → 0.1.6

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/dist/tokens.css CHANGED
@@ -447,6 +447,7 @@
447
447
 
448
448
  --space-form-vertical: var(--space-comfortable);
449
449
  --space-toolbar-standard: var(--space-small);
450
+ --page-margin-x: var(--inset-large); /* 16px */
450
451
 
451
452
 
452
453
  /* =============================================================================
@@ -601,6 +602,7 @@
601
602
  --surface-toggle-off: var(--primitive-alpha-light-5);
602
603
  --effects-emboss-button-secondary-top: var(--primitive-alpha-light-5);
603
604
  --effects-emboss-button-secondary-bottom: var(--primitive-alpha-dark-20);
605
+ --surface-button-secondary-hover: var(--primitive-neutral-800);
604
606
 
605
607
  /* ── Effects — shadow color sub-tokens only ──────────────────────── */
606
608
  /* Composite box-shadows auto-update because they reference these via var() */
@@ -609,6 +611,7 @@
609
611
  --effects-shadow-inner-dark-soft: var(--primitive-alpha-dark-20);
610
612
  --effects-shadow-inner-dark-strong: var(--primitive-neutral-black);
611
613
  --effects-shadow-inner-light-strong: var(--primitive-alpha-light-5);
614
+ --effects-separators-emboss-light: var(--primitive-alpha-light-5);
612
615
 
613
616
  } /* end [data-theme="dark"] */
614
617
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngrr/ds",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "main": "./dist/ds-nagarro.umd.js",
5
5
  "module": "./dist/ds-nagarro.es.js",
6
6
  "types": "./dist/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  "scripts": {
15
15
  "build": "vite build && cp tokens.css dist/tokens.css",
16
16
  "storybook": "storybook dev -p 6006",
17
- "build-storybook": "storybook build",
17
+ "build-storybook": "storybook build -o storybook-static",
18
18
  "typecheck": "tsc --noEmit",
19
19
  "test": "vitest run",
20
20
  "test:a11y:keyboard-widgets": "vitest run src/components/atoms/MenuCell/MenuCell.test.tsx src/components/atoms/Select/Select.test.tsx src/components/atoms/PhoneInput/PhoneInput.test.tsx src/components/molecules/ChoiceList/ChoiceList.test.tsx src/components/organisms/PopoverMenu/PopoverMenu.test.tsx src/components/atoms/DateTimePicker/DateTimePicker.test.tsx src/components/molecules/Slider/Slider.test.tsx src/components/atoms/OTPInput/OTPInput.test.tsx",