@dbosoft/nextjs-uicore 1.7.0-pre.0 → 1.7.0-pre.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @dbosoft/nextjs-uicore
2
2
 
3
+ ## 1.7.0-pre.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 164d932: Surface system: WCAG-validated surface composition with flat nesting.
8
+ - 5 surface classes: `surface-base`, `surface-alt`, `surface-recede`, `surface-wash`, `surface-bold`
9
+ - Surfaces nest freely — no `child-*` indirection needed
10
+ - Tailwind utilities: `text-on-primary`, `text-on-secondary`, `text-on-muted`, `text-on-brand`, `text-on-link`, `decoration-on-link`, `bg-on-brand-emph`
11
+ - Text token migration: `text-content-primary` → `text-on-primary`, `text-content-secondary` → `text-on-secondary`, `text-content-muted` → `text-on-muted`, `text-link` → `text-on-link`
12
+ - Dark mode uses dark blue surfaces (hue 215°) with wide lightness steps
13
+ - 10 surfaces (5 light + 5 dark), ~50 foreground pairings, 0 FAIL
14
+ - `bg-surface-*` tokens remain valid for interactive states, overlays, dropdowns
15
+ - **Breaking:** Removed `child-container`, `child-zone-light`, `child-zone-dark`, `child-emphasis`, `border-child`, `bg-child-*`
16
+ - **Breaking:** Renamed `surface-page` → `surface-base`, `surface-page-alt` → `surface-alt`, `surface-page-recede` → `surface-recede`, `surface-brand-wash` → `surface-wash`, `surface-brand-bold` → `surface-bold`
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [164d932]
21
+ - @dbosoft/react-uicore@1.5.0-pre.1
22
+
3
23
  ## 1.7.0-pre.0
4
24
 
5
25
  ### Minor Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "DEPRECATED: Use @dbosoft/react-uicore/tabs for pure React tabs and @dbosoft/nextjs-site-core/ui/tabs for Next.js integration. All other components (head, subnav, themeselector) are replaced by @dbosoft/nextjs-site-core.",
4
4
  "deprecated": true,
5
5
  "author": "dbosoft",
6
- "version": "1.7.0-pre.0",
6
+ "version": "1.7.0-pre.1",
7
7
  "sideEffects": false,
8
8
  "license": "MIT",
9
9
  "exports": {
@@ -23,8 +23,8 @@
23
23
  "react": "^19.0.0",
24
24
  "react-dom": "^19.0.0",
25
25
  "typescript": "^5.8.0",
26
- "@dbosoft/typescript-config": "1.1.0",
27
26
  "@dbosoft/eslint-config": "2.0.0",
27
+ "@dbosoft/typescript-config": "1.1.0",
28
28
  "@dbosoft/web-types": "1.0.0"
29
29
  },
30
30
  "publishConfig": {
@@ -39,7 +39,7 @@
39
39
  "@heroicons/react": ">=2.1.0",
40
40
  "clsx": ">=2.1.0",
41
41
  "next-themes": ">=0.4.3",
42
- "@dbosoft/react-uicore": "1.5.0-pre.0"
42
+ "@dbosoft/react-uicore": "1.5.0-pre.1"
43
43
  },
44
44
  "scripts": {
45
45
  "check-types": "tsc --noEmit",