@mittwald/flow-react-components 0.1.0-alpha.427 → 0.1.0-alpha.428
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
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0-alpha.428](https://github.com/mittwald/flow/compare/0.1.0-alpha.427...0.1.0-alpha.428) (2025-02-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **LabeledValue:** support button in labeled value
|
|
11
|
+
([#1175](https://github.com/mittwald/flow/issues/1175))
|
|
12
|
+
([3a8f699](https://github.com/mittwald/flow/commit/3a8f699ba17e749b57e9337904920a8607356137))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
6
19
|
# [0.1.0-alpha.427](https://github.com/mittwald/flow/compare/0.1.0-alpha.426...0.1.0-alpha.427) (2025-02-14)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @mittwald/flow-react-components
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.flow--labeled-value{display:grid;grid-template-areas:"label" "value";row-gap:var(--labeled-value--label-to-value-spacing);column-gap:var(--labeled-value--value-to-action-spacing);grid-template-rows:auto 1fr}.flow--labeled-value:has(.flow--labeled-value--button){grid-template-areas:"label label " "value button";grid-template-columns:auto 1fr}.flow--labeled-value .flow--labeled-value--label{grid-area:label}.flow--labeled-value .flow--labeled-value--button{grid-area:button;align-self:start;justify-self:start}
|
|
1
|
+
.flow--labeled-value{display:grid;grid-template-areas:"label" "value";row-gap:var(--labeled-value--label-to-value-spacing);column-gap:var(--labeled-value--value-to-action-spacing);grid-template-rows:auto 1fr}.flow--labeled-value:has(.flow--labeled-value--button:not(:nth-child(2))){grid-template-areas:"label label " "value button";grid-template-columns:auto 1fr}.flow--labeled-value .flow--labeled-value--label{grid-area:label}.flow--labeled-value .flow--labeled-value--button:not(:nth-child(2)){grid-area:button;align-self:start;justify-self:start}
|