@mittwald/flow-react-components 0.2.0-alpha.461 → 0.2.0-alpha.462

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.
@@ -83432,6 +83432,27 @@
83432
83432
  "type": {
83433
83433
  "name": "Key | null"
83434
83434
  }
83435
+ },
83436
+ "headingOffset": {
83437
+ "defaultValue": {
83438
+ "value": "0"
83439
+ },
83440
+ "description": "Shifts all heading levels by the given offset.",
83441
+ "name": "headingOffset",
83442
+ "parent": {
83443
+ "fileName": "components/src/components/Markdown/Markdown.tsx",
83444
+ "name": "MarkdownProps"
83445
+ },
83446
+ "declarations": [
83447
+ {
83448
+ "fileName": "components/src/components/Markdown/Markdown.tsx",
83449
+ "name": "MarkdownProps"
83450
+ }
83451
+ ],
83452
+ "required": false,
83453
+ "type": {
83454
+ "name": "number"
83455
+ }
83435
83456
  }
83436
83457
  }
83437
83458
  },
@@ -83463,6 +83484,27 @@
83463
83484
  "name": "\"light\" | \"dark\" | \"default\""
83464
83485
  }
83465
83486
  },
83487
+ "headingOffset": {
83488
+ "defaultValue": {
83489
+ "value": "0"
83490
+ },
83491
+ "description": "Shifts all heading levels by the given offset.",
83492
+ "name": "headingOffset",
83493
+ "parent": {
83494
+ "fileName": "components/src/components/Markdown/Markdown.tsx",
83495
+ "name": "MarkdownProps"
83496
+ },
83497
+ "declarations": [
83498
+ {
83499
+ "fileName": "components/src/components/Markdown/Markdown.tsx",
83500
+ "name": "MarkdownProps"
83501
+ }
83502
+ ],
83503
+ "required": false,
83504
+ "type": {
83505
+ "name": "number"
83506
+ }
83507
+ },
83466
83508
  "style": {
83467
83509
  "defaultValue": null,
83468
83510
  "description": "@internal",
@@ -93359,6 +93401,165 @@
93359
93401
  }
93360
93402
  }
93361
93403
  },
