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

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,18 @@
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.126](https://github.com/mittwald/flow/compare/0.2.0-alpha.125...0.2.0-alpha.126) (2025-04-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ * update to bug-fixed remote packages ([54b53cd](https://github.com/mittwald/flow/commit/54b53cdd05964843c0b4e7d2635fd4c524206691))
11
+
12
+ # [0.2.0-alpha.125](https://github.com/mittwald/flow/compare/0.2.0-alpha.124...0.2.0-alpha.125) (2025-04-03)
13
+
14
+ ### Features
15
+
16
+ * **List:** update search style ([#1335](https://github.com/mittwald/flow/issues/1335)) ([1dd924e](https://github.com/mittwald/flow/commit/1dd924e80e12bdb17c4e778f5032d912c71a5f58))
17
+
6
18
  # [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
19
 
8
20
  **Note:** Version bump only for package @mittwald/flow-react-components
@@ -66638,168 +66638,6 @@
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
- },
66803
66641
  {
66804
66642
  "tags": {
66805
66643
  "flr-generate": "all",
@@ -67570,6 +67408,168 @@
67570
67408
  }
67571
67409
  }
67572
67410
  },
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"
@@ -220506,108 +220506,6 @@
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
- },
220611
220509
  {
220612
220510
  "tags": {},
220613
220511
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Link/components/LinkIcon/LinkIcon.tsx",
@@ -221337,6 +221235,108 @@
221337
221235
  }
221338
221236
  }
221339
221237
  },
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",