@jsonforms/material-renderers 3.1.0-alpha.0 → 3.1.0-alpha.2

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.
Files changed (205) hide show
  1. package/README.md +16 -17
  2. package/lib/additional/ListWithDetailMasterItem.d.ts +2 -0
  3. package/lib/additional/MaterialListWithDetailRenderer.d.ts +1 -1
  4. package/lib/additional/index.d.ts +2 -2
  5. package/lib/additional/unwrapped.d.ts +5 -0
  6. package/lib/cells/index.d.ts +1 -1
  7. package/lib/complex/CombinatorProperties.d.ts +1 -2
  8. package/lib/complex/DeleteDialog.d.ts +5 -1
  9. package/lib/complex/MaterialAllOfRenderer.d.ts +1 -1
  10. package/lib/complex/MaterialAnyOfRenderer.d.ts +1 -1
  11. package/lib/complex/MaterialArrayControlRenderer.d.ts +2 -1
  12. package/lib/complex/MaterialEnumArrayRenderer.d.ts +1 -1
  13. package/lib/complex/MaterialObjectRenderer.d.ts +1 -1
  14. package/lib/complex/MaterialOneOfRenderer.d.ts +1 -1
  15. package/lib/complex/MaterialTableControl.d.ts +4 -2
  16. package/lib/complex/NoBorderTableCell.d.ts +2 -2
  17. package/lib/complex/TableToolbar.d.ts +3 -2
  18. package/lib/complex/index.d.ts +11 -16
  19. package/lib/complex/unwrapped.d.ts +9 -0
  20. package/lib/controls/MaterialBooleanControl.d.ts +1 -1
  21. package/lib/controls/MaterialBooleanToggleControl.d.ts +1 -1
  22. package/lib/controls/index.d.ts +8 -26
  23. package/lib/controls/unwrapped.d.ts +19 -0
  24. package/lib/index.d.ts +34 -1
  25. package/lib/jsonforms-react-material.cjs.js +731 -572
  26. package/lib/jsonforms-react-material.cjs.js.map +1 -1
  27. package/lib/jsonforms-react-material.esm.js +648 -517
  28. package/lib/jsonforms-react-material.esm.js.map +1 -1
  29. package/lib/layouts/ArrayToolbar.d.ts +3 -1
  30. package/lib/layouts/ExpandPanelRenderer.d.ts +3 -1
  31. package/lib/layouts/MaterialGroupLayout.d.ts +1 -1
  32. package/lib/layouts/MaterialHorizontalLayout.d.ts +1 -1
  33. package/lib/layouts/MaterialVerticalLayout.d.ts +1 -1
  34. package/lib/layouts/index.d.ts +3 -1
  35. package/lib/layouts/unwrapped.d.ts +10 -0
  36. package/lib/mui-controls/MuiCheckbox.d.ts +6 -1
  37. package/lib/mui-controls/MuiInputInteger.d.ts +1 -1
  38. package/lib/mui-controls/MuiInputNumber.d.ts +1 -1
  39. package/lib/mui-controls/MuiInputNumberFormat.d.ts +1 -1
  40. package/lib/mui-controls/MuiInputText.d.ts +1 -1
  41. package/lib/mui-controls/MuiInputTime.d.ts +1 -1
  42. package/lib/mui-controls/MuiSelect.d.ts +1 -1
  43. package/lib/mui-controls/MuiToggle.d.ts +6 -1
  44. package/lib/mui-controls/index.d.ts +3 -1
  45. package/lib/util/layout.d.ts +2 -3
  46. package/package.json +33 -15
  47. package/src/additional/ListWithDetailMasterItem.tsx +32 -24
  48. package/src/additional/MaterialLabelRenderer.tsx +8 -15
  49. package/src/additional/MaterialListWithDetailRenderer.tsx +8 -5
  50. package/src/additional/index.ts +12 -4
  51. package/{example/index.ts → src/additional/unwrapped.ts} +7 -6
  52. package/src/cells/MaterialBooleanCell.tsx +1 -1
  53. package/src/cells/MaterialBooleanToggleCell.tsx +2 -2
  54. package/src/cells/MaterialDateCell.tsx +4 -12
  55. package/src/cells/MaterialEnumCell.tsx +13 -6
  56. package/src/cells/MaterialIntegerCell.tsx +1 -1
  57. package/src/cells/MaterialNumberCell.tsx +1 -1
  58. package/src/cells/MaterialNumberFormatCell.tsx +1 -1
  59. package/src/cells/MaterialOneOfEnumCell.tsx +17 -7
  60. package/src/cells/MaterialTextCell.tsx +1 -1
  61. package/src/cells/MaterialTimeCell.tsx +1 -1
  62. package/src/cells/index.ts +7 -7
  63. package/src/complex/CombinatorProperties.tsx +20 -9
  64. package/src/complex/DeleteDialog.tsx +48 -37
  65. package/src/complex/MaterialAllOfRenderer.tsx +2 -2
  66. package/src/complex/MaterialAnyOfRenderer.tsx +3 -3
  67. package/src/complex/MaterialArrayControlRenderer.tsx +27 -11
  68. package/src/complex/MaterialEnumArrayRenderer.tsx +6 -8
  69. package/src/complex/MaterialObjectRenderer.tsx +6 -3
  70. package/src/complex/MaterialOneOfRenderer.tsx +105 -88
  71. package/src/complex/MaterialTableControl.tsx +145 -97
  72. package/src/complex/NoBorderTableCell.tsx +3 -5
  73. package/src/complex/TableToolbar.tsx +24 -25
  74. package/src/complex/ValidationIcon.tsx +10 -18
  75. package/src/complex/index.ts +35 -32
  76. package/{test/renderers/MatchMediaMock.ts → src/complex/unwrapped.ts} +19 -16
  77. package/src/controls/MaterialAnyOfStringOrEnumControl.tsx +19 -11
  78. package/src/controls/MaterialBooleanControl.tsx +90 -23
  79. package/src/controls/MaterialBooleanToggleControl.tsx +90 -23
  80. package/src/controls/MaterialDateControl.tsx +16 -19
  81. package/src/controls/MaterialDateTimeControl.tsx +24 -23
  82. package/src/controls/MaterialEnumControl.tsx +21 -15
  83. package/src/controls/MaterialInputControl.tsx +7 -8
  84. package/src/controls/MaterialIntegerControl.tsx +1 -1
  85. package/src/controls/MaterialNativeControl.tsx +12 -9
  86. package/src/controls/MaterialNumberControl.tsx +1 -1
  87. package/src/controls/MaterialOneOfEnumControl.tsx +21 -15
  88. package/src/controls/MaterialOneOfRadioGroupControl.tsx +5 -3
  89. package/src/controls/MaterialRadioGroup.tsx +11 -17
  90. package/src/controls/MaterialRadioGroupControl.tsx +8 -3
  91. package/src/controls/MaterialSliderControl.tsx +17 -16
  92. package/src/controls/MaterialTextControl.tsx +1 -1
  93. package/src/controls/MaterialTimeControl.tsx +19 -22
  94. package/src/controls/index.ts +36 -72
  95. package/src/controls/unwrapped.ts +57 -0
  96. package/src/index.ts +41 -22
  97. package/src/layouts/ArrayToolbar.tsx +38 -42
  98. package/src/layouts/ExpandPanelRenderer.tsx +96 -67
  99. package/src/layouts/MaterialArrayLayout.tsx +21 -16
  100. package/src/layouts/MaterialArrayLayoutRenderer.tsx +6 -9
  101. package/src/layouts/MaterialCategorizationLayout.tsx +52 -21
  102. package/src/layouts/MaterialCategorizationStepperLayout.tsx +60 -44
  103. package/src/layouts/MaterialGroupLayout.tsx +25 -6
  104. package/src/layouts/MaterialHorizontalLayout.tsx +18 -4
  105. package/src/layouts/MaterialVerticalLayout.tsx +18 -4
  106. package/src/layouts/index.ts +18 -7
  107. package/{test/renderers/util.ts → src/layouts/unwrapped.ts} +19 -28
  108. package/src/mui-controls/MuiAutocomplete.tsx +51 -35
  109. package/src/mui-controls/MuiCheckbox.tsx +14 -5
  110. package/src/mui-controls/MuiInputInteger.tsx +31 -32
  111. package/src/mui-controls/MuiInputNumber.tsx +16 -16
  112. package/src/mui-controls/MuiInputNumberFormat.tsx +51 -42
  113. package/src/mui-controls/MuiInputText.tsx +30 -19
  114. package/src/mui-controls/MuiInputTime.tsx +11 -12
  115. package/src/mui-controls/MuiSelect.tsx +15 -6
  116. package/src/mui-controls/MuiToggle.tsx +14 -5
  117. package/src/mui-controls/index.ts +3 -1
  118. package/src/util/datejs.tsx +41 -20
  119. package/src/util/debounce.ts +26 -11
  120. package/src/util/focus.ts +7 -7
  121. package/src/util/i18nDefaults.ts +2 -2
  122. package/src/util/layout.tsx +47 -42
  123. package/src/util/theme.ts +2 -2
  124. package/docs/assets/css/main.css +0 -1
  125. package/docs/assets/images/icons.png +0 -0
  126. package/docs/assets/images/icons@2x.png +0 -0
  127. package/docs/assets/images/widgets.png +0 -0
  128. package/docs/assets/images/widgets@2x.png +0 -0
  129. package/docs/assets/js/main.js +0 -51
  130. package/docs/assets/js/search.json +0 -1
  131. package/docs/classes/combinatorproperties.html +0 -957
  132. package/docs/classes/materialanyofstringorenumcontrol.html +0 -822
  133. package/docs/classes/materialtablecontrol.html +0 -999
  134. package/docs/globals.html +0 -4492
  135. package/docs/index.html +0 -753
  136. package/docs/interfaces/ajvprops.html +0 -162
  137. package/docs/interfaces/arraylayouttoolbarprops.html +0 -253
  138. package/docs/interfaces/categorizationstate.html +0 -154
  139. package/docs/interfaces/categorizationstepperstate.html +0 -154
  140. package/docs/interfaces/combinatorpropertiesprops.html +0 -182
  141. package/docs/interfaces/deletedialogprops.html +0 -225
  142. package/docs/interfaces/dispatchpropsofexpandpanel.html +0 -296
  143. package/docs/interfaces/emptytableprops.html +0 -154
  144. package/docs/interfaces/expandpanelprops.html +0 -594
  145. package/docs/interfaces/inputref.html +0 -168
  146. package/docs/interfaces/jsonformstheme.html +0 -352
  147. package/docs/interfaces/materialcategorizationlayoutrendererprops.html +0 -460
  148. package/docs/interfaces/materialcategorizationstepperlayoutrendererprops.html +0 -394
  149. package/docs/interfaces/materiallabelablelayoutrendererprops.html +0 -328
  150. package/docs/interfaces/materiallayoutrendererprops.html +0 -317
  151. package/docs/interfaces/materialtabletoolbarprops.html +0 -302
  152. package/docs/interfaces/muitextinputprops.html +0 -168
  153. package/docs/interfaces/nonemptycellcomponentprops.html +0 -266
  154. package/docs/interfaces/nonemptycellprops.html +0 -277
  155. package/docs/interfaces/nonemptyrowprops.html +0 -366
  156. package/docs/interfaces/ownoneofprops.html +0 -308
  157. package/docs/interfaces/ownpropsofexpandpanel.html +0 -397
  158. package/docs/interfaces/ownpropsofnonemptycell.html +0 -229
  159. package/docs/interfaces/statepropsofexpandpanel.html +0 -445
  160. package/docs/interfaces/tableheadercellprops.html +0 -154
  161. package/docs/interfaces/tablerowsprop.html +0 -330
  162. package/docs/interfaces/validationprops.html +0 -168
  163. package/docs/interfaces/withdeletedialogsupport.html +0 -170
  164. package/docs/interfaces/withinput.html +0 -154
  165. package/docs/interfaces/withoptionlabel.html +0 -230
  166. package/example/index.html +0 -16
  167. package/rollup.config.js +0 -51
  168. package/stats.html +0 -3279
  169. package/test/renderers/MaterialAllOfRenderer.test.tsx +0 -114
  170. package/test/renderers/MaterialAnyOfRenderer.test.tsx +0 -310
  171. package/test/renderers/MaterialAnyOfStringOrEnumControl.test.tsx +0 -126
  172. package/test/renderers/MaterialArrayControl.test.tsx +0 -633
  173. package/test/renderers/MaterialArrayLayout.test.tsx +0 -528
  174. package/test/renderers/MaterialBooleanCell.test.tsx +0 -374
  175. package/test/renderers/MaterialBooleanToggleCell.test.tsx +0 -466
  176. package/test/renderers/MaterialBooleanToggleControl.test.tsx +0 -469
  177. package/test/renderers/MaterialCategorizationLayout.test.tsx +0 -458
  178. package/test/renderers/MaterialCategorizationStepperLayout.test.tsx +0 -647
  179. package/test/renderers/MaterialDateCell.test.tsx +0 -303
  180. package/test/renderers/MaterialDateControl.test.tsx +0 -411
  181. package/test/renderers/MaterialDateTimeControl.test.tsx +0 -417
  182. package/test/renderers/MaterialEnumArrayRenderer.test.tsx +0 -207
  183. package/test/renderers/MaterialEnumCell.test.tsx +0 -88
  184. package/test/renderers/MaterialEnumControl.test.tsx +0 -75
  185. package/test/renderers/MaterialGroupLayout.test.tsx +0 -90
  186. package/test/renderers/MaterialInputControl.test.tsx +0 -370
  187. package/test/renderers/MaterialIntegerCell.test.tsx +0 -333
  188. package/test/renderers/MaterialLabelRenderer.test.tsx +0 -114
  189. package/test/renderers/MaterialLayouts.test.tsx +0 -542
  190. package/test/renderers/MaterialListWithDetailRenderer.test.tsx +0 -279
  191. package/test/renderers/MaterialNativeControl.test.tsx +0 -81
  192. package/test/renderers/MaterialNumberCell.test.tsx +0 -382
  193. package/test/renderers/MaterialObjectControl.test.tsx +0 -186
  194. package/test/renderers/MaterialOneOfEnumCell.test.tsx +0 -94
  195. package/test/renderers/MaterialOneOfRadioGroupControl.test.tsx +0 -108
  196. package/test/renderers/MaterialOneOfRenderer.test.tsx +0 -603
  197. package/test/renderers/MaterialRadioGroupControl.test.tsx +0 -125
  198. package/test/renderers/MaterialSliderControl.test.tsx +0 -438
  199. package/test/renderers/MaterialTextCell.test.tsx +0 -541
  200. package/test/renderers/MaterialTextControl.test.tsx +0 -115
  201. package/test/renderers/MaterialTimeCell.test.tsx +0 -331
  202. package/test/renderers/MaterialTimeControl.test.tsx +0 -411
  203. package/tsconfig.json +0 -13
  204. package/tsconfig.test.json +0 -7
  205. package/webpack/webpack.dev.js +0 -11