93404
+ {
93405
+ "tags": {},
93406
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/LightBox.tsx",
93407
+ "description": "",
93408
+ "displayName": "LightBox",
93409
+ "methods": [],
93410
+ "props": {
93411
+ "controller": {
93412
+ "defaultValue": null,
93413
+ "description": "An overlay controller to control the light box state.",
93414
+ "name": "controller",
93415
+ "parent": {
93416
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
93417
+ "name": "LightBoxProps"
93418
+ },
93419
+ "declarations": [
93420
+ {
93421
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
93422
+ "name": "LightBoxProps"
93423
+ }
93424
+ ],
93425
+ "required": false,
93426
+ "type": {
93427
+ "name": "OverlayController"
93428
+ }
93429
+ },
93430
+ "fitScreen": {
93431
+ "defaultValue": {
93432
+ "value": "true"
93433
+ },
93434
+ "description": "Whether content can be displayed larger than the available space in the\nscreen.",
93435
+ "name": "fitScreen",
93436
+ "parent": {
93437
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
93438
+ "name": "LightBoxProps"
93439
+ },
93440
+ "declarations": [
93441
+ {
93442
+ "fileName": "components/src/components/LightBox/LightBox.tsx",
93443
+ "name": "LightBoxProps"
93444
+ }
93445
+ ],
93446
+ "required": false,
93447
+ "type": {
93448
+ "name": "boolean"
93449
+ }
93450
+ },
93451
+ "children": {
93452
+ "defaultValue": null,
93453
+ "description": "",
93454
+ "name": "children",
93455
+ "declarations": [
93456
+ {
93457
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
93458
+ "name": "TypeLiteral"
93459
+ }
93460
+ ],
93461
+ "required": false,
93462
+ "type": {
93463
+ "name": "ReactNode"
93464
+ }
93465
+ },
93466
+ "wrapWith": {
93467
+ "defaultValue": null,
93468
+ "description": "",
93469
+ "name": "wrapWith",
93470
+ "parent": {
93471
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
93472
+ "name": "FlowComponentProps"
93473
+ },
93474
+ "declarations": [
93475
+ {
93476
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
93477
+ "name": "FlowComponentProps"
93478
+ }
93479
+ ],
93480
+ "required": false,
93481
+ "type": {
93482
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
93483
+ }
93484
+ },
93485
+ "tunnelId": {
93486
+ "defaultValue": null,
93487
+ "description": "@internal",
93488
+ "name": "tunnelId",
93489
+ "parent": {
93490
+ "fileName": "components/src/lib/types/props.ts",
93491
+ "name": "PropsWithTunnel"
93492
+ },
93493
+ "declarations": [
93494
+ {
93495
+ "fileName": "components/src/lib/types/props.ts",
93496
+ "name": "PropsWithTunnel"
93497
+ }
93498
+ ],
93499
+ "required": false,
93500
+ "type": {
93501
+ "name": "string | null"
93502
+ }
93503
+ },
93504
+ "ref": {
93505
+ "defaultValue": null,
93506
+ "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}",
93507
+ "name": "ref",
93508
+ "parent": {
93509
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
93510
+ "name": "RefAttributes"
93511
+ },
93512
+ "declarations": [
93513
+ {
93514
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
93515
+ "name": "RefAttributes"
93516
+ }
93517
+ ],
93518
+ "required": false,
93519
+ "type": {
93520
+ "name": "Ref<HTMLInputElement>"
93521
+ }
93522
+ },
93523
+ "key": {
93524
+ "defaultValue": null,
93525
+ "description": "",
93526
+ "name": "key",
93527
+ "parent": {
93528
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
93529
+ "name": "Attributes"
93530
+ },
93531
+ "declarations": [
93532
+ {
93533
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
93534
+ "name": "Attributes"
93535
+ }
93536
+ ],
93537
+ "required": false,
93538
+ "type": {
93539
+ "name": "Key | null"
93540
+ }
93541
+ },
93542
+ "className": {
93543
+ "defaultValue": null,
93544
+ "description": "The elements class name.",
93545
+ "name": "className",
93546
+ "parent": {
93547
+ "fileName": "components/src/lib/types/props.ts",
93548
+ "name": "PropsWithClassName"
93549
+ },
93550
+ "declarations": [
93551
+ {
93552
+ "fileName": "components/src/lib/types/props.ts",
93553
+ "name": "PropsWithClassName"
93554
+ }
93555
+ ],
93556
+ "required": false,
93557
+ "type": {
93558
+ "name": "string"
93559
+ }
93560
+ }
93561
+ }
93562
+ },
93362
93563
  {
93363
93564
  "tags": {
93364
93565
  "flr-generate": "all",
@@ -95460,171 +95661,12 @@
95460
95661
  }
95461
95662
  },
