@workday/canvas-kit-docs 9.0.0-alpha.382-next.2 → 9.0.0-alpha.385-next.4

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.
@@ -27641,6 +27641,788 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
27641
27641
  }
27642
27642
  }
27643
27643
  },
27644
+ {
27645
+ "name": "Table",
27646
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx",
27647
+ "description": "`Table` is a simple styled compound component that renders a [table](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table) element. It is used to present information in a two-dimensional table comprised of rows and columns of cells containing data.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Caption>Table Caption</Table.Caption>\n <Table.Head>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Header>Table Header</Table.Header>\n </Table.Row>\n </Table.Head>\n <Table.Body>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Header>Table Header</Table.Header>\n </Table.Row>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Data Cell</Table.Cell>\n </Table.Row>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Data Cell</Table.Cell>\n </Table.Row>\n </Table.Body>\n <Table.Footer>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Data Cell</Table.Cell>\n </Table.Row>\n </Table.Footer>\n </Table>\n);\n}\n```",
27648
+ "declarations": [
27649
+ {
27650
+ "name": "Table",
27651
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27652
+ }
27653
+ ],
27654
+ "tags": {},
27655
+ "type": {
27656
+ "kind": "enhancedComponent",
27657
+ "componentType": "regular",
27658
+ "displayName": "Table",
27659
+ "props": [
27660
+ {
27661
+ "kind": "property",
27662
+ "name": "children",
27663
+ "required": false,
27664
+ "type": {
27665
+ "kind": "external",
27666
+ "name": "ReactNode",
27667
+ "url": "https://reactjs.org/docs/rendering-elements.html"
27668
+ },
27669
+ "description": "",
27670
+ "declarations": [
27671
+ {
27672
+ "name": "children",
27673
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
27674
+ }
27675
+ ],
27676
+ "tags": {}
27677
+ },
27678
+ {
27679
+ "kind": "property",
27680
+ "name": "as",
27681
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
27682
+ "tags": {},
27683
+ "declarations": [],
27684
+ "type": {
27685
+ "kind": "external",
27686
+ "name": "React.ElementType",
27687
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
27688
+ },
27689
+ "defaultValue": {
27690
+ "kind": "external",
27691
+ "name": "table",
27692
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table"
27693
+ }
27694
+ },
27695
+ {
27696
+ "kind": "property",
27697
+ "name": "ref",
27698
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
27699
+ "tags": {},
27700
+ "declarations": [],
27701
+ "type": {
27702
+ "kind": "external",
27703
+ "name": "React.Ref",
27704
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
27705
+ "typeParameters": [
27706
+ {
27707
+ "kind": "typeParameter",
27708
+ "name": "R",
27709
+ "required": true,
27710
+ "defaultValue": {
27711
+ "kind": "external",
27712
+ "name": "table",
27713
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table"
27714
+ }
27715
+ }
27716
+ ]
27717
+ }
27718
+ }
27719
+ ],
27720
+ "baseElement": {
27721
+ "kind": "external",
27722
+ "name": "table",
27723
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table"
27724
+ },
27725
+ "subComponents": [
27726
+ {
27727
+ "name": "Caption",
27728
+ "symbol": "TableCaption",
27729
+ "description": "`Table.Caption` renders a [caption](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\n return (\n <Table>\n <Table.Caption>Table Caption</Table.Caption>\n <Table.Body>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Body>\n </Table>\n );\n}\n```",
27730
+ "declarations": [
27731
+ {
27732
+ "name": "Caption",
27733
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27734
+ }
27735
+ ],
27736
+ "tags": {}
27737
+ },
27738
+ {
27739
+ "name": "Head",
27740
+ "symbol": "TableHead",
27741
+ "description": "`Table.Head` renders a [thead](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Head>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Head>\n </Table>\n);\n}\n```",
27742
+ "declarations": [
27743
+ {
27744
+ "name": "Head",
27745
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27746
+ }
27747
+ ],
27748
+ "tags": {}
27749
+ },
27750
+ {
27751
+ "name": "Body",
27752
+ "symbol": "TableBody",
27753
+ "description": "`Table.Body` renders a [tbody](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Body>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Body>\n </Table>\n);\n}\n```",
27754
+ "declarations": [
27755
+ {
27756
+ "name": "Body",
27757
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27758
+ }
27759
+ ],
27760
+ "tags": {}
27761
+ },
27762
+ {
27763
+ "name": "Row",
27764
+ "symbol": "TableRow",
27765
+ "description": "`Table.Row` renders a [tr](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr) element.\n\n**Note**: `Table.Row` is built on [Grid](/docs/components-layout-grid--basic). It will look for\nhow many children are there and if those children are valid React Elements. This will adjust the\namount of columns automatically using the `gridTemplateColumns` style prop and the width of the\ncolumns is also set using a `minmax` function in the `gridTemplateColumns` style prop. If a user\nwould like to adjust this, it can be overwritten on `Table.Row`. See the example below for how to\noverwrite `gridTemplateColumns`.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Head>\n <Table.Row gridTemplateColumns=\"repeat(4, minmax(100px, 1fr))\">\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Head>\n </Table>\n);\n}\n```",
27766
+ "declarations": [
27767
+ {
27768
+ "name": "Row",
27769
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27770
+ }
27771
+ ],
27772
+ "tags": {}
27773
+ },
27774
+ {
27775
+ "name": "Header",
27776
+ "symbol": "TableHeader",
27777
+ "description": "`Table.Header` renders a [th](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Head>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Head>\n </Table>\n);\n}\n```",
27778
+ "declarations": [
27779
+ {
27780
+ "name": "Header",
27781
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27782
+ }
27783
+ ],
27784
+ "tags": {}
27785
+ },
27786
+ {
27787
+ "name": "Cell",
27788
+ "symbol": "TableCell",
27789
+ "description": "`Table.Cell` renders a [td](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Body>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Body>\n </Table>\n);\n}\n```",
27790
+ "declarations": [
27791
+ {
27792
+ "name": "Cell",
27793
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27794
+ }
27795
+ ],
27796
+ "tags": {}
27797
+ },
27798
+ {
27799
+ "name": "Footer",
27800
+ "symbol": "TableFooter",
27801
+ "description": "`Table.Footer` renders a [tfoot](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot) element.\n\n\n```tsx\nimport {Table} from '@workday/canvas-kit-preview-react/table';\n\nexport default function App() {\nreturn (\n <Table>\n <Table.Footer>\n <Table.Row>\n <Table.Header>Table Header</Table.Header>\n <Table.Cell>Table Cell</Table.Cell>\n </Table.Row>\n </Table.Footer>\n </Table>\n);\n}\n```",
27802
+ "declarations": [
27803
+ {
27804
+ "name": "Footer",
27805
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/Table.tsx"
27806
+ }
27807
+ ],
27808
+ "tags": {}
27809
+ }
27810
+ ],
27811
+ "styleComponent": {
27812
+ "kind": "symbol",
27813
+ "name": "Grid"
27814
+ }
27815
+ }
27816
+ },
27817
+ {
27818
+ "name": "TableBody",
27819
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableBody.tsx",
27820
+ "description": "",
27821
+ "declarations": [
27822
+ {
27823
+ "name": "TableBody",
27824
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableBody.tsx"
27825
+ }
27826
+ ],
27827
+ "tags": {},
27828
+ "type": {
27829
+ "kind": "enhancedComponent",
27830
+ "componentType": "regular",
27831
+ "displayName": "Table.Body",
27832
+ "props": [
27833
+ {
27834
+ "kind": "property",
27835
+ "name": "children",
27836
+ "required": false,
27837
+ "type": {
27838
+ "kind": "external",
27839
+ "name": "ReactNode",
27840
+ "url": "https://reactjs.org/docs/rendering-elements.html"
27841
+ },
27842
+ "description": "",
27843
+ "declarations": [
27844
+ {
27845
+ "name": "children",
27846
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
27847
+ }
27848
+ ],
27849
+ "tags": {}
27850
+ },
27851
+ {
27852
+ "kind": "property",
27853
+ "name": "as",
27854
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
27855
+ "tags": {},
27856
+ "declarations": [],
27857
+ "type": {
27858
+ "kind": "external",
27859
+ "name": "React.ElementType",
27860
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
27861
+ },
27862
+ "defaultValue": {
27863
+ "kind": "external",
27864
+ "name": "tbody",
27865
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody"
27866
+ }
27867
+ },
27868
+ {
27869
+ "kind": "property",
27870
+ "name": "ref",
27871
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
27872
+ "tags": {},
27873
+ "declarations": [],
27874
+ "type": {
27875
+ "kind": "external",
27876
+ "name": "React.Ref",
27877
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
27878
+ "typeParameters": [
27879
+ {
27880
+ "kind": "typeParameter",
27881
+ "name": "R",
27882
+ "required": true,
27883
+ "defaultValue": {
27884
+ "kind": "external",
27885
+ "name": "tbody",
27886
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody"
27887
+ }
27888
+ }
27889
+ ]
27890
+ }
27891
+ }
27892
+ ],
27893
+ "baseElement": {
27894
+ "kind": "external",
27895
+ "name": "tbody",
27896
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody"
27897
+ },
27898
+ "styleComponent": {
27899
+ "kind": "symbol",
27900
+ "name": "Grid"
27901
+ }
27902
+ }
27903
+ },
27904
+ {
27905
+ "name": "TableCaption",
27906
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableCaption.tsx",
27907
+ "description": "",
27908
+ "declarations": [
27909
+ {
27910
+ "name": "TableCaption",
27911
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableCaption.tsx"
27912
+ }
27913
+ ],
27914
+ "tags": {},
27915
+ "type": {
27916
+ "kind": "enhancedComponent",
27917
+ "componentType": "regular",
27918
+ "displayName": "Table.Caption",
27919
+ "props": [
27920
+ {
27921
+ "kind": "property",
27922
+ "name": "children",
27923
+ "required": false,
27924
+ "type": {
27925
+ "kind": "external",
27926
+ "name": "ReactNode",
27927
+ "url": "https://reactjs.org/docs/rendering-elements.html"
27928
+ },
27929
+ "description": "",
27930
+ "declarations": [
27931
+ {
27932
+ "name": "children",
27933
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
27934
+ }
27935
+ ],
27936
+ "tags": {}
27937
+ },
27938
+ {
27939
+ "kind": "property",
27940
+ "name": "as",
27941
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
27942
+ "tags": {},
27943
+ "declarations": [],
27944
+ "type": {
27945
+ "kind": "external",
27946
+ "name": "React.ElementType",
27947
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
27948
+ },
27949
+ "defaultValue": {
27950
+ "kind": "external",
27951
+ "name": "caption",
27952
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption"
27953
+ }
27954
+ },
27955
+ {
27956
+ "kind": "property",
27957
+ "name": "ref",
27958
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
27959
+ "tags": {},
27960
+ "declarations": [],
27961
+ "type": {
27962
+ "kind": "external",
27963
+ "name": "React.Ref",
27964
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
27965
+ "typeParameters": [
27966
+ {
27967
+ "kind": "typeParameter",
27968
+ "name": "R",
27969
+ "required": true,
27970
+ "defaultValue": {
27971
+ "kind": "external",
27972
+ "name": "caption",
27973
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption"
27974
+ }
27975
+ }
27976
+ ]
27977
+ }
27978
+ }
27979
+ ],
27980
+ "baseElement": {
27981
+ "kind": "external",
27982
+ "name": "caption",
27983
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption"
27984
+ },
27985
+ "styleComponent": {
27986
+ "kind": "symbol",
27987
+ "name": "Flex"
27988
+ }
27989
+ }
27990
+ },
27991
+ {
27992
+ "name": "TableCell",
27993
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableCell.tsx",
27994
+ "description": "",
27995
+ "declarations": [
27996
+ {
27997
+ "name": "TableCell",
27998
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableCell.tsx"
27999
+ }
28000
+ ],
28001
+ "tags": {},
28002
+ "type": {
28003
+ "kind": "enhancedComponent",
28004
+ "componentType": "regular",
28005
+ "displayName": "Table.Cell",
28006
+ "props": [
28007
+ {
28008
+ "kind": "property",
28009
+ "name": "children",
28010
+ "required": false,
28011
+ "type": {
28012
+ "kind": "external",
28013
+ "name": "ReactNode",
28014
+ "url": "https://reactjs.org/docs/rendering-elements.html"
28015
+ },
28016
+ "description": "",
28017
+ "declarations": [
28018
+ {
28019
+ "name": "children",
28020
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
28021
+ }
28022
+ ],
28023
+ "tags": {}
28024
+ },
28025
+ {
28026
+ "kind": "property",
28027
+ "name": "as",
28028
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
28029
+ "tags": {},
28030
+ "declarations": [],
28031
+ "type": {
28032
+ "kind": "external",
28033
+ "name": "React.ElementType",
28034
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
28035
+ },
28036
+ "defaultValue": {
28037
+ "kind": "external",
28038
+ "name": "td",
28039
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td"
28040
+ }
28041
+ },
28042
+ {
28043
+ "kind": "property",
28044
+ "name": "ref",
28045
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
28046
+ "tags": {},
28047
+ "declarations": [],
28048
+ "type": {
28049
+ "kind": "external",
28050
+ "name": "React.Ref",
28051
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
28052
+ "typeParameters": [
28053
+ {
28054
+ "kind": "typeParameter",
28055
+ "name": "R",
28056
+ "required": true,
28057
+ "defaultValue": {
28058
+ "kind": "external",
28059
+ "name": "td",
28060
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td"
28061
+ }
28062
+ }
28063
+ ]
28064
+ }
28065
+ }
28066
+ ],
28067
+ "baseElement": {
28068
+ "kind": "external",
28069
+ "name": "td",
28070
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td"
28071
+ },
28072
+ "styleComponent": {
28073
+ "kind": "symbol",
28074
+ "name": "Grid"
28075
+ }
28076
+ }
28077
+ },
28078
+ {
28079
+ "name": "TableFooter",
28080
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableFooter.tsx",
28081
+ "description": "",
28082
+ "declarations": [
28083
+ {
28084
+ "name": "TableFooter",
28085
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableFooter.tsx"
28086
+ }
28087
+ ],
28088
+ "tags": {},
28089
+ "type": {
28090
+ "kind": "enhancedComponent",
28091
+ "componentType": "regular",
28092
+ "displayName": "Table.Footer",
28093
+ "props": [
28094
+ {
28095
+ "kind": "property",
28096
+ "name": "children",
28097
+ "required": false,
28098
+ "type": {
28099
+ "kind": "external",
28100
+ "name": "ReactNode",
28101
+ "url": "https://reactjs.org/docs/rendering-elements.html"
28102
+ },
28103
+ "description": "",
28104
+ "declarations": [
28105
+ {
28106
+ "name": "children",
28107
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
28108
+ }
28109
+ ],
28110
+ "tags": {}
28111
+ },
28112
+ {
28113
+ "kind": "property",
28114
+ "name": "as",
28115
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
28116
+ "tags": {},
28117
+ "declarations": [],
28118
+ "type": {
28119
+ "kind": "external",
28120
+ "name": "React.ElementType",
28121
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
28122
+ },
28123
+ "defaultValue": {
28124
+ "kind": "external",
28125
+ "name": "tfoot",
28126
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot"
28127
+ }
28128
+ },
28129
+ {
28130
+ "kind": "property",
28131
+ "name": "ref",
28132
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
28133
+ "tags": {},
28134
+ "declarations": [],
28135
+ "type": {
28136
+ "kind": "external",
28137
+ "name": "React.Ref",
28138
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
28139
+ "typeParameters": [
28140
+ {
28141
+ "kind": "typeParameter",
28142
+ "name": "R",
28143
+ "required": true,
28144
+ "defaultValue": {
28145
+ "kind": "external",
28146
+ "name": "tfoot",
28147
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot"
28148
+ }
28149
+ }
28150
+ ]
28151
+ }
28152
+ }
28153
+ ],
28154
+ "baseElement": {
28155
+ "kind": "external",
28156
+ "name": "tfoot",
28157
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot"
28158
+ },
28159
+ "styleComponent": {
28160
+ "kind": "symbol",
28161
+ "name": "Grid"
28162
+ }
28163
+ }
28164
+ },
28165
+ {
28166
+ "name": "TableHead",
28167
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableHead.tsx",
28168
+ "description": "",
28169
+ "declarations": [
28170
+ {
28171
+ "name": "TableHead",
28172
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableHead.tsx"
28173
+ }
28174
+ ],
28175
+ "tags": {},
28176
+ "type": {
28177
+ "kind": "enhancedComponent",
28178
+ "componentType": "regular",
28179
+ "displayName": "Table.Head",
28180
+ "props": [
28181
+ {
28182
+ "kind": "property",
28183
+ "name": "children",
28184
+ "required": false,
28185
+ "type": {
28186
+ "kind": "external",
28187
+ "name": "ReactNode",
28188
+ "url": "https://reactjs.org/docs/rendering-elements.html"
28189
+ },
28190
+ "description": "",
28191
+ "declarations": [
28192
+ {
28193
+ "name": "children",
28194
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
28195
+ }
28196
+ ],
28197
+ "tags": {}
28198
+ },
28199
+ {
28200
+ "kind": "property",
28201
+ "name": "as",
28202
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
28203
+ "tags": {},
28204
+ "declarations": [],
28205
+ "type": {
28206
+ "kind": "external",
28207
+ "name": "React.ElementType",
28208
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
28209
+ },
28210
+ "defaultValue": {
28211
+ "kind": "external",
28212
+ "name": "thead",
28213
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead"
28214
+ }
28215
+ },
28216
+ {
28217
+ "kind": "property",
28218
+ "name": "ref",
28219
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
28220
+ "tags": {},
28221
+ "declarations": [],
28222
+ "type": {
28223
+ "kind": "external",
28224
+ "name": "React.Ref",
28225
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
28226
+ "typeParameters": [
28227
+ {
28228
+ "kind": "typeParameter",
28229
+ "name": "R",
28230
+ "required": true,
28231
+ "defaultValue": {
28232
+ "kind": "external",
28233
+ "name": "thead",
28234
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead"
28235
+ }
28236
+ }
28237
+ ]
28238
+ }
28239
+ }
28240
+ ],
28241
+ "baseElement": {
28242
+ "kind": "external",
28243
+ "name": "thead",
28244
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead"
28245
+ },
28246
+ "styleComponent": {
28247
+ "kind": "symbol",
28248
+ "name": "Grid"
28249
+ }
28250
+ }
28251
+ },
28252
+ {
28253
+ "name": "TableHeader",
28254
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableHeader.tsx",
28255
+ "description": "",
28256
+ "declarations": [
28257
+ {
28258
+ "name": "TableHeader",
28259
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableHeader.tsx"
28260
+ }
28261
+ ],
28262
+ "tags": {},
28263
+ "type": {
28264
+ "kind": "enhancedComponent",
28265
+ "componentType": "regular",
28266
+ "displayName": "Table.Header",
28267
+ "props": [
28268
+ {
28269
+ "kind": "property",
28270
+ "name": "children",
28271
+ "required": false,
28272
+ "type": {
28273
+ "kind": "external",
28274
+ "name": "ReactNode",
28275
+ "url": "https://reactjs.org/docs/rendering-elements.html"
28276
+ },
28277
+ "description": "",
28278
+ "declarations": [
28279
+ {
28280
+ "name": "children",
28281
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
28282
+ }
28283
+ ],
28284
+ "tags": {}
28285
+ },
28286
+ {
28287
+ "kind": "property",
28288
+ "name": "as",
28289
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
28290
+ "tags": {},
28291
+ "declarations": [],
28292
+ "type": {
28293
+ "kind": "external",
28294
+ "name": "React.ElementType",
28295
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
28296
+ },
28297
+ "defaultValue": {
28298
+ "kind": "external",
28299
+ "name": "th",
28300
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th"
28301
+ }
28302
+ },
28303
+ {
28304
+ "kind": "property",
28305
+ "name": "ref",
28306
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
28307
+ "tags": {},
28308
+ "declarations": [],
28309
+ "type": {
28310
+ "kind": "external",
28311
+ "name": "React.Ref",
28312
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
28313
+ "typeParameters": [
28314
+ {
28315
+ "kind": "typeParameter",
28316
+ "name": "R",
28317
+ "required": true,
28318
+ "defaultValue": {
28319
+ "kind": "external",
28320
+ "name": "th",
28321
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th"
28322
+ }
28323
+ }
28324
+ ]
28325
+ }
28326
+ }
28327
+ ],
28328
+ "baseElement": {
28329
+ "kind": "external",
28330
+ "name": "th",
28331
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th"
28332
+ },
28333
+ "styleComponent": {
28334
+ "kind": "symbol",
28335
+ "name": "Grid"
28336
+ }
28337
+ }
28338
+ },
28339
+ {
28340
+ "name": "TableRow",
28341
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableRow.tsx",
28342
+ "description": "",
28343
+ "declarations": [
28344
+ {
28345
+ "name": "TableRow",
28346
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/table/lib/TableRow.tsx"
28347
+ }
28348
+ ],
28349
+ "tags": {},
28350
+ "type": {
28351
+ "kind": "enhancedComponent",
28352
+ "componentType": "regular",
28353
+ "displayName": "Table.Row",
28354
+ "props": [
28355
+ {
28356
+ "kind": "property",
28357
+ "name": "children",
28358
+ "required": false,
28359
+ "type": {
28360
+ "kind": "external",
28361
+ "name": "ReactNode",
28362
+ "url": "https://reactjs.org/docs/rendering-elements.html"
28363
+ },
28364
+ "description": "",
28365
+ "declarations": [
28366
+ {
28367
+ "name": "children",
28368
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/layout/lib/Box.tsx"
28369
+ }
28370
+ ],
28371
+ "tags": {}
28372
+ },
28373
+ {
28374
+ "kind": "property",
28375
+ "name": "as",
28376
+ "description": "Optional override of the default element used by the component. Any valid tag or Component. If you provided a Component, this component should forward the ref using `React.forwardRef`and spread extra props to a root element.\n\n**Note:** Not all elements make sense and some elements may cause accessibility issues. Change this value with care.",
28377
+ "tags": {},
28378
+ "declarations": [],
28379
+ "type": {
28380
+ "kind": "external",
28381
+ "name": "React.ElementType",
28382
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
28383
+ },
28384
+ "defaultValue": {
28385
+ "kind": "external",
28386
+ "name": "tr",
28387
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr"
28388
+ }
28389
+ },
28390
+ {
28391
+ "kind": "property",
28392
+ "name": "ref",
28393
+ "description": "Optional ref. If the component represents an element, this ref will be a reference to the real DOM element of the component. If `as` is set to an element, it will be that element. If `as` is a component, the reference will be to that component (or element if the component uses `React.forwardRef`).",
28394
+ "tags": {},
28395
+ "declarations": [],
28396
+ "type": {
28397
+ "kind": "external",
28398
+ "name": "React.Ref",
28399
+ "url": "https://reactjs.org/docs/refs-and-the-dom.html",
28400
+ "typeParameters": [
28401
+ {
28402
+ "kind": "typeParameter",
28403
+ "name": "R",
28404
+ "required": true,
28405
+ "defaultValue": {
28406
+ "kind": "external",
28407
+ "name": "tr",
28408
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr"
28409
+ }
28410
+ }
28411
+ ]
28412
+ }
28413
+ }
28414
+ ],
28415
+ "baseElement": {
28416
+ "kind": "external",
28417
+ "name": "tr",
28418
+ "url": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr"
28419
+ },
28420
+ "styleComponent": {
28421
+ "kind": "symbol",
28422
+ "name": "Grid"
28423
+ }
28424
+ }
28425
+ },
27644
28426
  {
27645
28427
  "name": "TextAreaProps",
27646
28428
  "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/preview-react/text-area/lib/TextArea.tsx",