@@ -1,999 +0,0 @@
1
- <!doctype html>
2
- <html class="default no-js">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <title>MaterialTableControl | JSON Forms React Material Renderers</title>
7
- <meta name="description" content="Documentation for JSON Forms React Material Renderers">
8
- <meta name="viewport" content="width=device-width, initial-scale=1">
9
- <link rel="stylesheet" href="../assets/css/main.css">
10
- </head>
11
- <body>
12
- <header>
13
- <div class="tsd-page-toolbar">
14
- <div class="container">
15
- <div class="table-wrap">
16
- <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
17
- <div class="field">
18
- <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
19
- <input id="tsd-search-field" type="text" />
20
- </div>
21
- <ul class="results">
22
- <li class="state loading">Preparing search index...</li>
23
- <li class="state failure">The search index is not available</li>
24
- </ul>
25
- <a href="../index.html" class="title">JSON Forms React Material Renderers</a>
26
- </div>
27
- <div class="table-cell" id="tsd-widgets">
28
- <div id="tsd-filter">
29
- <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
30
- <div class="tsd-filter-group">
31
- <div class="tsd-select" id="tsd-filter-visibility">
32
- <span class="tsd-select-label">All</span>
33
- <ul class="tsd-select-list">
34
- <li data-value="public">Public</li>
35
- <li data-value="protected">Public/Protected</li>
36
- <li data-value="private" class="selected">All</li>
37
- </ul>
38
- </div>
39
- <input type="checkbox" id="tsd-filter-inherited" checked />
40
- <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
41
- <input type="checkbox" id="tsd-filter-only-exported" />
42
- <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
43
- </div>
44
- </div>
45
- <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
46
- </div>
47
- </div>
48
- </div>
49
- </div>
50
- <div class="tsd-page-title">
51
- <div class="container">
52
- <ul class="tsd-breadcrumb">
53
- <li>
54
- <a href="../globals.html">Globals</a>
55
- </li>
56
- <li>
57
- <a href="materialtablecontrol.html">MaterialTableControl</a>
58
- </li>
59
- </ul>
60
- <h1>Class MaterialTableControl</h1>
61
- </div>
62
- </div>
63
- </header>
64
- <div class="container container-main">
65
- <div class="row">
66
- <div class="col-8 col-content">
67
- <section class="tsd-panel tsd-hierarchy">
68
- <h3>Hierarchy</h3>
69
- <ul class="tsd-hierarchy">
70
- <li>
71
- <span class="tsd-signature-type">Component</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>
72
- <ul class="tsd-hierarchy">
73
- <li>
74
- <span class="target">MaterialTableControl</span>
75
- </li>
76
- </ul>
77
- </li>
78
- </ul>
79
- </section>
80
- <section class="tsd-panel-group tsd-index-group">
81
- <h2>Index</h2>
82
- <section class="tsd-panel tsd-index-panel">
83
- <div class="tsd-index-content">
84
- <section class="tsd-index-section tsd-is-inherited">
85
- <h3>Constructors</h3>
86
- <ul class="tsd-index-list">
87
- <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#constructor" class="tsd-kind-icon">constructor</a></li>
88
- </ul>
89
- </section>
90
- <section class="tsd-index-section tsd-is-inherited">
91
- <h3>Properties</h3>
92
- <ul class="tsd-index-list">
93
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#context" class="tsd-kind-icon">context</a></li>
94
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#props" class="tsd-kind-icon">props</a></li>
95
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#refs" class="tsd-kind-icon">refs</a></li>
96
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#state" class="tsd-kind-icon">state</a></li>
97
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static"><a href="materialtablecontrol.html#contexttype" class="tsd-kind-icon">context<wbr>Type</a></li>
98
- </ul>
99
- </section>
100
- <section class="tsd-index-section ">
101
- <h3>Methods</h3>
102
- <ul class="tsd-index-list">
103
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#unsafe_componentwillmount" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount</a></li>
104
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#unsafe_componentwillreceiveprops" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</a></li>
105
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#unsafe_componentwillupdate" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update</a></li>
106
- <li class="tsd-kind-method tsd-parent-kind-class"><a href="materialtablecontrol.html#additem" class="tsd-kind-icon">add<wbr>Item</a></li>
107
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentdidcatch" class="tsd-kind-icon">component<wbr>Did<wbr>Catch</a></li>
108
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentdidmount" class="tsd-kind-icon">component<wbr>Did<wbr>Mount</a></li>
109
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentdidupdate" class="tsd-kind-icon">component<wbr>Did<wbr>Update</a></li>
110
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentwillmount" class="tsd-kind-icon">component<wbr>Will<wbr>Mount</a></li>
111
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentwillreceiveprops" class="tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props</a></li>
112
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentwillunmount" class="tsd-kind-icon">component<wbr>Will<wbr>Unmount</a></li>
113
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#componentwillupdate" class="tsd-kind-icon">component<wbr>Will<wbr>Update</a></li>
114
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#forceupdate" class="tsd-kind-icon">force<wbr>Update</a></li>
115
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#getsnapshotbeforeupdate" class="tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update</a></li>
116
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite"><a href="materialtablecontrol.html#render" class="tsd-kind-icon">render</a></li>
117
- <li class="tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited"><a href="materialtablecontrol.html#setstate" class="tsd-kind-icon">set<wbr>State</a></li>
118
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><a href="materialtablecontrol.html#shouldcomponentupdate" class="tsd-kind-icon">should<wbr>Component<wbr>Update</a></li>
119
- </ul>
120
- </section>
121
- </div>
122
- </section>
123
- </section>
124
- <section class="tsd-panel-group tsd-member-group tsd-is-inherited">
125
- <h2>Constructors</h2>
126
- <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited">
127
- <a name="constructor" class="tsd-anchor"></a>
128
- <h3>constructor</h3>
129
- <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited">
130
- <li class="tsd-signature tsd-kind-icon">new <wbr>Material<wbr>Table<wbr>Control<span class="tsd-signature-symbol">(</span>props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="materialtablecontrol.html" class="tsd-signature-type">MaterialTableControl</a></li>
131
- <li class="tsd-signature tsd-kind-icon">new <wbr>Material<wbr>Table<wbr>Control<span class="tsd-signature-symbol">(</span>props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a>, context<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="materialtablecontrol.html" class="tsd-signature-type">MaterialTableControl</a></li>
132
- </ul>
133
- <ul class="tsd-descriptions">
134
- <li class="tsd-description">
135
- <aside class="tsd-sources">
136
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#constructor">constructor</a></p>
137
- <ul>
138
- </ul>
139
- </aside>
140
- <div class="tsd-comment tsd-typography">
141
- <dl class="tsd-comment-tags">
142
- <dt>deprecated</dt>
143
- <dd></dd>
144
- <dt>see</dt>
145
- <dd><p><a href="https://reactjs.org/docs/legacy-context.html">https://reactjs.org/docs/legacy-context.html</a></p>
146
- </dd>
147
- </dl>
148
- </div>
149
- <h4 class="tsd-parameters-title">Parameters</h4>
150
- <ul class="tsd-parameters">
151
- <li>
152
- <h5>props: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">)</span></h5>
153
- </li>
154
- </ul>
155
- <h4 class="tsd-returns-title">Returns <a href="materialtablecontrol.html" class="tsd-signature-type">MaterialTableControl</a></h4>
156
- </li>
157
- <li class="tsd-description">
158
- <aside class="tsd-sources">
159
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#constructor">constructor</a></p>
160
- <ul>
161
- </ul>
162
- </aside>
163
- <div class="tsd-comment tsd-typography">
164
- <dl class="tsd-comment-tags">
165
- <dt>deprecated</dt>
166
- <dd></dd>
167
- <dt>see</dt>
168
- <dd><p><a href="https://reactjs.org/docs/legacy-context.html">https://reactjs.org/docs/legacy-context.html</a></p>
169
- </dd>
170
- </dl>
171
- </div>
172
- <h4 class="tsd-parameters-title">Parameters</h4>
173
- <ul class="tsd-parameters">
174
- <li>
175
- <h5>props: <span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a></h5>
176
- </li>
177
- <li>
178
- <h5>context: <span class="tsd-signature-type">any</span></h5>
179
- </li>
180
- </ul>
181
- <h4 class="tsd-returns-title">Returns <a href="materialtablecontrol.html" class="tsd-signature-type">MaterialTableControl</a></h4>
182
- </li>
183
- </ul>
184
- </section>
185
- </section>
186
- <section class="tsd-panel-group tsd-member-group tsd-is-inherited">
187
- <h2>Properties</h2>
188
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
189
- <a name="context" class="tsd-anchor"></a>
190
- <h3>context</h3>
191
- <div class="tsd-signature tsd-kind-icon">context<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
192
- <aside class="tsd-sources">
193
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#context">context</a></p>
194
- <ul>
195
- </ul>
196
- </aside>
197
- <div class="tsd-comment tsd-typography">
198
- <div class="lead">
199
- <p>If using the new style context, re-declare this in your class to be the
200
- <code>React.ContextType</code> of your <code>static contextType</code>.
201
- Should be used with type annotation or static contextType.</p>
202
- </div>
203
- <pre><code class="language-ts"><span class="hljs-keyword">static</span> contextType = MyContext
204
- <span class="hljs-comment">// For TS pre-3.7:</span>
205
- context!: React.ContextType&lt;<span class="hljs-keyword">typeof</span> MyContext&gt;
206
- <span class="hljs-comment">// For TS 3.7 and above:</span>
207
- <span class="hljs-keyword">declare</span> context: React.ContextType&lt;<span class="hljs-keyword">typeof</span> MyContext&gt;
208
- </code></pre>
209
- <dl class="tsd-comment-tags">
210
- <dt>see</dt>
211
- <dd><p><a href="https://reactjs.org/docs/context.html">https://reactjs.org/docs/context.html</a></p>
212
- </dd>
213
- </dl>
214
- </div>
215
- </section>
216
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
217
- <a name="props" class="tsd-anchor"></a>
218
- <h3><span class="tsd-flag ts-flagReadonly">Readonly</span> props</h3>
219
- <div class="tsd-signature tsd-kind-icon">props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> &amp; </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">{ </span>children<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">ReactNode</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol">&gt;</span></div>
220
- <aside class="tsd-sources">
221
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#props">props</a></p>
222
- <ul>
223
- </ul>
224
- </aside>
225
- </section>
226
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
227
- <a name="refs" class="tsd-anchor"></a>
228
- <h3>refs</h3>
229
- <div class="tsd-signature tsd-kind-icon">refs<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div>
230
- <aside class="tsd-sources">
231
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#refs">refs</a></p>
232
- <ul>
233
- </ul>
234
- </aside>
235
- <div class="tsd-comment tsd-typography">
236
- <dl class="tsd-comment-tags">
237
- <dt>deprecated</dt>
238
- <dd><p><a href="https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs">https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs</a></p>
239
- </dd>
240
- </dl>
241
- </div>
242
- <div class="tsd-type-declaration">
243
- <h4>Type declaration</h4>
244
- <ul class="tsd-parameters">
245
- <li class="tsd-parameter-index-signature">
246
- <h5><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-type">ReactInstance</span></h5>
247
- </li>
248
- </ul>
249
- </div>
250
- </section>
251
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
252
- <a name="state" class="tsd-anchor"></a>
253
- <h3>state</h3>
254
- <div class="tsd-signature tsd-kind-icon">state<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></div>
255
- <aside class="tsd-sources">
256
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#state">state</a></p>
257
- <ul>
258
- </ul>
259
- </aside>
260
- </section>
261
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
262
- <a name="contexttype" class="tsd-anchor"></a>
263
- <h3><span class="tsd-flag ts-flagStatic">Static</span> <span class="tsd-flag ts-flagOptional">Optional</span> context<wbr>Type</h3>
264
- <div class="tsd-signature tsd-kind-icon">context<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Context</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">undefined</span></div>
265
- <aside class="tsd-sources">
266
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#contexttype">contextType</a></p>
267
- <ul>
268
- </ul>
269
- </aside>
270
- <div class="tsd-comment tsd-typography">
271
- <div class="lead">
272
- <p>If set, <code>this.context</code> will be set at runtime to the current value of the given Context.</p>
273
- </div>
274
- <p>Usage:</p>
275
- <pre><code class="language-ts"><span class="hljs-keyword">type</span> MyContext = <span class="hljs-built_in">number</span>
276
- <span class="hljs-keyword">const</span> Ctx = React.createContext&lt;MyContext&gt;(<span class="hljs-number">0</span>)
277
-
278
- <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Foo</span> <span class="hljs-keyword">extends</span> <span class="hljs-title">React</span>.<span class="hljs-title">Component</span> </span>{
279
- <span class="hljs-keyword">static</span> contextType = Ctx
280
- context!: React.ContextType&lt;<span class="hljs-keyword">typeof</span> Ctx&gt;
281
- render () {
282
- <span class="hljs-keyword">return</span> <span class="xml"><span class="hljs-tag">&lt;&gt;</span>My context&#x27;s value: {this.context}<span class="hljs-tag">&lt;/&gt;</span></span>;
283
- }
284
- }
285
- </code></pre>
286
- <dl class="tsd-comment-tags">
287
- <dt>see</dt>
288
- <dd><p><a href="https://reactjs.org/docs/context.html#classcontexttype">https://reactjs.org/docs/context.html#classcontexttype</a></p>
289
- </dd>
290
- </dl>
291
- </div>
292
- </section>
293
- </section>
294
- <section class="tsd-panel-group tsd-member-group ">
295
- <h2>Methods</h2>
296
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
297
- <a name="unsafe_componentwillmount" class="tsd-anchor"></a>
298
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Mount</h3>
299
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
300
- <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
301
- </ul>
302
- <ul class="tsd-descriptions">
303
- <li class="tsd-description">
304
- <aside class="tsd-sources">
305
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#unsafe_componentwillmount">UNSAFE_componentWillMount</a></p>
306
- <ul>
307
- </ul>
308
- </aside>
309
- <div class="tsd-comment tsd-typography">
310
- <div class="lead">
311
- <p>Called immediately before mounting occurs, and before <code>Component#render</code>.
312
- Avoid introducing any side-effects or subscriptions in this method.</p>
313
- </div>
314
- <p>This method will not stop working in React 17.</p>
315
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
316
- prevents this from being invoked.</p>
317
- <dl class="tsd-comment-tags">
318
- <dt>deprecated</dt>
319
- <dd><p>16.3, use componentDidMount or the constructor instead</p>
320
- </dd>
321
- <dt>see</dt>
322
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state</a></p>
323
- </dd>
324
- <dt>see</dt>
325
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
326
- </dd>
327
- </dl>
328
- </div>
329
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
330
- </li>
331
- </ul>
332
- </section>
333
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
334
- <a name="unsafe_componentwillreceiveprops" class="tsd-anchor"></a>
335
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</h3>
336
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
337
- <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
338
- </ul>
339
- <ul class="tsd-descriptions">
340
- <li class="tsd-description">
341
- <aside class="tsd-sources">
342
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#unsafe_componentwillreceiveprops">UNSAFE_componentWillReceiveProps</a></p>
343
- <ul>
344
- </ul>
345
- </aside>
346
- <div class="tsd-comment tsd-typography">
347
- <div class="lead">
348
- <p>Called when the component may be receiving new props.
349
- React may call this even if props have not changed, so be sure to compare new and existing
350
- props if you only want to handle changes.</p>
351
- </div>
352
- <p>Calling <code>Component#setState</code> generally does not trigger this method.</p>
353
- <p>This method will not stop working in React 17.</p>
354
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
355
- prevents this from being invoked.</p>
356
- <dl class="tsd-comment-tags">
357
- <dt>deprecated</dt>
358
- <dd><p>16.3, use static getDerivedStateFromProps instead</p>
359
- </dd>
360
- <dt>see</dt>
361
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props</a></p>
362
- </dd>
363
- <dt>see</dt>
364
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
365
- </dd>
366
- </dl>
367
- </div>
368
- <h4 class="tsd-parameters-title">Parameters</h4>
369
- <ul class="tsd-parameters">
370
- <li>
371
- <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
372
- </li>
373
- <li>
374
- <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
375
- </li>
376
- </ul>
377
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
378
- </li>
379
- </ul>
380
- </section>
381
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
382
- <a name="unsafe_componentwillupdate" class="tsd-anchor"></a>
383
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Update</h3>
384
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
385
- <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
386
- </ul>
387
- <ul class="tsd-descriptions">
388
- <li class="tsd-description">
389
- <aside class="tsd-sources">
390
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#unsafe_componentwillupdate">UNSAFE_componentWillUpdate</a></p>
391
- <ul>
392
- </ul>
393
- </aside>
394
- <div class="tsd-comment tsd-typography">
395
- <div class="lead">
396
- <p>Called immediately before rendering when new props or state is received. Not called for the initial render.</p>
397
- </div>
398
- <p>Note: You cannot call <code>Component#setState</code> here.</p>
399
- <p>This method will not stop working in React 17.</p>
400
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
401
- prevents this from being invoked.</p>
402
- <dl class="tsd-comment-tags">
403
- <dt>deprecated</dt>
404
- <dd><p>16.3, use getSnapshotBeforeUpdate instead</p>
405
- </dd>
406
- <dt>see</dt>
407
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update</a></p>
408
- </dd>
409
- <dt>see</dt>
410
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
411
- </dd>
412
- </dl>
413
- </div>
414
- <h4 class="tsd-parameters-title">Parameters</h4>
415
- <ul class="tsd-parameters">
416
- <li>
417
- <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
418
- </li>
419
- <li>
420
- <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></h5>
421
- </li>
422
- <li>
423
- <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
424
- </li>
425
- </ul>
426
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
427
- </li>
428
- </ul>
429
- </section>
430
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
431
- <a name="additem" class="tsd-anchor"></a>
432
- <h3>add<wbr>Item</h3>
433
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
434
- <li class="tsd-signature tsd-kind-icon">add<wbr>Item<span class="tsd-signature-symbol">(</span>path<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></li>
435
- </ul>
436
- <ul class="tsd-descriptions">
437
- <li class="tsd-description">
438
- <aside class="tsd-sources">
439
- <ul>
440
- <li>Defined in packages/material/src/complex/MaterialTableControl.tsx:388</li>
441
- </ul>
442
- </aside>
443
- <h4 class="tsd-parameters-title">Parameters</h4>
444
- <ul class="tsd-parameters">
445
- <li>
446
- <h5>path: <span class="tsd-signature-type">string</span></h5>
447
- </li>
448
- <li>
449
- <h5>value: <span class="tsd-signature-type">any</span></h5>
450
- </li>
451
- </ul>
452
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h4>
453
- <ul class="tsd-parameters">
454
- <li class="tsd-parameter-signature">
455
- <ul class="tsd-signatures tsd-kind-type-literal">
456
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
457
- </ul>
458
- <ul class="tsd-descriptions">
459
- <li class="tsd-description">
460
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
461
- </li>
462
- </ul>
463
- </li>
464
- </ul>
465
- </li>
466
- </ul>
467
- </section>
468
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
469
- <a name="componentdidcatch" class="tsd-anchor"></a>
470
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Catch</h3>
471
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
472
- <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Catch<span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span>, errorInfo<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorInfo</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
473
- </ul>
474
- <ul class="tsd-descriptions">
475
- <li class="tsd-description">
476
- <aside class="tsd-sources">
477
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentdidcatch">componentDidCatch</a></p>
478
- <ul>
479
- </ul>
480
- </aside>
481
- <div class="tsd-comment tsd-typography">
482
- <div class="lead">
483
- <p>Catches exceptions generated in descendant components. Unhandled exceptions will cause
484
- the entire component tree to unmount.</p>
485
- </div>
486
- </div>
487
- <h4 class="tsd-parameters-title">Parameters</h4>
488
- <ul class="tsd-parameters">
489
- <li>
490
- <h5>error: <span class="tsd-signature-type">Error</span></h5>
491
- </li>
492
- <li>
493
- <h5>errorInfo: <span class="tsd-signature-type">ErrorInfo</span></h5>
494
- </li>
495
- </ul>
496
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
497
- </li>
498
- </ul>
499
- </section>
500
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
501
- <a name="componentdidmount" class="tsd-anchor"></a>
502
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Mount</h3>
503
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
504
- <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
505
- </ul>
506
- <ul class="tsd-descriptions">
507
- <li class="tsd-description">
508
- <aside class="tsd-sources">
509
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentdidmount">componentDidMount</a></p>
510
- <ul>
511
- </ul>
512
- </aside>
513
- <div class="tsd-comment tsd-typography">
514
- <div class="lead">
515
- <p>Called immediately after a component is mounted. Setting state here will trigger re-rendering.</p>
516
- </div>
517
- </div>
518
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
519
- </li>
520
- </ul>
521
- </section>
522
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
523
- <a name="componentdidupdate" class="tsd-anchor"></a>
524
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Update</h3>
525
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
526
- <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Update<span class="tsd-signature-symbol">(</span>prevProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, snapshot<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
527
- </ul>
528
- <ul class="tsd-descriptions">
529
- <li class="tsd-description">
530
- <aside class="tsd-sources">
531
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentdidupdate">componentDidUpdate</a></p>
532
- <ul>
533
- </ul>
534
- </aside>
535
- <div class="tsd-comment tsd-typography">
536
- <div class="lead">
537
- <p>Called immediately after updating occurs. Not called for the initial render.</p>
538
- </div>
539
- <p>The snapshot is only present if getSnapshotBeforeUpdate is present and returns non-null.</p>
540
- </div>
541
- <h4 class="tsd-parameters-title">Parameters</h4>
542
- <ul class="tsd-parameters">
543
- <li>
544
- <h5>prevProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
545
- </li>
546
- <li>
547
- <h5>prevState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></h5>
548
- </li>
549
- <li>
550
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> snapshot: <span class="tsd-signature-type">any</span></h5>
551
- </li>
552
- </ul>
553
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
554
- </li>
555
- </ul>
556
- </section>
557
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
558
- <a name="componentwillmount" class="tsd-anchor"></a>
559
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Mount</h3>
560
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
561
- <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
562
- </ul>
563
- <ul class="tsd-descriptions">
564
- <li class="tsd-description">
565
- <aside class="tsd-sources">
566
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentwillmount">componentWillMount</a></p>
567
- <ul>
568
- </ul>
569
- </aside>
570
- <div class="tsd-comment tsd-typography">
571
- <div class="lead">
572
- <p>Called immediately before mounting occurs, and before <code>Component#render</code>.
573
- Avoid introducing any side-effects or subscriptions in this method.</p>
574
- </div>
575
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
576
- prevents this from being invoked.</p>
577
- <dl class="tsd-comment-tags">
578
- <dt>deprecated</dt>
579
- <dd><p>16.3, use componentDidMount or the constructor instead; will stop working in React 17</p>
580
- </dd>
581
- <dt>see</dt>
582
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state</a></p>
583
- </dd>
584
- <dt>see</dt>
585
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
586
- </dd>
587
- </dl>
588
- </div>
589
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
590
- </li>
591
- </ul>
592
- </section>
593
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
594
- <a name="componentwillreceiveprops" class="tsd-anchor"></a>
595
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Receive<wbr>Props</h3>
596
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
597
- <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
598
- </ul>
599
- <ul class="tsd-descriptions">
600
- <li class="tsd-description">
601
- <aside class="tsd-sources">
602
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentwillreceiveprops">componentWillReceiveProps</a></p>
603
- <ul>
604
- </ul>
605
- </aside>
606
- <div class="tsd-comment tsd-typography">
607
- <div class="lead">
608
- <p>Called when the component may be receiving new props.
609
- React may call this even if props have not changed, so be sure to compare new and existing
610
- props if you only want to handle changes.</p>
611
- </div>
612
- <p>Calling <code>Component#setState</code> generally does not trigger this method.</p>
613
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
614
- prevents this from being invoked.</p>
615
- <dl class="tsd-comment-tags">
616
- <dt>deprecated</dt>
617
- <dd><p>16.3, use static getDerivedStateFromProps instead; will stop working in React 17</p>
618
- </dd>
619
- <dt>see</dt>
620
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props</a></p>
621
- </dd>
622
- <dt>see</dt>
623
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
624
- </dd>
625
- </dl>
626
- </div>
627
- <h4 class="tsd-parameters-title">Parameters</h4>
628
- <ul class="tsd-parameters">
629
- <li>
630
- <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
631
- </li>
632
- <li>
633
- <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
634
- </li>
635
- </ul>
636
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
637
- </li>
638
- </ul>
639
- </section>
640
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
641
- <a name="componentwillunmount" class="tsd-anchor"></a>
642
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Unmount</h3>
643
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
644
- <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Unmount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
645
- </ul>
646
- <ul class="tsd-descriptions">
647
- <li class="tsd-description">
648
- <aside class="tsd-sources">
649
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentwillunmount">componentWillUnmount</a></p>
650
- <ul>
651
- </ul>
652
- </aside>
653
- <div class="tsd-comment tsd-typography">
654
- <div class="lead">
655
- <p>Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as
656
- cancelled network requests, or cleaning up any DOM elements created in <code>componentDidMount</code>.</p>
657
- </div>
658
- </div>
659
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
660
- </li>
661
- </ul>
662
- </section>
663
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
664
- <a name="componentwillupdate" class="tsd-anchor"></a>
665
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Update</h3>
666
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
667
- <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
668
- </ul>
669
- <ul class="tsd-descriptions">
670
- <li class="tsd-description">
671
- <aside class="tsd-sources">
672
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#componentwillupdate">componentWillUpdate</a></p>
673
- <ul>
674
- </ul>
675
- </aside>
676
- <div class="tsd-comment tsd-typography">
677
- <div class="lead">
678
- <p>Called immediately before rendering when new props or state is received. Not called for the initial render.</p>
679
- </div>
680
- <p>Note: You cannot call <code>Component#setState</code> here.</p>
681
- <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
682
- prevents this from being invoked.</p>
683
- <dl class="tsd-comment-tags">
684
- <dt>deprecated</dt>
685
- <dd><p>16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17</p>
686
- </dd>
687
- <dt>see</dt>
688
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update</a></p>
689
- </dd>
690
- <dt>see</dt>
691
- <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
692
- </dd>
693
- </dl>
694
- </div>
695
- <h4 class="tsd-parameters-title">Parameters</h4>
696
- <ul class="tsd-parameters">
697
- <li>
698
- <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
699
- </li>
700
- <li>
701
- <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></h5>
702
- </li>
703
- <li>
704
- <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
705
- </li>
706
- </ul>
707
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
708
- </li>
709
- </ul>
710
- </section>
711
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
712
- <a name="forceupdate" class="tsd-anchor"></a>
713
- <h3>force<wbr>Update</h3>
714
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
715
- <li class="tsd-signature tsd-kind-icon">force<wbr>Update<span class="tsd-signature-symbol">(</span>callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
716
- </ul>
717
- <ul class="tsd-descriptions">
718
- <li class="tsd-description">
719
- <aside class="tsd-sources">
720
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#forceupdate">forceUpdate</a></p>
721
- <ul>
722
- </ul>
723
- </aside>
724
- <h4 class="tsd-parameters-title">Parameters</h4>
725
- <ul class="tsd-parameters">
726
- <li>
727
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
728
- <ul class="tsd-parameters">
729
- <li class="tsd-parameter-signature">
730
- <ul class="tsd-signatures tsd-kind-type-literal">
731
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
732
- </ul>
733
- <ul class="tsd-descriptions">
734
- <li class="tsd-description">
735
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
736
- </li>
737
- </ul>
738
- </li>
739
- </ul>
740
- </li>
741
- </ul>
742
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
743
- </li>
744
- </ul>
745
- </section>
746
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
747
- <a name="getsnapshotbeforeupdate" class="tsd-anchor"></a>
748
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> get<wbr>Snapshot<wbr>Before<wbr>Update</h3>
749
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
750
- <li class="tsd-signature tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update<span class="tsd-signature-symbol">(</span>prevProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></li>
751
- </ul>
752
- <ul class="tsd-descriptions">
753
- <li class="tsd-description">
754
- <aside class="tsd-sources">
755
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#getsnapshotbeforeupdate">getSnapshotBeforeUpdate</a></p>
756
- <ul>
757
- </ul>
758
- </aside>
759
- <div class="tsd-comment tsd-typography">
760
- <div class="lead">
761
- <p>Runs before React applies the result of <code>render</code> to the document, and
762
- returns an object to be given to componentDidUpdate. Useful for saving
763
- things such as scroll position before <code>render</code> causes changes to it.</p>
764
- </div>
765
- <p>Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated
766
- lifecycle events from running.</p>
767
- </div>
768
- <h4 class="tsd-parameters-title">Parameters</h4>
769
- <ul class="tsd-parameters">
770
- <li>
771
- <h5>prevProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
772
- </li>
773
- <li>
774
- <h5>prevState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></h5>
775
- </li>
776
- </ul>
777
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h4>
778
- </li>
779
- </ul>
780
- </section>
781
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
782
- <a name="render" class="tsd-anchor"></a>
783
- <h3>render</h3>
784
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
785
- <li class="tsd-signature tsd-kind-icon">render<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span></li>
786
- </ul>
787
- <ul class="tsd-descriptions">
788
- <li class="tsd-description">
789
- <aside class="tsd-sources">
790
- <p>Overrides Component.render</p>
791
- <ul>
792
- <li>Defined in packages/material/src/complex/MaterialTableControl.tsx:389</li>
793
- </ul>
794
- </aside>
795
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
796
- </li>
797
- </ul>
798
- </section>
799
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
800
- <a name="setstate" class="tsd-anchor"></a>
801
- <h3>set<wbr>State</h3>
802
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
803
- <li class="tsd-signature tsd-kind-icon">set<wbr>State&lt;K&gt;<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span>, callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
804
- </ul>
805
- <ul class="tsd-descriptions">
806
- <li class="tsd-description">
807
- <aside class="tsd-sources">
808
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#setstate">setState</a></p>
809
- <ul>
810
- </ul>
811
- </aside>
812
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
813
- <ul class="tsd-type-parameters">
814
- <li>
815
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">any</span></h4>
816
- </li>
817
- </ul>
818
- <h4 class="tsd-parameters-title">Parameters</h4>
819
- <ul class="tsd-parameters">
820
- <li>
821
- <h5>state: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span></h5>
822
- </li>
823
- <li>
824
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
825
- <ul class="tsd-parameters">
826
- <li class="tsd-parameter-signature">
827
- <ul class="tsd-signatures tsd-kind-type-literal">
828
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
829
- </ul>
830
- <ul class="tsd-descriptions">
831
- <li class="tsd-description">
832
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
833
- </li>
834
- </ul>
835
- </li>
836
- </ul>
837
- </li>
838
- </ul>
839
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
840
- </li>
841
- </ul>
842
- </section>
843
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
844
- <a name="shouldcomponentupdate" class="tsd-anchor"></a>
845
- <h3><span class="tsd-flag ts-flagOptional">Optional</span> should<wbr>Component<wbr>Update</h3>
846
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
847
- <li class="tsd-signature tsd-kind-icon">should<wbr>Component<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
848
- </ul>
849
- <ul class="tsd-descriptions">
850
- <li class="tsd-description">
851
- <aside class="tsd-sources">
852
- <p>Inherited from <a href="combinatorproperties.html">CombinatorProperties</a>.<a href="combinatorproperties.html#shouldcomponentupdate">shouldComponentUpdate</a></p>
853
- <ul>
854
- </ul>
855
- </aside>
856
- <div class="tsd-comment tsd-typography">
857
- <div class="lead">
858
- <p>Called to determine whether the change in props and state should trigger a re-render.</p>
859
- </div>
860
- <p><code>Component</code> always returns true.
861
- <code>PureComponent</code> implements a shallow comparison on props and state and returns true if any
862
- props or states have changed.</p>
863
- <p>If false is returned, <code>Component#render</code>, <code>componentWillUpdate</code>
864
- and <code>componentDidUpdate</code> will not be called.</p>
865
- </div>
866
- <h4 class="tsd-parameters-title">Parameters</h4>
867
- <ul class="tsd-parameters">
868
- <li>
869
- <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ArrayLayoutProps</span><span class="tsd-signature-symbol"> &amp; </span><a href="../interfaces/withdeletedialogsupport.html" class="tsd-signature-type">WithDeleteDialogSupport</a><span class="tsd-signature-symbol">&gt;</span></h5>
870
- </li>
871
- <li>
872
- <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></h5>
873
- </li>
874
- <li>
875
- <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
876
- </li>
877
- </ul>
878
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
879
- </li>
880
- </ul>
881
- </section>
882
- </section>
883
- </div>
884
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
885
- <nav class="tsd-navigation primary">
886
- <ul>
887
- <li class="globals ">
888
- <a href="../globals.html"><em>Globals</em></a>
889
- </li>
890
- </ul>
891
- </nav>
892
- <nav class="tsd-navigation secondary menu-sticky">
893
- <ul class="before-current">
894
- </ul>
895
- <ul class="current">
896
- <li class="current tsd-kind-class">
897
- <a href="materialtablecontrol.html" class="tsd-kind-icon">Material<wbr>Table<wbr>Control</a>
898
- <ul>
899
- <li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited">
900
- <a href="materialtablecontrol.html#constructor" class="tsd-kind-icon">constructor</a>
901
- </li>
902
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
903
- <a href="materialtablecontrol.html#context" class="tsd-kind-icon">context</a>
904
- </li>
905
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
906
- <a href="materialtablecontrol.html#props" class="tsd-kind-icon">props</a>
907
- </li>
908
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
909
- <a href="materialtablecontrol.html#refs" class="tsd-kind-icon">refs</a>
910
- </li>
911
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited">
912
- <a href="materialtablecontrol.html#state" class="tsd-kind-icon">state</a>
913
- </li>
914
- <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static">
915
- <a href="materialtablecontrol.html#contexttype" class="tsd-kind-icon">context<wbr>Type</a>
916
- </li>
917
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
918
- <a href="materialtablecontrol.html#unsafe_componentwillmount" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount</a>
919
- </li>
920
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
921
- <a href="materialtablecontrol.html#unsafe_componentwillreceiveprops" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</a>
922
- </li>
923
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
924
- <a href="materialtablecontrol.html#unsafe_componentwillupdate" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update</a>
925
- </li>
926
- <li class=" tsd-kind-method tsd-parent-kind-class">
927
- <a href="materialtablecontrol.html#additem" class="tsd-kind-icon">add<wbr>Item</a>
928
- </li>
929
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
930
- <a href="materialtablecontrol.html#componentdidcatch" class="tsd-kind-icon">component<wbr>Did<wbr>Catch</a>
931
- </li>
932
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
933
- <a href="materialtablecontrol.html#componentdidmount" class="tsd-kind-icon">component<wbr>Did<wbr>Mount</a>
934
- </li>
935
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
936
- <a href="materialtablecontrol.html#componentdidupdate" class="tsd-kind-icon">component<wbr>Did<wbr>Update</a>
937
- </li>
938
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
939
- <a href="materialtablecontrol.html#componentwillmount" class="tsd-kind-icon">component<wbr>Will<wbr>Mount</a>
940
- </li>
941
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
942
- <a href="materialtablecontrol.html#componentwillreceiveprops" class="tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props</a>
943
- </li>
944
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
945
- <a href="materialtablecontrol.html#componentwillunmount" class="tsd-kind-icon">component<wbr>Will<wbr>Unmount</a>
946
- </li>
947
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
948
- <a href="materialtablecontrol.html#componentwillupdate" class="tsd-kind-icon">component<wbr>Will<wbr>Update</a>
949
- </li>
950
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
951
- <a href="materialtablecontrol.html#forceupdate" class="tsd-kind-icon">force<wbr>Update</a>
952
- </li>
953
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
954
- <a href="materialtablecontrol.html#getsnapshotbeforeupdate" class="tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update</a>
955
- </li>
956
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
957
- <a href="materialtablecontrol.html#render" class="tsd-kind-icon">render</a>
958
- </li>
959
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited">
960
- <a href="materialtablecontrol.html#setstate" class="tsd-kind-icon">set<wbr>State</a>
961
- </li>
962
- <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited">
963
- <a href="materialtablecontrol.html#shouldcomponentupdate" class="tsd-kind-icon">should<wbr>Component<wbr>Update</a>
964
- </li>
965
- </ul>
966
- </li>
967
- </ul>
968
- <ul class="after-current">
969
- </ul>
970
- </nav>
971
- </div>
972
- </div>
973
- </div>
974
- <footer class="with-border-bottom">
975
- <div class="container">
976
- <h2>Legend</h2>
977
- <div class="tsd-legend-group">
978
- <ul class="tsd-legend">
979
- <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
980
- <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
981
- <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
982
- </ul>
983
- <ul class="tsd-legend">
984
- <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
985
- <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
986
- </ul>
987
- <ul class="tsd-legend">
988
- <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
989
- </ul>
990
- </div>
991
- </div>
992
- </footer>
993
- <div class="container tsd-generator">
994
- <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
995
- </div>
996
- <div class="overlay"></div>
997
- <script src="../assets/js/main.js"></script>
998
- </body>
999
- </html>