95462
95663
  {
95463
- "tags": {},
95464
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/LightBox.tsx",
95664
+ "tags": {
95665
+ "flr-generate": "all"
95666
+ },
95667
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Legend/Legend.tsx",
95465
95668
  "description": "",
95466
- "displayName": "LightBox",
95467
- "methods": [],
95468
- "props": {
95469
- "controller": {
95470
- "defaultValue": null,
95471
- "description": "An overlay controller to control the light box state.",
95472
- "name": "controller",
95473
- "parent": {
95474
- "fileName": "components/src/components/LightBox/LightBox.tsx",
95475
- "name": "LightBoxProps"
95476
- },
95477
- "declarations": [
95478
- {
95479
- "fileName": "components/src/components/LightBox/LightBox.tsx",
95480
- "name": "LightBoxProps"
95481
- }
95482
- ],
95483
- "required": false,
95484
- "type": {
95485
- "name": "OverlayController"
95486
- }
95487
- },
95488
- "fitScreen": {
95489
- "defaultValue": {
95490
- "value": "true"
95491
- },
95492
- "description": "Whether content can be displayed larger than the available space in the\nscreen.",
95493
- "name": "fitScreen",
95494
- "parent": {
95495
- "fileName": "components/src/components/LightBox/LightBox.tsx",
95496
- "name": "LightBoxProps"
95497
- },
95498
- "declarations": [
95499
- {
95500
- "fileName": "components/src/components/LightBox/LightBox.tsx",
95501
- "name": "LightBoxProps"
95502
- }
95503
- ],
95504
- "required": false,
95505
- "type": {
95506
- "name": "boolean"
95507
- }
95508
- },
95509
- "children": {
95510
- "defaultValue": null,
95511
- "description": "",
95512
- "name": "children",
95513
- "declarations": [
95514
- {
95515
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
95516
- "name": "TypeLiteral"
95517
- }
95518
- ],
95519
- "required": false,
95520
- "type": {
95521
- "name": "ReactNode"
95522
- }
95523
- },
95524
- "wrapWith": {
95525
- "defaultValue": null,
95526
- "description": "",
95527
- "name": "wrapWith",
95528
- "parent": {
95529
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
95530
- "name": "FlowComponentProps"
95531
- },
95532
- "declarations": [
95533
- {
95534
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
95535
- "name": "FlowComponentProps"
95536
- }
95537
- ],
95538
- "required": false,
95539
- "type": {
95540
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
95541
- }
95542
- },
95543
- "tunnelId": {
95544
- "defaultValue": null,
95545
- "description": "@internal",
95546
- "name": "tunnelId",
95547
- "parent": {
95548
- "fileName": "components/src/lib/types/props.ts",
95549
- "name": "PropsWithTunnel"
95550
- },
95551
- "declarations": [
95552
- {
95553
- "fileName": "components/src/lib/types/props.ts",
95554
- "name": "PropsWithTunnel"
95555
- }
95556
- ],
95557
- "required": false,
95558
- "type": {
95559
- "name": "string | null"
95560
- }
95561
- },
95562
- "ref": {
95563
- "defaultValue": null,
95564
- "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}",
95565
- "name": "ref",
95566
- "parent": {
95567
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
95568
- "name": "RefAttributes"
95569
- },
95570
- "declarations": [
95571
- {
95572
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
95573
- "name": "RefAttributes"
95574
- }
95575
- ],
95576
- "required": false,
95577
- "type": {
95578
- "name": "Ref<HTMLInputElement>"
95579
- }
95580
- },
95581
- "key": {
95582
- "defaultValue": null,
95583
- "description": "",
95584
- "name": "key",
95585
- "parent": {
95586
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
95587
- "name": "Attributes"
95588
- },
95589
- "declarations": [
95590
- {
95591
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
95592
- "name": "Attributes"
95593
- }
95594
- ],
95595
- "required": false,
95596
- "type": {
95597
- "name": "Key | null"
95598
- }
95599
- },
95600
- "className": {
95601
- "defaultValue": null,
95602
- "description": "The elements class name.",
95603
- "name": "className",
95604
- "parent": {
95605
- "fileName": "components/src/lib/types/props.ts",
95606
- "name": "PropsWithClassName"
95607
- },
95608
- "declarations": [
95609
- {
95610
- "fileName": "components/src/lib/types/props.ts",
95611
- "name": "PropsWithClassName"
95612
- }
95613
- ],
95614
- "required": false,
95615
- "type": {
95616
- "name": "string"
95617
- }
95618
- }
95619
- }
95620
- },
95621
- {
95622
- "tags": {
95623
- "flr-generate": "all"
95624
- },
95625
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Legend/Legend.tsx",
95626
- "description": "",
95627
- "displayName": "Legend",
95669
+ "displayName": "Legend",
95628
95670
  "methods": [],
95629
95671
  "props": {
95630
95672
  "children": {
@@ -292058,144 +292100,6 @@
292058
292100
  }
292059
292101
  }
292060
292102
  },
