@rcarls/rc-theme-substrate 0.4.0 → 0.4.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.
- package/CHANGELOG.md +59 -0
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# @rcarls/rc-theme-substrate
|
|
2
|
+
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
## 0.4.0
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- e57277f: Add Material 3 search-view, fixed-pane splitter, dialog scrim, and resize enhancements.
|
|
10
|
+
|
|
11
|
+
`rc-search-bar` now supports `variant="view"`, controlled/default open state, search-view methods, a rich `suggestions` slot, and datalist-derived text suggestions. `rc-splitter` adds `mode="fixed"` for clampable pixel primary panes. `rc-common` now honors CSS max-size constraints during resize gestures, and `rc-dialog` exposes a scrim token plus resize handle/origin hooks used by themed surfaces.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 9c7476d: Add theme-specific rc-button progress treatments, including compact Material spinners and
|
|
16
|
+
Substrate percentage indicators.
|
|
17
|
+
- ebec800: Dock bottom sheets without a theme to the viewport block-end by default and
|
|
18
|
+
support absolute positioning for non-modal sheets contained by a positioned ancestor.
|
|
19
|
+
Center authored drag handles with a splitter-aligned pill treatment. Align the
|
|
20
|
+
Material theme with its surface, elevation, scrim, drag-handle, and contextual
|
|
21
|
+
button treatment.
|
|
22
|
+
- e88eff8: Refine semantic card-title typography and icon-button alignment across both
|
|
23
|
+
themes. Simplify Substrate navigation selection, match its bottom-sheet handle
|
|
24
|
+
to the splitter grip, improve inverse notification action contrast, and theme the
|
|
25
|
+
Markdown editor's composed controls.
|
|
26
|
+
- 6f91e7a: Fix collapsed `rc-navigation-rail` items so the whole item's box wraps icon and
|
|
27
|
+
label, not just the icon. The shared component pulled the label out of flow
|
|
28
|
+
(`position: absolute`), so a theme's whole-item background or focus ring only
|
|
29
|
+
covered the icon; Material's detached-pill layout now lives in its own theme
|
|
30
|
+
stylesheet instead of the shared base. Substrate's collapsed rail also grows
|
|
31
|
+
from `5rem` to `6rem` so single-word labels like "Settings" stop wrapping.
|
|
32
|
+
- dce5749: Replace the navigation rail's shadow-DOM fallback toggle with a consumer-authored light-DOM
|
|
33
|
+
button, and align collapsed and expanded item layouts across the default and reference themes.
|
|
34
|
+
- 55e8ab5: Preserve UA-like control and surface styling until an optional theme supplies decorative tokens.
|
|
35
|
+
Restore themed button hover and pressed state layers, including a pointer-origin Material ripple.
|
|
36
|
+
- 4d118ff: Share icon-font size and line-height tokens across themed component icon markers.
|
|
37
|
+
- 3e89095: Replace rc-menu's generated submenu glyph with an author-supplied `indicator`
|
|
38
|
+
slot on rc-menu-button. Keep the decorative indicator inside the trigger bounds,
|
|
39
|
+
reserve label space for it, and expose theme-neutral size, color, and inset
|
|
40
|
+
tokens for Material, Substrate, and application themes.
|
|
41
|
+
- c96f40c: Use a native system font stack by default.
|
|
42
|
+
- 979b989: Use a zero default gap for tighter chip content layout and a smaller default
|
|
43
|
+
font size for slotted remove icons. Derive removable content padding from the
|
|
44
|
+
remove target width and chip gap so the label and trailing icon stay aligned.
|
|
45
|
+
|
|
46
|
+
## 0.3.2
|
|
47
|
+
|
|
48
|
+
## 0.3.1
|
|
49
|
+
|
|
50
|
+
## 0.3.0
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Add Substrate as a lightweight CSS reference theme for branded app foundations.
|
|
55
|
+
- Add scoped defaults, token bridges, component polish, and docs preview integration.
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
|
|
59
|
+
- Update package metadata, README intro, and docs links.
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.4.
|
|
6
|
+
"version": "0.4.1",
|
|
7
7
|
"description": "Lightweight CSS reference theme for app-oriented rc-webcomponents layouts.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -41,4 +41,4 @@
|
|
|
41
41
|
"vite": "^7.1.7",
|
|
42
42
|
"vitest": "^4.0.6"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|