@dbosoft/nextjs-uicore 1.7.0-pre.0 → 1.7.0-pre.2
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 +28 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @dbosoft/nextjs-uicore
|
|
2
2
|
|
|
3
|
+
## 1.7.0-pre.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f5e91c0: Tabs: add dual-mode routing (path or query parameter) with configurable param name for multiple tab groups on the same page.
|
|
8
|
+
- Updated dependencies [f5e91c0]
|
|
9
|
+
- @dbosoft/react-uicore@1.5.0-pre.2
|
|
10
|
+
|
|
11
|
+
## 1.7.0-pre.1
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 164d932: Surface system: WCAG-validated surface composition with flat nesting.
|
|
16
|
+
- 5 surface classes: `surface-base`, `surface-alt`, `surface-recede`, `surface-wash`, `surface-bold`
|
|
17
|
+
- Surfaces nest freely — no `child-*` indirection needed
|
|
18
|
+
- Tailwind utilities: `text-on-primary`, `text-on-secondary`, `text-on-muted`, `text-on-brand`, `text-on-link`, `decoration-on-link`, `bg-on-brand-emph`
|
|
19
|
+
- 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`
|
|
20
|
+
- Dark mode uses dark blue surfaces (hue 215°) with wide lightness steps
|
|
21
|
+
- 10 surfaces (5 light + 5 dark), ~50 foreground pairings, 0 FAIL
|
|
22
|
+
- `bg-surface-*` tokens remain valid for interactive states, overlays, dropdowns
|
|
23
|
+
- **Breaking:** Removed `child-container`, `child-zone-light`, `child-zone-dark`, `child-emphasis`, `border-child`, `bg-child-*`
|
|
24
|
+
- **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`
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [164d932]
|
|
29
|
+
- @dbosoft/react-uicore@1.5.0-pre.1
|
|
30
|
+
|
|
3
31
|
## 1.7.0-pre.0
|
|
4
32
|
|
|
5
33
|
### 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.
|
|
6
|
+
"version": "1.7.0-pre.2",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"exports": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"react-dom": "^19.0.0",
|
|
25
25
|
"typescript": "^5.8.0",
|
|
26
26
|
"@dbosoft/typescript-config": "1.1.0",
|
|
27
|
-
"@dbosoft/
|
|
28
|
-
"@dbosoft/
|
|
27
|
+
"@dbosoft/web-types": "1.0.0",
|
|
28
|
+
"@dbosoft/eslint-config": "2.0.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
@@ -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.
|
|
42
|
+
"@dbosoft/react-uicore": "1.5.0-pre.2"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"check-types": "tsc --noEmit",
|