@mittwald/flow-react-components 0.2.0-alpha.122 → 0.2.0-alpha.124

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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
+ # [0.2.0-alpha.124](https://github.com/mittwald/flow/compare/0.2.0-alpha.123...0.2.0-alpha.124) (2025-04-02)
7
+
8
+ **Note:** Version bump only for package @mittwald/flow-react-components
9
+
10
+ # [0.2.0-alpha.123](https://github.com/mittwald/flow/compare/0.2.0-alpha.122...0.2.0-alpha.123) (2025-04-02)
11
+
12
+ ### Bug Fixes
13
+
14
+ * switch to mittwald remote libs ([9883bb2](https://github.com/mittwald/flow/commit/9883bb210517c9991545baf94fec9e9adffd18eb))
15
+
6
16
  # [0.2.0-alpha.122](https://github.com/mittwald/flow/compare/0.2.0-alpha.121...0.2.0-alpha.122) (2025-03-31)
7
17
 
8
18
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -66638,6 +66638,168 @@
66638
66638
  }
66639
66639
  }
66640
66640
  },
66641
+ {
66642
+ "tags": {
66643
+ "flr-generate": "all",
66644
+ "flr-clear-props-context": ""
66645
+ },
66646
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/LightBox.tsx",
66647
+ "description": "",
66648
+ "displayName": "LightBox",
66649
+ "methods": [],
66650
+ "props": {
66651
+ "controller": {
66652
+ "defaultValue": null,
66653
+ "description": "An overlay controller to control the light box state.",
66654
+ "name": "controller",
66655
+ "parent": {
66656
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
66657
+ "name": "LightBoxProps"
66658
+ },
66659
+ "declarations": [
66660
+ {
66661
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
66662
+ "name": "LightBoxProps"
66663
+ }
66664
+ ],
66665
+ "required": false,
66666
+ "type": {
66667
+ "name": "OverlayController"
66668
+ }
66669
+ },
66670
+ "fitScreen": {
66671
+ "defaultValue": {
66672
+ "value": "true"
66673
+ },
66674
+ "description": "Whether content can be displayed larger than the available space in the\nscreen.",
66675
+ "name": "fitScreen",
66676
+ "parent": {
66677
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
66678
+ "name": "LightBoxProps"
66679
+ },
66680
+ "declarations": [
66681
+ {
66682
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
66683
+ "name": "LightBoxProps"
66684
+ }
66685
+ ],
66686
+ "required": false,
66687
+ "type": {
66688
+ "name": "boolean"
66689
+ }
66690
+ },
66691
+ "children": {
66692
+ "defaultValue": null,
66693
+ "description": "",
66694
+ "name": "children",
66695
+ "declarations": [
66696
+ {
66697
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
66698
+ "name": "TypeLiteral"
66699
+ }
66700
+ ],
66701
+ "required": false,
66702
+ "type": {
66703
+ "name": "ReactNode"
66704
+ }
66705
+ },
66706
+ "wrapWith": {
66707
+ "defaultValue": null,
66708
+ "description": "",
66709
+ "name": "wrapWith",
66710
+ "parent": {
66711
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
66712
+ "name": "FlowComponentProps"
66713
+ },
66714
+ "declarations": [
66715
+ {
66716
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
66717
+ "name": "FlowComponentProps"
66718
+ }
66719
+ ],
66720
+ "required": false,
66721
+ "type": {
66722
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
66723
+ }
66724
+ },
66725
+ "tunnelId": {
66726
+ "defaultValue": null,
66727
+ "description": "@internal",
66728
+ "name": "tunnelId",
66729
+ "parent": {
66730
+ "fileName": "components/src/lib/types/props.ts",
66731
+ "name": "PropsWithTunnel"
66732
+ },
66733
+ "declarations": [
66734
+ {
66735
+ "fileName": "components/src/lib/types/props.ts",
66736
+ "name": "PropsWithTunnel"
66737
+ }
66738
+ ],
66739
+ "required": false,
66740
+ "type": {
66741
+ "name": "string | null"
66742
+ }
66743
+ },
66744
+ "className": {
66745
+ "defaultValue": null,
66746
+ "description": "The elements class name.",
66747
+ "name": "className",
66748
+ "parent": {
66749
+ "fileName": "components/src/lib/types/props.ts",
66750
+ "name": "PropsWithClassName"
66751
+ },
66752
+ "declarations": [
66753
+ {
66754
+ "fileName": "components/src/lib/types/props.ts",
66755
+ "name": "PropsWithClassName"
66756
+ }
66757
+ ],
66758
+ "required": false,
66759
+ "type": {
66760
+ "name": "string"
66761
+ }
66762
+ },
66763
+ "ref": {
66764
+ "defaultValue": null,
66765
+ "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
66766
+ "name": "ref",
66767
+ "parent": {
66768
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
66769
+ "name": "RefAttributes"
66770
+ },
66771
+ "declarations": [
66772
+ {
66773
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
66774
+ "name": "RefAttributes"
66775
+ }
66776
+ ],
66777
+ "required": false,
66778
+ "type": {
66779
+ "name": "Ref<HTMLDivElement>"
66780
+ }
66781
+ },
66782
+ "key": {
66783
+ "defaultValue": null,
66784
+ "description": "",
66785
+ "name": "key",
66786
+ "parent": {
66787
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
66788
+ "name": "Attributes"
66789
+ },
66790
+ "declarations": [
66791
+ {
66792
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
66793
+ "name": "Attributes"
66794
+ }
66795
+ ],
66796
+ "required": false,
66797
+ "type": {
66798
+ "name": "Key | null"
66799
+ }
66800
+ }
66801
+ }
66802
+ },
66641
66803
  {
66642
66804
  "tags": {
66643
66805
  "flr-generate": "all",
@@ -67408,168 +67570,6 @@
67408
67570
  }
67409
67571
  }
