Skip to content

Commit 78ed006

Browse files
TimTim
authored andcommitted
Merge branch 'main' into Nickzlos-text-guidelines
2 parents 0664b96 + 07a0672 commit 78ed006

File tree

24 files changed

+60
-14
lines changed

24 files changed

+60
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-alpha.325](https://github.com/mittwald/flow/compare/0.2.0-alpha.324...0.2.0-alpha.325) (2025-07-03)
7+
8+
### Bug Fixes
9+
10+
* **TextArea:** fix default value ([#1711](https://github.com/mittwald/flow/issues/1711)) ([26106fb](https://github.com/mittwald/flow/commit/26106fbdb21d26ce6880bc735eefac53e24171bc))
11+
612
# [0.2.0-alpha.324](https://github.com/mittwald/flow/compare/0.2.0-alpha.323...0.2.0-alpha.324) (2025-07-03)
713

814
**Note:** Version bump only for package @mittwald/flow-project
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
component: Text
3-
description: Die Text-Komponente wird verwendet, um Texte zu gruppieren.
3+
description: Die Text-Component sorgt für eine konsistente Formatierung und Strukturierung von Text.
44
---
55

66
<LiveCodeEditor editorDisabled />

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"packages": [
55
"packages/*"
66
],
7-
"version": "0.2.0-alpha.324"
7+
"version": "0.2.0-alpha.325"
88
}

packages/components/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-alpha.325](https://github.com/mittwald/flow/compare/0.2.0-alpha.324...0.2.0-alpha.325) (2025-07-03)
7+
8+
### Bug Fixes
9+
10+
* **TextArea:** fix default value ([#1711](https://github.com/mittwald/flow/issues/1711)) ([26106fb](https://github.com/mittwald/flow/commit/26106fbdb21d26ce6880bc735eefac53e24171bc))
11+
612
# [0.2.0-alpha.324](https://github.com/mittwald/flow/compare/0.2.0-alpha.323...0.2.0-alpha.324) (2025-07-03)
713

814
**Note:** Version bump only for package @mittwald/flow-react-components

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mittwald/flow-react-components",
3-
"version": "0.2.0-alpha.324",
3+
"version": "0.2.0-alpha.325",
44
"type": "module",
55
"description": "A React implementation of Flow, mittwald’s design system",
66
"homepage": "https://mittwald.github.io/flow",

packages/components/src/components/TextArea/TextArea.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export const TextArea = flowComponent("TextArea", (props) => {
2828
const {
2929
children,
3030
placeholder,
31-
defaultValue,
3231
rows = 5,
3332
autoResizeMaxRows = rows,
3433
ref,
@@ -61,7 +60,6 @@ export const TextArea = flowComponent("TextArea", (props) => {
6160
className={styles.textArea}
6261
ref={mergeRefs(localRef, ref)}
6362
onChange={updateHeight}
64-
defaultValue={defaultValue}
6563
style={{
6664
minHeight: getHeight(rows),
6765
maxHeight: getHeight(autoResizeMaxRows),

packages/design-tokens/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-alpha.325](https://github.com/mittwald/flow/compare/0.2.0-alpha.324...0.2.0-alpha.325) (2025-07-03)
7+
8+
**Note:** Version bump only for package @mittwald/flow-design-tokens
9+
610
# [0.2.0-alpha.324](https://github.com/mittwald/flow/compare/0.2.0-alpha.323...0.2.0-alpha.324) (2025-07-03)
711

812
**Note:** Version bump only for package @mittwald/flow-design-tokens

packages/design-tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mittwald/flow-design-tokens",
3-
"version": "0.2.0-alpha.324",
3+
"version": "0.2.0-alpha.325",
44
"type": "module",
55
"description": "The design tokens used in Flow, mittwald’s design system",
66
"homepage": "https://github.com/mittwald/flow/tree/main/packages/design-tokens",

packages/ext-bridge/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-alpha.325](https://github.com/mittwald/flow/compare/0.2.0-alpha.324...0.2.0-alpha.325) (2025-07-03)
7+
8+
**Note:** Version bump only for package @mittwald/ext-bridge
9+
610
# [0.2.0-alpha.324](https://github.com/mittwald/flow/compare/0.2.0-alpha.323...0.2.0-alpha.324) (2025-07-03)
711

812
**Note:** Version bump only for package @mittwald/ext-bridge

packages/ext-bridge/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mittwald/ext-bridge",
3-
"version": "0.2.0-alpha.324",
3+
"version": "0.2.0-alpha.325",
44
"type": "module",
55
"description": "Bridge for mStudio embedded frontend extensions",
66
"homepage": "https://mittwald.github.io/flow",

0 commit comments

Comments
 (0)