292061
- {
292062
- "tags": {},
292063
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
292064
- "description": "",
292065
- "displayName": "ModalTrigger",
292066
- "methods": [],
292067
- "props": {
292068
- "isDefaultOpen": {
292069
- "defaultValue": null,
292070
- "description": "Whether the overlay should be open initially.",
292071
- "name": "isDefaultOpen",
292072
- "parent": {
292073
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
292074
- "name": "OverlayTriggerProps"
292075
- },
292076
- "declarations": [
292077
- {
292078
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
292079
- "name": "OverlayTriggerProps"
292080
- }
292081
- ],
292082
- "required": false,
292083
- "type": {
292084
- "name": "boolean"
292085
- }
292086
- },
292087
- "controller": {
292088
- "defaultValue": null,
292089
- "description": "A controller to control the state of the overlay.",
292090
- "name": "controller",
292091
- "parent": {
292092
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
292093
- "name": "OverlayTriggerProps"
292094
- },
292095
- "declarations": [
292096
- {
292097
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
292098
- "name": "OverlayTriggerProps"
292099
- }
292100
- ],
292101
- "required": false,
292102
- "type": {
292103
- "name": "OverlayController"
292104
- }
292105
- },
292106
- "wrapWith": {
292107
- "defaultValue": null,
292108
- "description": "",
292109
- "name": "wrapWith",
292110
- "parent": {
292111
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
292112
- "name": "FlowComponentProps"
292113
- },
292114
- "declarations": [
292115
- {
292116
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
292117
- "name": "FlowComponentProps"
292118
- }
292119
- ],
292120
- "required": false,
292121
- "type": {
292122
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
292123
- }
292124
- },
292125
- "tunnelId": {
292126
- "defaultValue": null,
292127
- "description": "@internal",
292128
- "name": "tunnelId",
292129
- "parent": {
292130
- "fileName": "components/src/lib/types/props.ts",
292131
- "name": "PropsWithTunnel"
292132
- },
292133
- "declarations": [
292134
- {
292135
- "fileName": "components/src/lib/types/props.ts",
292136
- "name": "PropsWithTunnel"
292137
- }
292138
- ],
292139
- "required": false,
292140
- "type": {
292141
- "name": "string | null"
292142
- }
292143
- },
292144
- "ref": {
292145
- "defaultValue": null,
292146
- "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}",
292147
- "name": "ref",
292148
- "parent": {
292149
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
292150
- "name": "RefAttributes"
292151
- },
292152
- "declarations": [
292153
- {
292154
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
292155
- "name": "RefAttributes"
292156
- }
292157
- ],
292158
- "required": false,
292159
- "type": {
292160
- "name": "Ref<HTMLInputElement>"
292161
- }
292162
- },
292163
- "key": {
292164
- "defaultValue": null,
292165
- "description": "",
292166
- "name": "key",
292167
- "parent": {
292168
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
292169
- "name": "Attributes"
292170
- },
292171
- "declarations": [
292172
- {
292173
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
292174
- "name": "Attributes"
292175
- }
292176
- ],
292177
- "required": false,
292178
- "type": {
292179
- "name": "Key | null"
292180
- }
292181
- },
292182
- "children": {
292183
- "defaultValue": null,
292184
- "description": "",
292185
- "name": "children",
292186
- "declarations": [
292187
- {
292188
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
292189
- "name": "TypeLiteral"
292190
- }
292191
- ],
292192
- "required": false,
292193
- "type": {
292194
- "name": "ReactNode"
292195
- }
292196
- }
292197
- }
292198
- },
292199
292103
  {
292200
292104
  "tags": {
292201
292105
  "flr-generate": "all"
@@ -297584,6 +297488,144 @@
297584
297488
  }
297585
297489
  }
297586
297490
  },