67410
67572
  },
67411
- {
67412
- "tags": {
67413
- "flr-generate": "all",
67414
- "flr-clear-props-context": ""
67415
- },
67416
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/LightBox.tsx",
67417
- "description": "",
67418
- "displayName": "LightBox",
67419
- "methods": [],
67420
- "props": {
67421
- "controller": {
67422
- "defaultValue": null,
67423
- "description": "An overlay controller to control the light box state.",
67424
- "name": "controller",
67425
- "parent": {
67426
- "fileName": "components/src/components/LightBox/LightBox.tsx",
67427
- "name": "LightBoxProps"
67428
- },
67429
- "declarations": [
67430
- {
67431
- "fileName": "components/src/components/LightBox/LightBox.tsx",
67432
- "name": "LightBoxProps"
67433
- }
67434
- ],
67435
- "required": false,
67436
- "type": {
67437
- "name": "OverlayController"
67438
- }
67439
- },
67440
- "fitScreen": {
67441
- "defaultValue": {
67442
- "value": "true"
67443
- },
67444
- "description": "Whether content can be displayed larger than the available space in the\nscreen.",
67445
- "name": "fitScreen",
67446
- "parent": {
67447
- "fileName": "components/src/components/LightBox/LightBox.tsx",
67448
- "name": "LightBoxProps"
67449
- },
67450
- "declarations": [
67451
- {
67452
- "fileName": "components/src/components/LightBox/LightBox.tsx",
67453
- "name": "LightBoxProps"
67454
- }
67455
- ],
67456
- "required": false,
67457
- "type": {
67458
- "name": "boolean"
67459
- }
67460
- },
67461
- "children": {
67462
- "defaultValue": null,
67463
- "description": "",
67464
- "name": "children",
67465
- "declarations": [
67466
- {
67467
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
67468
- "name": "TypeLiteral"
67469
- }
67470
- ],
67471
- "required": false,
67472
- "type": {
67473
- "name": "ReactNode"
67474
- }
67475
- },
67476
- "wrapWith": {
67477
- "defaultValue": null,
67478
- "description": "",
67479
- "name": "wrapWith",
67480
- "parent": {
67481
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
67482
- "name": "FlowComponentProps"
67483
- },
67484
- "declarations": [
67485
- {
67486
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
67487
- "name": "FlowComponentProps"
67488
- }
67489
- ],
67490
- "required": false,
67491
- "type": {
67492
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
67493
- }
67494
- },
67495
- "tunnelId": {
67496
- "defaultValue": null,
67497
- "description": "@internal",
67498
- "name": "tunnelId",
67499
- "parent": {
67500
- "fileName": "components/src/lib/types/props.ts",
67501
- "name": "PropsWithTunnel"
67502
- },
67503
- "declarations": [
67504
- {
67505
- "fileName": "components/src/lib/types/props.ts",
67506
- "name": "PropsWithTunnel"
67507
- }
67508
- ],
67509
- "required": false,
67510
- "type": {
67511
- "name": "string | null"
67512
- }
67513
- },
67514
- "className": {
67515
- "defaultValue": null,
67516
- "description": "The elements class name.",
67517
- "name": "className",
67518
- "parent": {
67519
- "fileName": "components/src/lib/types/props.ts",
67520
- "name": "PropsWithClassName"
67521
- },
67522
- "declarations": [
67523
- {
67524
- "fileName": "components/src/lib/types/props.ts",
67525
- "name": "PropsWithClassName"
67526
- }
67527
- ],
67528
- "required": false,
67529
- "type": {
67530
- "name": "string"
67531
- }
67532
- },
67533
- "ref": {
67534
- "defaultValue": null,
67535
- "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}",
67536
- "name": "ref",
67537
- "parent": {
67538
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
67539
- "name": "RefAttributes"
67540
- },
67541
- "declarations": [
67542
- {
67543
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
67544
- "name": "RefAttributes"
67545
- }
67546
- ],
67547
- "required": false,
67548
- "type": {
67549
- "name": "Ref<HTMLDivElement>"
67550
- }
67551
- },
67552
- "key": {
67553
- "defaultValue": null,
67554
- "description": "",
67555
- "name": "key",
67556
- "parent": {
67557
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
67558
- "name": "Attributes"
67559
- },
67560
- "declarations": [
67561
- {
67562
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
67563
- "name": "Attributes"
67564
- }
67565
- ],
67566
- "required": false,
67567
- "type": {
67568
- "name": "Key | null"
67569
- }
67570
- }
67571
- }
67572
- },
67573
67573
  {
67574
67574
  "tags": {
67575
67575
  "flr-generate": "all"
@@ -195471,10 +195471,10 @@
195471
195471
  "name": "(index: number, value: any) => any[]"
195472
195472
  }
195473
195473
  },
