@mittwald/flow-react-components 1.0.6 → 1.0.7

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 CHANGED
@@ -148,15 +148,18 @@ Remote generation details:
148
148
  `AdaptChild*EventHandler<any, ReactElement<…>>` type every event prop carries
149
149
  is not swept in). What it cannot convert is a **function returning** rendered
150
150
  output, because the host has to call it: that needs an eager slot or
151
- `@flr-ignore-props`. `checkSerializableProps` reports the offenders on every
152
- generator run.
151
+ `@flr-ignore-props`. `checkSerializableProps` **fails generation** on any such
152
+ prop, so a new one cannot ship.
153
153
  - `@flr-ignore-props` excludes props that must not cross the remote boundary —
154
154
  either because they cannot be serialized, or because they could do **too much
155
155
  on the host side**. A global ignore list lives in
156
156
  `dev/remote-components-generator/config.ts`: `style` and
157
157
  `dangerouslySetInnerHTML` are always ignored for safety; `ref`, `controller`,
158
- `tunnel`, `key`, `children`, `wrapWith` because they don't serialize. Use the
159
- per-component tag for additional cases (see `TunnelEntry.tsx`).
158
+ `tunnel`, `key`, `children`, `wrapWith` because they don't serialize; and
159
+ `renderEmptyState` plus react-aria's `render` because the host would call them
160
+ and get rendered output back — neither was ever a deliberate Flow API, and
161
+ both cost the whole mutation batch when they were tried. Use the per-component
162
+ tag for additional cases (see `TunnelEntry.tsx`).
160
163
  - After changing props of an `@flr-generate` component:
161
164
  `pnpm nx build:remote-components components` and **commit** the results
162
165
  (view.ts, `src/views/*`, `remote-*/src/auto-generated/**`).
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.7](https://github.com/mittwald/flow/compare/1.0.6...1.0.7) (2026-08-28)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **Table:** will not render in remote ([#2966](https://github.com/mittwald/flow/issues/2966)) ([22929f4](https://github.com/mittwald/flow/commit/22929f4df80ac864921dd889c46af411ef582517))
11
+
6
12
  ## [1.0.6](https://github.com/mittwald/flow/compare/1.0.5...1.0.6) (2026-08-27)
7
13
 
8
14
  ### Bug Fixes