@mittwald/flow-remote-react-components 0.2.0-alpha.112 → 0.2.0-alpha.114
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/dist/js/auto-generated/Area.mjs +25 -0
- package/dist/js/auto-generated/Area.mjs.map +1 -0
- package/dist/js/auto-generated/AreaChart.mjs +23 -0
- package/dist/js/auto-generated/AreaChart.mjs.map +1 -0
- package/dist/js/auto-generated/CartesianGrid.mjs +23 -0
- package/dist/js/auto-generated/CartesianGrid.mjs.map +1 -0
- package/dist/js/auto-generated/ChartLegend.mjs +23 -0
- package/dist/js/auto-generated/ChartLegend.mjs.map +1 -0
- package/dist/js/auto-generated/ChartTooltip.mjs +23 -0
- package/dist/js/auto-generated/ChartTooltip.mjs.map +1 -0
- package/dist/js/auto-generated/Legend.mjs +23 -0
- package/dist/js/auto-generated/Legend.mjs.map +1 -0
- package/dist/js/auto-generated/XAxis.mjs +23 -0
- package/dist/js/auto-generated/XAxis.mjs.map +1 -0
- package/dist/js/auto-generated/YAxis.mjs +23 -0
- package/dist/js/auto-generated/YAxis.mjs.map +1 -0
- package/dist/js/auto-generated/index.mjs +17 -1
- package/dist/js/auto-generated/index.mjs.map +1 -1
- package/dist/js/index.mjs +17 -1
- package/dist/js/index.mjs.map +1 -1
- package/dist/types/auto-generated/Area.d.ts +4 -0
- package/dist/types/auto-generated/Area.d.ts.map +1 -0
- package/dist/types/auto-generated/AreaChart.d.ts +4 -0
- package/dist/types/auto-generated/AreaChart.d.ts.map +1 -0
- package/dist/types/auto-generated/CartesianGrid.d.ts +4 -0
- package/dist/types/auto-generated/CartesianGrid.d.ts.map +1 -0
- package/dist/types/auto-generated/ChartLegend.d.ts +4 -0
- package/dist/types/auto-generated/ChartLegend.d.ts.map +1 -0
- package/dist/types/auto-generated/ChartTooltip.d.ts +4 -0
- package/dist/types/auto-generated/ChartTooltip.d.ts.map +1 -0
- package/dist/types/auto-generated/Legend.d.ts +4 -0
- package/dist/types/auto-generated/Legend.d.ts.map +1 -0
- package/dist/types/auto-generated/XAxis.d.ts +4 -0
- package/dist/types/auto-generated/XAxis.d.ts.map +1 -0
- package/dist/types/auto-generated/YAxis.d.ts +4 -0
- package/dist/types/auto-generated/YAxis.d.ts.map +1 -0
- package/dist/types/auto-generated/index.d.ts +8 -0
- package/dist/types/auto-generated/index.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteAreaElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const Area = createFlowRemoteComponent(
|
|
7
|
+
"flr-area",
|
|
8
|
+
"Area",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteAreaElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {
|
|
18
|
+
onlyDots: { event: "lyDots" }
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
Area
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=Area.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Area.mjs","sources":["../../../src/auto-generated/Area.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteAreaElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteAreaElement } from \"@mittwald/flow-remote-elements\";\n\nexport const Area = createFlowRemoteComponent(\n \"flr-area\",\n \"Area\",\n {\n clearPropsContext: false,\n },\n RemoteAreaElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {\n onlyDots: { event: \"lyDots\" } as never,\n },\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,OAAO;AAAA,EAClB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY;AAAA,MACV,UAAU,EAAE,OAAO,SAAS;AAAA,IAAA;AAAA,EAC9B;AAEJ;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteAreaChartElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const AreaChart = createFlowRemoteComponent(
|
|
7
|
+
"flr-area-chart",
|
|
8
|
+
"AreaChart",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteAreaChartElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
AreaChart
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=AreaChart.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AreaChart.mjs","sources":["../../../src/auto-generated/AreaChart.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteAreaChartElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteAreaChartElement } from \"@mittwald/flow-remote-elements\";\n\nexport const AreaChart = createFlowRemoteComponent(\n \"flr-area-chart\",\n \"AreaChart\",\n {\n clearPropsContext: false,\n },\n RemoteAreaChartElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,YAAY;AAAA,EACvB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteCartesianGridElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const CartesianGrid = createFlowRemoteComponent(
|
|
7
|
+
"flr-cartesian-grid",
|
|
8
|
+
"CartesianGrid",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteCartesianGridElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
CartesianGrid
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=CartesianGrid.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CartesianGrid.mjs","sources":["../../../src/auto-generated/CartesianGrid.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteCartesianGridElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteCartesianGridElement } from \"@mittwald/flow-remote-elements\";\n\nexport const CartesianGrid = createFlowRemoteComponent(\n \"flr-cartesian-grid\",\n \"CartesianGrid\",\n {\n clearPropsContext: false,\n },\n RemoteCartesianGridElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,gBAAgB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteChartLegendElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const ChartLegend = createFlowRemoteComponent(
|
|
7
|
+
"flr-chart-legend",
|
|
8
|
+
"ChartLegend",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteChartLegendElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
ChartLegend
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=ChartLegend.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartLegend.mjs","sources":["../../../src/auto-generated/ChartLegend.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteChartLegendElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteChartLegendElement } from \"@mittwald/flow-remote-elements\";\n\nexport const ChartLegend = createFlowRemoteComponent(\n \"flr-chart-legend\",\n \"ChartLegend\",\n {\n clearPropsContext: false,\n },\n RemoteChartLegendElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,cAAc;AAAA,EACzB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteChartTooltipElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const ChartTooltip = createFlowRemoteComponent(
|
|
7
|
+
"flr-chart-tooltip",
|
|
8
|
+
"ChartTooltip",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteChartTooltipElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
ChartTooltip
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=ChartTooltip.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartTooltip.mjs","sources":["../../../src/auto-generated/ChartTooltip.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteChartTooltipElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteChartTooltipElement } from \"@mittwald/flow-remote-elements\";\n\nexport const ChartTooltip = createFlowRemoteComponent(\n \"flr-chart-tooltip\",\n \"ChartTooltip\",\n {\n clearPropsContext: false,\n },\n RemoteChartTooltipElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,eAAe;AAAA,EAC1B;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteLegendElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const Legend = createFlowRemoteComponent(
|
|
7
|
+
"flr-legend",
|
|
8
|
+
"Legend",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteLegendElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
Legend
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=Legend.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Legend.mjs","sources":["../../../src/auto-generated/Legend.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteLegendElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteLegendElement } from \"@mittwald/flow-remote-elements\";\n\nexport const Legend = createFlowRemoteComponent(\n \"flr-legend\",\n \"Legend\",\n {\n clearPropsContext: false,\n },\n RemoteLegendElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,SAAS;AAAA,EACpB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteXAxisElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const XAxis = createFlowRemoteComponent(
|
|
7
|
+
"flr-x-axis",
|
|
8
|
+
"XAxis",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteXAxisElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
XAxis
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=XAxis.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XAxis.mjs","sources":["../../../src/auto-generated/XAxis.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteXAxisElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteXAxisElement } from \"@mittwald/flow-remote-elements\";\n\nexport const XAxis = createFlowRemoteComponent(\n \"flr-x-axis\",\n \"XAxis\",\n {\n clearPropsContext: false,\n },\n RemoteXAxisElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,QAAQ;AAAA,EACnB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
"use client";
|
|
4
|
+
import { createFlowRemoteComponent } from "../components/createFlowRemoteComponent.mjs";
|
|
5
|
+
import { RemoteYAxisElement } from "@mittwald/flow-remote-elements";
|
|
6
|
+
const YAxis = createFlowRemoteComponent(
|
|
7
|
+
"flr-y-axis",
|
|
8
|
+
"YAxis",
|
|
9
|
+
{
|
|
10
|
+
clearPropsContext: false
|
|
11
|
+
},
|
|
12
|
+
RemoteYAxisElement,
|
|
13
|
+
{
|
|
14
|
+
slotProps: {
|
|
15
|
+
wrapper: false
|
|
16
|
+
},
|
|
17
|
+
eventProps: {}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
YAxis
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=YAxis.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YAxis.mjs","sources":["../../../src/auto-generated/YAxis.ts"],"sourcesContent":["/* prettier-ignore */\n/* This file is auto-generated with the remote-components-generator */\n\"use client\";\nimport createFlowRemoteComponent from \"@/components/createFlowRemoteComponent\";\nimport { RemoteYAxisElement } from \"@mittwald/flow-remote-elements\";\nexport { type RemoteYAxisElement } from \"@mittwald/flow-remote-elements\";\n\nexport const YAxis = createFlowRemoteComponent(\n \"flr-y-axis\",\n \"YAxis\",\n {\n clearPropsContext: false,\n },\n RemoteYAxisElement,\n {\n slotProps: {\n wrapper: false,\n },\n eventProps: {},\n },\n);\n"],"names":[],"mappings":";;;AAOO,MAAM,QAAQ;AAAA,EACnB;AAAA,EACA;AAAA,EACA;AAAA,IACE,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,IACE,WAAW;AAAA,MACT,SAAS;AAAA,IACX;AAAA,IACA,YAAY,CAAA;AAAA,EAAC;AAEjB;"}
|
|
@@ -5,11 +5,16 @@ import { Alert } from "./Alert.mjs";
|
|
|
5
5
|
import { AlertBadge } from "./AlertBadge.mjs";
|
|
6
6
|
import { AlertIcon } from "./AlertIcon.mjs";
|
|
7
7
|
import { Align } from "./Align.mjs";
|
|
8
|
+
import { Area } from "./Area.mjs";
|
|
9
|
+
import { AreaChart } from "./AreaChart.mjs";
|
|
8
10
|
import { Avatar } from "./Avatar.mjs";
|
|
9
11
|
import { AvatarStack } from "./AvatarStack.mjs";
|
|
10
12
|
import { Badge } from "./Badge.mjs";
|
|
11
13
|
import { Breadcrumb } from "./Breadcrumb.mjs";
|
|
12
14
|
import { Button } from "./Button.mjs";
|
|
15
|
+
import { CartesianGrid } from "./CartesianGrid.mjs";
|
|
16
|
+
import { ChartLegend } from "./ChartLegend.mjs";
|
|
17
|
+
import { ChartTooltip } from "./ChartTooltip.mjs";
|
|
13
18
|
import { Chat } from "./Chat.mjs";
|
|
14
19
|
import { Checkbox } from "./Checkbox.mjs";
|
|
15
20
|
import { CheckboxButton } from "./CheckboxButton.mjs";
|
|
@@ -50,6 +55,7 @@ import { ItemsGridListItem } from "./ItemsGridListItem.mjs";
|
|
|
50
55
|
import { Label } from "./Label.mjs";
|
|
51
56
|
import { LabeledValue } from "./LabeledValue.mjs";
|
|
52
57
|
import { LayoutCard } from "./LayoutCard.mjs";
|
|
58
|
+
import { Legend } from "./Legend.mjs";
|
|
53
59
|
import { LightBox } from "./LightBox.mjs";
|
|
54
60
|
import { LightBoxTrigger } from "./LightBoxTrigger.mjs";
|
|
55
61
|
import { Link } from "./Link.mjs";
|
|
@@ -101,6 +107,8 @@ import { TextField } from "./TextField.mjs";
|
|
|
101
107
|
import { TimeField } from "./TimeField.mjs";
|
|
102
108
|
import { Tooltip } from "./Tooltip.mjs";
|
|
103
109
|
import { TooltipTrigger } from "./TooltipTrigger.mjs";
|
|
110
|
+
import { XAxis } from "./XAxis.mjs";
|
|
111
|
+
import { YAxis } from "./YAxis.mjs";
|
|
104
112
|
export {
|
|
105
113
|
AccentBox,
|
|
106
114
|
Accordion,
|
|
@@ -109,11 +117,16 @@ export {
|
|
|
109
117
|
AlertBadge,
|
|
110
118
|
AlertIcon,
|
|
111
119
|
Align,
|
|
120
|
+
Area,
|
|
121
|
+
AreaChart,
|
|
112
122
|
Avatar,
|
|
113
123
|
AvatarStack,
|
|
114
124
|
Badge,
|
|
115
125
|
Breadcrumb,
|
|
116
126
|
Button,
|
|
127
|
+
CartesianGrid,
|
|
128
|
+
ChartLegend,
|
|
129
|
+
ChartTooltip,
|
|
117
130
|
Chat,
|
|
118
131
|
Checkbox,
|
|
119
132
|
CheckboxButton,
|
|
@@ -154,6 +167,7 @@ export {
|
|
|
154
167
|
Label,
|
|
155
168
|
LabeledValue,
|
|
156
169
|
LayoutCard,
|
|
170
|
+
Legend,
|
|
157
171
|
LightBox,
|
|
158
172
|
LightBoxTrigger,
|
|
159
173
|
Link,
|
|
@@ -204,6 +218,8 @@ export {
|
|
|
204
218
|
TextField,
|
|
205
219
|
TimeField,
|
|
206
220
|
Tooltip,
|
|
207
|
-
TooltipTrigger
|
|
221
|
+
TooltipTrigger,
|
|
222
|
+
XAxis,
|
|
223
|
+
YAxis
|
|
208
224
|
};
|
|
209
225
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/js/index.mjs
CHANGED
|
@@ -5,11 +5,16 @@ import { Alert } from "./auto-generated/Alert.mjs";
|
|
|
5
5
|
import { AlertBadge } from "./auto-generated/AlertBadge.mjs";
|
|
6
6
|
import { AlertIcon } from "./auto-generated/AlertIcon.mjs";
|
|
7
7
|
import { Align } from "./auto-generated/Align.mjs";
|
|
8
|
+
import { Area } from "./auto-generated/Area.mjs";
|
|
9
|
+
import { AreaChart } from "./auto-generated/AreaChart.mjs";
|
|
8
10
|
import { Avatar } from "./auto-generated/Avatar.mjs";
|
|
9
11
|
import { AvatarStack } from "./auto-generated/AvatarStack.mjs";
|
|
10
12
|
import { Badge } from "./auto-generated/Badge.mjs";
|
|
11
13
|
import { Breadcrumb } from "./auto-generated/Breadcrumb.mjs";
|
|
12
14
|
import { Button } from "./auto-generated/Button.mjs";
|
|
15
|
+
import { CartesianGrid } from "./auto-generated/CartesianGrid.mjs";
|
|
16
|
+
import { ChartLegend } from "./auto-generated/ChartLegend.mjs";
|
|
17
|
+
import { ChartTooltip } from "./auto-generated/ChartTooltip.mjs";
|
|
13
18
|
import { Chat } from "./auto-generated/Chat.mjs";
|
|
14
19
|
import { Checkbox } from "./auto-generated/Checkbox.mjs";
|
|
15
20
|
import { CheckboxButton } from "./auto-generated/CheckboxButton.mjs";
|
|
@@ -50,6 +55,7 @@ import { ItemsGridListItem } from "./auto-generated/ItemsGridListItem.mjs";
|
|
|
50
55
|
import { Label } from "./auto-generated/Label.mjs";
|
|
51
56
|
import { LabeledValue } from "./auto-generated/LabeledValue.mjs";
|
|
52
57
|
import { LayoutCard } from "./auto-generated/LayoutCard.mjs";
|
|
58
|
+
import { Legend } from "./auto-generated/Legend.mjs";
|
|
53
59
|
import { LightBox } from "./auto-generated/LightBox.mjs";
|
|
54
60
|
import { LightBoxTrigger } from "./auto-generated/LightBoxTrigger.mjs";
|
|
55
61
|
import { Link } from "./auto-generated/Link.mjs";
|
|
@@ -101,6 +107,8 @@ import { TextField } from "./auto-generated/TextField.mjs";
|
|
|
101
107
|
import { TimeField } from "./auto-generated/TimeField.mjs";
|
|
102
108
|
import { Tooltip } from "./auto-generated/Tooltip.mjs";
|
|
103
109
|
import { TooltipTrigger } from "./auto-generated/TooltipTrigger.mjs";
|
|
110
|
+
import { XAxis } from "./auto-generated/XAxis.mjs";
|
|
111
|
+
import { YAxis } from "./auto-generated/YAxis.mjs";
|
|
104
112
|
export * from "@mittwald/flow-react-components/flr-universal";
|
|
105
113
|
import { Form } from "./components/Form.mjs";
|
|
106
114
|
export {
|
|
@@ -111,11 +119,16 @@ export {
|
|
|
111
119
|
AlertBadge,
|
|
112
120
|
AlertIcon,
|
|
113
121
|
Align,
|
|
122
|
+
Area,
|
|
123
|
+
AreaChart,
|
|
114
124
|
Avatar,
|
|
115
125
|
AvatarStack,
|
|
116
126
|
Badge,
|
|
117
127
|
Breadcrumb,
|
|
118
128
|
Button,
|
|
129
|
+
CartesianGrid,
|
|
130
|
+
ChartLegend,
|
|
131
|
+
ChartTooltip,
|
|
119
132
|
Chat,
|
|
120
133
|
Checkbox,
|
|
121
134
|
CheckboxButton,
|
|
@@ -157,6 +170,7 @@ export {
|
|
|
157
170
|
Label,
|
|
158
171
|
LabeledValue,
|
|
159
172
|
LayoutCard,
|
|
173
|
+
Legend,
|
|
160
174
|
LightBox,
|
|
161
175
|
LightBoxTrigger,
|
|
162
176
|
Link,
|
|
@@ -207,6 +221,8 @@ export {
|
|
|
207
221
|
TextField,
|
|
208
222
|
TimeField,
|
|
209
223
|
Tooltip,
|
|
210
|
-
TooltipTrigger
|
|
224
|
+
TooltipTrigger,
|
|
225
|
+
XAxis,
|
|
226
|
+
YAxis
|
|
211
227
|
};
|
|
212
228
|
//# sourceMappingURL=index.mjs.map
|
package/dist/js/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteAreaElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteAreaElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const Area: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteAreaElement>;
|
|
4
|
+
//# sourceMappingURL=Area.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Area.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/Area.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AAExE,eAAO,MAAM,IAAI,6GAehB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteAreaChartElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteAreaChartElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const AreaChart: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteAreaChartElement>;
|
|
4
|
+
//# sourceMappingURL=AreaChart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AreaChart.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/AreaChart.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAE7E,eAAO,MAAM,SAAS,kHAarB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteCartesianGridElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteCartesianGridElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const CartesianGrid: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteCartesianGridElement>;
|
|
4
|
+
//# sourceMappingURL=CartesianGrid.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CartesianGrid.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/CartesianGrid.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAC5E,OAAO,EAAE,KAAK,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAEjF,eAAO,MAAM,aAAa,sHAazB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteChartLegendElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteChartLegendElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const ChartLegend: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteChartLegendElement>;
|
|
4
|
+
//# sourceMappingURL=ChartLegend.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartLegend.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/ChartLegend.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAC1E,OAAO,EAAE,KAAK,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAE/E,eAAO,MAAM,WAAW,oHAavB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteChartTooltipElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteChartTooltipElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const ChartTooltip: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteChartTooltipElement>;
|
|
4
|
+
//# sourceMappingURL=ChartTooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartTooltip.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/ChartTooltip.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAC3E,OAAO,EAAE,KAAK,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAEhF,eAAO,MAAM,YAAY,qHAaxB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteLegendElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteLegendElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const Legend: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteLegendElement>;
|
|
4
|
+
//# sourceMappingURL=Legend.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Legend.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/Legend.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AACrE,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,gCAAgC,CAAC;AAE1E,eAAO,MAAM,MAAM,+GAalB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteXAxisElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteXAxisElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const XAxis: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteXAxisElement>;
|
|
4
|
+
//# sourceMappingURL=XAxis.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XAxis.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/XAxis.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAEzE,eAAO,MAAM,KAAK,8GAajB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { RemoteYAxisElement } from '@mittwald/flow-remote-elements';
|
|
2
|
+
export { type RemoteYAxisElement } from '@mittwald/flow-remote-elements';
|
|
3
|
+
export declare const YAxis: import('@mfalkenberg/remote-dom-react').RemoteComponentTypeFromElementConstructor<typeof RemoteYAxisElement>;
|
|
4
|
+
//# sourceMappingURL=YAxis.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YAxis.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/YAxis.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAEzE,eAAO,MAAM,KAAK,8GAajB,CAAC"}
|
|
@@ -5,11 +5,16 @@ export * from './Alert';
|
|
|
5
5
|
export * from './AlertBadge';
|
|
6
6
|
export * from './AlertIcon';
|
|
7
7
|
export * from './Align';
|
|
8
|
+
export * from './Area';
|
|
9
|
+
export * from './AreaChart';
|
|
8
10
|
export * from './Avatar';
|
|
9
11
|
export * from './AvatarStack';
|
|
10
12
|
export * from './Badge';
|
|
11
13
|
export * from './Breadcrumb';
|
|
12
14
|
export * from './Button';
|
|
15
|
+
export * from './CartesianGrid';
|
|
16
|
+
export * from './ChartLegend';
|
|
17
|
+
export * from './ChartTooltip';
|
|
13
18
|
export * from './Chat';
|
|
14
19
|
export * from './Checkbox';
|
|
15
20
|
export * from './CheckboxButton';
|
|
@@ -50,6 +55,7 @@ export * from './ItemsGridListItem';
|
|
|
50
55
|
export * from './Label';
|
|
51
56
|
export * from './LabeledValue';
|
|
52
57
|
export * from './LayoutCard';
|
|
58
|
+
export * from './Legend';
|
|
53
59
|
export * from './LightBox';
|
|
54
60
|
export * from './LightBoxTrigger';
|
|
55
61
|
export * from './Link';
|
|
@@ -101,4 +107,6 @@ export * from './TextField';
|
|
|
101
107
|
export * from './TimeField';
|
|
102
108
|
export * from './Tooltip';
|
|
103
109
|
export * from './TooltipTrigger';
|
|
110
|
+
export * from './XAxis';
|
|
111
|
+
export * from './YAxis';
|
|
104
112
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/auto-generated/index.ts"],"names":[],"mappings":"AAEA,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,OAAO,CAAC;AACtB,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,QAAQ,CAAC;AACvB,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC"}
|
|
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": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.114",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React components that can be used in a remote environment",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@mfalkenberg/remote-dom-react": "1.2.3",
|
|
36
|
-
"@mittwald/flow-react-components": "0.2.0-alpha.
|
|
37
|
-
"@mittwald/flow-remote-core": "0.2.0-alpha.
|
|
38
|
-
"@mittwald/flow-remote-elements": "0.2.0-alpha.
|
|
36
|
+
"@mittwald/flow-react-components": "0.2.0-alpha.114",
|
|
37
|
+
"@mittwald/flow-remote-core": "0.2.0-alpha.114",
|
|
38
|
+
"@mittwald/flow-remote-elements": "0.2.0-alpha.114",
|
|
39
39
|
"@types/react": "^19",
|
|
40
40
|
"react-error-boundary": "^5.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@mittwald/ext-bridge": "0.2.0-alpha.
|
|
44
|
-
"@mittwald/flow-remote-react-renderer": "0.2.0-alpha.
|
|
43
|
+
"@mittwald/ext-bridge": "0.2.0-alpha.114",
|
|
44
|
+
"@mittwald/flow-remote-react-renderer": "0.2.0-alpha.114",
|
|
45
45
|
"@mittwald/typescript-config": "",
|
|
46
46
|
"@types/node": "^22.13.10",
|
|
47
47
|
"nx": "^20.5.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"optional": true
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "50e61e2b1a3cb670e8e46d801d7702fbcd2c9bff"
|
|
79
79
|
}
|