195474
- "__@iterator@1005": {
195474
+ "__@iterator@1004": {
195475
195475
  "defaultValue": null,
195476
195476
  "description": "Iterator",
195477
- "name": "__@iterator@1005",
195477
+ "name": "__@iterator@1004",
195478
195478
  "parent": {
195479
195479
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts",
195480
195480
  "name": "Array"
@@ -195490,10 +195490,10 @@
195490
195490
  "name": "() => ArrayIterator<any>"
195491
195491
  }
195492
195492
  },
195493
- "__@unscopables@1049": {
195493
+ "__@unscopables@1048": {
195494
195494
  "defaultValue": null,
195495
195495
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
195496
- "name": "__@unscopables@1049",
195496
+ "name": "__@unscopables@1048",
195497
195497
  "parent": {
195498
195498
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
195499
195499
  "name": "Array"
@@ -196307,10 +196307,10 @@
196307
196307
  "name": "(index: number, value: unknown) => unknown[]"
196308
196308
  }
196309
196309
  },
196310
- "__@iterator@1005": {
196310
+ "__@iterator@1004": {
196311
196311
  "defaultValue": null,
196312
196312
  "description": "Iterator",
196313
- "name": "__@iterator@1005",
196313
+ "name": "__@iterator@1004",
196314
196314
  "parent": {
196315
196315
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts",
196316
196316
  "name": "Array"
@@ -196326,10 +196326,10 @@
196326
196326
  "name": "() => ArrayIterator<unknown>"
196327
196327
  }
196328
196328
  },
196329
- "__@unscopables@1049": {
196329
+ "__@unscopables@1048": {
196330
196330
  "defaultValue": null,
196331
196331
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
196332
- "name": "__@unscopables@1049",
196332
+ "name": "__@unscopables@1048",
196333
196333
  "parent": {
196334
196334
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
196335
196335
  "name": "Array"
@@ -197143,10 +197143,10 @@
197143
197143
  "name": "(index: number, value: unknown) => unknown[]"
197144
197144
  }
197145
197145
  },
197146
- "__@iterator@1005": {
197146
+ "__@iterator@1004": {
197147
197147
  "defaultValue": null,
197148
197148
  "description": "Iterator",
197149
- "name": "__@iterator@1005",
197149
+ "name": "__@iterator@1004",
197150
197150
  "parent": {
197151
197151
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts",
197152
197152
  "name": "Array"
@@ -197162,10 +197162,10 @@
197162
197162
  "name": "() => ArrayIterator<unknown>"
197163
197163
  }
197164
197164
  },
197165
- "__@unscopables@1049": {
197165
+ "__@unscopables@1048": {
197166
197166
  "defaultValue": null,
197167
197167
  "description": "Is an object whose properties have the value 'true'\nwhen they will be absent when used in a 'with' statement.",
197168
- "name": "__@unscopables@1049",
197168
+ "name": "__@unscopables@1048",
197169
197169
  "parent": {
197170
197170
  "fileName": "flow/node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
197171
197171
  "name": "Array"
@@ -220506,6 +220506,108 @@
220506
220506
  "methods": [],
220507
220507
  "props": {}
220508
220508
  },
220509
+ {
220510
+ "tags": {
220511
+ "flr-generate": "all"
220512
+ },
220513
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/components/LightBoxTrigger/LightBoxTrigger.tsx",
220514
+ "description": "",
220515
+ "displayName": "LightBoxTrigger",
220516
+ "methods": [],
220517
+ "props": {
220518
+ "isDefaultOpen": {
220519
+ "defaultValue": null,
220520
+ "description": "Whether the overlay should be open initially.",
220521
+ "name": "isDefaultOpen",
220522
+ "parent": {
220523
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
220524
+ "name": "OverlayTriggerProps"
220525
+ },
220526
+ "declarations": [
220527
+ {
220528
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
220529
+ "name": "OverlayTriggerProps"
220530
+ }
220531
+ ],
220532
+ "required": false,
220533
+ "type": {
220534
+ "name": "boolean"
220535
+ }
220536
+ },
220537
+ "controller": {
220538
+ "defaultValue": null,
220539
+ "description": "A controller to control the state of the overlay.",
220540
+ "name": "controller",
220541
+ "parent": {
220542
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
220543
+ "name": "OverlayTriggerProps"
220544
+ },
220545
+ "declarations": [
220546
+ {
220547
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
220548
+ "name": "OverlayTriggerProps"
220549
+ }
220550
+ ],
220551
+ "required": false,
220552
+ "type": {
220553
+ "name": "OverlayController"
220554
+ }
220555
+ },
220556
+ "wrapWith": {
220557
+ "defaultValue": null,
220558
+ "description": "",
220559
+ "name": "wrapWith",
220560
+ "parent": {
220561
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
220562
+ "name": "FlowComponentProps"
220563
+ },
220564
+ "declarations": [
220565
+ {
220566
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
220567
+ "name": "FlowComponentProps"
220568
+ }
220569
+ ],
220570
+ "required": false,
220571
+ "type": {
220572
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
220573
+ }
220574
+ },
220575
+ "tunnelId": {
220576
+ "defaultValue": null,
220577
+ "description": "@internal",
220578
+ "name": "tunnelId",
220579
+ "parent": {
220580
+ "fileName": "components/src/lib/types/props.ts",
220581
+ "name": "PropsWithTunnel"
220582
+ },
220583
+ "declarations": [
220584
+ {
220585
+ "fileName": "components/src/lib/types/props.ts",
220586
+ "name": "PropsWithTunnel"
220587
+ }
220588
+ ],
220589
+ "required": false,
220590
+ "type": {
220591
+ "name": "string | null"
220592
+ }
220593
+ },
220594
+ "children": {
220595
+ "defaultValue": null,
220596
+ "description": "",
220597
+ "name": "children",
220598
+ "declarations": [
220599
+ {
220600
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
220601
+ "name": "TypeLiteral"
220602
+ }
220603
+ ],
220604
+ "required": false,
220605
+ "type": {
220606
+ "name": "ReactNode"
220607
+ }
220608
+ }
220609
+ }
220610
+ },
220509
220611
  {
220510
220612
  "tags": {},
220511
220613
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Link/components/LinkIcon/LinkIcon.tsx",
@@ -221235,108 +221337,6 @@
221235
221337
  }
221236
221338
  }
221237
221339
  },
221238
- {
221239
- "tags": {
221240
- "flr-generate": "all"
221241
- },
221242
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/components/LightBoxTrigger/LightBoxTrigger.tsx",
221243
- "description": "",
221244
- "displayName": "LightBoxTrigger",
221245
- "methods": [],
221246
- "props": {
221247
- "isDefaultOpen": {
221248
- "defaultValue": null,
221249
- "description": "Whether the overlay should be open initially.",
221250
- "name": "isDefaultOpen",
221251
- "parent": {
221252
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
221253
- "name": "OverlayTriggerProps"
221254
- },
221255
- "declarations": [
221256
- {
221257
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
221258
- "name": "OverlayTriggerProps"
221259
- }
221260
- ],
221261
- "required": false,
221262
- "type": {
221263
- "name": "boolean"
221264
- }
221265
- },
221266
- "controller": {
221267
- "defaultValue": null,
221268
- "description": "A controller to control the state of the overlay.",
221269
- "name": "controller",
221270
- "parent": {
221271
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
221272
- "name": "OverlayTriggerProps"
221273
- },
221274
- "declarations": [
221275
- {
221276
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
221277
- "name": "OverlayTriggerProps"
221278
- }
221279
- ],
221280
- "required": false,
221281
- "type": {
221282
- "name": "OverlayController"
221283
- }
221284
- },
221285
- "wrapWith": {
221286
- "defaultValue": null,
221287
- "description": "",
221288
- "name": "wrapWith",
221289
- "parent": {
221290
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
221291
- "name": "FlowComponentProps"
221292
- },
221293
- "declarations": [
221294
- {
221295
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
221296
- "name": "FlowComponentProps"
221297
- }
221298
- ],
221299
- "required": false,
221300
- "type": {
221301
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
221302
- }
221303
- },
221304
- "tunnelId": {
221305
- "defaultValue": null,
221306
- "description": "@internal",
221307
- "name": "tunnelId",
221308
- "parent": {
221309
- "fileName": "components/src/lib/types/props.ts",
221310
- "name": "PropsWithTunnel"
221311
- },
221312
- "declarations": [
221313
- {
221314
- "fileName": "components/src/lib/types/props.ts",
221315
- "name": "PropsWithTunnel"
221316
- }
221317
- ],
221318
- "required": false,
221319
- "type": {
221320
- "name": "string | null"
221321
- }
221322
- },
221323
- "children": {
221324
- "defaultValue": null,
221325
- "description": "",
221326
- "name": "children",
221327
- "declarations": [
221328
- {
221329
- "fileName": "flow/node_modules/.pnpm/@types+react@19.0.10/node_modules/@types/react/index.d.ts",
221330
- "name": "TypeLiteral"
221331
- }
221332
- ],
221333
- "required": false,
221334
- "type": {
221335
- "name": "ReactNode"
221336
- }
221337
- }
221338
- }
221339
- },
221340
221340
  {
221341
221341
  "tags": {},
221342
221342
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Legend/components/LegendItem/LegendItem.tsx",
@@ -1 +1 @@
1
- {"version":3,"file":"cloneElement.mjs","sources":["../../../../../../src/lib/react/cloneElement.ts"],"sourcesContent":["import type { RemoteComponentRendererProps } from \"@mfalkenberg/remote-dom-react/host\";\nimport type { Attributes, ReactElement } from \"react\";\nimport React from \"react\";\n\nfunction isRemoteComponentRendererProps(\n props: unknown,\n): props is RemoteComponentRendererProps {\n return (\n typeof props === \"object\" &&\n props !== null &&\n \"element\" in props &&\n \"components\" in props &&\n \"receiver\" in props\n );\n}\n\nexport const cloneElement = <P>(\n element: ReactElement<P>,\n props?: Partial<P> & Attributes,\n) => {\n const existingProps = element.props;\n if (isRemoteComponentRendererProps(existingProps)) {\n Object.assign(existingProps.element.properties, props);\n }\n return React.cloneElement(element, props);\n};\n"],"names":[],"mappings":";;AAIA,SAAS,+BACP,KACuC,EAAA;AACvC,EACE,OAAA,OAAO,UAAU,QACjB,IAAA,KAAA,KAAU,QACV,SAAa,IAAA,KAAA,IACb,YAAgB,IAAA,KAAA,IAChB,UAAc,IAAA,KAAA;AAElB;AAEa,MAAA,YAAA,GAAe,CAC1B,OAAA,EACA,KACG,KAAA;AACH,EAAA,MAAM,gBAAgB,OAAQ,CAAA,KAAA;AAC9B,EAAI,IAAA,8BAAA,CAA+B,aAAa,CAAG,EAAA;AACjD,IAAA,MAAA,CAAO,MAAO,CAAA,aAAA,CAAc,OAAQ,CAAA,UAAA,EAAY,KAAK,CAAA;AAAA;AAEvD,EAAO,OAAA,KAAA,CAAM,YAAa,CAAA,OAAA,EAAS,KAAK,CAAA;AAC1C;;;;"}
1
+ {"version":3,"file":"cloneElement.mjs","sources":["../../../../../../src/lib/react/cloneElement.ts"],"sourcesContent":["import type { RemoteComponentRendererProps } from \"@mittwald/remote-dom-react/host\";\nimport type { Attributes, ReactElement } from \"react\";\nimport React from \"react\";\n\nfunction isRemoteComponentRendererProps(\n props: unknown,\n): props is RemoteComponentRendererProps {\n return (\n typeof props === \"object\" &&\n props !== null &&\n \"element\" in props &&\n \"components\" in props &&\n \"receiver\" in props\n );\n}\n\nexport const cloneElement = <P>(\n element: ReactElement<P>,\n props?: Partial<P> & Attributes,\n) => {\n const existingProps = element.props;\n if (isRemoteComponentRendererProps(existingProps)) {\n Object.assign(existingProps.element.properties, props);\n }\n return React.cloneElement(element, props);\n};\n"],"names":[],"mappings":";;AAIA,SAAS,+BACP,KACuC,EAAA;AACvC,EACE,OAAA,OAAO,UAAU,QACjB,IAAA,KAAA,KAAU,QACV,SAAa,IAAA,KAAA,IACb,YAAgB,IAAA,KAAA,IAChB,UAAc,IAAA,KAAA;AAElB;AAEa,MAAA,YAAA,GAAe,CAC1B,OAAA,EACA,KACG,KAAA;AACH,EAAA,MAAM,gBAAgB,OAAQ,CAAA,KAAA;AAC9B,EAAI,IAAA,8BAAA,CAA+B,aAAa,CAAG,EAAA;AACjD,IAAA,MAAA,CAAO,MAAO,CAAA,aAAA,CAAc,OAAQ,CAAA,UAAA,EAAY,KAAK,CAAA;AAAA;AAEvD,EAAO,OAAA,KAAA,CAAM,YAAa,CAAA,OAAA,EAAS,KAAK,CAAA;AAC1C;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-react-components",
3
- "version": "0.2.0-alpha.122",
3
+ "version": "0.2.0-alpha.124",
4
4
  "type": "module",
5
5
  "description": "A React implementation of Flow, mittwald’s design system",
6
6
  "homepage": "https://mittwald.github.io/flow",
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "@chakra-ui/live-region": "^2.1.0",
55
55
  "@internationalized/string-compiler": "^3.2.6",
56
- "@mittwald/react-tunnel": "0.2.0-alpha.122",
56
+ "@mittwald/react-tunnel": "0.2.0-alpha.124",
57
57
  "@mittwald/react-use-promise": "^3.0.3",
58
58
  "@react-aria/form": "^3.0.14",
59
59
  "@react-aria/utils": "^3.28.1",
@@ -92,9 +92,9 @@
92
92
  "devDependencies": {
93
93
  "@faker-js/faker": "^9.6.0",
94
94
  "@internationalized/date": "^3.7.0",
95
- "@mfalkenberg/remote-dom-react": "1.2.3",
96
- "@mittwald/flow-design-tokens": "0.2.0-alpha.122",
95
+ "@mittwald/flow-design-tokens": "0.2.0-alpha.124",
97
96
  "@mittwald/react-use-promise": "^2.6.0",
97
+ "@mittwald/remote-dom-react": "^1.2.2-mittwald-3",
98
98
  "@mittwald/typescript-config": "",
99
99
  "@nx/storybook": "^20.5.0",
100
100
  "@storybook/addon-a11y": "^8.6.4",
@@ -173,5 +173,5 @@
173
173
  "optional": true
174
174
  }
175
175
  },
176
- "gitHead": "0a76c08c4fb890fea379e21d3e4196d3ee025987"
176
+ "gitHead": "f6d5ef90ef91eebf938f2cac9d0927cf5a401aa8"
177
177
  }