297491
+ {
297492
+ "tags": {},
297493
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ModalTrigger/ModalTrigger.tsx",
297494
+ "description": "",
297495
+ "displayName": "ModalTrigger",
297496
+ "methods": [],
297497
+ "props": {
297498
+ "isDefaultOpen": {
297499
+ "defaultValue": null,
297500
+ "description": "Whether the overlay should be open initially.",
297501
+ "name": "isDefaultOpen",
297502
+ "parent": {
297503
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
297504
+ "name": "OverlayTriggerProps"
297505
+ },
297506
+ "declarations": [
297507
+ {
297508
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
297509
+ "name": "OverlayTriggerProps"
297510
+ }
297511
+ ],
297512
+ "required": false,
297513
+ "type": {
297514
+ "name": "boolean"
297515
+ }
297516
+ },
297517
+ "controller": {
297518
+ "defaultValue": null,
297519
+ "description": "A controller to control the state of the overlay.",
297520
+ "name": "controller",
297521
+ "parent": {
297522
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
297523
+ "name": "OverlayTriggerProps"
297524
+ },
297525
+ "declarations": [
297526
+ {
297527
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
297528
+ "name": "OverlayTriggerProps"
297529
+ }
297530
+ ],
297531
+ "required": false,
297532
+ "type": {
297533
+ "name": "OverlayController"
297534
+ }
297535
+ },
297536
+ "wrapWith": {
297537
+ "defaultValue": null,
297538
+ "description": "",
297539
+ "name": "wrapWith",
297540
+ "parent": {
297541
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
297542
+ "name": "FlowComponentProps"
297543
+ },
297544
+ "declarations": [
297545
+ {
297546
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
297547
+ "name": "FlowComponentProps"
297548
+ }
297549
+ ],
297550
+ "required": false,
297551
+ "type": {
297552
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
297553
+ }
297554
+ },
297555
+ "tunnelId": {
297556
+ "defaultValue": null,
297557
+ "description": "@internal",
297558
+ "name": "tunnelId",
297559
+ "parent": {
297560
+ "fileName": "components/src/lib/types/props.ts",
297561
+ "name": "PropsWithTunnel"
297562
+ },
297563
+ "declarations": [
297564
+ {
297565
+ "fileName": "components/src/lib/types/props.ts",
297566
+ "name": "PropsWithTunnel"
297567
+ }
297568
+ ],
297569
+ "required": false,
297570
+ "type": {
297571
+ "name": "string | null"
297572
+ }
297573
+ },
297574
+ "ref": {
297575
+ "defaultValue": null,
297576
+ "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}",
297577
+ "name": "ref",
297578
+ "parent": {
297579
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
297580
+ "name": "RefAttributes"
297581
+ },
297582
+ "declarations": [
297583
+ {
297584
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
297585
+ "name": "RefAttributes"
297586
+ }
297587
+ ],
297588
+ "required": false,
297589
+ "type": {
297590
+ "name": "Ref<HTMLInputElement>"
297591
+ }
297592
+ },
297593
+ "key": {
297594
+ "defaultValue": null,
297595
+ "description": "",
297596
+ "name": "key",
297597
+ "parent": {
297598
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
297599
+ "name": "Attributes"
297600
+ },
297601
+ "declarations": [
297602
+ {
297603
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
297604
+ "name": "Attributes"
297605
+ }
297606
+ ],
297607
+ "required": false,
297608
+ "type": {
297609
+ "name": "Key | null"
297610
+ }
297611
+ },
297612
+ "children": {
297613
+ "defaultValue": null,
297614
+ "description": "",
297615
+ "name": "children",
297616
+ "declarations": [
297617
+ {
297618
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
297619
+ "name": "TypeLiteral"
297620
+ }
297621
+ ],
297622
+ "required": false,
297623
+ "type": {
297624
+ "name": "ReactNode"
297625
+ }
297626
+ }
297627
+ }
297628
+ },
297587
297629
  {
297588
297630
  "tags": {
297589
297631
  "flr-generate": "all"
@@ -298062,131 +298104,269 @@
298062
298104
  }
298063
298105
  }
298064
298106
  },
