@mittwald/flow-react-components 1.0.10 → 1.0.11
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/AGENTS.md +7 -0
- package/CHANGELOG.md +4 -0
- package/dist/assets/doc-properties.json +42957 -42957
- package/package.json +9 -9
package/AGENTS.md
CHANGED
|
@@ -344,6 +344,13 @@ Easy-to-miss conventions not spelled out above. Full details and examples in
|
|
|
344
344
|
- **CSS leans on modern relational/low-specificity selectors** — `:has`,
|
|
345
345
|
`:where`, logical properties, data attributes, and container boundaries reduce
|
|
346
346
|
the need for runtime styling props.
|
|
347
|
+
- **Foreign SVGs go through `Icon`** — a Tabler icon or a custom SVG placed
|
|
348
|
+
straight into a host that styles its icon slot (`Button` and `Combine` select
|
|
349
|
+
on `:has(.icon)`; eleven components set `Icon` defaults through
|
|
350
|
+
`PropsContext`) never gets the `flow--icon` class, so icon sizing and
|
|
351
|
+
icon-only padding silently do not apply. Wrap it — `<Icon><IconFoo /></Icon>`
|
|
352
|
+
— as the [Icon page](https://flow.mittwald.de/04-components/content/icon)
|
|
353
|
+
documents. Nothing errors: types, lint and the console stay clean.
|
|
347
354
|
- **Universal exports are deliberately explicit** — remote-safe values and their
|
|
348
355
|
types are curated in `flr-universal.ts` independently of the main public
|
|
349
356
|
surface; adding to `public.ts` does not add them there.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.11](https://github.com/mittwald/flow/compare/1.0.10...1.0.11) (2026-08-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @mittwald/flow-react-components
|
|
9
|
+
|
|
6
10
|
## [1.0.10](https://github.com/mittwald/flow/compare/1.0.9...1.0.10) (2026-08-28)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @mittwald/flow-react-components
|