@jsonforms/material-renderers 3.0.0-beta.3 → 3.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +71 -13
- package/docs/assets/js/search.json +1 -1
- package/docs/globals.html +174 -80
- package/docs/index.html +85 -13
- package/docs/interfaces/categorizationstate.html +1 -1
- package/docs/interfaces/categorizationstepperstate.html +1 -1
- package/docs/interfaces/inputref.html +168 -0
- package/docs/interfaces/materialcategorizationlayoutrendererprops.html +49 -4
- package/docs/interfaces/materialcategorizationstepperlayoutrendererprops.html +46 -1
- package/docs/interfaces/materiallabelablelayoutrendererprops.html +328 -0
- package/docs/interfaces/materiallayoutrendererprops.html +5 -0
- package/docs/interfaces/withoptionlabel.html +3 -3
- package/lib/additional/MaterialLabelRenderer.d.ts +3 -3
- package/lib/cells/MaterialEnumCell.d.ts +2 -1
- package/lib/cells/MaterialOneOfEnumCell.d.ts +2 -1
- package/lib/controls/MaterialEnumControl.d.ts +2 -1
- package/lib/controls/MaterialOneOfEnumControl.d.ts +2 -1
- package/lib/controls/index.d.ts +2 -2
- package/lib/jsonforms-react-material.cjs.js +125 -61
- package/lib/jsonforms-react-material.cjs.js.map +1 -1
- package/lib/jsonforms-react-material.esm.js +124 -58
- package/lib/jsonforms-react-material.esm.js.map +1 -1
- package/lib/layouts/MaterialArrayLayoutRenderer.d.ts +1 -1
- package/lib/layouts/MaterialCategorizationLayout.d.ts +4 -3
- package/lib/layouts/MaterialCategorizationStepperLayout.d.ts +4 -3
- package/lib/layouts/MaterialGroupLayout.d.ts +2 -2
- package/lib/layouts/MaterialHorizontalLayout.d.ts +1 -1
- package/lib/layouts/MaterialVerticalLayout.d.ts +1 -1
- package/lib/mui-controls/MuiAutocomplete.d.ts +2 -2
- package/lib/mui-controls/MuiSelect.d.ts +2 -1
- package/lib/util/datejs.d.ts +17 -1
- package/lib/util/i18nDefaults.d.ts +3 -0
- package/lib/util/index.d.ts +1 -0
- package/lib/util/layout.d.ts +3 -0
- package/package.json +7 -7
- package/src/additional/MaterialLabelRenderer.tsx +5 -7
- package/src/cells/MaterialEnumCell.tsx +4 -3
- package/src/cells/MaterialOneOfEnumCell.tsx +3 -3
- package/src/complex/MaterialTableControl.tsx +1 -1
- package/src/controls/MaterialDateControl.tsx +23 -6
- package/src/controls/MaterialDateTimeControl.tsx +23 -6
- package/src/controls/MaterialEnumControl.tsx +12 -5
- package/src/controls/MaterialOneOfEnumControl.tsx +13 -5
- package/src/controls/MaterialTimeControl.tsx +24 -7
- package/src/layouts/ExpandPanelRenderer.tsx +2 -1
- package/src/layouts/MaterialArrayLayoutRenderer.tsx +3 -25
- package/src/layouts/MaterialCategorizationLayout.tsx +18 -9
- package/src/layouts/MaterialCategorizationStepperLayout.tsx +19 -12
- package/src/layouts/MaterialGroupLayout.tsx +6 -5
- package/src/mui-controls/MuiAutocomplete.tsx +81 -37
- package/src/mui-controls/MuiInputText.tsx +4 -1
- package/src/mui-controls/MuiSelect.tsx +10 -5
- package/src/util/datejs.tsx +73 -0
- package/src/util/i18nDefaults.ts +3 -0
- package/src/util/index.ts +1 -0
- package/src/util/layout.tsx +4 -0
- package/stats.html +1 -1
- package/test/renderers/MaterialArrayLayout.test.tsx +36 -5
- package/test/renderers/MaterialCategorizationLayout.test.tsx +17 -7
- package/test/renderers/MaterialCategorizationStepperLayout.test.tsx +21 -11
- package/test/renderers/MaterialDateControl.test.tsx +27 -0
- package/test/renderers/MaterialDateTimeControl.test.tsx +27 -0
- package/test/renderers/MaterialGroupLayout.test.tsx +4 -1
- package/test/renderers/MaterialInputControl.test.tsx +4 -0
- package/test/renderers/MaterialLabelRenderer.test.tsx +2 -1
- package/test/renderers/MaterialTimeControl.test.tsx +27 -0
- package/test/renderers/util.ts +5 -0
- package/src/util/datejs.ts +0 -32
package/docs/index.html
CHANGED
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
</a>
|
|
73
73
|
<p>This is the JSON Forms Material Renderers Package. This package only contains renderers and must be combined with <a href="https://github.com/eclipsesource/jsonforms/blob/master/packages/react">JSON Forms React</a>.</p>
|
|
74
74
|
<p>See the official <a href="https://jsonforms.io/docs/integrations/react/">documentation</a> and the JSON Forms React <a href="https://github.com/eclipsesource/jsonforms-react-seed">seed repository</a> for examples on how to integrate JSON Forms with your application.</p>
|
|
75
|
-
<p>You can combine <a href="https://github.com/eclipsesource/jsonforms/blob/master/packages/react">JSON Forms React</a> with other renderers too, for example with the <a href="https://github.com/eclipsesource/jsonforms/
|
|
75
|
+
<p>You can combine <a href="https://github.com/eclipsesource/jsonforms/blob/master/packages/react">JSON Forms React</a> with other renderers too, for example with the <a href="https://github.com/eclipsesource/jsonforms/tree/master/packages/vanilla">Vanilla Renderers</a>.</p>
|
|
76
76
|
<p>Check <a href="https://www.npmjs.com/search?q=%40jsonforms">https://www.npmjs.com/search?q=%40jsonforms</a> for all published JSONForms packages.</p>
|
|
77
77
|
<a href="#quick-start" id="quick-start" style="color: inherit; text-decoration: none;">
|
|
78
78
|
<h3>Quick start</h3>
|
|
@@ -81,23 +81,76 @@
|
|
|
81
81
|
<pre><code class="language-bash">npm i --save @jsonforms/core @jsonforms/react @jsonforms/material-renderers
|
|
82
82
|
</code></pre>
|
|
83
83
|
<p>Use the <code>JsonForms</code> component for each form you want to render and hand over the renderer set.</p>
|
|
84
|
-
<pre><code class="language-
|
|
84
|
+
<pre><code class="language-ts"><span class="hljs-keyword">import</span> React, { useState } <span class="hljs-keyword">from</span> <span class="hljs-string">'react'</span>;
|
|
85
|
+
<span class="hljs-keyword">import</span> {
|
|
86
|
+
materialRenderers,
|
|
87
|
+
materialCells
|
|
88
|
+
} <span class="hljs-keyword">from</span> <span class="hljs-string">'@jsonforms/material-renderers'</span>;
|
|
85
89
|
<span class="hljs-keyword">import</span> { JsonForms } <span class="hljs-keyword">from</span> <span class="hljs-string">'@jsonforms/react'</span>;
|
|
86
|
-
|
|
90
|
+
|
|
91
|
+
<span class="hljs-keyword">const</span> schema = {
|
|
92
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'object'</span>,
|
|
93
|
+
<span class="hljs-attr">properties</span>: {
|
|
94
|
+
<span class="hljs-attr">name</span>: {
|
|
95
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'string'</span>,
|
|
96
|
+
<span class="hljs-attr">minLength</span>: <span class="hljs-number">1</span>
|
|
97
|
+
},
|
|
98
|
+
<span class="hljs-attr">done</span>: {
|
|
99
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'boolean'</span>
|
|
100
|
+
},
|
|
101
|
+
<span class="hljs-attr">due_date</span>: {
|
|
102
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'string'</span>,
|
|
103
|
+
<span class="hljs-attr">format</span>: <span class="hljs-string">'date'</span>
|
|
104
|
+
},
|
|
105
|
+
<span class="hljs-attr">recurrence</span>: {
|
|
106
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'string'</span>,
|
|
107
|
+
<span class="hljs-attr">enum</span>: [<span class="hljs-string">'Never'</span>, <span class="hljs-string">'Daily'</span>, <span class="hljs-string">'Weekly'</span>, <span class="hljs-string">'Monthly'</span>]
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
<span class="hljs-attr">required</span>: [<span class="hljs-string">'name'</span>, <span class="hljs-string">'due_date'</span>]
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
<span class="hljs-keyword">const</span> uischema = {
|
|
114
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'VerticalLayout'</span>,
|
|
115
|
+
<span class="hljs-attr">elements</span>: [
|
|
116
|
+
{
|
|
117
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'Control'</span>,
|
|
118
|
+
<span class="hljs-attr">label</span>: <span class="hljs-literal">false</span>,
|
|
119
|
+
<span class="hljs-attr">scope</span>: <span class="hljs-string">'#/properties/done'</span>
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'Control'</span>,
|
|
123
|
+
<span class="hljs-attr">scope</span>: <span class="hljs-string">'#/properties/name'</span>
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'HorizontalLayout'</span>,
|
|
127
|
+
<span class="hljs-attr">elements</span>: [
|
|
128
|
+
{
|
|
129
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'Control'</span>,
|
|
130
|
+
<span class="hljs-attr">scope</span>: <span class="hljs-string">'#/properties/due_date'</span>
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
<span class="hljs-attr">type</span>: <span class="hljs-string">'Control'</span>,
|
|
134
|
+
<span class="hljs-attr">scope</span>: <span class="hljs-string">'#/properties/recurrence'</span>
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
<span class="hljs-keyword">const</span> initialData = {};
|
|
87
142
|
|
|
88
143
|
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">App</span>(<span class="hljs-params"></span>) </span>{
|
|
89
144
|
<span class="hljs-keyword">const</span> [data, setData] = useState(initialData);
|
|
90
145
|
<span class="hljs-keyword">return</span> (
|
|
91
|
-
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">
|
|
92
|
-
<span class="hljs-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
/>
|
|
100
|
-
<span class="hljs-tag"></<span class="hljs-name">div</span>></span></span>
|
|
146
|
+
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">JsonForms</span>
|
|
147
|
+
<span class="hljs-attr">schema</span>=<span class="hljs-string">{schema}</span>
|
|
148
|
+
<span class="hljs-attr">uischema</span>=<span class="hljs-string">{uischema}</span>
|
|
149
|
+
<span class="hljs-attr">data</span>=<span class="hljs-string">{data}</span>
|
|
150
|
+
<span class="hljs-attr">renderers</span>=<span class="hljs-string">{materialRenderers}</span>
|
|
151
|
+
<span class="hljs-attr">cells</span>=<span class="hljs-string">{materialCells}</span>
|
|
152
|
+
<span class="hljs-attr">onChange</span>=<span class="hljs-string">{({</span> <span class="hljs-attr">data</span>, <span class="hljs-attr">_errors</span> }) =></span> setData(data)}
|
|
153
|
+
/></span>
|
|
101
154
|
);
|
|
102
155
|
}
|
|
103
156
|
</code></pre>
|
|
@@ -117,6 +170,10 @@
|
|
|
117
170
|
For questions and discussions please use the <a href="https://jsonforms.discourse.group">JSON Forms board</a>.
|
|
118
171
|
You can also reach us via <a href="mailto:jsonforms@eclipsesource.com?subject=JSON%20Forms">email</a>.
|
|
119
172
|
In addition, EclipseSource also offers <a href="https://jsonforms.io/support">professional support</a> for JSON Forms.</p>
|
|
173
|
+
<a href="#migration" id="migration" style="color: inherit; text-decoration: none;">
|
|
174
|
+
<h2>Migration</h2>
|
|
175
|
+
</a>
|
|
176
|
+
<p>See our <a href="https://github.com/eclipsesource/jsonforms/blob/master/MIGRATION.md">migration guide</a> when updating JSON Forms.</p>
|
|
120
177
|
</div>
|
|
121
178
|
</div>
|
|
122
179
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
@@ -165,6 +222,9 @@
|
|
|
165
222
|
<li class=" tsd-kind-interface">
|
|
166
223
|
<a href="interfaces/expandpanelprops.html" class="tsd-kind-icon">Expand<wbr>Panel<wbr>Props</a>
|
|
167
224
|
</li>
|
|
225
|
+
<li class=" tsd-kind-interface">
|
|
226
|
+
<a href="interfaces/inputref.html" class="tsd-kind-icon">Input<wbr>Ref</a>
|
|
227
|
+
</li>
|
|
168
228
|
<li class=" tsd-kind-interface">
|
|
169
229
|
<a href="interfaces/jsonformstheme.html" class="tsd-kind-icon">Json<wbr>Forms<wbr>Theme</a>
|
|
170
230
|
</li>
|
|
@@ -174,6 +234,9 @@
|
|
|
174
234
|
<li class=" tsd-kind-interface">
|
|
175
235
|
<a href="interfaces/materialcategorizationstepperlayoutrendererprops.html" class="tsd-kind-icon">Material<wbr>Categorization<wbr>Stepper<wbr>Layout<wbr>Renderer<wbr>Props</a>
|
|
176
236
|
</li>
|
|
237
|
+
<li class=" tsd-kind-interface">
|
|
238
|
+
<a href="interfaces/materiallabelablelayoutrendererprops.html" class="tsd-kind-icon">Material<wbr>Labelable<wbr>Layout<wbr>Renderer<wbr>Props</a>
|
|
239
|
+
</li>
|
|
177
240
|
<li class=" tsd-kind-interface">
|
|
178
241
|
<a href="interfaces/materiallayoutrendererprops.html" class="tsd-kind-icon">Material<wbr>Layout<wbr>Renderer<wbr>Props</a>
|
|
179
242
|
</li>
|
|
@@ -222,6 +285,9 @@
|
|
|
222
285
|
<li class=" tsd-kind-interface">
|
|
223
286
|
<a href="interfaces/withoptionlabel.html" class="tsd-kind-icon">With<wbr>Option<wbr>Label</a>
|
|
224
287
|
</li>
|
|
288
|
+
<li class=" tsd-kind-type-alias">
|
|
289
|
+
<a href="globals.html#resettabletextfieldprops" class="tsd-kind-icon">Resettable<wbr>Text<wbr>Field<wbr>Props</a>
|
|
290
|
+
</li>
|
|
225
291
|
<li class=" tsd-kind-variable">
|
|
226
292
|
<a href="globals.html#arraylayouttoolbar" class="tsd-kind-icon">Array<wbr>Layout<wbr>Toolbar</a>
|
|
227
293
|
</li>
|
|
@@ -564,6 +630,9 @@
|
|
|
564
630
|
<li class=" tsd-kind-function">
|
|
565
631
|
<a href="globals.html#nonemptyrowcomponent" class="tsd-kind-icon">Non<wbr>Empty<wbr>Row<wbr>Component</a>
|
|
566
632
|
</li>
|
|
633
|
+
<li class=" tsd-kind-function">
|
|
634
|
+
<a href="globals.html#resettabletextfield" class="tsd-kind-icon">Resettable<wbr>Text<wbr>Field</a>
|
|
635
|
+
</li>
|
|
567
636
|
<li class=" tsd-kind-function">
|
|
568
637
|
<a href="globals.html#tablerows" class="tsd-kind-icon">Table<wbr>Rows</a>
|
|
569
638
|
</li>
|
|
@@ -639,6 +708,9 @@
|
|
|
639
708
|
<li class=" tsd-kind-object-literal">
|
|
640
709
|
<a href="globals.html#fixedcellsmall" class="tsd-kind-icon">fixed<wbr>Cell<wbr>Small</a>
|
|
641
710
|
</li>
|
|
711
|
+
<li class=" tsd-kind-object-literal">
|
|
712
|
+
<a href="globals.html#i18ndefaults" class="tsd-kind-icon">i18n<wbr>Defaults</a>
|
|
713
|
+
</li>
|
|
642
714
|
<li class=" tsd-kind-object-literal">
|
|
643
715
|
<a href="globals.html#iconstyle" class="tsd-kind-icon">icon<wbr>Style</a>
|
|
644
716
|
</li>
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
<div class="tsd-signature tsd-kind-icon">active<wbr>Category<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
|
94
94
|
<aside class="tsd-sources">
|
|
95
95
|
<ul>
|
|
96
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:
|
|
96
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:68</li>
|
|
97
97
|
</ul>
|
|
98
98
|
</aside>
|
|
99
99
|
</section>
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
<div class="tsd-signature tsd-kind-icon">active<wbr>Category<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
|
94
94
|
<aside class="tsd-sources">
|
|
95
95
|
<ul>
|
|
96
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationStepperLayout.tsx:
|
|
96
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationStepperLayout.tsx:59</li>
|
|
97
97
|
</ul>
|
|
98
98
|
</aside>
|
|
99
99
|
</section>
|
|
@@ -0,0 +1,168 @@
|
|
|
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>InputRef | 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="inputref.html">InputRef</a>
|
|
58
|
+
</li>
|
|
59
|
+
</ul>
|
|
60
|
+
<h1>Interface InputRef</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="target">InputRef</span>
|
|
72
|
+
</li>
|
|
73
|
+
</ul>
|
|
74
|
+
</section>
|
|
75
|
+
<section class="tsd-panel-group tsd-index-group">
|
|
76
|
+
<h2>Index</h2>
|
|
77
|
+
<section class="tsd-panel tsd-index-panel">
|
|
78
|
+
<div class="tsd-index-content">
|
|
79
|
+
<section class="tsd-index-section ">
|
|
80
|
+
<h3>Properties</h3>
|
|
81
|
+
<ul class="tsd-index-list">
|
|
82
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="inputref.html#lastinput" class="tsd-kind-icon">last<wbr>Input</a></li>
|
|
83
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="inputref.html#toshow" class="tsd-kind-icon">to<wbr>Show</a></li>
|
|
84
|
+
</ul>
|
|
85
|
+
</section>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
</section>
|
|
89
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
90
|
+
<h2>Properties</h2>
|
|
91
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
|
|
92
|
+
<a name="lastinput" class="tsd-anchor"></a>
|
|
93
|
+
<h3>last<wbr>Input</h3>
|
|
94
|
+
<div class="tsd-signature tsd-kind-icon">last<wbr>Input<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
95
|
+
<aside class="tsd-sources">
|
|
96
|
+
<ul>
|
|
97
|
+
<li>Defined in packages/material/src/util/datejs.tsx:38</li>
|
|
98
|
+
</ul>
|
|
99
|
+
</aside>
|
|
100
|
+
</section>
|
|
101
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
|
|
102
|
+
<a name="toshow" class="tsd-anchor"></a>
|
|
103
|
+
<h3>to<wbr>Show</h3>
|
|
104
|
+
<div class="tsd-signature tsd-kind-icon">to<wbr>Show<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
105
|
+
<aside class="tsd-sources">
|
|
106
|
+
<ul>
|
|
107
|
+
<li>Defined in packages/material/src/util/datejs.tsx:39</li>
|
|
108
|
+
</ul>
|
|
109
|
+
</aside>
|
|
110
|
+
</section>
|
|
111
|
+
</section>
|
|
112
|
+
</div>
|
|
113
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
114
|
+
<nav class="tsd-navigation primary">
|
|
115
|
+
<ul>
|
|
116
|
+
<li class="globals ">
|
|
117
|
+
<a href="../globals.html"><em>Globals</em></a>
|
|
118
|
+
</li>
|
|
119
|
+
</ul>
|
|
120
|
+
</nav>
|
|
121
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
122
|
+
<ul class="before-current">
|
|
123
|
+
</ul>
|
|
124
|
+
<ul class="current">
|
|
125
|
+
<li class="current tsd-kind-interface">
|
|
126
|
+
<a href="inputref.html" class="tsd-kind-icon">Input<wbr>Ref</a>
|
|
127
|
+
<ul>
|
|
128
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
129
|
+
<a href="inputref.html#lastinput" class="tsd-kind-icon">last<wbr>Input</a>
|
|
130
|
+
</li>
|
|
131
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
132
|
+
<a href="inputref.html#toshow" class="tsd-kind-icon">to<wbr>Show</a>
|
|
133
|
+
</li>
|
|
134
|
+
</ul>
|
|
135
|
+
</li>
|
|
136
|
+
</ul>
|
|
137
|
+
<ul class="after-current">
|
|
138
|
+
</ul>
|
|
139
|
+
</nav>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
<footer class="with-border-bottom">
|
|
144
|
+
<div class="container">
|
|
145
|
+
<h2>Legend</h2>
|
|
146
|
+
<div class="tsd-legend-group">
|
|
147
|
+
<ul class="tsd-legend">
|
|
148
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
|
149
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
|
150
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
|
151
|
+
</ul>
|
|
152
|
+
<ul class="tsd-legend">
|
|
153
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
|
154
|
+
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
|
155
|
+
</ul>
|
|
156
|
+
<ul class="tsd-legend">
|
|
157
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
158
|
+
</ul>
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
</footer>
|
|
162
|
+
<div class="container tsd-generator">
|
|
163
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="overlay"></div>
|
|
166
|
+
<script src="../assets/js/main.js"></script>
|
|
167
|
+
</body>
|
|
168
|
+
</html>
|
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
</li>
|
|
73
73
|
<li>
|
|
74
74
|
<a href="ajvprops.html" class="tsd-signature-type">AjvProps</a>
|
|
75
|
+
</li>
|
|
76
|
+
<li>
|
|
77
|
+
<span class="tsd-signature-type">TranslateProps</span>
|
|
75
78
|
<ul class="tsd-hierarchy">
|
|
76
79
|
<li>
|
|
77
80
|
<span class="target">MaterialCategorizationLayoutRendererProps</span>
|
|
@@ -93,11 +96,14 @@
|
|
|
93
96
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="materialcategorizationlayoutrendererprops.html#data" class="tsd-kind-icon">data</a></li>
|
|
94
97
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#direction" class="tsd-kind-icon">direction</a></li>
|
|
95
98
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#enabled" class="tsd-kind-icon">enabled</a></li>
|
|
99
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#label" class="tsd-kind-icon">label</a></li>
|
|
100
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#locale" class="tsd-kind-icon">locale</a></li>
|
|
96
101
|
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="materialcategorizationlayoutrendererprops.html#ownstate" class="tsd-kind-icon">own<wbr>State</a></li>
|
|
97
102
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#path" class="tsd-kind-icon">path</a></li>
|
|
98
103
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#renderers" class="tsd-kind-icon">renderers</a></li>
|
|
99
104
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#schema" class="tsd-kind-icon">schema</a></li>
|
|
100
105
|
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="materialcategorizationlayoutrendererprops.html#selected" class="tsd-kind-icon">selected</a></li>
|
|
106
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#t" class="tsd-kind-icon">t</a></li>
|
|
101
107
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#uischema" class="tsd-kind-icon">uischema</a></li>
|
|
102
108
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationlayoutrendererprops.html#visible" class="tsd-kind-icon">visible</a></li>
|
|
103
109
|
</ul>
|
|
@@ -161,7 +167,7 @@
|
|
|
161
167
|
<aside class="tsd-sources">
|
|
162
168
|
<p>Overrides StatePropsOfRenderer.data</p>
|
|
163
169
|
<ul>
|
|
164
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:
|
|
170
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:75</li>
|
|
165
171
|
</ul>
|
|
166
172
|
</aside>
|
|
167
173
|
</section>
|
|
@@ -195,13 +201,33 @@
|
|
|
195
201
|
</div>
|
|
196
202
|
</div>
|
|
197
203
|
</section>
|
|
204
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
205
|
+
<a name="label" class="tsd-anchor"></a>
|
|
206
|
+
<h3><span class="tsd-flag ts-flagOptional">Optional</span> label</h3>
|
|
207
|
+
<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
208
|
+
<aside class="tsd-sources">
|
|
209
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#label">label</a></p>
|
|
210
|
+
<ul>
|
|
211
|
+
</ul>
|
|
212
|
+
</aside>
|
|
213
|
+
</section>
|
|
214
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
215
|
+
<a name="locale" class="tsd-anchor"></a>
|
|
216
|
+
<h3>locale</h3>
|
|
217
|
+
<div class="tsd-signature tsd-kind-icon">locale<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
218
|
+
<aside class="tsd-sources">
|
|
219
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#locale">locale</a></p>
|
|
220
|
+
<ul>
|
|
221
|
+
</ul>
|
|
222
|
+
</aside>
|
|
223
|
+
</section>
|
|
198
224
|
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
|
|
199
225
|
<a name="ownstate" class="tsd-anchor"></a>
|
|
200
226
|
<h3><span class="tsd-flag ts-flagOptional">Optional</span> own<wbr>State</h3>
|
|
201
227
|
<div class="tsd-signature tsd-kind-icon">own<wbr>State<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
|
|
202
228
|
<aside class="tsd-sources">
|
|
203
229
|
<ul>
|
|
204
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:
|
|
230
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:74</li>
|
|
205
231
|
</ul>
|
|
206
232
|
</aside>
|
|
207
233
|
</section>
|
|
@@ -256,7 +282,17 @@
|
|
|
256
282
|
<div class="tsd-signature tsd-kind-icon">selected<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
|
257
283
|
<aside class="tsd-sources">
|
|
258
284
|
<ul>
|
|
259
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:
|
|
285
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:73</li>
|
|
286
|
+
</ul>
|
|
287
|
+
</aside>
|
|
288
|
+
</section>
|
|
289
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
290
|
+
<a name="t" class="tsd-anchor"></a>
|
|
291
|
+
<h3>t</h3>
|
|
292
|
+
<div class="tsd-signature tsd-kind-icon">t<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Translator</span></div>
|
|
293
|
+
<aside class="tsd-sources">
|
|
294
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#t">t</a></p>
|
|
295
|
+
<ul>
|
|
260
296
|
</ul>
|
|
261
297
|
</aside>
|
|
262
298
|
</section>
|
|
@@ -303,7 +339,7 @@
|
|
|
303
339
|
<li class="tsd-description">
|
|
304
340
|
<aside class="tsd-sources">
|
|
305
341
|
<ul>
|
|
306
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:
|
|
342
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationLayout.tsx:76</li>
|
|
307
343
|
</ul>
|
|
308
344
|
</aside>
|
|
309
345
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
@@ -354,6 +390,12 @@
|
|
|
354
390
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
355
391
|
<a href="materialcategorizationlayoutrendererprops.html#enabled" class="tsd-kind-icon">enabled</a>
|
|
356
392
|
</li>
|
|
393
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
394
|
+
<a href="materialcategorizationlayoutrendererprops.html#label" class="tsd-kind-icon">label</a>
|
|
395
|
+
</li>
|
|
396
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
397
|
+
<a href="materialcategorizationlayoutrendererprops.html#locale" class="tsd-kind-icon">locale</a>
|
|
398
|
+
</li>
|
|
357
399
|
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
358
400
|
<a href="materialcategorizationlayoutrendererprops.html#ownstate" class="tsd-kind-icon">own<wbr>State</a>
|
|
359
401
|
</li>
|
|
@@ -369,6 +411,9 @@
|
|
|
369
411
|
<li class=" tsd-kind-property tsd-parent-kind-interface">
|
|
370
412
|
<a href="materialcategorizationlayoutrendererprops.html#selected" class="tsd-kind-icon">selected</a>
|
|
371
413
|
</li>
|
|
414
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
415
|
+
<a href="materialcategorizationlayoutrendererprops.html#t" class="tsd-kind-icon">t</a>
|
|
416
|
+
</li>
|
|
372
417
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
373
418
|
<a href="materialcategorizationlayoutrendererprops.html#uischema" class="tsd-kind-icon">uischema</a>
|
|
374
419
|
</li>
|
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
</li>
|
|
73
73
|
<li>
|
|
74
74
|
<a href="ajvprops.html" class="tsd-signature-type">AjvProps</a>
|
|
75
|
+
</li>
|
|
76
|
+
<li>
|
|
77
|
+
<span class="tsd-signature-type">TranslateProps</span>
|
|
75
78
|
<ul class="tsd-hierarchy">
|
|
76
79
|
<li>
|
|
77
80
|
<span class="target">MaterialCategorizationStepperLayoutRendererProps</span>
|
|
@@ -93,9 +96,12 @@
|
|
|
93
96
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite"><a href="materialcategorizationstepperlayoutrendererprops.html#data" class="tsd-kind-icon">data</a></li>
|
|
94
97
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#direction" class="tsd-kind-icon">direction</a></li>
|
|
95
98
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#enabled" class="tsd-kind-icon">enabled</a></li>
|
|
99
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#label" class="tsd-kind-icon">label</a></li>
|
|
100
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#locale" class="tsd-kind-icon">locale</a></li>
|
|
96
101
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#path" class="tsd-kind-icon">path</a></li>
|
|
97
102
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#renderers" class="tsd-kind-icon">renderers</a></li>
|
|
98
103
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#schema" class="tsd-kind-icon">schema</a></li>
|
|
104
|
+
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#t" class="tsd-kind-icon">t</a></li>
|
|
99
105
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#uischema" class="tsd-kind-icon">uischema</a></li>
|
|
100
106
|
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited"><a href="materialcategorizationstepperlayoutrendererprops.html#visible" class="tsd-kind-icon">visible</a></li>
|
|
101
107
|
</ul>
|
|
@@ -153,7 +159,7 @@
|
|
|
153
159
|
<aside class="tsd-sources">
|
|
154
160
|
<p>Overrides StatePropsOfRenderer.data</p>
|
|
155
161
|
<ul>
|
|
156
|
-
<li>Defined in packages/material/src/layouts/MaterialCategorizationStepperLayout.tsx:
|
|
162
|
+
<li>Defined in packages/material/src/layouts/MaterialCategorizationStepperLayout.tsx:64</li>
|
|
157
163
|
</ul>
|
|
158
164
|
</aside>
|
|
159
165
|
</section>
|
|
@@ -187,6 +193,26 @@
|
|
|
187
193
|
</div>
|
|
188
194
|
</div>
|
|
189
195
|
</section>
|
|
196
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
197
|
+
<a name="label" class="tsd-anchor"></a>
|
|
198
|
+
<h3><span class="tsd-flag ts-flagOptional">Optional</span> label</h3>
|
|
199
|
+
<div class="tsd-signature tsd-kind-icon">label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
200
|
+
<aside class="tsd-sources">
|
|
201
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#label">label</a></p>
|
|
202
|
+
<ul>
|
|
203
|
+
</ul>
|
|
204
|
+
</aside>
|
|
205
|
+
</section>
|
|
206
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
207
|
+
<a name="locale" class="tsd-anchor"></a>
|
|
208
|
+
<h3>locale</h3>
|
|
209
|
+
<div class="tsd-signature tsd-kind-icon">locale<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
|
210
|
+
<aside class="tsd-sources">
|
|
211
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#locale">locale</a></p>
|
|
212
|
+
<ul>
|
|
213
|
+
</ul>
|
|
214
|
+
</aside>
|
|
215
|
+
</section>
|
|
190
216
|
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
191
217
|
<a name="path" class="tsd-anchor"></a>
|
|
192
218
|
<h3>path</h3>
|
|
@@ -232,6 +258,16 @@
|
|
|
232
258
|
</div>
|
|
233
259
|
</div>
|
|
234
260
|
</section>
|
|
261
|
+
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
262
|
+
<a name="t" class="tsd-anchor"></a>
|
|
263
|
+
<h3>t</h3>
|
|
264
|
+
<div class="tsd-signature tsd-kind-icon">t<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Translator</span></div>
|
|
265
|
+
<aside class="tsd-sources">
|
|
266
|
+
<p>Inherited from <a href="materialcategorizationlayoutrendererprops.html">MaterialCategorizationLayoutRendererProps</a>.<a href="materialcategorizationlayoutrendererprops.html#t">t</a></p>
|
|
267
|
+
<ul>
|
|
268
|
+
</ul>
|
|
269
|
+
</aside>
|
|
270
|
+
</section>
|
|
235
271
|
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
236
272
|
<a name="uischema" class="tsd-anchor"></a>
|
|
237
273
|
<h3>uischema</h3>
|
|
@@ -297,6 +333,12 @@
|
|
|
297
333
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
298
334
|
<a href="materialcategorizationstepperlayoutrendererprops.html#enabled" class="tsd-kind-icon">enabled</a>
|
|
299
335
|
</li>
|
|
336
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
337
|
+
<a href="materialcategorizationstepperlayoutrendererprops.html#label" class="tsd-kind-icon">label</a>
|
|
338
|
+
</li>
|
|
339
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
340
|
+
<a href="materialcategorizationstepperlayoutrendererprops.html#locale" class="tsd-kind-icon">locale</a>
|
|
341
|
+
</li>
|
|
300
342
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
301
343
|
<a href="materialcategorizationstepperlayoutrendererprops.html#path" class="tsd-kind-icon">path</a>
|
|
302
344
|
</li>
|
|
@@ -306,6 +348,9 @@
|
|
|
306
348
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
307
349
|
<a href="materialcategorizationstepperlayoutrendererprops.html#schema" class="tsd-kind-icon">schema</a>
|
|
308
350
|
</li>
|
|
351
|
+
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
352
|
+
<a href="materialcategorizationstepperlayoutrendererprops.html#t" class="tsd-kind-icon">t</a>
|
|
353
|
+
</li>
|
|
309
354
|
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited">
|
|
310
355
|
<a href="materialcategorizationstepperlayoutrendererprops.html#uischema" class="tsd-kind-icon">uischema</a>
|
|
311
356
|
</li>
|