298065
- {
298066
- "tags": {},
298067
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/ListItemView.tsx",
298068
- "description": "",
298069
- "displayName": "ListItemView",
298070
- "methods": [],
298071
- "props": {
298072
- "children": {
298073
- "defaultValue": null,
298074
- "description": "",
298075
- "name": "children",
298076
- "declarations": [
298077
- {
298078
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298079
- "name": "TypeLiteral"
298080
- }
298081
- ],
298082
- "required": false,
298083
- "type": {
298084
- "name": "ReactNode"
298085
- }
298086
- },
298087
- "s": {
298088
- "defaultValue": null,
298089
- "description": "Column layout for container size s.",
298090
- "name": "s",
298091
- "parent": {
298092
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298093
- "name": "ColumnLayoutProps"
298094
- },
298095
- "declarations": [
298096
- {
298097
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298098
- "name": "ColumnLayoutProps"
298099
- }
298100
- ],
298101
- "required": false,
298102
- "type": {
298103
- "name": "(number | null)[]"
298104
- }
298105
- },
298106
- "m": {
298107
- "defaultValue": null,
298108
- "description": "Column layout for container size m.",
298109
- "name": "m",
298110
- "parent": {
298111
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298112
- "name": "ColumnLayoutProps"
298113
- },
298114
- "declarations": [
298115
- {
298116
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298117
- "name": "ColumnLayoutProps"
298118
- }
298119
- ],
298120
- "required": false,
298121
- "type": {
298122
- "name": "(number | null)[]"
298123
- }
298124
- },
298125
- "l": {
298126
- "defaultValue": null,
298127
- "description": "Column layout for container size l.",
298128
- "name": "l",
298129
- "parent": {
298130
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298131
- "name": "ColumnLayoutProps"
298132
- },
298133
- "declarations": [
298134
- {
298135
- "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298136
- "name": "ColumnLayoutProps"
298137
- }
298138
- ],
298139
- "required": false,
298140
- "type": {
298141
- "name": "(number | null)[]"
298142
- }
298143
- }
298144
- }
298145
- },
298146
- {
298147
- "tags": {},
298148
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/Items.tsx",
298149
- "description": "",
298150
- "displayName": "Items",
298151
- "methods": [],
298152
- "props": {}
298153
- },
298154
- {
298155
- "tags": {},
298156
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/Header.tsx",
298157
- "description": "",
298158
- "displayName": "Header",
298159
- "methods": [],
298160
- "props": {
298161
- "className": {
298162
- "defaultValue": null,
298163
- "description": "The elements class name.",
298164
- "name": "className",
298165
- "parent": {
298166
- "fileName": "components/src/lib/types/props.ts",
298167
- "name": "PropsWithClassName"
298168
- },
298169
- "declarations": [
298170
- {
298171
- "fileName": "components/src/lib/types/props.ts",
298172
- "name": "PropsWithClassName"
298173
- }
298174
- ],
298175
- "required": false,
298176
- "type": {
298177
- "name": "string"
298178
- }
298179
- }
298180
- }
298181
- },
298182
- {
298183
- "tags": {},
298184
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Footer/Footer.tsx",
298185
- "description": "",
298186
- "displayName": "Footer",
298187
- "methods": [],
298188
- "props": {}
298189
- },
298107
+ {
298108
+ "tags": {},
298109
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/ListItemView/ListItemView.tsx",
298110
+ "description": "",
298111
+ "displayName": "ListItemView",
298112
+ "methods": [],
298113
+ "props": {
298114
+ "children": {
298115
+ "defaultValue": null,
298116
+ "description": "",
298117
+ "name": "children",
298118
+ "declarations": [
298119
+ {
298120
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298121
+ "name": "TypeLiteral"
298122
+ }
298123
+ ],
298124
+ "required": false,
298125
+ "type": {
298126
+ "name": "ReactNode"
298127
+ }
298128
+ },
298129
+ "s": {
298130
+ "defaultValue": null,
298131
+ "description": "Column layout for container size s.",
298132
+ "name": "s",
298133
+ "parent": {
298134
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298135
+ "name": "ColumnLayoutProps"
298136
+ },
298137
+ "declarations": [
298138
+ {
298139
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298140
+ "name": "ColumnLayoutProps"
298141
+ }
298142
+ ],
298143
+ "required": false,
298144
+ "type": {
298145
+ "name": "(number | null)[]"
298146
+ }
298147
+ },
298148
+ "m": {
298149
+ "defaultValue": null,
298150
+ "description": "Column layout for container size m.",
298151
+ "name": "m",
298152
+ "parent": {
298153
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298154
+ "name": "ColumnLayoutProps"
298155
+ },
298156
+ "declarations": [
298157
+ {
298158
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298159
+ "name": "ColumnLayoutProps"
298160
+ }
298161
+ ],
298162
+ "required": false,
298163
+ "type": {
298164
+ "name": "(number | null)[]"
298165
+ }
298166
+ },
298167
+ "l": {
298168
+ "defaultValue": null,
298169
+ "description": "Column layout for container size l.",
298170
+ "name": "l",
298171
+ "parent": {
298172
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298173
+ "name": "ColumnLayoutProps"
298174
+ },
298175
+ "declarations": [
298176
+ {
298177
+ "fileName": "components/src/components/ColumnLayout/ColumnLayout.tsx",
298178
+ "name": "ColumnLayoutProps"
298179
+ }
298180
+ ],
298181
+ "required": false,
298182
+ "type": {
298183
+ "name": "(number | null)[]"
298184
+ }
298185
+ }
298186
+ }
298187
+ },
298188
+ {
298189
+ "tags": {},
298190
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Items/Items.tsx",
298191
+ "description": "",
298192
+ "displayName": "Items",
298193
+ "methods": [],
298194
+ "props": {}
298195
+ },
298196
+ {
298197
+ "tags": {},
298198
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Header/Header.tsx",
298199
+ "description": "",
298200
+ "displayName": "Header",
298201
+ "methods": [],
298202
+ "props": {
298203
+ "className": {
298204
+ "defaultValue": null,
298205
+ "description": "The elements class name.",
298206
+ "name": "className",
298207
+ "parent": {
298208
+ "fileName": "components/src/lib/types/props.ts",
298209
+ "name": "PropsWithClassName"
298210
+ },
298211
+ "declarations": [
298212
+ {
298213
+ "fileName": "components/src/lib/types/props.ts",
298214
+ "name": "PropsWithClassName"
298215
+ }
298216
+ ],
298217
+ "required": false,
298218
+ "type": {
298219
+ "name": "string"
298220
+ }
298221
+ }
298222
+ }
298223
+ },
298224
+ {
298225
+ "tags": {},
298226
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Footer/Footer.tsx",
298227
+ "description": "",
298228
+ "displayName": "Footer",
298229
+ "methods": [],
298230
+ "props": {}
298231
+ },
298232
+ {
298233
+ "tags": {},
298234
+ "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/components/LightBoxTrigger/LightBoxTrigger.tsx",
298235
+ "description": "",
298236
+ "displayName": "LightBoxTrigger",
298237
+ "methods": [],
298238
+ "props": {
298239
+ "isDefaultOpen": {
298240
+ "defaultValue": null,
298241
+ "description": "Whether the overlay should be open initially.",
298242
+ "name": "isDefaultOpen",
298243
+ "parent": {
298244
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
298245
+ "name": "OverlayTriggerProps"
298246
+ },
298247
+ "declarations": [
298248
+ {
298249
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
298250
+ "name": "OverlayTriggerProps"
298251
+ }
298252
+ ],
298253
+ "required": false,
298254
+ "type": {
298255
+ "name": "boolean"
298256
+ }
298257
+ },
298258
+ "controller": {
298259
+ "defaultValue": null,
298260
+ "description": "A controller to control the state of the overlay.",
298261
+ "name": "controller",
298262
+ "parent": {
298263
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
298264
+ "name": "OverlayTriggerProps"
298265
+ },
298266
+ "declarations": [
298267
+ {
298268
+ "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
298269
+ "name": "OverlayTriggerProps"
298270
+ }
298271
+ ],
298272
+ "required": false,
298273
+ "type": {
298274
+ "name": "OverlayController"
298275
+ }
298276
+ },
298277
+ "wrapWith": {
298278
+ "defaultValue": null,
298279
+ "description": "",
298280
+ "name": "wrapWith",
298281
+ "parent": {
298282
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
298283
+ "name": "FlowComponentProps"
298284
+ },
298285
+ "declarations": [
298286
+ {
298287
+ "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
298288
+ "name": "FlowComponentProps"
298289
+ }
298290
+ ],
298291
+ "required": false,
298292
+ "type": {
298293
+ "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
298294
+ }
298295
+ },
298296
+ "tunnelId": {
298297
+ "defaultValue": null,
298298
+ "description": "@internal",
298299
+ "name": "tunnelId",
298300
+ "parent": {
298301
+ "fileName": "components/src/lib/types/props.ts",
298302
+ "name": "PropsWithTunnel"
298303
+ },
298304
+ "declarations": [
298305
+ {
298306
+ "fileName": "components/src/lib/types/props.ts",
298307
+ "name": "PropsWithTunnel"
298308
+ }
298309
+ ],
298310
+ "required": false,
298311
+ "type": {
298312
+ "name": "string | null"
298313
+ }
298314
+ },
298315
+ "ref": {
298316
+ "defaultValue": null,
298317
+ "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}",
298318
+ "name": "ref",
298319
+ "parent": {
298320
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298321
+ "name": "RefAttributes"
298322
+ },
298323
+ "declarations": [
298324
+ {
298325
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298326
+ "name": "RefAttributes"
298327
+ }
298328
+ ],
298329
+ "required": false,
298330
+ "type": {
298331
+ "name": "Ref<HTMLInputElement>"
298332
+ }
298333
+ },
298334
+ "key": {
298335
+ "defaultValue": null,
298336
+ "description": "",
298337
+ "name": "key",
298338
+ "parent": {
298339
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298340
+ "name": "Attributes"
298341
+ },
298342
+ "declarations": [
298343
+ {
298344
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298345
+ "name": "Attributes"
298346
+ }
298347
+ ],
298348
+ "required": false,
298349
+ "type": {
298350
+ "name": "Key | null"
298351
+ }
298352
+ },
298353
+ "children": {
298354
+ "defaultValue": null,
298355
+ "description": "",
298356
+ "name": "children",
298357
+ "declarations": [
298358
+ {
298359
+ "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
298360
+ "name": "TypeLiteral"
298361
+ }
298362
+ ],
298363
+ "required": false,
298364
+ "type": {
298365
+ "name": "ReactNode"
298366
+ }
298367
+ }
298368
+ }
298369
+ },
298190
298370
  {
298191
298371
  "tags": {},
298192
298372
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Link/components/LinkIcon/LinkIcon.tsx",
@@ -300284,144 +300464,6 @@
300284
300464
  }
