@mittwald/flow-react-components 0.2.0-alpha.986 → 0.2.0-alpha.988
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 +10 -0
- package/dist/assets/doc-properties.json +792 -744
- package/dist/js/packages/components/src/components/Modal/Modal.mjs +7 -3
- package/dist/js/packages/components/src/components/Modal/Modal.mjs.map +1 -1
- package/dist/js/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.mjs +5 -3
- package/dist/js/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.mjs.map +1 -1
- package/dist/js/packages/components/src/components/Overlay/Overlay.mjs.map +1 -1
- package/dist/js/packages/components/src/integrations/react-hook-form/components/Form/Form.mjs +25 -26
- package/dist/js/packages/components/src/integrations/react-hook-form/components/Form/Form.mjs.map +1 -1
- package/dist/js/packages/components/src/lib/controller/overlay/OverlayController.mjs +47 -12
- package/dist/js/packages/components/src/lib/controller/overlay/OverlayController.mjs.map +1 -1
- package/dist/types/components/Modal/Modal.d.ts +5 -0
- package/dist/types/components/Modal/Modal.d.ts.map +1 -1
- package/dist/types/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.d.ts +4 -0
- package/dist/types/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.d.ts.map +1 -1
- package/dist/types/components/Modal/stories/Default.stories.d.ts +1 -0
- package/dist/types/components/Modal/stories/Default.stories.d.ts.map +1 -1
- package/dist/types/components/Overlay/Overlay.d.ts +2 -0
- package/dist/types/components/Overlay/Overlay.d.ts.map +1 -1
- package/dist/types/integrations/react-hook-form/components/Form/Form.d.ts.map +1 -1
- package/dist/types/lib/controller/overlay/OverlayController.d.ts +23 -1
- package/dist/types/lib/controller/overlay/OverlayController.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -62557,6 +62557,25 @@
|
|
|
62557
62557
|
"name": "OverlayOpenStateHandler"
|
|
62558
62558
|
}
|
|
62559
62559
|
},
|
|
62560
|
+
"confirmOnClose": {
|
|
62561
|
+
"defaultValue": null,
|
|
62562
|
+
"description": "Whether closing the overlay must be confirmed.",
|
|
62563
|
+
"name": "confirmOnClose",
|
|
62564
|
+
"parent": {
|
|
62565
|
+
"fileName": "components/src/components/Overlay/Overlay.tsx",
|
|
62566
|
+
"name": "OverlayProps"
|
|
62567
|
+
},
|
|
62568
|
+
"declarations": [
|
|
62569
|
+
{
|
|
62570
|
+
"fileName": "components/src/components/Overlay/Overlay.tsx",
|
|
62571
|
+
"name": "OverlayProps"
|
|
62572
|
+
}
|
|
62573
|
+
],
|
|
62574
|
+
"required": false,
|
|
62575
|
+
"type": {
|
|
62576
|
+
"name": "boolean"
|
|
62577
|
+
}
|
|
62578
|
+
},
|
|
62560
62579
|
"children": {
|
|
62561
62580
|
"defaultValue": null,
|
|
62562
62581
|
"description": "",
|
|
@@ -85258,6 +85277,25 @@
|
|
|
85258
85277
|
"name": "boolean"
|
|
85259
85278
|
}
|
|
85260
85279
|
},
|
|
85280
|
+
"confirmOnClose": {
|
|
85281
|
+
"defaultValue": null,
|
|
85282
|
+
"description": "Whether closing the modal must be confirmed – use it to protect unsaved\nchanges.",
|
|
85283
|
+
"name": "confirmOnClose",
|
|
85284
|
+
"parent": {
|
|
85285
|
+
"fileName": "components/src/components/Modal/Modal.tsx",
|
|
85286
|
+
"name": "ModalProps"
|
|
85287
|
+
},
|
|
85288
|
+
"declarations": [
|
|
85289
|
+
{
|
|
85290
|
+
"fileName": "components/src/components/Modal/Modal.tsx",
|
|
85291
|
+
"name": "ModalProps"
|
|
85292
|
+
}
|
|
85293
|
+
],
|
|
85294
|
+
"required": false,
|
|
85295
|
+
"type": {
|
|
85296
|
+
"name": "boolean"
|
|
85297
|
+
}
|
|
85298
|
+
},
|
|
85261
85299
|
"children": {
|
|
85262
85300
|
"defaultValue": null,
|
|
85263
85301
|
"description": "",
|
|
@@ -285276,7 +285314,7 @@
|
|
|
285276
285314
|
},
|
|
285277
285315
|
"confirmOnCloseEnabled": {
|
|
285278
285316
|
"defaultValue": null,
|
|
285279
|
-
"description": "",
|
|
285317
|
+
"description": "Whether closing this overlay currently requires a confirmation.",
|
|
285280
285318
|
"name": "confirmOnCloseEnabled",
|
|
285281
285319
|
"declarations": [],
|
|
285282
285320
|
"required": true,
|
|
@@ -285414,6 +285452,16 @@
|
|
|
285414
285452
|
"name": "() => boolean"
|
|
285415
285453
|
}
|
|
285416
285454
|
},
|
|
285455
|
+
"useConfirmOnCloseEnabled": {
|
|
285456
|
+
"defaultValue": null,
|
|
285457
|
+
"description": "",
|
|
285458
|
+
"name": "useConfirmOnCloseEnabled",
|
|
285459
|
+
"declarations": [],
|
|
285460
|
+
"required": true,
|
|
285461
|
+
"type": {
|
|
285462
|
+
"name": "() => boolean"
|
|
285463
|
+
}
|
|
285464
|
+
},
|
|
285417
285465
|
"useConfirmationController": {
|
|
285418
285466
|
"defaultValue": null,
|
|
285419
285467
|
"description": "",
|
|
@@ -306236,44 +306284,44 @@
|
|
|
306236
306284
|
"tags": {
|
|
306237
306285
|
"flr-generate": "all"
|
|
306238
306286
|
},
|
|
306239
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Table/components/
|
|
306287
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Table/components/TableRow/TableRow.tsx",
|
|
306240
306288
|
"description": "",
|
|
306241
|
-
"displayName": "
|
|
306289
|
+
"displayName": "TableRow",
|
|
306242
306290
|
"methods": [],
|
|
306243
306291
|
"props": {
|
|
306244
306292
|
"className": {
|
|
306245
306293
|
"defaultValue": {
|
|
306246
|
-
"value": "'react-aria-
|
|
306294
|
+
"value": "'react-aria-Row'"
|
|
306247
306295
|
},
|
|
306248
306296
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
306249
306297
|
"name": "className",
|
|
306250
306298
|
"parent": {
|
|
306251
306299
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306252
|
-
"name": "
|
|
306300
|
+
"name": "RowProps"
|
|
306253
306301
|
},
|
|
306254
306302
|
"declarations": [
|
|
306255
306303
|
{
|
|
306256
306304
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306257
|
-
"name": "
|
|
306305
|
+
"name": "RowProps"
|
|
306258
306306
|
}
|
|
306259
306307
|
],
|
|
306260
306308
|
"required": false,
|
|
306261
306309
|
"type": {
|
|
306262
|
-
"name": "ClassNameOrFunction<
|
|
306310
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
306263
306311
|
}
|
|
306264
306312
|
},
|
|
306265
306313
|
"columns": {
|
|
306266
306314
|
"defaultValue": null,
|
|
306267
|
-
"description": "A list of
|
|
306315
|
+
"description": "A list of columns used when dynamically rendering cells.",
|
|
306268
306316
|
"name": "columns",
|
|
306269
306317
|
"parent": {
|
|
306270
306318
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306271
|
-
"name": "
|
|
306319
|
+
"name": "RowProps"
|
|
306272
306320
|
},
|
|
306273
306321
|
"declarations": [
|
|
306274
306322
|
{
|
|
306275
306323
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306276
|
-
"name": "
|
|
306324
|
+
"name": "RowProps"
|
|
306277
306325
|
}
|
|
306278
306326
|
],
|
|
306279
306327
|
"required": false,
|
|
@@ -306300,18 +306348,37 @@
|
|
|
306300
306348
|
"name": "ReactNode"
|
|
306301
306349
|
}
|
|
306302
306350
|
},
|
|
306351
|
+
"value": {
|
|
306352
|
+
"defaultValue": null,
|
|
306353
|
+
"description": "The object value that this row represents. When using dynamic collections, this is set\nautomatically.",
|
|
306354
|
+
"name": "value",
|
|
306355
|
+
"parent": {
|
|
306356
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306357
|
+
"name": "RowProps"
|
|
306358
|
+
},
|
|
306359
|
+
"declarations": [
|
|
306360
|
+
{
|
|
306361
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306362
|
+
"name": "RowProps"
|
|
306363
|
+
}
|
|
306364
|
+
],
|
|
306365
|
+
"required": false,
|
|
306366
|
+
"type": {
|
|
306367
|
+
"name": "undefined"
|
|
306368
|
+
}
|
|
306369
|
+
},
|
|
306303
306370
|
"dependencies": {
|
|
306304
306371
|
"defaultValue": null,
|
|
306305
|
-
"description": "Values that should invalidate the
|
|
306372
|
+
"description": "Values that should invalidate the cell cache when using dynamic collections.",
|
|
306306
306373
|
"name": "dependencies",
|
|
306307
306374
|
"parent": {
|
|
306308
306375
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306309
|
-
"name": "
|
|
306376
|
+
"name": "RowProps"
|
|
306310
306377
|
},
|
|
306311
306378
|
"declarations": [
|
|
306312
306379
|
{
|
|
306313
306380
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306314
|
-
"name": "
|
|
306381
|
+
"name": "RowProps"
|
|
306315
306382
|
}
|
|
306316
306383
|
],
|
|
306317
306384
|
"required": false,
|
|
@@ -306319,6 +306386,122 @@
|
|
|
306319
306386
|
"name": "readonly any[]"
|
|
306320
306387
|
}
|
|
306321
306388
|
},
|
|
306389
|
+
"textValue": {
|
|
306390
|
+
"defaultValue": null,
|
|
306391
|
+
"description": "A string representation of the row's contents, used for features like typeahead.",
|
|
306392
|
+
"name": "textValue",
|
|
306393
|
+
"parent": {
|
|
306394
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306395
|
+
"name": "RowProps"
|
|
306396
|
+
},
|
|
306397
|
+
"declarations": [
|
|
306398
|
+
{
|
|
306399
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306400
|
+
"name": "RowProps"
|
|
306401
|
+
}
|
|
306402
|
+
],
|
|
306403
|
+
"required": false,
|
|
306404
|
+
"type": {
|
|
306405
|
+
"name": "string"
|
|
306406
|
+
}
|
|
306407
|
+
},
|
|
306408
|
+
"isDisabled": {
|
|
306409
|
+
"defaultValue": null,
|
|
306410
|
+
"description": "Whether the row is disabled.",
|
|
306411
|
+
"name": "isDisabled",
|
|
306412
|
+
"parent": {
|
|
306413
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306414
|
+
"name": "RowProps"
|
|
306415
|
+
},
|
|
306416
|
+
"declarations": [
|
|
306417
|
+
{
|
|
306418
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306419
|
+
"name": "RowProps"
|
|
306420
|
+
}
|
|
306421
|
+
],
|
|
306422
|
+
"required": false,
|
|
306423
|
+
"type": {
|
|
306424
|
+
"name": "boolean"
|
|
306425
|
+
}
|
|
306426
|
+
},
|
|
306427
|
+
"disabledBehavior": {
|
|
306428
|
+
"defaultValue": {
|
|
306429
|
+
"value": "'all'"
|
|
306430
|
+
},
|
|
306431
|
+
"description": "Whether `disabledKeys` applies to all interactions, or only selection.",
|
|
306432
|
+
"name": "disabledBehavior",
|
|
306433
|
+
"parent": {
|
|
306434
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306435
|
+
"name": "TableProps"
|
|
306436
|
+
},
|
|
306437
|
+
"declarations": [
|
|
306438
|
+
{
|
|
306439
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306440
|
+
"name": "TableProps"
|
|
306441
|
+
}
|
|
306442
|
+
],
|
|
306443
|
+
"required": false,
|
|
306444
|
+
"type": {
|
|
306445
|
+
"name": "DisabledBehavior"
|
|
306446
|
+
}
|
|
306447
|
+
},
|
|
306448
|
+
"onAction": {
|
|
306449
|
+
"defaultValue": null,
|
|
306450
|
+
"description": "Handler that is called when a user performs an action on the row. The exact user event depends\non the collection's `selectionBehavior` prop and the interaction modality.",
|
|
306451
|
+
"name": "onAction",
|
|
306452
|
+
"parent": {
|
|
306453
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306454
|
+
"name": "RowProps"
|
|
306455
|
+
},
|
|
306456
|
+
"declarations": [
|
|
306457
|
+
{
|
|
306458
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306459
|
+
"name": "RowProps"
|
|
306460
|
+
}
|
|
306461
|
+
],
|
|
306462
|
+
"required": false,
|
|
306463
|
+
"type": {
|
|
306464
|
+
"name": "(() => void)"
|
|
306465
|
+
}
|
|
306466
|
+
},
|
|
306467
|
+
"id": {
|
|
306468
|
+
"defaultValue": null,
|
|
306469
|
+
"description": "The unique id of the row.",
|
|
306470
|
+
"name": "id",
|
|
306471
|
+
"parent": {
|
|
306472
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306473
|
+
"name": "RowProps"
|
|
306474
|
+
},
|
|
306475
|
+
"declarations": [
|
|
306476
|
+
{
|
|
306477
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306478
|
+
"name": "RowProps"
|
|
306479
|
+
}
|
|
306480
|
+
],
|
|
306481
|
+
"required": false,
|
|
306482
|
+
"type": {
|
|
306483
|
+
"name": "Key"
|
|
306484
|
+
}
|
|
306485
|
+
},
|
|
306486
|
+
"hasChildItems": {
|
|
306487
|
+
"defaultValue": null,
|
|
306488
|
+
"description": "Whether this row has children, even if not loaded yet.",
|
|
306489
|
+
"name": "hasChildItems",
|
|
306490
|
+
"parent": {
|
|
306491
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306492
|
+
"name": "RowProps"
|
|
306493
|
+
},
|
|
306494
|
+
"declarations": [
|
|
306495
|
+
{
|
|
306496
|
+
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
306497
|
+
"name": "RowProps"
|
|
306498
|
+
}
|
|
306499
|
+
],
|
|
306500
|
+
"required": false,
|
|
306501
|
+
"type": {
|
|
306502
|
+
"name": "boolean"
|
|
306503
|
+
}
|
|
306504
|
+
},
|
|
306322
306505
|
"style": {
|
|
306323
306506
|
"defaultValue": null,
|
|
306324
306507
|
"description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the\nelement. A function may be provided to compute the style based on component state.",
|
|
@@ -306357,6 +306540,158 @@
|
|
|
306357
306540
|
"name": "DOMRenderFunction<\"div\", TooltipRenderProps>"
|
|
306358
306541
|
}
|
|
306359
306542
|
},
|
|
306543
|
+
"href": {
|
|
306544
|
+
"defaultValue": null,
|
|
306545
|
+
"description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
|
|
306546
|
+
"name": "href",
|
|
306547
|
+
"parent": {
|
|
306548
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306549
|
+
"name": "LinkDOMProps"
|
|
306550
|
+
},
|
|
306551
|
+
"declarations": [
|
|
306552
|
+
{
|
|
306553
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306554
|
+
"name": "LinkDOMProps"
|
|
306555
|
+
}
|
|
306556
|
+
],
|
|
306557
|
+
"required": false,
|
|
306558
|
+
"type": {
|
|
306559
|
+
"name": "string"
|
|
306560
|
+
}
|
|
306561
|
+
},
|
|
306562
|
+
"hrefLang": {
|
|
306563
|
+
"defaultValue": null,
|
|
306564
|
+
"description": "Hints at the human language of the linked URL.\nSee[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).",
|
|
306565
|
+
"name": "hrefLang",
|
|
306566
|
+
"parent": {
|
|
306567
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306568
|
+
"name": "LinkDOMProps"
|
|
306569
|
+
},
|
|
306570
|
+
"declarations": [
|
|
306571
|
+
{
|
|
306572
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306573
|
+
"name": "LinkDOMProps"
|
|
306574
|
+
}
|
|
306575
|
+
],
|
|
306576
|
+
"required": false,
|
|
306577
|
+
"type": {
|
|
306578
|
+
"name": "string"
|
|
306579
|
+
}
|
|
306580
|
+
},
|
|
306581
|
+
"target": {
|
|
306582
|
+
"defaultValue": null,
|
|
306583
|
+
"description": "The target window for the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
|
|
306584
|
+
"name": "target",
|
|
306585
|
+
"parent": {
|
|
306586
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306587
|
+
"name": "LinkDOMProps"
|
|
306588
|
+
},
|
|
306589
|
+
"declarations": [
|
|
306590
|
+
{
|
|
306591
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306592
|
+
"name": "LinkDOMProps"
|
|
306593
|
+
}
|
|
306594
|
+
],
|
|
306595
|
+
"required": false,
|
|
306596
|
+
"type": {
|
|
306597
|
+
"name": "HTMLAttributeAnchorTarget"
|
|
306598
|
+
}
|
|
306599
|
+
},
|
|
306600
|
+
"rel": {
|
|
306601
|
+
"defaultValue": null,
|
|
306602
|
+
"description": "The relationship between the linked resource and the current page. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).",
|
|
306603
|
+
"name": "rel",
|
|
306604
|
+
"parent": {
|
|
306605
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306606
|
+
"name": "LinkDOMProps"
|
|
306607
|
+
},
|
|
306608
|
+
"declarations": [
|
|
306609
|
+
{
|
|
306610
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306611
|
+
"name": "LinkDOMProps"
|
|
306612
|
+
}
|
|
306613
|
+
],
|
|
306614
|
+
"required": false,
|
|
306615
|
+
"type": {
|
|
306616
|
+
"name": "string"
|
|
306617
|
+
}
|
|
306618
|
+
},
|
|
306619
|
+
"download": {
|
|
306620
|
+
"defaultValue": null,
|
|
306621
|
+
"description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
|
|
306622
|
+
"name": "download",
|
|
306623
|
+
"parent": {
|
|
306624
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306625
|
+
"name": "LinkDOMProps"
|
|
306626
|
+
},
|
|
306627
|
+
"declarations": [
|
|
306628
|
+
{
|
|
306629
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306630
|
+
"name": "LinkDOMProps"
|
|
306631
|
+
}
|
|
306632
|
+
],
|
|
306633
|
+
"required": false,
|
|
306634
|
+
"type": {
|
|
306635
|
+
"name": "string | boolean"
|
|
306636
|
+
}
|
|
306637
|
+
},
|
|
306638
|
+
"ping": {
|
|
306639
|
+
"defaultValue": null,
|
|
306640
|
+
"description": "A space-separated list of URLs to ping when the link is followed. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
|
|
306641
|
+
"name": "ping",
|
|
306642
|
+
"parent": {
|
|
306643
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306644
|
+
"name": "LinkDOMProps"
|
|
306645
|
+
},
|
|
306646
|
+
"declarations": [
|
|
306647
|
+
{
|
|
306648
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306649
|
+
"name": "LinkDOMProps"
|
|
306650
|
+
}
|
|
306651
|
+
],
|
|
306652
|
+
"required": false,
|
|
306653
|
+
"type": {
|
|
306654
|
+
"name": "string"
|
|
306655
|
+
}
|
|
306656
|
+
},
|
|
306657
|
+
"referrerPolicy": {
|
|
306658
|
+
"defaultValue": null,
|
|
306659
|
+
"description": "How much of the referrer to send when following the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
|
|
306660
|
+
"name": "referrerPolicy",
|
|
306661
|
+
"parent": {
|
|
306662
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306663
|
+
"name": "LinkDOMProps"
|
|
306664
|
+
},
|
|
306665
|
+
"declarations": [
|
|
306666
|
+
{
|
|
306667
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306668
|
+
"name": "LinkDOMProps"
|
|
306669
|
+
}
|
|
306670
|
+
],
|
|
306671
|
+
"required": false,
|
|
306672
|
+
"type": {
|
|
306673
|
+
"name": "HTMLAttributeReferrerPolicy"
|
|
306674
|
+
}
|
|
306675
|
+
},
|
|
306676
|
+
"routerOptions": {
|
|
306677
|
+
"defaultValue": null,
|
|
306678
|
+
"description": "Options for the configured client side router.",
|
|
306679
|
+
"name": "routerOptions",
|
|
306680
|
+
"parent": {
|
|
306681
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306682
|
+
"name": "LinkDOMProps"
|
|
306683
|
+
},
|
|
306684
|
+
"declarations": [
|
|
306685
|
+
{
|
|
306686
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306687
|
+
"name": "LinkDOMProps"
|
|
306688
|
+
}
|
|
306689
|
+
],
|
|
306690
|
+
"required": false,
|
|
306691
|
+
"type": {
|
|
306692
|
+
"name": "undefined"
|
|
306693
|
+
}
|
|
306694
|
+
},
|
|
306360
306695
|
"onHoverStart": {
|
|
306361
306696
|
"defaultValue": null,
|
|
306362
306697
|
"description": "Handler that is called when a hover interaction starts.",
|
|
@@ -306414,29 +306749,124 @@
|
|
|
306414
306749
|
"name": "((isHovering: boolean) => void)"
|
|
306415
306750
|
}
|
|
306416
306751
|
},
|
|
306417
|
-
"
|
|
306752
|
+
"onPress": {
|
|
306418
306753
|
"defaultValue": null,
|
|
306419
|
-
"description": "",
|
|
306420
|
-
"name": "
|
|
306754
|
+
"description": "Handler that is called when the press is released over the target.",
|
|
306755
|
+
"name": "onPress",
|
|
306421
306756
|
"parent": {
|
|
306422
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/
|
|
306423
|
-
"name": "
|
|
306757
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306758
|
+
"name": "PressEvents"
|
|
306424
306759
|
},
|
|
306425
306760
|
"declarations": [
|
|
306426
306761
|
{
|
|
306427
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/
|
|
306428
|
-
"name": "
|
|
306762
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306763
|
+
"name": "PressEvents"
|
|
306429
306764
|
}
|
|
306430
306765
|
],
|
|
306431
306766
|
"required": false,
|
|
306432
306767
|
"type": {
|
|
306433
|
-
"name": "
|
|
306768
|
+
"name": "((e: PressEvent) => void)"
|
|
306434
306769
|
}
|
|
306435
306770
|
},
|
|
306436
|
-
"
|
|
306771
|
+
"onPressStart": {
|
|
306772
|
+
"defaultValue": null,
|
|
306773
|
+
"description": "Handler that is called when a press interaction starts.",
|
|
306774
|
+
"name": "onPressStart",
|
|
306775
|
+
"parent": {
|
|
306776
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306777
|
+
"name": "PressEvents"
|
|
306778
|
+
},
|
|
306779
|
+
"declarations": [
|
|
306780
|
+
{
|
|
306781
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306782
|
+
"name": "PressEvents"
|
|
306783
|
+
}
|
|
306784
|
+
],
|
|
306785
|
+
"required": false,
|
|
306786
|
+
"type": {
|
|
306787
|
+
"name": "((e: PressEvent) => void)"
|
|
306788
|
+
}
|
|
306789
|
+
},
|
|
306790
|
+
"onPressEnd": {
|
|
306791
|
+
"defaultValue": null,
|
|
306792
|
+
"description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.",
|
|
306793
|
+
"name": "onPressEnd",
|
|
306794
|
+
"parent": {
|
|
306795
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306796
|
+
"name": "PressEvents"
|
|
306797
|
+
},
|
|
306798
|
+
"declarations": [
|
|
306799
|
+
{
|
|
306800
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306801
|
+
"name": "PressEvents"
|
|
306802
|
+
}
|
|
306803
|
+
],
|
|
306804
|
+
"required": false,
|
|
306805
|
+
"type": {
|
|
306806
|
+
"name": "((e: PressEvent) => void)"
|
|
306807
|
+
}
|
|
306808
|
+
},
|
|
306809
|
+
"onPressChange": {
|
|
306810
|
+
"defaultValue": null,
|
|
306811
|
+
"description": "Handler that is called when the press state changes.",
|
|
306812
|
+
"name": "onPressChange",
|
|
306813
|
+
"parent": {
|
|
306814
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306815
|
+
"name": "PressEvents"
|
|
306816
|
+
},
|
|
306817
|
+
"declarations": [
|
|
306818
|
+
{
|
|
306819
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306820
|
+
"name": "PressEvents"
|
|
306821
|
+
}
|
|
306822
|
+
],
|
|
306823
|
+
"required": false,
|
|
306824
|
+
"type": {
|
|
306825
|
+
"name": "((isPressed: boolean) => void)"
|
|
306826
|
+
}
|
|
306827
|
+
},
|
|
306828
|
+
"onPressUp": {
|
|
306829
|
+
"defaultValue": null,
|
|
306830
|
+
"description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.",
|
|
306831
|
+
"name": "onPressUp",
|
|
306832
|
+
"parent": {
|
|
306833
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306834
|
+
"name": "PressEvents"
|
|
306835
|
+
},
|
|
306836
|
+
"declarations": [
|
|
306837
|
+
{
|
|
306838
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306839
|
+
"name": "PressEvents"
|
|
306840
|
+
}
|
|
306841
|
+
],
|
|
306842
|
+
"required": false,
|
|
306843
|
+
"type": {
|
|
306844
|
+
"name": "((e: PressEvent) => void)"
|
|
306845
|
+
}
|
|
306846
|
+
},
|
|
306847
|
+
"onClick": {
|
|
306848
|
+
"defaultValue": null,
|
|
306849
|
+
"description": "**Not recommended – use `onPress` instead.** `onClick` is an alias for `onPress`\nprovided for compatibility with other libraries. `onPress` provides\nadditional event details for non-mouse interactions.",
|
|
306850
|
+
"name": "onClick",
|
|
306851
|
+
"parent": {
|
|
306852
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306853
|
+
"name": "PressEvents"
|
|
306854
|
+
},
|
|
306855
|
+
"declarations": [
|
|
306856
|
+
{
|
|
306857
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
306858
|
+
"name": "PressEvents"
|
|
306859
|
+
}
|
|
306860
|
+
],
|
|
306861
|
+
"required": false,
|
|
306862
|
+
"type": {
|
|
306863
|
+
"name": "((e: MouseEvent<FocusableElement, MouseEvent>) => void)"
|
|
306864
|
+
}
|
|
306865
|
+
},
|
|
306866
|
+
"translate": {
|
|
306437
306867
|
"defaultValue": null,
|
|
306438
306868
|
"description": "",
|
|
306439
|
-
"name": "
|
|
306869
|
+
"name": "translate",
|
|
306440
306870
|
"parent": {
|
|
306441
306871
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306442
306872
|
"name": "GlobalDOMAttributes"
|
|
@@ -306449,13 +306879,13 @@
|
|
|
306449
306879
|
],
|
|
306450
306880
|
"required": false,
|
|
306451
306881
|
"type": {
|
|
306452
|
-
"name": "
|
|
306882
|
+
"name": "\"yes\" | \"no\""
|
|
306453
306883
|
}
|
|
306454
306884
|
},
|
|
306455
|
-
"
|
|
306885
|
+
"dir": {
|
|
306456
306886
|
"defaultValue": null,
|
|
306457
306887
|
"description": "",
|
|
306458
|
-
"name": "
|
|
306888
|
+
"name": "dir",
|
|
306459
306889
|
"parent": {
|
|
306460
306890
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306461
306891
|
"name": "GlobalDOMAttributes"
|
|
@@ -306468,13 +306898,13 @@
|
|
|
306468
306898
|
],
|
|
306469
306899
|
"required": false,
|
|
306470
306900
|
"type": {
|
|
306471
|
-
"name": "
|
|
306901
|
+
"name": "string"
|
|
306472
306902
|
}
|
|
306473
306903
|
},
|
|
306474
|
-
"
|
|
306904
|
+
"lang": {
|
|
306475
306905
|
"defaultValue": null,
|
|
306476
306906
|
"description": "",
|
|
306477
|
-
"name": "
|
|
306907
|
+
"name": "lang",
|
|
306478
306908
|
"parent": {
|
|
306479
306909
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306480
306910
|
"name": "GlobalDOMAttributes"
|
|
@@ -306487,13 +306917,13 @@
|
|
|
306487
306917
|
],
|
|
306488
306918
|
"required": false,
|
|
306489
306919
|
"type": {
|
|
306490
|
-
"name": "
|
|
306920
|
+
"name": "string"
|
|
306491
306921
|
}
|
|
306492
306922
|
},
|
|
306493
|
-
"
|
|
306923
|
+
"hidden": {
|
|
306494
306924
|
"defaultValue": null,
|
|
306495
306925
|
"description": "",
|
|
306496
|
-
"name": "
|
|
306926
|
+
"name": "hidden",
|
|
306497
306927
|
"parent": {
|
|
306498
306928
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306499
306929
|
"name": "GlobalDOMAttributes"
|
|
@@ -306506,26 +306936,26 @@
|
|
|
306506
306936
|
],
|
|
306507
306937
|
"required": false,
|
|
306508
306938
|
"type": {
|
|
306509
|
-
"name": "
|
|
306939
|
+
"name": "boolean"
|
|
306510
306940
|
}
|
|
306511
306941
|
},
|
|
306512
|
-
"
|
|
306942
|
+
"inert": {
|
|
306513
306943
|
"defaultValue": null,
|
|
306514
306944
|
"description": "",
|
|
306515
|
-
"name": "
|
|
306945
|
+
"name": "inert",
|
|
306516
306946
|
"parent": {
|
|
306517
306947
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306518
|
-
"name": "
|
|
306948
|
+
"name": "GlobalDOMAttributes"
|
|
306519
306949
|
},
|
|
306520
306950
|
"declarations": [
|
|
306521
306951
|
{
|
|
306522
306952
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
306523
|
-
"name": "
|
|
306953
|
+
"name": "GlobalDOMAttributes"
|
|
306524
306954
|
}
|
|
306525
306955
|
],
|
|
306526
306956
|
"required": false,
|
|
306527
306957
|
"type": {
|
|
306528
|
-
"name": "
|
|
306958
|
+
"name": "boolean"
|
|
306529
306959
|
}
|
|
306530
306960
|
},
|
|
306531
306961
|
"onClickCapture": {
|
|
@@ -307724,6 +308154,21 @@
|
|
|
307724
308154
|
"type": {
|
|
307725
308155
|
"name": "TransitionEventHandler<HTMLDivElement>"
|
|
307726
308156
|
}
|
|
308157
|
+
},
|
|
308158
|
+
"footer": {
|
|
308159
|
+
"defaultValue": null,
|
|
308160
|
+
"description": "@internal",
|
|
308161
|
+
"name": "footer",
|
|
308162
|
+
"declarations": [
|
|
308163
|
+
{
|
|
308164
|
+
"fileName": "components/src/components/Table/components/TableRow/TableRow.tsx",
|
|
308165
|
+
"name": "TypeLiteral"
|
|
308166
|
+
}
|
|
308167
|
+
],
|
|
308168
|
+
"required": false,
|
|
308169
|
+
"type": {
|
|
308170
|
+
"name": "boolean"
|
|
308171
|
+
}
|
|
307727
308172
|
}
|
|
307728
308173
|
}
|
|
307729
308174
|
},
|
|
@@ -307731,44 +308176,44 @@
|
|
|
307731
308176
|
"tags": {
|
|
307732
308177
|
"flr-generate": "all"
|
|
307733
308178
|
},
|
|
307734
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Table/components/
|
|
308179
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Table/components/TableHeader/TableHeader.tsx",
|
|
307735
308180
|
"description": "",
|
|
307736
|
-
"displayName": "
|
|
308181
|
+
"displayName": "TableHeader",
|
|
307737
308182
|
"methods": [],
|
|
307738
308183
|
"props": {
|
|
307739
308184
|
"className": {
|
|
307740
308185
|
"defaultValue": {
|
|
307741
|
-
"value": "'react-aria-
|
|
308186
|
+
"value": "'react-aria-Row'"
|
|
307742
308187
|
},
|
|
307743
308188
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
307744
308189
|
"name": "className",
|
|
307745
308190
|
"parent": {
|
|
307746
308191
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307747
|
-
"name": "
|
|
308192
|
+
"name": "RowProps"
|
|
307748
308193
|
},
|
|
307749
308194
|
"declarations": [
|
|
307750
308195
|
{
|
|
307751
308196
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307752
|
-
"name": "
|
|
308197
|
+
"name": "RowProps"
|
|
307753
308198
|
}
|
|
307754
308199
|
],
|
|
307755
308200
|
"required": false,
|
|
307756
308201
|
"type": {
|
|
307757
|
-
"name": "ClassNameOrFunction<
|
|
308202
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
307758
308203
|
}
|
|
307759
308204
|
},
|
|
307760
308205
|
"columns": {
|
|
307761
308206
|
"defaultValue": null,
|
|
307762
|
-
"description": "A list of
|
|
308207
|
+
"description": "A list of columns used when dynamically rendering cells.",
|
|
307763
308208
|
"name": "columns",
|
|
307764
308209
|
"parent": {
|
|
307765
308210
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307766
|
-
"name": "
|
|
308211
|
+
"name": "RowProps"
|
|
307767
308212
|
},
|
|
307768
308213
|
"declarations": [
|
|
307769
308214
|
{
|
|
307770
308215
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307771
|
-
"name": "
|
|
308216
|
+
"name": "RowProps"
|
|
307772
308217
|
}
|
|
307773
308218
|
],
|
|
307774
308219
|
"required": false,
|
|
@@ -307795,67 +308240,10 @@
|
|
|
307795
308240
|
"name": "ReactNode"
|
|
307796
308241
|
}
|
|
307797
308242
|
},
|
|
307798
|
-
"value": {
|
|
307799
|
-
"defaultValue": null,
|
|
307800
|
-
"description": "The object value that this row represents. When using dynamic collections, this is set\nautomatically.",
|
|
307801
|
-
"name": "value",
|
|
307802
|
-
"parent": {
|
|
307803
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307804
|
-
"name": "RowProps"
|
|
307805
|
-
},
|
|
307806
|
-
"declarations": [
|
|
307807
|
-
{
|
|
307808
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307809
|
-
"name": "RowProps"
|
|
307810
|
-
}
|
|
307811
|
-
],
|
|
307812
|
-
"required": false,
|
|
307813
|
-
"type": {
|
|
307814
|
-
"name": "undefined"
|
|
307815
|
-
}
|
|
307816
|
-
},
|
|
307817
308243
|
"dependencies": {
|
|
307818
308244
|
"defaultValue": null,
|
|
307819
|
-
"description": "Values that should invalidate the
|
|
308245
|
+
"description": "Values that should invalidate the cell cache when using dynamic collections.",
|
|
307820
308246
|
"name": "dependencies",
|
|
307821
|
-
"parent": {
|
|
307822
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307823
|
-
"name": "TableHeaderProps"
|
|
307824
|
-
},
|
|
307825
|
-
"declarations": [
|
|
307826
|
-
{
|
|
307827
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307828
|
-
"name": "TableHeaderProps"
|
|
307829
|
-
}
|
|
307830
|
-
],
|
|
307831
|
-
"required": false,
|
|
307832
|
-
"type": {
|
|
307833
|
-
"name": "readonly any[]"
|
|
307834
|
-
}
|
|
307835
|
-
},
|
|
307836
|
-
"textValue": {
|
|
307837
|
-
"defaultValue": null,
|
|
307838
|
-
"description": "A string representation of the row's contents, used for features like typeahead.",
|
|
307839
|
-
"name": "textValue",
|
|
307840
|
-
"parent": {
|
|
307841
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307842
|
-
"name": "RowProps"
|
|
307843
|
-
},
|
|
307844
|
-
"declarations": [
|
|
307845
|
-
{
|
|
307846
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307847
|
-
"name": "RowProps"
|
|
307848
|
-
}
|
|
307849
|
-
],
|
|
307850
|
-
"required": false,
|
|
307851
|
-
"type": {
|
|
307852
|
-
"name": "string"
|
|
307853
|
-
}
|
|
307854
|
-
},
|
|
307855
|
-
"isDisabled": {
|
|
307856
|
-
"defaultValue": null,
|
|
307857
|
-
"description": "Whether the row is disabled.",
|
|
307858
|
-
"name": "isDisabled",
|
|
307859
308247
|
"parent": {
|
|
307860
308248
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307861
308249
|
"name": "RowProps"
|
|
@@ -307868,85 +308256,7 @@
|
|
|
307868
308256
|
],
|
|
307869
308257
|
"required": false,
|
|
307870
308258
|
"type": {
|
|
307871
|
-
"name": "
|
|
307872
|
-
}
|
|
307873
|
-
},
|
|
307874
|
-
"disabledBehavior": {
|
|
307875
|
-
"defaultValue": {
|
|
307876
|
-
"value": "'all'"
|
|
307877
|
-
},
|
|
307878
|
-
"description": "Whether `disabledKeys` applies to all interactions, or only selection.",
|
|
307879
|
-
"name": "disabledBehavior",
|
|
307880
|
-
"parent": {
|
|
307881
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307882
|
-
"name": "TableProps"
|
|
307883
|
-
},
|
|
307884
|
-
"declarations": [
|
|
307885
|
-
{
|
|
307886
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307887
|
-
"name": "TableProps"
|
|
307888
|
-
}
|
|
307889
|
-
],
|
|
307890
|
-
"required": false,
|
|
307891
|
-
"type": {
|
|
307892
|
-
"name": "DisabledBehavior"
|
|
307893
|
-
}
|
|
307894
|
-
},
|
|
307895
|
-
"onAction": {
|
|
307896
|
-
"defaultValue": null,
|
|
307897
|
-
"description": "Handler that is called when a user performs an action on the row. The exact user event depends\non the collection's `selectionBehavior` prop and the interaction modality.",
|
|
307898
|
-
"name": "onAction",
|
|
307899
|
-
"parent": {
|
|
307900
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307901
|
-
"name": "RowProps"
|
|
307902
|
-
},
|
|
307903
|
-
"declarations": [
|
|
307904
|
-
{
|
|
307905
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307906
|
-
"name": "RowProps"
|
|
307907
|
-
}
|
|
307908
|
-
],
|
|
307909
|
-
"required": false,
|
|
307910
|
-
"type": {
|
|
307911
|
-
"name": "(() => void)"
|
|
307912
|
-
}
|
|
307913
|
-
},
|
|
307914
|
-
"id": {
|
|
307915
|
-
"defaultValue": null,
|
|
307916
|
-
"description": "The unique id of the row.",
|
|
307917
|
-
"name": "id",
|
|
307918
|
-
"parent": {
|
|
307919
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307920
|
-
"name": "RowProps"
|
|
307921
|
-
},
|
|
307922
|
-
"declarations": [
|
|
307923
|
-
{
|
|
307924
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307925
|
-
"name": "RowProps"
|
|
307926
|
-
}
|
|
307927
|
-
],
|
|
307928
|
-
"required": false,
|
|
307929
|
-
"type": {
|
|
307930
|
-
"name": "Key"
|
|
307931
|
-
}
|
|
307932
|
-
},
|
|
307933
|
-
"hasChildItems": {
|
|
307934
|
-
"defaultValue": null,
|
|
307935
|
-
"description": "Whether this row has children, even if not loaded yet.",
|
|
307936
|
-
"name": "hasChildItems",
|
|
307937
|
-
"parent": {
|
|
307938
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307939
|
-
"name": "RowProps"
|
|
307940
|
-
},
|
|
307941
|
-
"declarations": [
|
|
307942
|
-
{
|
|
307943
|
-
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
307944
|
-
"name": "RowProps"
|
|
307945
|
-
}
|
|
307946
|
-
],
|
|
307947
|
-
"required": false,
|
|
307948
|
-
"type": {
|
|
307949
|
-
"name": "boolean"
|
|
308259
|
+
"name": "readonly any[]"
|
|
307950
308260
|
}
|
|
307951
308261
|
},
|
|
307952
308262
|
"style": {
|
|
@@ -307987,158 +308297,6 @@
|
|
|
307987
308297
|
"name": "DOMRenderFunction<\"div\", TooltipRenderProps>"
|
|
307988
308298
|
}
|
|
307989
308299
|
},
|
|
307990
|
-
"href": {
|
|
307991
|
-
"defaultValue": null,
|
|
307992
|
-
"description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
|
|
307993
|
-
"name": "href",
|
|
307994
|
-
"parent": {
|
|
307995
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
307996
|
-
"name": "LinkDOMProps"
|
|
307997
|
-
},
|
|
307998
|
-
"declarations": [
|
|
307999
|
-
{
|
|
308000
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308001
|
-
"name": "LinkDOMProps"
|
|
308002
|
-
}
|
|
308003
|
-
],
|
|
308004
|
-
"required": false,
|
|
308005
|
-
"type": {
|
|
308006
|
-
"name": "string"
|
|
308007
|
-
}
|
|
308008
|
-
},
|
|
308009
|
-
"hrefLang": {
|
|
308010
|
-
"defaultValue": null,
|
|
308011
|
-
"description": "Hints at the human language of the linked URL.\nSee[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).",
|
|
308012
|
-
"name": "hrefLang",
|
|
308013
|
-
"parent": {
|
|
308014
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308015
|
-
"name": "LinkDOMProps"
|
|
308016
|
-
},
|
|
308017
|
-
"declarations": [
|
|
308018
|
-
{
|
|
308019
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308020
|
-
"name": "LinkDOMProps"
|
|
308021
|
-
}
|
|
308022
|
-
],
|
|
308023
|
-
"required": false,
|
|
308024
|
-
"type": {
|
|
308025
|
-
"name": "string"
|
|
308026
|
-
}
|
|
308027
|
-
},
|
|
308028
|
-
"target": {
|
|
308029
|
-
"defaultValue": null,
|
|
308030
|
-
"description": "The target window for the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
|
|
308031
|
-
"name": "target",
|
|
308032
|
-
"parent": {
|
|
308033
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308034
|
-
"name": "LinkDOMProps"
|
|
308035
|
-
},
|
|
308036
|
-
"declarations": [
|
|
308037
|
-
{
|
|
308038
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308039
|
-
"name": "LinkDOMProps"
|
|
308040
|
-
}
|
|
308041
|
-
],
|
|
308042
|
-
"required": false,
|
|
308043
|
-
"type": {
|
|
308044
|
-
"name": "HTMLAttributeAnchorTarget"
|
|
308045
|
-
}
|
|
308046
|
-
},
|
|
308047
|
-
"rel": {
|
|
308048
|
-
"defaultValue": null,
|
|
308049
|
-
"description": "The relationship between the linked resource and the current page. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).",
|
|
308050
|
-
"name": "rel",
|
|
308051
|
-
"parent": {
|
|
308052
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308053
|
-
"name": "LinkDOMProps"
|
|
308054
|
-
},
|
|
308055
|
-
"declarations": [
|
|
308056
|
-
{
|
|
308057
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308058
|
-
"name": "LinkDOMProps"
|
|
308059
|
-
}
|
|
308060
|
-
],
|
|
308061
|
-
"required": false,
|
|
308062
|
-
"type": {
|
|
308063
|
-
"name": "string"
|
|
308064
|
-
}
|
|
308065
|
-
},
|
|
308066
|
-
"download": {
|
|
308067
|
-
"defaultValue": null,
|
|
308068
|
-
"description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
|
|
308069
|
-
"name": "download",
|
|
308070
|
-
"parent": {
|
|
308071
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308072
|
-
"name": "LinkDOMProps"
|
|
308073
|
-
},
|
|
308074
|
-
"declarations": [
|
|
308075
|
-
{
|
|
308076
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308077
|
-
"name": "LinkDOMProps"
|
|
308078
|
-
}
|
|
308079
|
-
],
|
|
308080
|
-
"required": false,
|
|
308081
|
-
"type": {
|
|
308082
|
-
"name": "string | boolean"
|
|
308083
|
-
}
|
|
308084
|
-
},
|
|
308085
|
-
"ping": {
|
|
308086
|
-
"defaultValue": null,
|
|
308087
|
-
"description": "A space-separated list of URLs to ping when the link is followed. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
|
|
308088
|
-
"name": "ping",
|
|
308089
|
-
"parent": {
|
|
308090
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308091
|
-
"name": "LinkDOMProps"
|
|
308092
|
-
},
|
|
308093
|
-
"declarations": [
|
|
308094
|
-
{
|
|
308095
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308096
|
-
"name": "LinkDOMProps"
|
|
308097
|
-
}
|
|
308098
|
-
],
|
|
308099
|
-
"required": false,
|
|
308100
|
-
"type": {
|
|
308101
|
-
"name": "string"
|
|
308102
|
-
}
|
|
308103
|
-
},
|
|
308104
|
-
"referrerPolicy": {
|
|
308105
|
-
"defaultValue": null,
|
|
308106
|
-
"description": "How much of the referrer to send when following the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
|
|
308107
|
-
"name": "referrerPolicy",
|
|
308108
|
-
"parent": {
|
|
308109
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308110
|
-
"name": "LinkDOMProps"
|
|
308111
|
-
},
|
|
308112
|
-
"declarations": [
|
|
308113
|
-
{
|
|
308114
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308115
|
-
"name": "LinkDOMProps"
|
|
308116
|
-
}
|
|
308117
|
-
],
|
|
308118
|
-
"required": false,
|
|
308119
|
-
"type": {
|
|
308120
|
-
"name": "HTMLAttributeReferrerPolicy"
|
|
308121
|
-
}
|
|
308122
|
-
},
|
|
308123
|
-
"routerOptions": {
|
|
308124
|
-
"defaultValue": null,
|
|
308125
|
-
"description": "Options for the configured client side router.",
|
|
308126
|
-
"name": "routerOptions",
|
|
308127
|
-
"parent": {
|
|
308128
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308129
|
-
"name": "LinkDOMProps"
|
|
308130
|
-
},
|
|
308131
|
-
"declarations": [
|
|
308132
|
-
{
|
|
308133
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308134
|
-
"name": "LinkDOMProps"
|
|
308135
|
-
}
|
|
308136
|
-
],
|
|
308137
|
-
"required": false,
|
|
308138
|
-
"type": {
|
|
308139
|
-
"name": "undefined"
|
|
308140
|
-
}
|
|
308141
|
-
},
|
|
308142
308300
|
"onHoverStart": {
|
|
308143
308301
|
"defaultValue": null,
|
|
308144
308302
|
"description": "Handler that is called when a hover interaction starts.",
|
|
@@ -308196,124 +308354,29 @@
|
|
|
308196
308354
|
"name": "((isHovering: boolean) => void)"
|
|
308197
308355
|
}
|
|
308198
308356
|
},
|
|
308199
|
-
"
|
|
308200
|
-
"defaultValue": null,
|
|
308201
|
-
"description": "Handler that is called when the press is released over the target.",
|
|
308202
|
-
"name": "onPress",
|
|
308203
|
-
"parent": {
|
|
308204
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308205
|
-
"name": "PressEvents"
|
|
308206
|
-
},
|
|
308207
|
-
"declarations": [
|
|
308208
|
-
{
|
|
308209
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308210
|
-
"name": "PressEvents"
|
|
308211
|
-
}
|
|
308212
|
-
],
|
|
308213
|
-
"required": false,
|
|
308214
|
-
"type": {
|
|
308215
|
-
"name": "((e: PressEvent) => void)"
|
|
308216
|
-
}
|
|
308217
|
-
},
|
|
308218
|
-
"onPressStart": {
|
|
308219
|
-
"defaultValue": null,
|
|
308220
|
-
"description": "Handler that is called when a press interaction starts.",
|
|
308221
|
-
"name": "onPressStart",
|
|
308222
|
-
"parent": {
|
|
308223
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308224
|
-
"name": "PressEvents"
|
|
308225
|
-
},
|
|
308226
|
-
"declarations": [
|
|
308227
|
-
{
|
|
308228
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308229
|
-
"name": "PressEvents"
|
|
308230
|
-
}
|
|
308231
|
-
],
|
|
308232
|
-
"required": false,
|
|
308233
|
-
"type": {
|
|
308234
|
-
"name": "((e: PressEvent) => void)"
|
|
308235
|
-
}
|
|
308236
|
-
},
|
|
308237
|
-
"onPressEnd": {
|
|
308238
|
-
"defaultValue": null,
|
|
308239
|
-
"description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.",
|
|
308240
|
-
"name": "onPressEnd",
|
|
308241
|
-
"parent": {
|
|
308242
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308243
|
-
"name": "PressEvents"
|
|
308244
|
-
},
|
|
308245
|
-
"declarations": [
|
|
308246
|
-
{
|
|
308247
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308248
|
-
"name": "PressEvents"
|
|
308249
|
-
}
|
|
308250
|
-
],
|
|
308251
|
-
"required": false,
|
|
308252
|
-
"type": {
|
|
308253
|
-
"name": "((e: PressEvent) => void)"
|
|
308254
|
-
}
|
|
308255
|
-
},
|
|
308256
|
-
"onPressChange": {
|
|
308257
|
-
"defaultValue": null,
|
|
308258
|
-
"description": "Handler that is called when the press state changes.",
|
|
308259
|
-
"name": "onPressChange",
|
|
308260
|
-
"parent": {
|
|
308261
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308262
|
-
"name": "PressEvents"
|
|
308263
|
-
},
|
|
308264
|
-
"declarations": [
|
|
308265
|
-
{
|
|
308266
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308267
|
-
"name": "PressEvents"
|
|
308268
|
-
}
|
|
308269
|
-
],
|
|
308270
|
-
"required": false,
|
|
308271
|
-
"type": {
|
|
308272
|
-
"name": "((isPressed: boolean) => void)"
|
|
308273
|
-
}
|
|
308274
|
-
},
|
|
308275
|
-
"onPressUp": {
|
|
308276
|
-
"defaultValue": null,
|
|
308277
|
-
"description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.",
|
|
308278
|
-
"name": "onPressUp",
|
|
308279
|
-
"parent": {
|
|
308280
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308281
|
-
"name": "PressEvents"
|
|
308282
|
-
},
|
|
308283
|
-
"declarations": [
|
|
308284
|
-
{
|
|
308285
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/events.d.ts",
|
|
308286
|
-
"name": "PressEvents"
|
|
308287
|
-
}
|
|
308288
|
-
],
|
|
308289
|
-
"required": false,
|
|
308290
|
-
"type": {
|
|
308291
|
-
"name": "((e: PressEvent) => void)"
|
|
308292
|
-
}
|
|
308293
|
-
},
|
|
308294
|
-
"onClick": {
|
|
308357
|
+
"dir": {
|
|
308295
308358
|
"defaultValue": null,
|
|
308296
|
-
"description": "
|
|
308297
|
-
"name": "
|
|
308359
|
+
"description": "",
|
|
308360
|
+
"name": "dir",
|
|
308298
308361
|
"parent": {
|
|
308299
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/
|
|
308300
|
-
"name": "
|
|
308362
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308363
|
+
"name": "GlobalDOMAttributes"
|
|
308301
308364
|
},
|
|
308302
308365
|
"declarations": [
|
|
308303
308366
|
{
|
|
308304
|
-
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/
|
|
308305
|
-
"name": "
|
|
308367
|
+
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308368
|
+
"name": "GlobalDOMAttributes"
|
|
308306
308369
|
}
|
|
308307
308370
|
],
|
|
308308
308371
|
"required": false,
|
|
308309
308372
|
"type": {
|
|
308310
|
-
"name": "
|
|
308373
|
+
"name": "string"
|
|
308311
308374
|
}
|
|
308312
308375
|
},
|
|
308313
|
-
"
|
|
308376
|
+
"lang": {
|
|
308314
308377
|
"defaultValue": null,
|
|
308315
308378
|
"description": "",
|
|
308316
|
-
"name": "
|
|
308379
|
+
"name": "lang",
|
|
308317
308380
|
"parent": {
|
|
308318
308381
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308319
308382
|
"name": "GlobalDOMAttributes"
|
|
@@ -308326,13 +308389,13 @@
|
|
|
308326
308389
|
],
|
|
308327
308390
|
"required": false,
|
|
308328
308391
|
"type": {
|
|
308329
|
-
"name": "
|
|
308392
|
+
"name": "string"
|
|
308330
308393
|
}
|
|
308331
308394
|
},
|
|
308332
|
-
"
|
|
308395
|
+
"hidden": {
|
|
308333
308396
|
"defaultValue": null,
|
|
308334
308397
|
"description": "",
|
|
308335
|
-
"name": "
|
|
308398
|
+
"name": "hidden",
|
|
308336
308399
|
"parent": {
|
|
308337
308400
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308338
308401
|
"name": "GlobalDOMAttributes"
|
|
@@ -308345,13 +308408,13 @@
|
|
|
308345
308408
|
],
|
|
308346
308409
|
"required": false,
|
|
308347
308410
|
"type": {
|
|
308348
|
-
"name": "
|
|
308411
|
+
"name": "boolean"
|
|
308349
308412
|
}
|
|
308350
308413
|
},
|
|
308351
|
-
"
|
|
308414
|
+
"inert": {
|
|
308352
308415
|
"defaultValue": null,
|
|
308353
308416
|
"description": "",
|
|
308354
|
-
"name": "
|
|
308417
|
+
"name": "inert",
|
|
308355
308418
|
"parent": {
|
|
308356
308419
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308357
308420
|
"name": "GlobalDOMAttributes"
|
|
@@ -308364,13 +308427,13 @@
|
|
|
308364
308427
|
],
|
|
308365
308428
|
"required": false,
|
|
308366
308429
|
"type": {
|
|
308367
|
-
"name": "
|
|
308430
|
+
"name": "boolean"
|
|
308368
308431
|
}
|
|
308369
308432
|
},
|
|
308370
|
-
"
|
|
308433
|
+
"translate": {
|
|
308371
308434
|
"defaultValue": null,
|
|
308372
308435
|
"description": "",
|
|
308373
|
-
"name": "
|
|
308436
|
+
"name": "translate",
|
|
308374
308437
|
"parent": {
|
|
308375
308438
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308376
308439
|
"name": "GlobalDOMAttributes"
|
|
@@ -308383,26 +308446,26 @@
|
|
|
308383
308446
|
],
|
|
308384
308447
|
"required": false,
|
|
308385
308448
|
"type": {
|
|
308386
|
-
"name": "
|
|
308449
|
+
"name": "\"yes\" | \"no\""
|
|
308387
308450
|
}
|
|
308388
308451
|
},
|
|
308389
|
-
"
|
|
308452
|
+
"onClick": {
|
|
308390
308453
|
"defaultValue": null,
|
|
308391
308454
|
"description": "",
|
|
308392
|
-
"name": "
|
|
308455
|
+
"name": "onClick",
|
|
308393
308456
|
"parent": {
|
|
308394
308457
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308395
|
-
"name": "
|
|
308458
|
+
"name": "GlobalDOMEvents"
|
|
308396
308459
|
},
|
|
308397
308460
|
"declarations": [
|
|
308398
308461
|
{
|
|
308399
308462
|
"fileName": "flow/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.7/node_modules/@react-types/shared/src/dom.d.ts",
|
|
308400
|
-
"name": "
|
|
308463
|
+
"name": "GlobalDOMEvents"
|
|
308401
308464
|
}
|
|
308402
308465
|
],
|
|
308403
308466
|
"required": false,
|
|
308404
308467
|
"type": {
|
|
308405
|
-
"name": "
|
|
308468
|
+
"name": "MouseEventHandler<HTMLDivElement>"
|
|
308406
308469
|
}
|
|
308407
308470
|
},
|
|
308408
308471
|
"onClickCapture": {
|
|
@@ -309601,21 +309664,6 @@
|
|
|
309601
309664
|
"type": {
|
|
309602
309665
|
"name": "TransitionEventHandler<HTMLDivElement>"
|
|
309603
309666
|
}
|
|
309604
|
-
},
|
|
309605
|
-
"footer": {
|
|
309606
|
-
"defaultValue": null,
|
|
309607
|
-
"description": "@internal",
|
|
309608
|
-
"name": "footer",
|
|
309609
|
-
"declarations": [
|
|
309610
|
-
{
|
|
309611
|
-
"fileName": "components/src/components/Table/components/TableRow/TableRow.tsx",
|
|
309612
|
-
"name": "TypeLiteral"
|
|
309613
|
-
}
|
|
309614
|
-
],
|
|
309615
|
-
"required": false,
|
|
309616
|
-
"type": {
|
|
309617
|
-
"name": "boolean"
|
|
309618
|
-
}
|
|
309619
309667
|
}
|
|
309620
309668
|
}
|
|
309621
309669
|
},
|
|
@@ -309630,37 +309678,37 @@
|
|
|
309630
309678
|
"props": {
|
|
309631
309679
|
"className": {
|
|
309632
309680
|
"defaultValue": {
|
|
309633
|
-
"value": "'react-aria-
|
|
309681
|
+
"value": "'react-aria-Row'"
|
|
309634
309682
|
},
|
|
309635
309683
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
309636
309684
|
"name": "className",
|
|
309637
309685
|
"parent": {
|
|
309638
309686
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309639
|
-
"name": "
|
|
309687
|
+
"name": "RowProps"
|
|
309640
309688
|
},
|
|
309641
309689
|
"declarations": [
|
|
309642
309690
|
{
|
|
309643
309691
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309644
|
-
"name": "
|
|
309692
|
+
"name": "RowProps"
|
|
309645
309693
|
}
|
|
309646
309694
|
],
|
|
309647
309695
|
"required": false,
|
|
309648
309696
|
"type": {
|
|
309649
|
-
"name": "ClassNameOrFunction<
|
|
309697
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
309650
309698
|
}
|
|
309651
309699
|
},
|
|
309652
309700
|
"columns": {
|
|
309653
309701
|
"defaultValue": null,
|
|
309654
|
-
"description": "A list of
|
|
309702
|
+
"description": "A list of columns used when dynamically rendering cells.",
|
|
309655
309703
|
"name": "columns",
|
|
309656
309704
|
"parent": {
|
|
309657
309705
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309658
|
-
"name": "
|
|
309706
|
+
"name": "RowProps"
|
|
309659
309707
|
},
|
|
309660
309708
|
"declarations": [
|
|
309661
309709
|
{
|
|
309662
309710
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309663
|
-
"name": "
|
|
309711
|
+
"name": "RowProps"
|
|
309664
309712
|
}
|
|
309665
309713
|
],
|
|
309666
309714
|
"required": false,
|
|
@@ -309708,16 +309756,16 @@
|
|
|
309708
309756
|
},
|
|
309709
309757
|
"dependencies": {
|
|
309710
309758
|
"defaultValue": null,
|
|
309711
|
-
"description": "Values that should invalidate the
|
|
309759
|
+
"description": "Values that should invalidate the cell cache when using dynamic collections.",
|
|
309712
309760
|
"name": "dependencies",
|
|
309713
309761
|
"parent": {
|
|
309714
309762
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309715
|
-
"name": "
|
|
309763
|
+
"name": "RowProps"
|
|
309716
309764
|
},
|
|
309717
309765
|
"declarations": [
|
|
309718
309766
|
{
|
|
309719
309767
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
309720
|
-
"name": "
|
|
309768
|
+
"name": "RowProps"
|
|
309721
309769
|
}
|
|
309722
309770
|
],
|
|
309723
309771
|
"required": false,
|
|
@@ -311619,23 +311667,23 @@
|
|
|
311619
311667
|
},
|
|
311620
311668
|
"className": {
|
|
311621
311669
|
"defaultValue": {
|
|
311622
|
-
"value": "'react-aria-
|
|
311670
|
+
"value": "'react-aria-Row'"
|
|
311623
311671
|
},
|
|
311624
311672
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
311625
311673
|
"name": "className",
|
|
311626
311674
|
"parent": {
|
|
311627
311675
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
311628
|
-
"name": "
|
|
311676
|
+
"name": "RowProps"
|
|
311629
311677
|
},
|
|
311630
311678
|
"declarations": [
|
|
311631
311679
|
{
|
|
311632
311680
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
311633
|
-
"name": "
|
|
311681
|
+
"name": "RowProps"
|
|
311634
311682
|
}
|
|
311635
311683
|
],
|
|
311636
311684
|
"required": false,
|
|
311637
311685
|
"type": {
|
|
311638
|
-
"name": "ClassNameOrFunction<
|
|
311686
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
311639
311687
|
}
|
|
311640
311688
|
},
|
|
311641
311689
|
"render": {
|
|
@@ -313131,23 +313179,23 @@
|
|
|
313131
313179
|
},
|
|
313132
313180
|
"className": {
|
|
313133
313181
|
"defaultValue": {
|
|
313134
|
-
"value": "'react-aria-
|
|
313182
|
+
"value": "'react-aria-Row'"
|
|
313135
313183
|
},
|
|
313136
313184
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
313137
313185
|
"name": "className",
|
|
313138
313186
|
"parent": {
|
|
313139
313187
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
313140
|
-
"name": "
|
|
313188
|
+
"name": "RowProps"
|
|
313141
313189
|
},
|
|
313142
313190
|
"declarations": [
|
|
313143
313191
|
{
|
|
313144
313192
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
313145
|
-
"name": "
|
|
313193
|
+
"name": "RowProps"
|
|
313146
313194
|
}
|
|
313147
313195
|
],
|
|
313148
313196
|
"required": false,
|
|
313149
313197
|
"type": {
|
|
313150
|
-
"name": "ClassNameOrFunction<
|
|
313198
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
313151
313199
|
}
|
|
313152
313200
|
},
|
|
313153
313201
|
"dir": {
|
|
@@ -314508,23 +314556,23 @@
|
|
|
314508
314556
|
"props": {
|
|
314509
314557
|
"className": {
|
|
314510
314558
|
"defaultValue": {
|
|
314511
|
-
"value": "'react-aria-
|
|
314559
|
+
"value": "'react-aria-Row'"
|
|
314512
314560
|
},
|
|
314513
314561
|
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the\nelement. A function may be provided to compute the class based on component state.",
|
|
314514
314562
|
"name": "className",
|
|
314515
314563
|
"parent": {
|
|
314516
314564
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
314517
|
-
"name": "
|
|
314565
|
+
"name": "RowProps"
|
|
314518
314566
|
},
|
|
314519
314567
|
"declarations": [
|
|
314520
314568
|
{
|
|
314521
314569
|
"fileName": "flow/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/react-aria-components/dist/types/src/Table.d.ts",
|
|
314522
|
-
"name": "
|
|
314570
|
+
"name": "RowProps"
|
|
314523
314571
|
}
|
|
314524
314572
|
],
|
|
314525
314573
|
"required": false,
|
|
314526
314574
|
"type": {
|
|
314527
|
-
"name": "ClassNameOrFunction<
|
|
314575
|
+
"name": "ClassNameOrFunction<RowRenderProps>"
|
|
314528
314576
|
}
|
|
314529
314577
|
},
|
|
314530
314578
|
"renderEmptyState": {
|
|
@@ -318181,9 +318229,9 @@
|
|
|
318181
318229
|
"tags": {
|
|
318182
318230
|
"flr-generate": "all"
|
|
318183
318231
|
},
|
|
318184
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/
|
|
318232
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/Radio/Radio.tsx",
|
|
318185
318233
|
"description": "",
|
|
318186
|
-
"displayName": "
|
|
318234
|
+
"displayName": "Radio",
|
|
318187
318235
|
"methods": [],
|
|
318188
318236
|
"props": {
|
|
318189
318237
|
"id": {
|
|
@@ -320090,9 +320138,9 @@
|
|
|
320090
320138
|
"tags": {
|
|
320091
320139
|
"flr-generate": "all"
|
|
320092
320140
|
},
|
|
320093
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/
|
|
320141
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/RadioGroup/components/RadioButton/RadioButton.tsx",
|
|
320094
320142
|
"description": "",
|
|
320095
|
-
"displayName": "
|
|
320143
|
+
"displayName": "RadioButton",
|
|
320096
320144
|
"methods": [],
|
|
320097
320145
|
"props": {
|
|
320098
320146
|
"id": {
|
|
@@ -328570,7 +328618,7 @@
|
|
|
328570
328618
|
{
|
|
328571
328619
|
"tags": {},
|
|
328572
328620
|
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/Modal/components/ConfirmUnsavedChangesModal/ConfirmUnsavedChangesModal.tsx",
|
|
328573
|
-
"description": "",
|
|
328621
|
+
"description": "Rendered by every `Modal` and only becomes active once something requires the\nclose to be confirmed – the `confirmOnClose` prop or a dirty `Form`.",
|
|
328574
328622
|
"displayName": "ConfirmUnsavedChangesModal",
|
|
328575
328623
|
"methods": [],
|
|
328576
328624
|
"props": {}
|
|
@@ -328910,16 +328958,6 @@
|
|
|
328910
328958
|
}
|
|
328911
328959
|
}
|
|
328912
328960
|
},
|
|
328913
|
-
{
|
|
328914
|
-
"tags": {
|
|
328915
|
-
"flr-generate": "all\n\nKeep this unused component for backwards compatibility!"
|
|
328916
|
-
},
|
|
328917
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/views/EmptyView/EmptyView.tsx",
|
|
328918
|
-
"description": "",
|
|
328919
|
-
"displayName": "EmptyView",
|
|
328920
|
-
"methods": [],
|
|
328921
|
-
"props": {}
|
|
328922
|
-
},
|
|
328923
328961
|
{
|
|
328924
328962
|
"tags": {
|
|
328925
328963
|
"flr-generate": "all"
|
|
@@ -328988,6 +329026,16 @@
|
|
|
328988
329026
|
}
|
|
328989
329027
|
}
|
|
328990
329028
|
},
|
|
329029
|
+
{
|
|
329030
|
+
"tags": {
|
|
329031
|
+
"flr-generate": "all\n\nKeep this unused component for backwards compatibility!"
|
|
329032
|
+
},
|
|
329033
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/views/EmptyView/EmptyView.tsx",
|
|
329034
|
+
"description": "",
|
|
329035
|
+
"displayName": "EmptyView",
|
|
329036
|
+
"methods": [],
|
|
329037
|
+
"props": {}
|
|
329038
|
+
},
|
|
328991
329039
|
{
|
|
328992
329040
|
"tags": {},
|
|
328993
329041
|
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/List/components/Table/Table.tsx",
|
|
@@ -332047,6 +332095,34 @@
|
|
|
332047
332095
|
}
|
|
332048
332096
|
}
|
|
332049
332097
|
},
|
|
332098
|
+
{
|
|
332099
|
+
"tags": {},
|
|
332100
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332101
|
+
"description": "",
|
|
332102
|
+
"displayName": "DeleteButton",
|
|
332103
|
+
"methods": [],
|
|
332104
|
+
"props": {
|
|
332105
|
+
"onDelete": {
|
|
332106
|
+
"defaultValue": null,
|
|
332107
|
+
"description": "",
|
|
332108
|
+
"name": "onDelete",
|
|
332109
|
+
"parent": {
|
|
332110
|
+
"fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332111
|
+
"name": "Props"
|
|
332112
|
+
},
|
|
332113
|
+
"declarations": [
|
|
332114
|
+
{
|
|
332115
|
+
"fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332116
|
+
"name": "Props"
|
|
332117
|
+
}
|
|
332118
|
+
],
|
|
332119
|
+
"required": true,
|
|
332120
|
+
"type": {
|
|
332121
|
+
"name": "() => void"
|
|
332122
|
+
}
|
|
332123
|
+
}
|
|
332124
|
+
}
|
|
332125
|
+
},
|
|
332050
332126
|
{
|
|
332051
332127
|
"tags": {},
|
|
332052
332128
|
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/Avatar/Avatar.tsx",
|
|
@@ -332113,34 +332189,6 @@
|
|
|
332113
332189
|
}
|
|
332114
332190
|
}
|
|
332115
332191
|
},
|
|
332116
|
-
{
|
|
332117
|
-
"tags": {},
|
|
332118
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332119
|
-
"description": "",
|
|
332120
|
-
"displayName": "DeleteButton",
|
|
332121
|
-
"methods": [],
|
|
332122
|
-
"props": {
|
|
332123
|
-
"onDelete": {
|
|
332124
|
-
"defaultValue": null,
|
|
332125
|
-
"description": "",
|
|
332126
|
-
"name": "onDelete",
|
|
332127
|
-
"parent": {
|
|
332128
|
-
"fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332129
|
-
"name": "Props"
|
|
332130
|
-
},
|
|
332131
|
-
"declarations": [
|
|
332132
|
-
{
|
|
332133
|
-
"fileName": "components/src/components/FileCard/components/DeleteButton/DeleteButton.tsx",
|
|
332134
|
-
"name": "Props"
|
|
332135
|
-
}
|
|
332136
|
-
],
|
|
332137
|
-
"required": true,
|
|
332138
|
-
"type": {
|
|
332139
|
-
"name": "() => void"
|
|
332140
|
-
}
|
|
332141
|
-
}
|
|
332142
|
-
}
|
|
332143
|
-
},
|
|
332144
332192
|
{
|
|
332145
332193
|
"tags": {},
|
|
332146
332194
|
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/DateRangePicker/components/DateRangeInput/DateRangeInput.tsx",
|
|
@@ -335562,9 +335610,9 @@
|
|
|
335562
335610
|
"tags": {
|
|
335563
335611
|
"flr-generate": "all"
|
|
335564
335612
|
},
|
|
335565
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/
|
|
335613
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
|
|
335566
335614
|
"description": "",
|
|
335567
|
-
"displayName": "
|
|
335615
|
+
"displayName": "XAxis",
|
|
335568
335616
|
"methods": [],
|
|
335569
335617
|
"props": {
|
|
335570
335618
|
"className": {
|
|
@@ -335645,16 +335693,16 @@
|
|
|
335645
335693
|
},
|
|
335646
335694
|
"scale": {
|
|
335647
335695
|
"defaultValue": null,
|
|
335648
|
-
"description": "Scale function determines how data values are mapped to visual values.\nIn other words, decided the mapping between data domain and coordinate range.\n\nIf undefined, or 'auto', the scale function is created internally according to the type of axis and data.\n\nYou can define a custom scale, either as a string shortcut to a d3 scale, or as a complete scale definition object.\n@defaultValue auto\n@example <
|
|
335696
|
+
"description": "Scale function determines how data values are mapped to visual values.\nIn other words, decided the mapping between data domain and coordinate range.\n\nIf undefined, or 'auto', the scale function is created internally according to the type of axis and data.\n\nYou can define a custom scale, either as a string shortcut to a d3 scale, or as a complete scale definition object.\n@defaultValue auto\n@example <XAxis scale=\"log\" />\n@example import { scaleLog } from 'd3-scale';\nconst scale = scaleLog().base(Math.E);\n<XAxis scale={scale} />",
|
|
335649
335697
|
"name": "scale",
|
|
335650
335698
|
"parent": {
|
|
335651
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335652
|
-
"name": "
|
|
335699
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335700
|
+
"name": "XAxisProps"
|
|
335653
335701
|
},
|
|
335654
335702
|
"declarations": [
|
|
335655
335703
|
{
|
|
335656
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335657
|
-
"name": "
|
|
335704
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335705
|
+
"name": "XAxisProps"
|
|
335658
335706
|
}
|
|
335659
335707
|
],
|
|
335660
335708
|
"required": false,
|
|
@@ -335681,18 +335729,37 @@
|
|
|
335681
335729
|
"name": "boolean"
|
|
335682
335730
|
}
|
|
335683
335731
|
},
|
|
335732
|
+
"allowDataOverflow": {
|
|
335733
|
+
"defaultValue": null,
|
|
335734
|
+
"description": "When domain of the axis is specified and the type of the axis is 'number',\nif allowDataOverflow is set to be false,\nthe domain will be adjusted when the minimum value of data is smaller than domain[0] or\nthe maximum value of data is greater than domain[1] so that the axis displays all data values.\nIf set to true, graphic elements (line, area, bars) will be clipped to conform to the specified domain.\n@defaultValue false",
|
|
335735
|
+
"name": "allowDataOverflow",
|
|
335736
|
+
"parent": {
|
|
335737
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
335738
|
+
"name": "RenderableAxisProps"
|
|
335739
|
+
},
|
|
335740
|
+
"declarations": [
|
|
335741
|
+
{
|
|
335742
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
335743
|
+
"name": "RenderableAxisProps"
|
|
335744
|
+
}
|
|
335745
|
+
],
|
|
335746
|
+
"required": false,
|
|
335747
|
+
"type": {
|
|
335748
|
+
"name": "boolean"
|
|
335749
|
+
}
|
|
335750
|
+
},
|
|
335684
335751
|
"interval": {
|
|
335685
335752
|
"defaultValue": null,
|
|
335686
|
-
"description": "If set 0, all the ticks will be shown. If set
|
|
335753
|
+
"description": "If set 0, all the ticks will be shown. If set preserveStart\", \"preserveEnd\" or \"preserveStartEnd\", the ticks which is to be shown or hidden will be calculated automatically.\n@defaultValue preserveEnd",
|
|
335687
335754
|
"name": "interval",
|
|
335688
335755
|
"parent": {
|
|
335689
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335690
|
-
"name": "
|
|
335756
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335757
|
+
"name": "XAxisProps"
|
|
335691
335758
|
},
|
|
335692
335759
|
"declarations": [
|
|
335693
335760
|
{
|
|
335694
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335695
|
-
"name": "
|
|
335761
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335762
|
+
"name": "XAxisProps"
|
|
335696
335763
|
}
|
|
335697
335764
|
],
|
|
335698
335765
|
"required": false,
|
|
@@ -335705,13 +335772,13 @@
|
|
|
335705
335772
|
"description": "The minimum gap between two adjacent tick labels\n@defaultValue 5",
|
|
335706
335773
|
"name": "minTickGap",
|
|
335707
335774
|
"parent": {
|
|
335708
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335709
|
-
"name": "
|
|
335775
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335776
|
+
"name": "XAxisProps"
|
|
335710
335777
|
},
|
|
335711
335778
|
"declarations": [
|
|
335712
335779
|
{
|
|
335713
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335714
|
-
"name": "
|
|
335780
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335781
|
+
"name": "XAxisProps"
|
|
335715
335782
|
}
|
|
335716
335783
|
],
|
|
335717
335784
|
"required": false,
|
|
@@ -335721,16 +335788,16 @@
|
|
|
335721
335788
|
},
|
|
335722
335789
|
"domain": {
|
|
335723
335790
|
"defaultValue": null,
|
|
335724
|
-
"description": "Specify the domain of axis when the axis is a number axis.\n\nIf undefined, then the domain is calculated based on the data and dataKeys.\n\nThe length of domain should be 2, and we will validate the values in domain.\n\nEach element in the array can be a number, 'auto', 'dataMin', 'dataMax', a string like 'dataMin - 20', 'dataMax + 100',\nor a function that accepts a single argument and returns a number.\n\nIf any element of domain is set to be 'auto', comprehensible scale ticks will be calculated, and the final domain of axis is generated by the ticks.\nIf a function, receives '[dataMin, dataMax]', and must return a computed domain as '[min, max]'.\n@example <
|
|
335791
|
+
"description": "Specify the domain of axis when the axis is a number axis.\n\nIf undefined, then the domain is calculated based on the data and dataKeys.\n\nThe length of domain should be 2, and we will validate the values in domain.\n\nEach element in the array can be a number, 'auto', 'dataMin', 'dataMax', a string like 'dataMin - 20', 'dataMax + 100',\nor a function that accepts a single argument and returns a number.\n\nIf any element of domain is set to be 'auto', comprehensible scale ticks will be calculated, and the final domain of axis is generated by the ticks.\nIf a function, receives '[dataMin, dataMax]', and must return a computed domain as '[min, max]'.\n@example <XAxis type=\"number\" domain={['dataMin', 'dataMax']} />\n@example <XAxis type=\"number\" domain={[0, 'dataMax']} />\n@example <XAxis type=\"number\" domain={['auto', 'auto']} />\n@example <XAxis type=\"number\" domain={[0, 'dataMax + 1000']} />\n@example <XAxis type=\"number\" domain={['dataMin - 100', 'dataMax + 100']} />\n@example <XAxis type=\"number\" domain={[dataMin => (0 - Math.abs(dataMin)), dataMax => (dataMax * 2)]} />\n@example <XAxis type=\"number\" domain={([dataMin, dataMax]) => { const absMax = Math.max(Math.abs(dataMin), Math.abs(dataMax)); return [-absMax, absMax]; }} />\n@example <XAxis type=\"number\" domain={[0, 100]} allowDataOverflow />",
|
|
335725
335792
|
"name": "domain",
|
|
335726
335793
|
"parent": {
|
|
335727
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335728
|
-
"name": "
|
|
335794
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335795
|
+
"name": "XAxisProps"
|
|
335729
335796
|
},
|
|
335730
335797
|
"declarations": [
|
|
335731
335798
|
{
|
|
335732
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335733
|
-
"name": "
|
|
335799
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/XAxis.d.ts",
|
|
335800
|
+
"name": "XAxisProps"
|
|
335734
335801
|
}
|
|
335735
335802
|
],
|
|
335736
335803
|
"required": false,
|
|
@@ -335763,7 +335830,7 @@
|
|
|
335763
335830
|
"name": "dataKey",
|
|
335764
335831
|
"declarations": [
|
|
335765
335832
|
{
|
|
335766
|
-
"fileName": "components/src/components/CartesianChart/components/
|
|
335833
|
+
"fileName": "components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
|
|
335767
335834
|
"name": "TypeLiteral"
|
|
335768
335835
|
}
|
|
335769
335836
|
],
|
|
@@ -335778,7 +335845,7 @@
|
|
|
335778
335845
|
"name": "tickFormatter",
|
|
335779
335846
|
"declarations": [
|
|
335780
335847
|
{
|
|
335781
|
-
"fileName": "components/src/components/CartesianChart/components/
|
|
335848
|
+
"fileName": "components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
|
|
335782
335849
|
"name": "TypeLiteral"
|
|
335783
335850
|
}
|
|
335784
335851
|
],
|
|
@@ -335793,194 +335860,211 @@
|
|
|
335793
335860
|
"tags": {
|
|
335794
335861
|
"flr-generate": "all"
|
|
335795
335862
|
},
|
|
335796
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/
|
|
335863
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
335797
335864
|
"description": "",
|
|
335798
|
-
"displayName": "
|
|
335865
|
+
"displayName": "Line",
|
|
335799
335866
|
"methods": [],
|
|
335800
335867
|
"props": {
|
|
335801
|
-
"
|
|
335868
|
+
"dataKey": {
|
|
335802
335869
|
"defaultValue": null,
|
|
335803
335870
|
"description": "",
|
|
335804
|
-
"name": "
|
|
335871
|
+
"name": "dataKey",
|
|
335805
335872
|
"parent": {
|
|
335806
|
-
"fileName": "
|
|
335807
|
-
"name": "
|
|
335873
|
+
"fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
335874
|
+
"name": "LineProps"
|
|
335808
335875
|
},
|
|
335809
335876
|
"declarations": [
|
|
335810
335877
|
{
|
|
335811
|
-
"fileName": "
|
|
335812
|
-
"name": "
|
|
335878
|
+
"fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
335879
|
+
"name": "LineProps"
|
|
335813
335880
|
}
|
|
335814
335881
|
],
|
|
335815
335882
|
"required": false,
|
|
335816
335883
|
"type": {
|
|
335817
|
-
"name": "
|
|
335884
|
+
"name": "DataKey<ChartDataValue>"
|
|
335818
335885
|
}
|
|
335819
335886
|
},
|
|
335820
|
-
"
|
|
335821
|
-
"defaultValue":
|
|
335822
|
-
|
|
335823
|
-
|
|
335887
|
+
"color": {
|
|
335888
|
+
"defaultValue": {
|
|
335889
|
+
"value": "\"sea-green\""
|
|
335890
|
+
},
|
|
335891
|
+
"description": "The color of the line.",
|
|
335892
|
+
"name": "color",
|
|
335824
335893
|
"parent": {
|
|
335825
|
-
"fileName": "
|
|
335826
|
-
"name": "
|
|
335894
|
+
"fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
335895
|
+
"name": "LineProps"
|
|
335827
335896
|
},
|
|
335828
335897
|
"declarations": [
|
|
335829
335898
|
{
|
|
335830
|
-
"fileName": "
|
|
335831
|
-
"name": "
|
|
335899
|
+
"fileName": "components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
335900
|
+
"name": "LineProps"
|
|
335832
335901
|
}
|
|
335833
335902
|
],
|
|
335834
335903
|
"required": false,
|
|
335835
335904
|
"type": {
|
|
335836
|
-
"name": "
|
|
335905
|
+
"name": "CategoricalWithCustomColor"
|
|
335837
335906
|
}
|
|
335838
335907
|
},
|
|
335839
|
-
"
|
|
335908
|
+
"className": {
|
|
335840
335909
|
"defaultValue": null,
|
|
335841
|
-
"description": "
|
|
335842
|
-
"name": "
|
|
335910
|
+
"description": "",
|
|
335911
|
+
"name": "className",
|
|
335843
335912
|
"parent": {
|
|
335844
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335845
|
-
"name": "
|
|
335913
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
335914
|
+
"name": "HTMLAttributes"
|
|
335846
335915
|
},
|
|
335847
335916
|
"declarations": [
|
|
335848
335917
|
{
|
|
335849
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335850
|
-
"name": "
|
|
335918
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
335919
|
+
"name": "HTMLAttributes"
|
|
335851
335920
|
}
|
|
335852
335921
|
],
|
|
335853
335922
|
"required": false,
|
|
335854
335923
|
"type": {
|
|
335855
|
-
"name": "
|
|
335924
|
+
"name": "string"
|
|
335856
335925
|
}
|
|
335857
335926
|
},
|
|
335858
|
-
"
|
|
335927
|
+
"key": {
|
|
335859
335928
|
"defaultValue": null,
|
|
335860
335929
|
"description": "",
|
|
335861
|
-
"name": "
|
|
335930
|
+
"name": "key",
|
|
335862
335931
|
"parent": {
|
|
335863
335932
|
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
335864
|
-
"name": "
|
|
335933
|
+
"name": "Attributes"
|
|
335865
335934
|
},
|
|
335866
335935
|
"declarations": [
|
|
335867
335936
|
{
|
|
335868
335937
|
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
335869
|
-
"name": "
|
|
335938
|
+
"name": "Attributes"
|
|
335870
335939
|
}
|
|
335871
335940
|
],
|
|
335872
335941
|
"required": false,
|
|
335873
335942
|
"type": {
|
|
335874
|
-
"name": "
|
|
335943
|
+
"name": "Key | null"
|
|
335875
335944
|
}
|
|
335876
335945
|
},
|
|
335877
|
-
"
|
|
335946
|
+
"type": {
|
|
335878
335947
|
"defaultValue": null,
|
|
335879
|
-
"description": "
|
|
335880
|
-
"name": "
|
|
335948
|
+
"description": "The interpolation type of curve. Allows custom interpolation function.\n@defaultValue linear\n@link https://d3js.org/d3-shape/curve\n@see {@link https://recharts.github.io/en-US/examples/CardinalAreaChart/ An AreaChart which has two area with different interpolation.}\n@defaultValue linear\n@link https://d3js.org/d3-shape/curve\n@see {@link https://recharts.github.io/en-US/examples/CardinalAreaChart/ An AreaChart which has two area with different interpolation.}",
|
|
335949
|
+
"name": "type",
|
|
335881
335950
|
"parent": {
|
|
335882
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
335883
|
-
"name": "
|
|
335951
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
|
|
335952
|
+
"name": "CurveProps"
|
|
335884
335953
|
},
|
|
335885
335954
|
"declarations": [
|
|
335886
335955
|
{
|
|
335887
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
335888
|
-
"name": "
|
|
335956
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/shape/Curve.d.ts",
|
|
335957
|
+
"name": "CurveProps"
|
|
335958
|
+
},
|
|
335959
|
+
{
|
|
335960
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
335961
|
+
"name": "LineProps"
|
|
335889
335962
|
}
|
|
335890
335963
|
],
|
|
335891
335964
|
"required": false,
|
|
335892
335965
|
"type": {
|
|
335893
|
-
"name": "
|
|
335966
|
+
"name": "CurveType"
|
|
335894
335967
|
}
|
|
335895
335968
|
},
|
|
335896
|
-
"
|
|
335969
|
+
"unit": {
|
|
335897
335970
|
"defaultValue": null,
|
|
335898
|
-
"description": "
|
|
335899
|
-
"name": "
|
|
335971
|
+
"description": "The unit of data. This option will be used in tooltip.",
|
|
335972
|
+
"name": "unit",
|
|
335900
335973
|
"parent": {
|
|
335901
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
335902
|
-
"name": "
|
|
335974
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
335975
|
+
"name": "LineProps"
|
|
335903
335976
|
},
|
|
335904
335977
|
"declarations": [
|
|
335905
335978
|
{
|
|
335906
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
335907
|
-
"name": "
|
|
335979
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
335980
|
+
"name": "LineProps"
|
|
335908
335981
|
}
|
|
335909
335982
|
],
|
|
335910
335983
|
"required": false,
|
|
335911
335984
|
"type": {
|
|
335912
|
-
"name": "
|
|
335985
|
+
"name": "string | number | null"
|
|
335913
335986
|
}
|
|
335914
335987
|
},
|
|
335915
|
-
"
|
|
335988
|
+
"xAxisId": {
|
|
335916
335989
|
"defaultValue": null,
|
|
335917
|
-
"description": "
|
|
335918
|
-
"name": "
|
|
335990
|
+
"description": "The id of XAxis which is corresponding to the data. Required when there are multiple XAxes.\n@defaultValue 0",
|
|
335991
|
+
"name": "xAxisId",
|
|
335919
335992
|
"parent": {
|
|
335920
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335921
|
-
"name": "
|
|
335993
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
335994
|
+
"name": "LineProps"
|
|
335922
335995
|
},
|
|
335923
335996
|
"declarations": [
|
|
335924
335997
|
{
|
|
335925
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335926
|
-
"name": "
|
|
335998
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
335999
|
+
"name": "LineProps"
|
|
335927
336000
|
}
|
|
335928
336001
|
],
|
|
335929
336002
|
"required": false,
|
|
335930
336003
|
"type": {
|
|
335931
|
-
"name": "
|
|
336004
|
+
"name": "AxisId"
|
|
335932
336005
|
}
|
|
335933
336006
|
},
|
|
335934
|
-
"
|
|
336007
|
+
"yAxisId": {
|
|
335935
336008
|
"defaultValue": null,
|
|
335936
|
-
"description": "The
|
|
335937
|
-
"name": "
|
|
336009
|
+
"description": "The id of YAxis which is corresponding to the data. Required when there are multiple YAxes.\n@defaultValue 0",
|
|
336010
|
+
"name": "yAxisId",
|
|
335938
336011
|
"parent": {
|
|
335939
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335940
|
-
"name": "
|
|
336012
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
336013
|
+
"name": "LineProps"
|
|
335941
336014
|
},
|
|
335942
336015
|
"declarations": [
|
|
335943
336016
|
{
|
|
335944
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/
|
|
335945
|
-
"name": "
|
|
336017
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
336018
|
+
"name": "LineProps"
|
|
335946
336019
|
}
|
|
335947
336020
|
],
|
|
335948
336021
|
"required": false,
|
|
335949
336022
|
"type": {
|
|
335950
|
-
"name": "
|
|
336023
|
+
"name": "AxisId"
|
|
335951
336024
|
}
|
|
335952
|
-
}
|
|
335953
|
-
|
|
336025
|
+
}
|
|
336026
|
+
}
|
|
336027
|
+
},
|
|
336028
|
+
{
|
|
336029
|
+
"tags": {
|
|
336030
|
+
"flr-generate": "all"
|
|
336031
|
+
},
|
|
336032
|
+
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/YAxis/YAxis.tsx",
|
|
336033
|
+
"description": "",
|
|
336034
|
+
"displayName": "YAxis",
|
|
336035
|
+
"methods": [],
|
|
336036
|
+
"props": {
|
|
336037
|
+
"className": {
|
|
335954
336038
|
"defaultValue": null,
|
|
335955
|
-
"description": "
|
|
335956
|
-
"name": "
|
|
336039
|
+
"description": "",
|
|
336040
|
+
"name": "className",
|
|
335957
336041
|
"parent": {
|
|
335958
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335959
|
-
"name": "
|
|
336042
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336043
|
+
"name": "HTMLAttributes"
|
|
335960
336044
|
},
|
|
335961
336045
|
"declarations": [
|
|
335962
336046
|
{
|
|
335963
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335964
|
-
"name": "
|
|
336047
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336048
|
+
"name": "HTMLAttributes"
|
|
335965
336049
|
}
|
|
335966
336050
|
],
|
|
335967
336051
|
"required": false,
|
|
335968
336052
|
"type": {
|
|
335969
|
-
"name": "
|
|
336053
|
+
"name": "string"
|
|
335970
336054
|
}
|
|
335971
336055
|
},
|
|
335972
|
-
"
|
|
336056
|
+
"type": {
|
|
335973
336057
|
"defaultValue": null,
|
|
335974
|
-
"description": "
|
|
335975
|
-
"name": "
|
|
336058
|
+
"description": "",
|
|
336059
|
+
"name": "type",
|
|
335976
336060
|
"parent": {
|
|
335977
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335978
|
-
"name": "
|
|
336061
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336062
|
+
"name": "SVGAttributes"
|
|
335979
336063
|
},
|
|
335980
336064
|
"declarations": [
|
|
335981
336065
|
{
|
|
335982
|
-
"fileName": "flow/node_modules/.pnpm
|
|
335983
|
-
"name": "
|
|
336066
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336067
|
+
"name": "SVGAttributes"
|
|
335984
336068
|
}
|
|
335985
336069
|
],
|
|
335986
336070
|
"required": false,
|
|
@@ -335988,10 +336072,10 @@
|
|
|
335988
336072
|
"name": "string"
|
|
335989
336073
|
}
|
|
335990
336074
|
},
|
|
335991
|
-
"
|
|
336075
|
+
"hide": {
|
|
335992
336076
|
"defaultValue": null,
|
|
335993
|
-
"description": "
|
|
335994
|
-
"name": "
|
|
336077
|
+
"description": "If set true, the axis do not display in the chart.\n@defaultValue false",
|
|
336078
|
+
"name": "hide",
|
|
335995
336079
|
"parent": {
|
|
335996
336080
|
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
335997
336081
|
"name": "RenderableAxisProps"
|
|
@@ -336007,146 +336091,118 @@
|
|
|
336007
336091
|
"name": "boolean"
|
|
336008
336092
|
}
|
|
336009
336093
|
},
|
|
336010
|
-
"
|
|
336094
|
+
"orientation": {
|
|
336011
336095
|
"defaultValue": null,
|
|
336012
336096
|
"description": "",
|
|
336013
|
-
"name": "
|
|
336097
|
+
"name": "orientation",
|
|
336098
|
+
"parent": {
|
|
336099
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336100
|
+
"name": "SVGAttributes"
|
|
336101
|
+
},
|
|
336014
336102
|
"declarations": [
|
|
336015
336103
|
{
|
|
336016
|
-
"fileName": "
|
|
336017
|
-
"name": "
|
|
336104
|
+
"fileName": "flow/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
|
|
336105
|
+
"name": "SVGAttributes"
|
|
336018
336106
|
}
|
|
336019
336107
|
],
|
|
336020
336108
|
"required": false,
|
|
336021
336109
|
"type": {
|
|
336022
|
-
"name": "
|
|
336110
|
+
"name": "string | number"
|
|
336023
336111
|
}
|
|
336024
336112
|
},
|
|
336025
|
-
"
|
|
336026
|
-
"defaultValue": null,
|
|
336027
|
-
"description": "",
|
|
336028
|
-
"name": "tickFormatter",
|
|
336029
|
-
"declarations": [
|
|
336030
|
-
{
|
|
336031
|
-
"fileName": "components/src/components/CartesianChart/components/XAxis/XAxis.tsx",
|
|
336032
|
-
"name": "TypeLiteral"
|
|
336033
|
-
}
|
|
336034
|
-
],
|
|
336035
|
-
"required": false,
|
|
336036
|
-
"type": {
|
|
336037
|
-
"name": "((value: unknown, index: number) => string)"
|
|
336038
|
-
}
|
|
336039
|
-
}
|
|
336040
|
-
}
|
|
336041
|
-
},
|
|
336042
|
-
{
|
|
336043
|
-
"tags": {
|
|
336044
|
-
"flr-generate": "all"
|
|
336045
|
-
},
|
|
336046
|
-
"filePath": "/home/runner/work/flow/flow/packages/components/src/components/CartesianChart/components/Line/Line.tsx",
|
|
336047
|
-
"description": "",
|
|
336048
|
-
"displayName": "Line",
|
|
336049
|
-
"methods": [],
|
|
336050
|
-
"props": {
|
|
336051
|
-
"dataKey": {
|
|
336113
|
+
"scale": {
|
|
336052
336114
|
"defaultValue": null,
|
|
336053
|
-
"description": "",
|
|
336054
|
-
"name": "
|
|
336115
|
+
"description": "Scale function determines how data values are mapped to visual values.\nIn other words, decided the mapping between data domain and coordinate range.\n\nIf undefined, or 'auto', the scale function is created internally according to the type of axis and data.\n\nYou can define a custom scale, either as a string shortcut to a d3 scale, or as a complete scale definition object.\n@defaultValue auto\n@example <YAxis scale=\"log\" />\n@example import { scaleLog } from 'd3-scale';\nconst scale = scaleLog().base(Math.E);\n<YAxis scale={scale} />",
|
|
336116
|
+
"name": "scale",
|
|
336055
336117
|
"parent": {
|
|
336056
|
-
"fileName": "
|
|
336057
|
-
"name": "
|
|
336118
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336119
|
+
"name": "YAxisProps"
|
|
336058
336120
|
},
|
|
336059
336121
|
"declarations": [
|
|
336060
336122
|
{
|
|
336061
|
-
"fileName": "
|
|
336062
|
-
"name": "
|
|
336123
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336124
|
+
"name": "YAxisProps"
|
|
336063
336125
|
}
|
|
336064
336126
|
],
|
|
336065
336127
|
"required": false,
|
|
336066
336128
|
"type": {
|
|
336067
|
-
"name": "
|
|
336129
|
+
"name": "ScaleType | CustomScaleDefinition<CategoricalDomainItem> | CustomScaleDefinition<string> | CustomScaleDefinition<...> | CustomScaleDefinition<...>"
|
|
336068
336130
|
}
|
|
336069
336131
|
},
|
|
336070
|
-
"
|
|
336071
|
-
"defaultValue":
|
|
336072
|
-
|
|
336073
|
-
|
|
336074
|
-
"description": "The color of the line.",
|
|
336075
|
-
"name": "color",
|
|
336132
|
+
"allowDecimals": {
|
|
336133
|
+
"defaultValue": null,
|
|
336134
|
+
"description": "Allow the ticks of axis to be decimals or not.\n@defaultValue true",
|
|
336135
|
+
"name": "allowDecimals",
|
|
336076
336136
|
"parent": {
|
|
336077
|
-
"fileName": "
|
|
336078
|
-
"name": "
|
|
336137
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
336138
|
+
"name": "RenderableAxisProps"
|
|
336079
336139
|
},
|
|
336080
336140
|
"declarations": [
|
|
336081
336141
|
{
|
|
336082
|
-
"fileName": "
|
|
336083
|
-
"name": "
|
|
336142
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
336143
|
+
"name": "RenderableAxisProps"
|
|
336084
336144
|
}
|
|
336085
336145
|
],
|
|
336086
336146
|
"required": false,
|
|
336087
336147
|
"type": {
|
|
336088
|
-
"name": "
|
|
336148
|
+
"name": "boolean"
|
|
336089
336149
|
}
|
|
336090
336150
|
},
|
|
336091
|
-
"
|
|
336151
|
+
"interval": {
|
|
336092
336152
|
"defaultValue": null,
|
|
336093
|
-
"description": "",
|
|
336094
|
-
"name": "
|
|
336153
|
+
"description": "If set 0, all the ticks will be shown. If set \"preserveStart\", \"preserveEnd\" or \"preserveStartEnd\",\nthe ticks which is to be shown or hidden will be calculated automatically.\n@defaultValue preserveEnd",
|
|
336154
|
+
"name": "interval",
|
|
336095
336155
|
"parent": {
|
|
336096
|
-
"fileName": "flow/node_modules/.pnpm
|
|
336097
|
-
"name": "
|
|
336156
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336157
|
+
"name": "YAxisProps"
|
|
336098
336158
|
},
|
|
336099
336159
|
"declarations": [
|
|
336100
336160
|
{
|
|
336101
|
-
"fileName": "flow/node_modules/.pnpm
|
|
336102
|
-
"name": "
|
|
336161
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336162
|
+
"name": "YAxisProps"
|
|
336103
336163
|
}
|
|
336104
336164
|
],
|
|
336105
336165
|
"required": false,
|
|
336106
336166
|
"type": {
|
|
336107
|
-
"name": "
|
|
336167
|
+
"name": "AxisInterval"
|
|
336108
336168
|
}
|
|
336109
336169
|
},
|
|
336110
|
-
"
|
|
336170
|
+
"minTickGap": {
|
|
336111
336171
|
"defaultValue": null,
|
|
336112
|
-
"description": "",
|
|
336113
|
-
"name": "
|
|
336172
|
+
"description": "The minimum gap between two adjacent tick labels\n@defaultValue 5",
|
|
336173
|
+
"name": "minTickGap",
|
|
336114
336174
|
"parent": {
|
|
336115
|
-
"fileName": "flow/node_modules/.pnpm
|
|
336116
|
-
"name": "
|
|
336175
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336176
|
+
"name": "YAxisProps"
|
|
336117
336177
|
},
|
|
336118
336178
|
"declarations": [
|
|
336119
336179
|
{
|
|
336120
|
-
"fileName": "flow/node_modules/.pnpm
|
|
336121
|
-
"name": "
|
|
336180
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336181
|
+
"name": "YAxisProps"
|
|
336122
336182
|
}
|
|
336123
336183
|
],
|
|
336124
336184
|
"required": false,
|
|
336125
336185
|
"type": {
|
|
336126
|
-
"name": "
|
|
336186
|
+
"name": "number"
|
|
336127
336187
|
}
|
|
336128
336188
|
},
|
|
336129
|
-
"
|
|
336189
|
+
"domain": {
|
|
336130
336190
|
"defaultValue": null,
|
|
336131
|
-
"description": "
|
|
336132
|
-
"name": "
|
|
336191
|
+
"description": "Specify the domain of axis when the axis is a number axis.\n\nIf undefined, then the domain is calculated based on the data and dataKeys.\n\nThe length of domain should be 2, and we will validate the values in domain.\n\nEach element in the array can be a number, 'auto', 'dataMin', 'dataMax', a string like 'dataMin - 20', 'dataMax + 100',\nor a function that accepts a single argument and returns a number.\n\nIf any element of domain is set to be 'auto', comprehensible scale ticks will be calculated, and the final domain of axis is generated by the ticks.\nIf a function, receives '[dataMin, dataMax]', and must return a computed domain as '[min, max]'.\n@example <YAxis type=\"number\" domain={['dataMin', 'dataMax']} />\n@example <YAxis type=\"number\" domain={[0, 'dataMax']} />\n@example <YAxis type=\"number\" domain={['auto', 'auto']} />\n@example <YAxis type=\"number\" domain={[0, 'dataMax + 1000']} />\n@example <YAxis type=\"number\" domain={['dataMin - 100', 'dataMax + 100']} />\n@example <YAxis type=\"number\" domain={[dataMin => (0 - Math.abs(dataMin)), dataMax => (dataMax * 2)]} />\n@example <YAxis type=\"number\" domain={([dataMin, dataMax]) => { const absMax = Math.max(Math.abs(dataMin), Math.abs(dataMax)); return [-absMax, absMax]; }} />\n@example <YAxis type=\"number\" domain={[0, 100]} allowDataOverflow />",
|
|
336192
|
+
"name": "domain",
|
|
336133
336193
|
"parent": {
|
|
336134
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
336135
|
-
"name": "
|
|
336194
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336195
|
+
"name": "YAxisProps"
|
|
336136
336196
|
},
|
|
336137
336197
|
"declarations": [
|
|
336138
336198
|
{
|
|
336139
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
336140
|
-
"name": "
|
|
336141
|
-
},
|
|
336142
|
-
{
|
|
336143
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
336144
|
-
"name": "LineProps"
|
|
336199
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/YAxis.d.ts",
|
|
336200
|
+
"name": "YAxisProps"
|
|
336145
336201
|
}
|
|
336146
336202
|
],
|
|
336147
336203
|
"required": false,
|
|
336148
336204
|
"type": {
|
|
336149
|
-
"name": "
|
|
336205
|
+
"name": "AxisDomain"
|
|
336150
336206
|
}
|
|
336151
336207
|
},
|
|
336152
336208
|
"unit": {
|
|
@@ -336154,56 +336210,48 @@
|
|
|
336154
336210
|
"description": "The unit of data. This option will be used in tooltip.",
|
|
336155
336211
|
"name": "unit",
|
|
336156
336212
|
"parent": {
|
|
336157
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
336158
|
-
"name": "
|
|
336213
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
336214
|
+
"name": "BaseAxisProps"
|
|
336159
336215
|
},
|
|
336160
336216
|
"declarations": [
|
|
336161
336217
|
{
|
|
336162
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/
|
|
336163
|
-
"name": "
|
|
336218
|
+
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/util/types.d.ts",
|
|
336219
|
+
"name": "BaseAxisProps"
|
|
336164
336220
|
}
|
|
336165
336221
|
],
|
|
336166
336222
|
"required": false,
|
|
336167
336223
|
"type": {
|
|
336168
|
-
"name": "string
|
|
336224
|
+
"name": "string"
|
|
336169
336225
|
}
|
|
336170
336226
|
},
|
|
336171
|
-
"
|
|
336227
|
+
"dataKey": {
|
|
336172
336228
|
"defaultValue": null,
|
|
336173
|
-
"description": "
|
|
336174
|
-
"name": "
|
|
336175
|
-
"parent": {
|
|
336176
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
336177
|
-
"name": "LineProps"
|
|
336178
|
-
},
|
|
336229
|
+
"description": "",
|
|
336230
|
+
"name": "dataKey",
|
|
336179
336231
|
"declarations": [
|
|
336180
336232
|
{
|
|
336181
|
-
"fileName": "
|
|
336182
|
-
"name": "
|
|
336233
|
+
"fileName": "components/src/components/CartesianChart/components/YAxis/YAxis.tsx",
|
|
336234
|
+
"name": "TypeLiteral"
|
|
336183
336235
|
}
|
|
336184
336236
|
],
|
|
336185
336237
|
"required": false,
|
|
336186
336238
|
"type": {
|
|
336187
|
-
"name": "
|
|
336239
|
+
"name": "DataKey<ChartDataValue>"
|
|
336188
336240
|
}
|
|
336189
336241
|
},
|
|
336190
|
-
"
|
|
336242
|
+
"tickFormatter": {
|
|
336191
336243
|
"defaultValue": null,
|
|
336192
|
-
"description": "
|
|
336193
|
-
"name": "
|
|
336194
|
-
"parent": {
|
|
336195
|
-
"fileName": "flow/node_modules/.pnpm/recharts@3.7.0_@types+react@19.2.17_react-dom@19.2.7_react@19.2.7__react-is@19.2.0_react@19.2.7_redux@5.0.1/node_modules/recharts/types/cartesian/Line.d.ts",
|
|
336196
|
-
"name": "LineProps"
|
|
336197
|
-
},
|
|
336244
|
+
"description": "",
|
|
336245
|
+
"name": "tickFormatter",
|
|
336198
336246
|
"declarations": [
|
|
336199
336247
|
{
|
|
336200
|
-
"fileName": "
|
|
336201
|
-
"name": "
|
|
336248
|
+
"fileName": "components/src/components/CartesianChart/components/YAxis/YAxis.tsx",
|
|
336249
|
+
"name": "TypeLiteral"
|
|
336202
336250
|
}
|
|
336203
336251
|
],
|
|
336204
336252
|
"required": false,
|
|
336205
336253
|
"type": {
|
|
336206
|
-
"name": "
|
|
336254
|
+
"name": "((value: unknown, index: number) => string)"
|
|
336207
336255
|
}
|
|
336208
336256
|
}
|
|
336209
336257
|
}
|