@mittwald/flow-remote-react-components 1.0.6 → 1.1.0-next.0
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/README.md +11 -3
- package/USAGE.md +148 -0
- package/dist/js/auto-generated/RatingSegment.mjs +92 -0
- package/dist/js/auto-generated/RatingSegment.mjs.map +1 -0
- package/dist/js/auto-generated/index.mjs +3 -1
- package/dist/js/auto-generated/index.mjs.map +1 -1
- package/dist/js/index.mjs +2 -1
- package/dist/js/version.mjs +1 -1
- package/dist/types/auto-generated/RatingSegment.d.ts +4 -0
- package/dist/types/auto-generated/RatingSegment.d.ts.map +1 -0
- package/dist/types/auto-generated/index.d.ts +1 -0
- package/dist/types/auto-generated/index.d.ts.map +1 -1
- package/package.json +12 -10
package/README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# @mittwald/flow-remote-react-components
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
The React API for building **mStudio extension** UIs. Components are generated
|
|
4
|
+
from `@mittwald/flow-react-components` and render on the mStudio host through
|
|
5
|
+
Flow's remote-DOM layer.
|
|
6
|
+
|
|
7
|
+
Part of [Flow – mittwald design system](https://flow.mittwald.de/).
|
|
8
|
+
|
|
9
|
+
**[USAGE.md](./USAGE.md)** — how to build an extension with this package: the
|
|
10
|
+
remote component surface, which props cross the boundary, what survives
|
|
11
|
+
serialization. Read
|
|
12
|
+
[the components package's USAGE.md](https://www.npmjs.com/package/@mittwald/flow-react-components?activeTab=code)
|
|
13
|
+
alongside it for the shared component and layout rules.
|
|
6
14
|
|
|
7
15
|
## Migrate from Flow to Flow-Remote
|
|
8
16
|
|
package/USAGE.md
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
# Using Flow Remote — guide for agents and developers
|
|
2
|
+
|
|
3
|
+
How to build an **mStudio extension** with
|
|
4
|
+
`@mittwald/flow-remote-react-components`.
|
|
5
|
+
|
|
6
|
+
This package's components are generated from
|
|
7
|
+
[`@mittwald/flow-react-components`](https://www.npmjs.com/package/@mittwald/flow-react-components)
|
|
8
|
+
and have the same names, props and composition rules. **Read that package's
|
|
9
|
+
`USAGE.md` first** — component selection, layout and spacing, what is safe to
|
|
10
|
+
depend on, and where the documentation lives. It applies here unchanged; nothing
|
|
11
|
+
below repeats it.
|
|
12
|
+
|
|
13
|
+
What follows is only what is different because your UI renders across a process
|
|
14
|
+
boundary.
|
|
15
|
+
|
|
16
|
+
## The model
|
|
17
|
+
|
|
18
|
+
Your extension runs in a hidden iframe. It does not render DOM — it builds a
|
|
19
|
+
tree of `flr-*` elements that is serialized to the mStudio host, which
|
|
20
|
+
materializes it with the real Flow components. You write ordinary React; the
|
|
21
|
+
boundary is invisible until you hit one of the limits below.
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
your extension (iframe) mStudio (host)
|
|
25
|
+
RemoteRoot + these components ─────────► real Flow components
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
`RemoteRoot` is the entry point. It connects to the host's render root and
|
|
29
|
+
initializes the extension bridge:
|
|
30
|
+
|
|
31
|
+
```tsx
|
|
32
|
+
import { RemoteRoot } from "@mittwald/flow-remote-react-components/RemoteRoot";
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The full explainer:
|
|
36
|
+
<https://github.com/mittwald/flow/blob/main/docs/remote-ui.md>.
|
|
37
|
+
|
|
38
|
+
## Not every component exists remotely
|
|
39
|
+
|
|
40
|
+
**114 of Flow's 124 public components are available here.** The
|
|
41
|
+
[component index](https://www.npmjs.com/package/@mittwald/flow-react-components)
|
|
42
|
+
(`@mittwald/flow-react-components/component-index`) records this per component:
|
|
43
|
+
|
|
44
|
+
```jsonc
|
|
45
|
+
{
|
|
46
|
+
"Button": {
|
|
47
|
+
"remote": { "available": true, "excludedProps": ["style", "wrapWith"] },
|
|
48
|
+
},
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Check `remote.available` before reaching for a component. These ten have no
|
|
53
|
+
remote counterpart:
|
|
54
|
+
|
|
55
|
+
`Activity`, `ComponentDefaultsProvider`, `FormAction`, `FormRootError`,
|
|
56
|
+
`FormSettingsProvider`, `LinkProvider`, `Overlay`, `OverlayTrigger`,
|
|
57
|
+
`RouterProvider`, `SuspenseTrigger`
|
|
58
|
+
|
|
59
|
+
Three components move to a different address: `Field`, `ResetButton` and
|
|
60
|
+
`SubmitButton` come from
|
|
61
|
+
`@mittwald/flow-remote-react-components/react-hook-form` here, not from the root
|
|
62
|
+
barrel. `Form` lives in the root barrel and is hand-written for the remote side
|
|
63
|
+
— it is not the same implementation as the local one.
|
|
64
|
+
|
|
65
|
+
## Not every prop crosses
|
|
66
|
+
|
|
67
|
+
Some props are dropped at the boundary, either because they cannot be serialized
|
|
68
|
+
or because they would let the extension do too much on the host.
|
|
69
|
+
`remote.excludedProps` in the component index lists what a given component
|
|
70
|
+
loses. Measured across all remote components:
|
|
71
|
+
|
|
72
|
+
| Prop | Affected components |
|
|
73
|
+
| ------------ | ------------------- |
|
|
74
|
+
| `wrapWith` | 76 |
|
|
75
|
+
| `style` | 38 |
|
|
76
|
+
| `controller` | 8 |
|
|
77
|
+
|
|
78
|
+
Plus a handful of one-offs (`components`, `componentProps`, `providerId`,
|
|
79
|
+
`ref`).
|
|
80
|
+
|
|
81
|
+
- **No `style`.** There is no inline-style escape hatch here. Layout comes from
|
|
82
|
+
`Flex`, `Section` and `ColumnLayout` — the same rule as locally, but without a
|
|
83
|
+
way around it.
|
|
84
|
+
- **No `wrapWith`.** Compose instead.
|
|
85
|
+
- **`className` does cross** (70 components keep it). It is the same escape
|
|
86
|
+
hatch as locally, and the same advice applies: reaching for it usually means a
|
|
87
|
+
Flow component already covers the case.
|
|
88
|
+
- **`children` cross as element children**, not as a prop, so composition works
|
|
89
|
+
exactly as usual.
|
|
90
|
+
|
|
91
|
+
## What survives serialization
|
|
92
|
+
|
|
93
|
+
Props are serialized with `FlowThreadSerialization`
|
|
94
|
+
([remote-core](https://github.com/mittwald/flow/blob/main/packages/remote-core/src/serialization/FlowThreadSerialization.ts)).
|
|
95
|
+
Worth knowing before you design a prop payload:
|
|
96
|
+
|
|
97
|
+
- **Functions cross** as proxies — callbacks and event handlers work, including
|
|
98
|
+
ones that return values.
|
|
99
|
+
- **`Date`, `File`, `FileList`, `FormData`** and dragged text have dedicated
|
|
100
|
+
serializers and arrive intact. So do `Map`, `Set` and arrays.
|
|
101
|
+
- **`HTMLElement` and `window` are dropped to `null`.** There is no DOM to hand
|
|
102
|
+
over.
|
|
103
|
+
- **Plain objects are shallow-copied.** A class instance therefore arrives as a
|
|
104
|
+
plain object **without its methods** — pass data, not behaviour-carrying
|
|
105
|
+
objects.
|
|
106
|
+
|
|
107
|
+
## Props are a contract
|
|
108
|
+
|
|
109
|
+
Your extension is compiled against one version of this package but runs against
|
|
110
|
+
whatever Flow version the mStudio host has deployed — the two are released
|
|
111
|
+
independently. The connection protocol is versioned and the host handles older
|
|
112
|
+
remote versions on purpose, because extensions in the wild keep connecting with
|
|
113
|
+
the version they shipped with.
|
|
114
|
+
|
|
115
|
+
Two consequences:
|
|
116
|
+
|
|
117
|
+
- **Props of these components are treated as a contract.** They are not broken;
|
|
118
|
+
a superseded prop keeps working and warns at runtime through
|
|
119
|
+
`DeprecationWarningProvider`. That is why upgrading rarely breaks you.
|
|
120
|
+
- **The reverse is not guaranteed.** A prop added in a Flow version newer than
|
|
121
|
+
the host's is not something the host knows about. Do not assume a brand-new
|
|
122
|
+
prop takes effect immediately after you bump the dependency.
|
|
123
|
+
|
|
124
|
+
Read the
|
|
125
|
+
[migration notes](https://github.com/mittwald/flow/blob/main/packages/components/MIGRATION.md)
|
|
126
|
+
before upgrading — they cover the remote elements too.
|
|
127
|
+
|
|
128
|
+
## Mistakes to avoid
|
|
129
|
+
|
|
130
|
+
Beyond the ones in the components package's `USAGE.md`:
|
|
131
|
+
|
|
132
|
+
- Do not import from `@mittwald/flow-react-components` in extension code — those
|
|
133
|
+
are the host-side components and will not render. Import from this package.
|
|
134
|
+
- Do not reach for the DOM. There is no document to query, no element to
|
|
135
|
+
measure, no portal target — `HTMLElement` and `window` are dropped at the
|
|
136
|
+
boundary.
|
|
137
|
+
- Do not assume a component exists remotely because it exists locally. Check
|
|
138
|
+
`remote.available`.
|
|
139
|
+
- Do not pass class instances and expect their methods to arrive. Pass data.
|
|
140
|
+
|
|
141
|
+
## Links
|
|
142
|
+
|
|
143
|
+
- Flow documentation — <https://flow.mittwald.de> (machine-readable at
|
|
144
|
+
`/llms.txt`, `/llms.json`, `/raw/<path>.md`; written in German)
|
|
145
|
+
- mStudio extension development — <https://developer.mittwald.de>
|
|
146
|
+
- Remote-UI explainer —
|
|
147
|
+
<https://github.com/mittwald/flow/blob/main/docs/remote-ui.md>
|
|
148
|
+
- Source and issues — <https://github.com/mittwald/flow>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteRatingSegmentElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
//#region src/auto-generated/RatingSegment.ts
|
|
7
|
+
var RatingSegment = createFlowRemoteComponent("flr-rating-segment", "RatingSegment", RemoteRatingSegmentElement, {
|
|
8
|
+
slotProps: { wrapper: "flr-slot-root-wrapper" },
|
|
9
|
+
eventProps: {
|
|
10
|
+
onAnimationEnd: { event: "animationEnd" },
|
|
11
|
+
onAnimationEndCapture: { event: "animationEndCapture" },
|
|
12
|
+
onAnimationIteration: { event: "animationIteration" },
|
|
13
|
+
onAnimationIterationCapture: { event: "animationIterationCapture" },
|
|
14
|
+
onAnimationStart: { event: "animationStart" },
|
|
15
|
+
onAnimationStartCapture: { event: "animationStartCapture" },
|
|
16
|
+
onAuxClick: { event: "auxClick" },
|
|
17
|
+
onAuxClickCapture: { event: "auxClickCapture" },
|
|
18
|
+
onBlur: { event: "blur" },
|
|
19
|
+
onClick: { event: "click" },
|
|
20
|
+
onClickCapture: { event: "clickCapture" },
|
|
21
|
+
onContextMenu: { event: "contextMenu" },
|
|
22
|
+
onContextMenuCapture: { event: "contextMenuCapture" },
|
|
23
|
+
onDoubleClick: { event: "doubleClick" },
|
|
24
|
+
onDoubleClickCapture: { event: "doubleClickCapture" },
|
|
25
|
+
onFocus: { event: "focus" },
|
|
26
|
+
onFocusChange: { event: "focusChange" },
|
|
27
|
+
onGotPointerCapture: { event: "gotPointerCapture" },
|
|
28
|
+
onGotPointerCaptureCapture: { event: "gotPointerCaptureCapture" },
|
|
29
|
+
onHoverChange: { event: "hoverChange" },
|
|
30
|
+
onHoverEnd: { event: "hoverEnd" },
|
|
31
|
+
onHoverStart: { event: "hoverStart" },
|
|
32
|
+
onKeyDown: { event: "keyDown" },
|
|
33
|
+
onKeyUp: { event: "keyUp" },
|
|
34
|
+
onLostPointerCapture: { event: "lostPointerCapture" },
|
|
35
|
+
onLostPointerCaptureCapture: { event: "lostPointerCaptureCapture" },
|
|
36
|
+
onMouseDown: { event: "mouseDown" },
|
|
37
|
+
onMouseDownCapture: { event: "mouseDownCapture" },
|
|
38
|
+
onMouseEnter: { event: "mouseEnter" },
|
|
39
|
+
onMouseLeave: { event: "mouseLeave" },
|
|
40
|
+
onMouseMove: { event: "mouseMove" },
|
|
41
|
+
onMouseMoveCapture: { event: "mouseMoveCapture" },
|
|
42
|
+
onMouseOut: { event: "mouseOut" },
|
|
43
|
+
onMouseOutCapture: { event: "mouseOutCapture" },
|
|
44
|
+
onMouseOver: { event: "mouseOver" },
|
|
45
|
+
onMouseOverCapture: { event: "mouseOverCapture" },
|
|
46
|
+
onMouseUp: { event: "mouseUp" },
|
|
47
|
+
onMouseUpCapture: { event: "mouseUpCapture" },
|
|
48
|
+
onPointerCancel: { event: "pointerCancel" },
|
|
49
|
+
onPointerCancelCapture: { event: "pointerCancelCapture" },
|
|
50
|
+
onPointerDown: { event: "pointerDown" },
|
|
51
|
+
onPointerDownCapture: { event: "pointerDownCapture" },
|
|
52
|
+
onPointerEnter: { event: "pointerEnter" },
|
|
53
|
+
onPointerLeave: { event: "pointerLeave" },
|
|
54
|
+
onPointerMove: { event: "pointerMove" },
|
|
55
|
+
onPointerMoveCapture: { event: "pointerMoveCapture" },
|
|
56
|
+
onPointerOut: { event: "pointerOut" },
|
|
57
|
+
onPointerOutCapture: { event: "pointerOutCapture" },
|
|
58
|
+
onPointerOver: { event: "pointerOver" },
|
|
59
|
+
onPointerOverCapture: { event: "pointerOverCapture" },
|
|
60
|
+
onPointerUp: { event: "pointerUp" },
|
|
61
|
+
onPointerUpCapture: { event: "pointerUpCapture" },
|
|
62
|
+
onPress: { event: "press" },
|
|
63
|
+
onPressChange: { event: "pressChange" },
|
|
64
|
+
onPressEnd: { event: "pressEnd" },
|
|
65
|
+
onPressStart: { event: "pressStart" },
|
|
66
|
+
onPressUp: { event: "pressUp" },
|
|
67
|
+
onScroll: { event: "scroll" },
|
|
68
|
+
onScrollCapture: { event: "scrollCapture" },
|
|
69
|
+
onTouchCancel: { event: "touchCancel" },
|
|
70
|
+
onTouchCancelCapture: { event: "touchCancelCapture" },
|
|
71
|
+
onTouchEnd: { event: "touchEnd" },
|
|
72
|
+
onTouchEndCapture: { event: "touchEndCapture" },
|
|
73
|
+
onTouchMove: { event: "touchMove" },
|
|
74
|
+
onTouchMoveCapture: { event: "touchMoveCapture" },
|
|
75
|
+
onTouchStart: { event: "touchStart" },
|
|
76
|
+
onTouchStartCapture: { event: "touchStartCapture" },
|
|
77
|
+
onTransitionCancel: { event: "transitionCancel" },
|
|
78
|
+
onTransitionCancelCapture: { event: "transitionCancelCapture" },
|
|
79
|
+
onTransitionEnd: { event: "transitionEnd" },
|
|
80
|
+
onTransitionEndCapture: { event: "transitionEndCapture" },
|
|
81
|
+
onTransitionRun: { event: "transitionRun" },
|
|
82
|
+
onTransitionRunCapture: { event: "transitionRunCapture" },
|
|
83
|
+
onTransitionStart: { event: "transitionStart" },
|
|
84
|
+
onTransitionStartCapture: { event: "transitionStartCapture" },
|
|
85
|
+
onWheel: { event: "wheel" },
|
|
86
|
+
onWheelCapture: { event: "wheelCapture" }
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
//#endregion
|
|
90
|
+
export { RatingSegment };
|
|
91
|
+
|
|
92
|
+
//# sourceMappingURL=RatingSegment.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RatingSegment.mjs","names":[],"sources":["../../../src/auto-generated/RatingSegment.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteRatingSegmentElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteRatingSegmentElement } from \"@mittwald/flow-remote-elements\";\n\nexport const RatingSegment = createFlowRemoteComponent(\n \"flr-rating-segment\",\n \"RatingSegment\",\n RemoteRatingSegmentElement,\n {\n slotProps: {\n wrapper: \"flr-slot-root-wrapper\",\n },\n eventProps: {\n onAnimationEnd: { event: \"animationEnd\" } as never,\n onAnimationEndCapture: { event: \"animationEndCapture\" } as never,\n onAnimationIteration: { event: \"animationIteration\" } as never,\n onAnimationIterationCapture: {\n event: \"animationIterationCapture\",\n } as never,\n onAnimationStart: { event: \"animationStart\" } as never,\n onAnimationStartCapture: { event: \"animationStartCapture\" } as never,\n onAuxClick: { event: \"auxClick\" } as never,\n onAuxClickCapture: { event: \"auxClickCapture\" } as never,\n onBlur: { event: \"blur\" } as never,\n onClick: { event: \"click\" } as never,\n onClickCapture: { event: \"clickCapture\" } as never,\n onContextMenu: { event: \"contextMenu\" } as never,\n onContextMenuCapture: { event: \"contextMenuCapture\" } as never,\n onDoubleClick: { event: \"doubleClick\" } as never,\n onDoubleClickCapture: { event: \"doubleClickCapture\" } as never,\n onFocus: { event: \"focus\" } as never,\n onFocusChange: { event: \"focusChange\" } as never,\n onGotPointerCapture: { event: \"gotPointerCapture\" } as never,\n onGotPointerCaptureCapture: {\n event: \"gotPointerCaptureCapture\",\n } as never,\n onHoverChange: { event: \"hoverChange\" } as never,\n onHoverEnd: { event: \"hoverEnd\" } as never,\n onHoverStart: { event: \"hoverStart\" } as never,\n onKeyDown: { event: \"keyDown\" } as never,\n onKeyUp: { event: \"keyUp\" } as never,\n onLostPointerCapture: { event: \"lostPointerCapture\" } as never,\n onLostPointerCaptureCapture: {\n event: \"lostPointerCaptureCapture\",\n } as never,\n onMouseDown: { event: \"mouseDown\" } as never,\n onMouseDownCapture: { event: \"mouseDownCapture\" } as never,\n onMouseEnter: { event: \"mouseEnter\" } as never,\n onMouseLeave: { event: \"mouseLeave\" } as never,\n onMouseMove: { event: \"mouseMove\" } as never,\n onMouseMoveCapture: { event: \"mouseMoveCapture\" } as never,\n onMouseOut: { event: \"mouseOut\" } as never,\n onMouseOutCapture: { event: \"mouseOutCapture\" } as never,\n onMouseOver: { event: \"mouseOver\" } as never,\n onMouseOverCapture: { event: \"mouseOverCapture\" } as never,\n onMouseUp: { event: \"mouseUp\" } as never,\n onMouseUpCapture: { event: \"mouseUpCapture\" } as never,\n onPointerCancel: { event: \"pointerCancel\" } as never,\n onPointerCancelCapture: { event: \"pointerCancelCapture\" } as never,\n onPointerDown: { event: \"pointerDown\" } as never,\n onPointerDownCapture: { event: \"pointerDownCapture\" } as never,\n onPointerEnter: { event: \"pointerEnter\" } as never,\n onPointerLeave: { event: \"pointerLeave\" } as never,\n onPointerMove: { event: \"pointerMove\" } as never,\n onPointerMoveCapture: { event: \"pointerMoveCapture\" } as never,\n onPointerOut: { event: \"pointerOut\" } as never,\n onPointerOutCapture: { event: \"pointerOutCapture\" } as never,\n onPointerOver: { event: \"pointerOver\" } as never,\n onPointerOverCapture: { event: \"pointerOverCapture\" } as never,\n onPointerUp: { event: \"pointerUp\" } as never,\n onPointerUpCapture: { event: \"pointerUpCapture\" } as never,\n onPress: { event: \"press\" } as never,\n onPressChange: { event: \"pressChange\" } as never,\n onPressEnd: { event: \"pressEnd\" } as never,\n onPressStart: { event: \"pressStart\" } as never,\n onPressUp: { event: \"pressUp\" } as never,\n onScroll: { event: \"scroll\" } as never,\n onScrollCapture: { event: \"scrollCapture\" } as never,\n onTouchCancel: { event: \"touchCancel\" } as never,\n onTouchCancelCapture: { event: \"touchCancelCapture\" } as never,\n onTouchEnd: { event: \"touchEnd\" } as never,\n onTouchEndCapture: { event: \"touchEndCapture\" } as never,\n onTouchMove: { event: \"touchMove\" } as never,\n onTouchMoveCapture: { event: \"touchMoveCapture\" } as never,\n onTouchStart: { event: \"touchStart\" } as never,\n onTouchStartCapture: { event: \"touchStartCapture\" } as never,\n onTransitionCancel: { event: \"transitionCancel\" } as never,\n onTransitionCancelCapture: { event: \"transitionCancelCapture\" } as never,\n onTransitionEnd: { event: \"transitionEnd\" } as never,\n onTransitionEndCapture: { event: \"transitionEndCapture\" } as never,\n onTransitionRun: { event: \"transitionRun\" } as never,\n onTransitionRunCapture: { event: \"transitionRunCapture\" } as never,\n onTransitionStart: { event: \"transitionStart\" } as never,\n onTransitionStartCapture: { event: \"transitionStartCapture\" } as never,\n onWheel: { event: \"wheel\" } as never,\n onWheelCapture: { event: \"wheelCapture\" } as never,\n },\n },\n);\n"],"mappings":"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"}
|
|
@@ -100,6 +100,7 @@ import { RadioButton } from "./RadioButton.mjs";
|
|
|
100
100
|
import { RadioGroup } from "./RadioGroup.mjs";
|
|
101
101
|
import { RangeCalendar } from "./RangeCalendar.mjs";
|
|
102
102
|
import { Rating } from "./Rating.mjs";
|
|
103
|
+
import { RatingSegment } from "./RatingSegment.mjs";
|
|
103
104
|
import { SearchField } from "./SearchField.mjs";
|
|
104
105
|
import { Section } from "./Section.mjs";
|
|
105
106
|
import { Segment } from "./Segment.mjs";
|
|
@@ -234,6 +235,7 @@ var auto_generated_exports = /* @__PURE__ */ __exportAll({
|
|
|
234
235
|
RadioGroup: () => RadioGroup,
|
|
235
236
|
RangeCalendar: () => RangeCalendar,
|
|
236
237
|
Rating: () => Rating,
|
|
238
|
+
RatingSegment: () => RatingSegment,
|
|
237
239
|
SearchField: () => SearchField,
|
|
238
240
|
Section: () => Section,
|
|
239
241
|
Segment: () => Segment,
|
|
@@ -268,6 +270,6 @@ var auto_generated_exports = /* @__PURE__ */ __exportAll({
|
|
|
268
270
|
YAxis: () => YAxis
|
|
269
271
|
});
|
|
270
272
|
//#endregion
|
|
271
|
-
export { AccentBox, Accordion, ActionGroup, Alert, AlertBadge, AlertIcon, AlertText, Align, Area, Autocomplete, Avatar, AvatarStack, Badge, BigNumber, Breadcrumb, Button, CartesianChart, CartesianGrid, ChartGrid, ChartLegend, ChartTooltip, Chat, Checkbox, CheckboxButton, CheckboxGroup, ClearPropsContext, CodeBlock, CodeEditor, Color, ColumnLayout, Combine, ComboBox, ComponentPropsContextProvider, Content, ContextMenu, ContextMenuContent, ContextMenuSection, ContextMenuTrigger, ContextualHelp, ContextualHelpTrigger, CopyButton, CounterBadge, DatePicker, DateRangePicker, DialogTrigger, Div, DonutChart, FieldDescription, FieldError, FileCard, FileCardList, FileDropZone, FileField, Flex, Header, HeaderNavigation, Heading, Icon, IllustratedMessage, Image, ImageCropper, Initials, InlineCode, ItemsGridList, ItemsGridListItem, Kbd, Label, LabeledValue, LayoutCard, Legend, LightBoxGallery, LightBoxGalleryItem, Line, Link, ListEmptyView, ListEmptyViewContainer, ListItemViewContent, ListSummary, LoadingSpinner, Markdown, MarkdownEditor, MenuItem, MenuTrigger, Message, MessageSeparator, MessageThread, Navigation, NavigationGroup, Notification, NumberField, Option, OverlayContent, PasswordCreationField, PopoverContent, ProgressBar, Radio, RadioButton, RadioGroup, RangeCalendar, Rating, SearchField, Section, Segment, SegmentedControl, Select, Separator, Skeleton, SkeletonText, Slider, Switch, Tab, TabNavigation, TabTitle, Table, TableBody, TableCell, TableColumn, TableFooterRow, TableHeader, TableRow, Tabs, Text, TextArea, TextField, TimeField, Tooltip, TooltipTrigger, TranslationProvider, Truncate, TunnelEntry, XAxis, YAxis, auto_generated_exports };
|
|
273
|
+
export { AccentBox, Accordion, ActionGroup, Alert, AlertBadge, AlertIcon, AlertText, Align, Area, Autocomplete, Avatar, AvatarStack, Badge, BigNumber, Breadcrumb, Button, CartesianChart, CartesianGrid, ChartGrid, ChartLegend, ChartTooltip, Chat, Checkbox, CheckboxButton, CheckboxGroup, ClearPropsContext, CodeBlock, CodeEditor, Color, ColumnLayout, Combine, ComboBox, ComponentPropsContextProvider, Content, ContextMenu, ContextMenuContent, ContextMenuSection, ContextMenuTrigger, ContextualHelp, ContextualHelpTrigger, CopyButton, CounterBadge, DatePicker, DateRangePicker, DialogTrigger, Div, DonutChart, FieldDescription, FieldError, FileCard, FileCardList, FileDropZone, FileField, Flex, Header, HeaderNavigation, Heading, Icon, IllustratedMessage, Image, ImageCropper, Initials, InlineCode, ItemsGridList, ItemsGridListItem, Kbd, Label, LabeledValue, LayoutCard, Legend, LightBoxGallery, LightBoxGalleryItem, Line, Link, ListEmptyView, ListEmptyViewContainer, ListItemViewContent, ListSummary, LoadingSpinner, Markdown, MarkdownEditor, MenuItem, MenuTrigger, Message, MessageSeparator, MessageThread, Navigation, NavigationGroup, Notification, NumberField, Option, OverlayContent, PasswordCreationField, PopoverContent, ProgressBar, Radio, RadioButton, RadioGroup, RangeCalendar, Rating, RatingSegment, SearchField, Section, Segment, SegmentedControl, Select, Separator, Skeleton, SkeletonText, Slider, Switch, Tab, TabNavigation, TabTitle, Table, TableBody, TableCell, TableColumn, TableFooterRow, TableHeader, TableRow, Tabs, Text, TextArea, TextField, TimeField, Tooltip, TooltipTrigger, TranslationProvider, Truncate, TunnelEntry, XAxis, YAxis, auto_generated_exports };
|
|
272
274
|
|
|
273
275
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../../../src/auto-generated/index.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\nexport * from \"./AccentBox\";\nexport * from \"./Accordion\";\nexport * from \"./ActionGroup\";\nexport * from \"./Alert\";\nexport * from \"./AlertBadge\";\nexport * from \"./AlertIcon\";\nexport * from \"./AlertText\";\nexport * from \"./Align\";\nexport * from \"./Area\";\nexport * from \"./Autocomplete\";\nexport * from \"./Avatar\";\nexport * from \"./AvatarStack\";\nexport * from \"./Badge\";\nexport * from \"./BigNumber\";\nexport * from \"./Breadcrumb\";\nexport * from \"./Button\";\nexport * from \"./CartesianChart\";\nexport * from \"./CartesianGrid\";\nexport * from \"./ChartGrid\";\nexport * from \"./ChartLegend\";\nexport * from \"./ChartTooltip\";\nexport * from \"./Chat\";\nexport * from \"./Checkbox\";\nexport * from \"./CheckboxButton\";\nexport * from \"./CheckboxGroup\";\nexport * from \"./ClearPropsContext\";\nexport * from \"./CodeBlock\";\nexport * from \"./CodeEditor\";\nexport * from \"./Color\";\nexport * from \"./ColumnLayout\";\nexport * from \"./Combine\";\nexport * from \"./ComboBox\";\nexport * from \"./ComponentPropsContextProvider\";\nexport * from \"./Content\";\nexport * from \"./ContextMenu\";\nexport * from \"./ContextMenuContent\";\nexport * from \"./ContextMenuSection\";\nexport * from \"./ContextMenuTrigger\";\nexport * from \"./ContextualHelp\";\nexport * from \"./ContextualHelpTrigger\";\nexport * from \"./CopyButton\";\nexport * from \"./CounterBadge\";\nexport * from \"./DatePicker\";\nexport * from \"./DateRangePicker\";\nexport * from \"./DialogTrigger\";\nexport * from \"./Div\";\nexport * from \"./DonutChart\";\nexport * from \"./FieldDescription\";\nexport * from \"./FieldError\";\nexport * from \"./FileCard\";\nexport * from \"./FileCardList\";\nexport * from \"./FileDropZone\";\nexport * from \"./FileField\";\nexport * from \"./Flex\";\nexport * from \"./Header\";\nexport * from \"./HeaderNavigation\";\nexport * from \"./Heading\";\nexport * from \"./Icon\";\nexport * from \"./IllustratedMessage\";\nexport * from \"./Image\";\nexport * from \"./ImageCropper\";\nexport * from \"./Initials\";\nexport * from \"./InlineCode\";\nexport * from \"./ItemsGridList\";\nexport * from \"./ItemsGridListItem\";\nexport * from \"./Kbd\";\nexport * from \"./Label\";\nexport * from \"./LabeledValue\";\nexport * from \"./LayoutCard\";\nexport * from \"./Legend\";\nexport * from \"./LightBoxGallery\";\nexport * from \"./LightBoxGalleryItem\";\nexport * from \"./Line\";\nexport * from \"./Link\";\nexport * from \"./ListEmptyView\";\nexport * from \"./ListEmptyViewContainer\";\nexport * from \"./ListItemViewContent\";\nexport * from \"./ListSummary\";\nexport * from \"./LoadingSpinner\";\nexport * from \"./Markdown\";\nexport * from \"./MarkdownEditor\";\nexport * from \"./MenuItem\";\nexport * from \"./MenuTrigger\";\nexport * from \"./Message\";\nexport * from \"./MessageSeparator\";\nexport * from \"./MessageThread\";\nexport * from \"./Navigation\";\nexport * from \"./NavigationGroup\";\nexport * from \"./Notification\";\nexport * from \"./NumberField\";\nexport * from \"./Option\";\nexport * from \"./OverlayContent\";\nexport * from \"./PasswordCreationField\";\nexport * from \"./PopoverContent\";\nexport * from \"./ProgressBar\";\nexport * from \"./Radio\";\nexport * from \"./RadioButton\";\nexport * from \"./RadioGroup\";\nexport * from \"./RangeCalendar\";\nexport * from \"./Rating\";\nexport * from \"./SearchField\";\nexport * from \"./Section\";\nexport * from \"./Segment\";\nexport * from \"./SegmentedControl\";\nexport * from \"./Select\";\nexport * from \"./Separator\";\nexport * from \"./Skeleton\";\nexport * from \"./SkeletonText\";\nexport * from \"./Slider\";\nexport * from \"./Switch\";\nexport * from \"./Tab\";\nexport * from \"./TabNavigation\";\nexport * from \"./TabTitle\";\nexport * from \"./Table\";\nexport * from \"./TableBody\";\nexport * from \"./TableCell\";\nexport * from \"./TableColumn\";\nexport * from \"./TableFooterRow\";\nexport * from \"./TableHeader\";\nexport * from \"./TableRow\";\nexport * from \"./Tabs\";\nexport * from \"./Text\";\nexport * from \"./TextArea\";\nexport * from \"./TextField\";\nexport * from \"./TimeField\";\nexport * from \"./Tooltip\";\nexport * from \"./TooltipTrigger\";\nexport * from \"./TranslationProvider\";\nexport * from \"./Truncate\";\nexport * from \"./TunnelEntry\";\nexport * from \"./XAxis\";\nexport * from \"./YAxis\";\n"],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../../../src/auto-generated/index.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\nexport * from \"./AccentBox\";\nexport * from \"./Accordion\";\nexport * from \"./ActionGroup\";\nexport * from \"./Alert\";\nexport * from \"./AlertBadge\";\nexport * from \"./AlertIcon\";\nexport * from \"./AlertText\";\nexport * from \"./Align\";\nexport * from \"./Area\";\nexport * from \"./Autocomplete\";\nexport * from \"./Avatar\";\nexport * from \"./AvatarStack\";\nexport * from \"./Badge\";\nexport * from \"./BigNumber\";\nexport * from \"./Breadcrumb\";\nexport * from \"./Button\";\nexport * from \"./CartesianChart\";\nexport * from \"./CartesianGrid\";\nexport * from \"./ChartGrid\";\nexport * from \"./ChartLegend\";\nexport * from \"./ChartTooltip\";\nexport * from \"./Chat\";\nexport * from \"./Checkbox\";\nexport * from \"./CheckboxButton\";\nexport * from \"./CheckboxGroup\";\nexport * from \"./ClearPropsContext\";\nexport * from \"./CodeBlock\";\nexport * from \"./CodeEditor\";\nexport * from \"./Color\";\nexport * from \"./ColumnLayout\";\nexport * from \"./Combine\";\nexport * from \"./ComboBox\";\nexport * from \"./ComponentPropsContextProvider\";\nexport * from \"./Content\";\nexport * from \"./ContextMenu\";\nexport * from \"./ContextMenuContent\";\nexport * from \"./ContextMenuSection\";\nexport * from \"./ContextMenuTrigger\";\nexport * from \"./ContextualHelp\";\nexport * from \"./ContextualHelpTrigger\";\nexport * from \"./CopyButton\";\nexport * from \"./CounterBadge\";\nexport * from \"./DatePicker\";\nexport * from \"./DateRangePicker\";\nexport * from \"./DialogTrigger\";\nexport * from \"./Div\";\nexport * from \"./DonutChart\";\nexport * from \"./FieldDescription\";\nexport * from \"./FieldError\";\nexport * from \"./FileCard\";\nexport * from \"./FileCardList\";\nexport * from \"./FileDropZone\";\nexport * from \"./FileField\";\nexport * from \"./Flex\";\nexport * from \"./Header\";\nexport * from \"./HeaderNavigation\";\nexport * from \"./Heading\";\nexport * from \"./Icon\";\nexport * from \"./IllustratedMessage\";\nexport * from \"./Image\";\nexport * from \"./ImageCropper\";\nexport * from \"./Initials\";\nexport * from \"./InlineCode\";\nexport * from \"./ItemsGridList\";\nexport * from \"./ItemsGridListItem\";\nexport * from \"./Kbd\";\nexport * from \"./Label\";\nexport * from \"./LabeledValue\";\nexport * from \"./LayoutCard\";\nexport * from \"./Legend\";\nexport * from \"./LightBoxGallery\";\nexport * from \"./LightBoxGalleryItem\";\nexport * from \"./Line\";\nexport * from \"./Link\";\nexport * from \"./ListEmptyView\";\nexport * from \"./ListEmptyViewContainer\";\nexport * from \"./ListItemViewContent\";\nexport * from \"./ListSummary\";\nexport * from \"./LoadingSpinner\";\nexport * from \"./Markdown\";\nexport * from \"./MarkdownEditor\";\nexport * from \"./MenuItem\";\nexport * from \"./MenuTrigger\";\nexport * from \"./Message\";\nexport * from \"./MessageSeparator\";\nexport * from \"./MessageThread\";\nexport * from \"./Navigation\";\nexport * from \"./NavigationGroup\";\nexport * from \"./Notification\";\nexport * from \"./NumberField\";\nexport * from \"./Option\";\nexport * from \"./OverlayContent\";\nexport * from \"./PasswordCreationField\";\nexport * from \"./PopoverContent\";\nexport * from \"./ProgressBar\";\nexport * from \"./Radio\";\nexport * from \"./RadioButton\";\nexport * from \"./RadioGroup\";\nexport * from \"./RangeCalendar\";\nexport * from \"./Rating\";\nexport * from \"./RatingSegment\";\nexport * from \"./SearchField\";\nexport * from \"./Section\";\nexport * from \"./Segment\";\nexport * from \"./SegmentedControl\";\nexport * from \"./Select\";\nexport * from \"./Separator\";\nexport * from \"./Skeleton\";\nexport * from \"./SkeletonText\";\nexport * from \"./Slider\";\nexport * from \"./Switch\";\nexport * from \"./Tab\";\nexport * from \"./TabNavigation\";\nexport * from \"./TabTitle\";\nexport * from \"./Table\";\nexport * from \"./TableBody\";\nexport * from \"./TableCell\";\nexport * from \"./TableColumn\";\nexport * from \"./TableFooterRow\";\nexport * from \"./TableHeader\";\nexport * from \"./TableRow\";\nexport * from \"./Tabs\";\nexport * from \"./Text\";\nexport * from \"./TextArea\";\nexport * from \"./TextField\";\nexport * from \"./TimeField\";\nexport * from \"./Tooltip\";\nexport * from \"./TooltipTrigger\";\nexport * from \"./TranslationProvider\";\nexport * from \"./Truncate\";\nexport * from \"./TunnelEntry\";\nexport * from \"./XAxis\";\nexport * from \"./YAxis\";\n"],"mappings":""}
|
package/dist/js/index.mjs
CHANGED
|
@@ -100,6 +100,7 @@ import { RadioButton } from "./auto-generated/RadioButton.mjs";
|
|
|
100
100
|
import { RadioGroup } from "./auto-generated/RadioGroup.mjs";
|
|
101
101
|
import { RangeCalendar } from "./auto-generated/RangeCalendar.mjs";
|
|
102
102
|
import { Rating } from "./auto-generated/Rating.mjs";
|
|
103
|
+
import { RatingSegment } from "./auto-generated/RatingSegment.mjs";
|
|
103
104
|
import { SearchField } from "./auto-generated/SearchField.mjs";
|
|
104
105
|
import { Section } from "./auto-generated/Section.mjs";
|
|
105
106
|
import { Segment } from "./auto-generated/Segment.mjs";
|
|
@@ -135,4 +136,4 @@ import { YAxis } from "./auto-generated/YAxis.mjs";
|
|
|
135
136
|
import { Form } from "./components/Form.mjs";
|
|
136
137
|
import { LoadingFallbackTrigger } from "./components/LoadingFallbackTrigger.mjs";
|
|
137
138
|
export * from "@mittwald/flow-react-components/flr-universal";
|
|
138
|
-
export { AccentBox, Accordion, ActionGroup, Alert, AlertBadge, AlertIcon, AlertText, Align, Area, Autocomplete, Avatar, AvatarStack, Badge, BigNumber, Breadcrumb, Button, CartesianChart, CartesianGrid, ChartGrid, ChartLegend, ChartTooltip, Chat, Checkbox, CheckboxButton, CheckboxGroup, ClearPropsContext, CodeBlock, CodeEditor, Color, ColumnLayout, Combine, ComboBox, ComponentPropsContextProvider, Content, ContextMenu, ContextMenuContent, ContextMenuSection, ContextMenuTrigger, ContextualHelp, ContextualHelpTrigger, CopyButton, CounterBadge, DatePicker, DateRangePicker, DialogTrigger, Div, DonutChart, FieldDescription, FieldError, FileCard, FileCardList, FileDropZone, FileField, Flex, Form, Header, HeaderNavigation, Heading, Icon, IllustratedMessage, Image, ImageCropper, Initials, InlineCode, ItemsGridList, ItemsGridListItem, Kbd, Label, LabeledValue, LayoutCard, Legend, LightBoxGallery, LightBoxGalleryItem, Line, Link, ListEmptyView, ListEmptyViewContainer, ListItemViewContent, ListSummary, LoadingFallbackTrigger, LoadingSpinner, Markdown, MarkdownEditor, MenuItem, MenuTrigger, Message, MessageSeparator, MessageThread, Navigation, NavigationGroup, Notification, NumberField, Option, OverlayContent, PasswordCreationField, PopoverContent, ProgressBar, Radio, RadioButton, RadioGroup, RangeCalendar, Rating, SearchField, Section, Segment, SegmentedControl, Select, Separator, Skeleton, SkeletonText, Slider, Switch, Tab, TabNavigation, TabTitle, Table, TableBody, TableCell, TableColumn, TableFooterRow, TableHeader, TableRow, Tabs, Text, TextArea, TextField, TimeField, Tooltip, TooltipTrigger, TranslationProvider, Truncate, TunnelEntry, XAxis, YAxis };
|
|
139
|
+
export { AccentBox, Accordion, ActionGroup, Alert, AlertBadge, AlertIcon, AlertText, Align, Area, Autocomplete, Avatar, AvatarStack, Badge, BigNumber, Breadcrumb, Button, CartesianChart, CartesianGrid, ChartGrid, ChartLegend, ChartTooltip, Chat, Checkbox, CheckboxButton, CheckboxGroup, ClearPropsContext, CodeBlock, CodeEditor, Color, ColumnLayout, Combine, ComboBox, ComponentPropsContextProvider, Content, ContextMenu, ContextMenuContent, ContextMenuSection, ContextMenuTrigger, ContextualHelp, ContextualHelpTrigger, CopyButton, CounterBadge, DatePicker, DateRangePicker, DialogTrigger, Div, DonutChart, FieldDescription, FieldError, FileCard, FileCardList, FileDropZone, FileField, Flex, Form, Header, HeaderNavigation, Heading, Icon, IllustratedMessage, Image, ImageCropper, Initials, InlineCode, ItemsGridList, ItemsGridListItem, Kbd, Label, LabeledValue, LayoutCard, Legend, LightBoxGallery, LightBoxGalleryItem, Line, Link, ListEmptyView, ListEmptyViewContainer, ListItemViewContent, ListSummary, LoadingFallbackTrigger, LoadingSpinner, Markdown, MarkdownEditor, MenuItem, MenuTrigger, Message, MessageSeparator, MessageThread, Navigation, NavigationGroup, Notification, NumberField, Option, OverlayContent, PasswordCreationField, PopoverContent, ProgressBar, Radio, RadioButton, RadioGroup, RangeCalendar, Rating, RatingSegment, SearchField, Section, Segment, SegmentedControl, Select, Separator, Skeleton, SkeletonText, Slider, Switch, Tab, TabNavigation, TabTitle, Table, TableBody, TableCell, TableColumn, TableFooterRow, TableHeader, TableRow, Tabs, Text, TextArea, TextField, TimeField, Tooltip, TooltipTrigger, TranslationProvider, Truncate, TunnelEntry, XAxis, YAxis };
|
package/dist/js/version.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { Version } from "@mittwald/flow-remote-core";
|
|
4
4
|
//#region src/version.ts
|
|
5
5
|
var communicationVersion = Version.v5;
|
|
6
|
-
var packageVersion = "1.0.
|
|
6
|
+
var packageVersion = "1.1.0-next.0";
|
|
7
7
|
var version = communicationVersion;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { communicationVersion, packageVersion, version };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteRatingSegmentElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteRatingSegmentElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const RatingSegment: import('@mittwald/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteRatingSegmentElement>;
|
|
4
|
+
//# sourceMappingURL=RatingSegment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RatingSegment.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/RatingSegment.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAC5E,OAAO,EAAE,KAAK,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAEjF,eAAO,MAAM,aAAa,mHA8FzB,CAAC"}
|
|
@@ -98,6 +98,7 @@ export * from './RadioButton';
|
|
|
98
98
|
export * from './RadioGroup';
|
|
99
99
|
export * from './RangeCalendar';
|
|
100
100
|
export * from './Rating';
|
|
101
|
+
export * from './RatingSegment';
|
|
101
102
|
export * from './SearchField';
|
|
102
103
|
export * from './Section';
|
|
103
104
|
export * from './Segment';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-remote-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.1.0-next.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React components that can be used in a remote environment",
|
|
6
6
|
"homepage": "https://flow.mittwald.de",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
+
"USAGE.md",
|
|
27
28
|
"dist"
|
|
28
29
|
],
|
|
29
30
|
"engines": {
|
|
@@ -50,20 +51,21 @@
|
|
|
50
51
|
"test:visual:update": "vitest run --project=visual --browser.headless --update --browser.fileParallelism=false"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@mittwald/flow-react-components": "1.0.
|
|
54
|
-
"@mittwald/flow-remote-core": "1.0.
|
|
55
|
-
"@mittwald/flow-remote-elements": "1.0.
|
|
54
|
+
"@mittwald/flow-react-components": "1.1.0-next.0",
|
|
55
|
+
"@mittwald/flow-remote-core": "1.1.0-next.0",
|
|
56
|
+
"@mittwald/flow-remote-elements": "1.1.0-next.0",
|
|
56
57
|
"@mittwald/remote-dom-react": "1.2.2-mittwald.10",
|
|
57
58
|
"@types/react": "^19.2",
|
|
58
59
|
"react-error-boundary": "^6.1.3"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@internationalized/date": "^3.12.3",
|
|
62
|
-
"@mittwald/ext-bridge": "1.0.
|
|
63
|
-
"@mittwald/flow-core": "1.0.
|
|
64
|
-
"@mittwald/flow-remote-react-renderer": "1.0.
|
|
65
|
-
"@mittwald/typescript-config": "1.0.
|
|
63
|
+
"@mittwald/ext-bridge": "1.1.0-next.0",
|
|
64
|
+
"@mittwald/flow-core": "1.1.0-next.0",
|
|
65
|
+
"@mittwald/flow-remote-react-renderer": "1.1.0-next.0",
|
|
66
|
+
"@mittwald/typescript-config": "1.1.0-next.0",
|
|
66
67
|
"@quilted/threads": "^3.3.1",
|
|
68
|
+
"@tabler/icons-react": "^3.44.0",
|
|
67
69
|
"@types/node": "^25.9.3",
|
|
68
70
|
"@types/react-dom": "^19.2",
|
|
69
71
|
"@types/semver": "^7.8.0",
|
|
@@ -87,7 +89,7 @@
|
|
|
87
89
|
},
|
|
88
90
|
"peerDependencies": {
|
|
89
91
|
"@internationalized/date": "^3.12.2",
|
|
90
|
-
"@mittwald/ext-bridge": "1.0.
|
|
92
|
+
"@mittwald/ext-bridge": "1.1.0-next.0",
|
|
91
93
|
"react": "^19.2.0",
|
|
92
94
|
"react-hook-form": "^7.65.0"
|
|
93
95
|
},
|
|
@@ -102,5 +104,5 @@
|
|
|
102
104
|
"optional": true
|
|
103
105
|
}
|
|
104
106
|
},
|
|
105
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "b171f1288bee742e8ea087ce3c15cfe421e95368"
|
|
106
108
|
}
|