300285
300465
  }
300286
300466
  },
300287
- {
300288
- "tags": {},
300289
- "filePath": "/home/runner/work/flow/flow/packages/components/src/components/LightBox/components/LightBoxTrigger/LightBoxTrigger.tsx",
300290
- "description": "",
300291
- "displayName": "LightBoxTrigger",
300292
- "methods": [],
300293
- "props": {
300294
- "isDefaultOpen": {
300295
- "defaultValue": null,
300296
- "description": "Whether the overlay should be open initially.",
300297
- "name": "isDefaultOpen",
300298
- "parent": {
300299
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
300300
- "name": "OverlayTriggerProps"
300301
- },
300302
- "declarations": [
300303
- {
300304
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
300305
- "name": "OverlayTriggerProps"
300306
- }
300307
- ],
300308
- "required": false,
300309
- "type": {
300310
- "name": "boolean"
300311
- }
300312
- },
300313
- "controller": {
300314
- "defaultValue": null,
300315
- "description": "A controller to control the state of the overlay.",
300316
- "name": "controller",
300317
- "parent": {
300318
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
300319
- "name": "OverlayTriggerProps"
300320
- },
300321
- "declarations": [
300322
- {
300323
- "fileName": "components/src/components/OverlayTrigger/OverlayTrigger.tsx",
300324
- "name": "OverlayTriggerProps"
300325
- }
300326
- ],
300327
- "required": false,
300328
- "type": {
300329
- "name": "OverlayController"
300330
- }
300331
- },
300332
- "wrapWith": {
300333
- "defaultValue": null,
300334
- "description": "",
300335
- "name": "wrapWith",
300336
- "parent": {
300337
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
300338
- "name": "FlowComponentProps"
300339
- },
300340
- "declarations": [
300341
- {
300342
- "fileName": "components/src/lib/componentFactory/flowComponent.tsx",
300343
- "name": "FlowComponentProps"
300344
- }
300345
- ],
300346
- "required": false,
300347
- "type": {
300348
- "name": "ReactElement<unknown, string | JSXElementConstructor<any>>"
300349
- }
300350
- },
300351
- "tunnelId": {
300352
- "defaultValue": null,
300353
- "description": "@internal",
300354
- "name": "tunnelId",
300355
- "parent": {
300356
- "fileName": "components/src/lib/types/props.ts",
300357
- "name": "PropsWithTunnel"
300358
- },
300359
- "declarations": [
300360
- {
300361
- "fileName": "components/src/lib/types/props.ts",
300362
- "name": "PropsWithTunnel"
300363
- }
300364
- ],
300365
- "required": false,
300366
- "type": {
300367
- "name": "string | null"
300368
- }
300369
- },
300370
- "ref": {
300371
- "defaultValue": null,
300372
- "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}",
300373
- "name": "ref",
300374
- "parent": {
300375
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
300376
- "name": "RefAttributes"
300377
- },
300378
- "declarations": [
300379
- {
300380
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
300381
- "name": "RefAttributes"
300382
- }
300383
- ],
300384
- "required": false,
300385
- "type": {
300386
- "name": "Ref<HTMLInputElement>"
300387
- }
300388
- },
300389
- "key": {
300390
- "defaultValue": null,
300391
- "description": "",
300392
- "name": "key",
300393
- "parent": {
300394
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
300395
- "name": "Attributes"
300396
- },
300397
- "declarations": [
300398
- {
300399
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
300400
- "name": "Attributes"
300401
- }
300402
- ],
300403
- "required": false,
300404
- "type": {
300405
- "name": "Key | null"
300406
- }
300407
- },
300408
- "children": {
300409
- "defaultValue": null,
300410
- "description": "",
300411
- "name": "children",
300412
- "declarations": [
300413
- {
300414
- "fileName": "flow/node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts",
300415
- "name": "TypeLiteral"
300416
- }
300417
- ],
300418
- "required": false,
300419
- "type": {
300420
- "name": "ReactNode"
300421
- }
300422
- }
300423
- }
300424
- },
300425
300467
  {
300426
300468
  "tags": {},
300427
300469
  "filePath": "/home/runner/work/flow/flow/packages/components/src/components/Legend/components/LegendItem/LegendItem.tsx",