@openremote/or-mwc-components 1.24.0 → 1.24.1
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/custom-elements-jsx.d.ts +1010 -412
- package/package.json +8 -5
package/custom-elements-jsx.d.ts
CHANGED
|
@@ -1,11 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import type {
|
|
2
|
+
OrMwcDialogOpenedEvent,
|
|
3
|
+
OrMwcDialogClosedEvent,
|
|
4
|
+
showErrorDialog,
|
|
5
|
+
showOkCancelDialog,
|
|
6
|
+
showOkDialog,
|
|
7
|
+
showDialog,
|
|
8
|
+
OrMwcDialog,
|
|
9
|
+
} from "./lib/or-mwc-dialog.d.ts";
|
|
10
|
+
import type {
|
|
11
|
+
OrMwcDrawerChangedEvent,
|
|
12
|
+
OrMwcDrawer,
|
|
13
|
+
} from "./lib/or-mwc-drawer.d.ts";
|
|
14
|
+
import type {
|
|
15
|
+
OrInputChangedEvent,
|
|
16
|
+
SUPPORTED_WELLKNOWN_VALUE_TYPES,
|
|
17
|
+
getValueHolderInputTemplateProvider,
|
|
18
|
+
OrMwcInput,
|
|
19
|
+
} from "./lib/or-mwc-input.d.ts";
|
|
20
|
+
import type {
|
|
21
|
+
MDCListActionEvent,
|
|
22
|
+
OrMwcListChangedEvent,
|
|
23
|
+
createListGroup,
|
|
24
|
+
getListTemplate,
|
|
25
|
+
getItemTemplate,
|
|
26
|
+
OrMwcList,
|
|
27
|
+
} from "./lib/or-mwc-list.d.ts";
|
|
28
|
+
import type {
|
|
29
|
+
OrMwcMenuChangedEvent,
|
|
30
|
+
OrMwcMenuClosedEvent,
|
|
31
|
+
positionMenuAtElement,
|
|
32
|
+
getContentWithMenuTemplate,
|
|
33
|
+
OrMwcMenu,
|
|
34
|
+
} from "./lib/or-mwc-menu.d.ts";
|
|
35
|
+
import type {
|
|
36
|
+
OrMwcSnackbarChangedEvent,
|
|
37
|
+
showSnackbar,
|
|
38
|
+
OrMwcSnackbar,
|
|
39
|
+
} from "./lib/or-mwc-snackbar.d.ts";
|
|
40
|
+
import type {
|
|
41
|
+
OrMwcTableRowClickEvent,
|
|
42
|
+
OrMwcTableRowSelectEvent,
|
|
43
|
+
OrMwcTable,
|
|
44
|
+
} from "./lib/or-mwc-table.d.ts";
|
|
9
45
|
import type { OrMwcTabs } from "./lib/or-mwc-tabs.d.ts";
|
|
10
46
|
|
|
11
47
|
/**
|
|
@@ -34,7 +70,6 @@ export type ScopedElements<
|
|
|
34
70
|
};
|
|
35
71
|
|
|
36
72
|
type BaseProps<T extends HTMLElement> = {
|
|
37
|
-
|
|
38
73
|
/** Content added between the opening and closing tags of the element */
|
|
39
74
|
children?: any;
|
|
40
75
|
/** Used for declaratively styling one or more elements using CSS (Cascading Stylesheets) */
|
|
@@ -57,6 +92,8 @@ type BaseProps<T extends HTMLElement> = {
|
|
|
57
92
|
key?: string | number;
|
|
58
93
|
/** Specifies the language of the element. */
|
|
59
94
|
lang?: string;
|
|
95
|
+
/** Defines the element's semantic role for accessibility APIs. */
|
|
96
|
+
role?: string;
|
|
60
97
|
/** Contains a space-separated list of the part names of the element. Part names allows CSS to select and style specific elements in a shadow tree via the ::part pseudo-element. */
|
|
61
98
|
part?: string;
|
|
62
99
|
/** Use the ref attribute with a variable to assign a DOM element to the variable once the element is rendered. */
|
|
@@ -77,611 +114,1172 @@ type BaseProps<T extends HTMLElement> = {
|
|
|
77
114
|
popovertarget?: "top" | "bottom" | "left" | "right" | "auto";
|
|
78
115
|
/** Specifies the action to be performed on a popover element being controlled by a control element. */
|
|
79
116
|
popovertargetaction?: "show" | "hide" | "toggle";
|
|
80
|
-
|
|
81
|
-
} ;
|
|
82
|
-
|
|
83
|
-
type BaseEvents = {
|
|
84
|
-
|
|
85
|
-
|
|
86
117
|
};
|
|
87
118
|
|
|
88
|
-
|
|
119
|
+
type BaseEvents = {};
|
|
89
120
|
|
|
90
121
|
export type OrMwcDialogProps = {
|
|
91
122
|
/** */
|
|
92
|
-
|
|
123
|
+
heading?: OrMwcDialog["heading"];
|
|
93
124
|
/** */
|
|
94
|
-
|
|
125
|
+
avatar?: OrMwcDialog["avatar"];
|
|
95
126
|
/** */
|
|
96
|
-
|
|
127
|
+
styles?: OrMwcDialog["styles"];
|
|
97
128
|
/** */
|
|
98
|
-
|
|
129
|
+
content?: OrMwcDialog["content"];
|
|
99
130
|
/** */
|
|
100
|
-
|
|
131
|
+
actions?: OrMwcDialog["actions"];
|
|
101
132
|
/** */
|
|
102
|
-
|
|
133
|
+
dismissAction?: OrMwcDialog["dismissAction"];
|
|
103
134
|
|
|
104
135
|
/** */
|
|
105
|
-
|
|
136
|
+
onaction?: (e: OrMwcDialogClosedEvent) => void;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
export type OrMwcDialogSolidJsProps = {
|
|
106
140
|
/** */
|
|
107
|
-
"
|
|
108
|
-
|
|
141
|
+
"prop:heading"?: OrMwcDialog["heading"];
|
|
142
|
+
/** */
|
|
143
|
+
"prop:avatar"?: OrMwcDialog["avatar"];
|
|
144
|
+
/** */
|
|
145
|
+
"prop:styles"?: OrMwcDialog["styles"];
|
|
146
|
+
/** */
|
|
147
|
+
"prop:content"?: OrMwcDialog["content"];
|
|
148
|
+
/** */
|
|
149
|
+
"prop:actions"?: OrMwcDialog["actions"];
|
|
150
|
+
/** */
|
|
151
|
+
"prop:dismissAction"?: OrMwcDialog["dismissAction"];
|
|
152
|
+
/** */
|
|
153
|
+
"on:action"?: (e: OrMwcDialogClosedEvent) => void;
|
|
109
154
|
|
|
155
|
+
/** Set the innerHTML of the element */
|
|
156
|
+
innerHTML?: string;
|
|
157
|
+
/** Set the textContent of the element */
|
|
158
|
+
textContent?: string | number;
|
|
159
|
+
};
|
|
110
160
|
|
|
111
161
|
export type OrMwcDrawerProps = {
|
|
112
162
|
/** */
|
|
113
|
-
|
|
163
|
+
dismissible?: OrMwcDrawer["dismissible"];
|
|
114
164
|
/** */
|
|
115
|
-
|
|
165
|
+
rightSided?: OrMwcDrawer["rightSided"];
|
|
116
166
|
/** */
|
|
117
|
-
|
|
167
|
+
transparent?: OrMwcDrawer["transparent"];
|
|
118
168
|
/** */
|
|
119
|
-
|
|
169
|
+
open?: OrMwcDrawer["open"];
|
|
120
170
|
/** */
|
|
121
|
-
|
|
171
|
+
header?: OrMwcDrawer["header"];
|
|
122
172
|
/** */
|
|
123
|
-
|
|
173
|
+
appContent?: OrMwcDrawer["appContent"];
|
|
124
174
|
/** */
|
|
125
|
-
|
|
175
|
+
topBar?: OrMwcDrawer["topBar"];
|
|
126
176
|
|
|
127
177
|
/** */
|
|
128
|
-
|
|
129
|
-
}
|
|
178
|
+
onvalue?: (e: OrMwcDrawerChangedEvent) => void;
|
|
179
|
+
};
|
|
130
180
|
|
|
181
|
+
export type OrMwcDrawerSolidJsProps = {
|
|
182
|
+
/** */
|
|
183
|
+
"prop:dismissible"?: OrMwcDrawer["dismissible"];
|
|
184
|
+
/** */
|
|
185
|
+
"prop:rightSided"?: OrMwcDrawer["rightSided"];
|
|
186
|
+
/** */
|
|
187
|
+
"prop:transparent"?: OrMwcDrawer["transparent"];
|
|
188
|
+
/** */
|
|
189
|
+
"prop:open"?: OrMwcDrawer["open"];
|
|
190
|
+
/** */
|
|
191
|
+
"prop:header"?: OrMwcDrawer["header"];
|
|
192
|
+
/** */
|
|
193
|
+
"prop:appContent"?: OrMwcDrawer["appContent"];
|
|
194
|
+
/** */
|
|
195
|
+
"prop:topBar"?: OrMwcDrawer["topBar"];
|
|
196
|
+
/** */
|
|
197
|
+
"on:value"?: (e: OrMwcDrawerChangedEvent) => void;
|
|
198
|
+
|
|
199
|
+
/** Set the innerHTML of the element */
|
|
200
|
+
innerHTML?: string;
|
|
201
|
+
/** Set the textContent of the element */
|
|
202
|
+
textContent?: string | number;
|
|
203
|
+
};
|
|
131
204
|
|
|
132
205
|
export type OrMwcInputProps = {
|
|
133
206
|
/** */
|
|
134
|
-
|
|
207
|
+
focused?: OrMwcInput["focused"];
|
|
135
208
|
/** */
|
|
136
|
-
|
|
209
|
+
value?: OrMwcInput["value"];
|
|
137
210
|
/** */
|
|
138
|
-
|
|
211
|
+
type?: OrMwcInput["type"];
|
|
139
212
|
/** */
|
|
140
|
-
|
|
213
|
+
name?: OrMwcInput["name"];
|
|
141
214
|
/** */
|
|
142
|
-
|
|
215
|
+
readonly?: OrMwcInput["readonly"];
|
|
143
216
|
/** */
|
|
144
|
-
|
|
217
|
+
required?: OrMwcInput["required"];
|
|
145
218
|
/** */
|
|
146
|
-
|
|
219
|
+
max?: OrMwcInput["max"];
|
|
147
220
|
/** */
|
|
148
|
-
|
|
221
|
+
min?: OrMwcInput["min"];
|
|
149
222
|
/** */
|
|
150
|
-
|
|
223
|
+
step?: OrMwcInput["step"];
|
|
151
224
|
/** */
|
|
152
|
-
|
|
225
|
+
checked?: OrMwcInput["checked"];
|
|
153
226
|
/** */
|
|
154
|
-
|
|
227
|
+
indeterminate?: OrMwcInput["indeterminate"];
|
|
155
228
|
/** */
|
|
156
|
-
|
|
229
|
+
maxLength?: OrMwcInput["maxLength"];
|
|
157
230
|
/** */
|
|
158
|
-
|
|
231
|
+
minLength?: OrMwcInput["minLength"];
|
|
159
232
|
/** */
|
|
160
|
-
|
|
233
|
+
rows?: OrMwcInput["rows"];
|
|
161
234
|
/** */
|
|
162
|
-
|
|
235
|
+
cols?: OrMwcInput["cols"];
|
|
163
236
|
/** */
|
|
164
|
-
|
|
237
|
+
multiple?: OrMwcInput["multiple"];
|
|
165
238
|
/** */
|
|
166
|
-
|
|
239
|
+
pattern?: OrMwcInput["pattern"];
|
|
167
240
|
/** */
|
|
168
|
-
|
|
241
|
+
placeHolder?: OrMwcInput["placeHolder"];
|
|
169
242
|
/** */
|
|
170
|
-
|
|
243
|
+
options?: OrMwcInput["options"];
|
|
171
244
|
/** */
|
|
172
|
-
|
|
245
|
+
autoSelect?: OrMwcInput["autoSelect"];
|
|
173
246
|
/** */
|
|
174
|
-
|
|
247
|
+
searchProvider?: OrMwcInput["searchProvider"];
|
|
175
248
|
/** */
|
|
176
|
-
|
|
249
|
+
searchLabel?: OrMwcInput["searchLabel"];
|
|
177
250
|
/** */
|
|
178
|
-
|
|
251
|
+
icon?: OrMwcInput["icon"];
|
|
179
252
|
/** */
|
|
180
|
-
|
|
253
|
+
iconColor?: OrMwcInput["iconColor"];
|
|
181
254
|
/** */
|
|
182
|
-
|
|
255
|
+
iconOn?: OrMwcInput["iconOn"];
|
|
183
256
|
/** */
|
|
184
|
-
|
|
257
|
+
iconTrailing?: OrMwcInput["iconTrailing"];
|
|
185
258
|
/** */
|
|
186
|
-
|
|
259
|
+
compact?: OrMwcInput["compact"];
|
|
187
260
|
/** */
|
|
188
|
-
|
|
261
|
+
comfortable?: OrMwcInput["comfortable"];
|
|
189
262
|
/** */
|
|
190
|
-
|
|
263
|
+
raised?: OrMwcInput["raised"];
|
|
191
264
|
/** */
|
|
192
|
-
|
|
265
|
+
action?: OrMwcInput["action"];
|
|
193
266
|
/** */
|
|
194
|
-
|
|
267
|
+
unElevated?: OrMwcInput["unElevated"];
|
|
195
268
|
/** */
|
|
196
|
-
|
|
269
|
+
outlined?: OrMwcInput["outlined"];
|
|
197
270
|
/** */
|
|
198
|
-
|
|
271
|
+
rounded?: OrMwcInput["rounded"];
|
|
199
272
|
/** */
|
|
200
|
-
|
|
273
|
+
format?: OrMwcInput["format"];
|
|
201
274
|
/** */
|
|
202
|
-
|
|
275
|
+
disableSliderNumberInput?: OrMwcInput["disableSliderNumberInput"];
|
|
203
276
|
/** */
|
|
204
|
-
|
|
277
|
+
fullWidth?: OrMwcInput["fullWidth"];
|
|
205
278
|
/** */
|
|
206
|
-
|
|
279
|
+
helperText?: OrMwcInput["helperText"];
|
|
207
280
|
/** */
|
|
208
|
-
|
|
281
|
+
helperPersistent?: OrMwcInput["helperPersistent"];
|
|
209
282
|
/** */
|
|
210
|
-
|
|
283
|
+
validationMessage?: OrMwcInput["validationMessage"];
|
|
211
284
|
/** */
|
|
212
|
-
|
|
285
|
+
autoValidate?: OrMwcInput["autoValidate"];
|
|
213
286
|
/** */
|
|
214
|
-
|
|
287
|
+
charCounter?: OrMwcInput["charCounter"];
|
|
215
288
|
/** */
|
|
216
|
-
|
|
289
|
+
label?: OrMwcInput["label"];
|
|
217
290
|
/** */
|
|
218
|
-
|
|
291
|
+
disabled?: OrMwcInput["disabled"];
|
|
219
292
|
/** */
|
|
220
|
-
|
|
293
|
+
continuous?: OrMwcInput["continuous"];
|
|
221
294
|
/** */
|
|
222
|
-
|
|
295
|
+
resizeVertical?: OrMwcInput["resizeVertical"];
|
|
223
296
|
/** Always censure text fields (like a password), and do not allow toggling */
|
|
224
|
-
|
|
297
|
+
censored?: OrMwcInput["censored"];
|
|
225
298
|
/** Toggles visibility state of the password InputType (true = shown, false = hidden) */
|
|
226
|
-
|
|
299
|
+
advertised?: OrMwcInput["advertised"];
|
|
227
300
|
/** */
|
|
228
|
-
|
|
301
|
+
searchableValue?: OrMwcInput["searchableValue"];
|
|
229
302
|
|
|
230
303
|
/** */
|
|
231
|
-
|
|
304
|
+
onnewValue?: (e: OrInputChangedEvent) => void;
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
export type OrMwcInputSolidJsProps = {
|
|
232
308
|
/** */
|
|
233
|
-
"
|
|
234
|
-
|
|
309
|
+
"prop:focused"?: OrMwcInput["focused"];
|
|
310
|
+
/** */
|
|
311
|
+
"prop:value"?: OrMwcInput["value"];
|
|
312
|
+
/** */
|
|
313
|
+
"prop:type"?: OrMwcInput["type"];
|
|
314
|
+
/** */
|
|
315
|
+
"prop:name"?: OrMwcInput["name"];
|
|
316
|
+
/** */
|
|
317
|
+
"prop:readonly"?: OrMwcInput["readonly"];
|
|
318
|
+
/** */
|
|
319
|
+
"prop:required"?: OrMwcInput["required"];
|
|
320
|
+
/** */
|
|
321
|
+
"prop:max"?: OrMwcInput["max"];
|
|
322
|
+
/** */
|
|
323
|
+
"prop:min"?: OrMwcInput["min"];
|
|
324
|
+
/** */
|
|
325
|
+
"prop:step"?: OrMwcInput["step"];
|
|
326
|
+
/** */
|
|
327
|
+
"prop:checked"?: OrMwcInput["checked"];
|
|
328
|
+
/** */
|
|
329
|
+
"prop:indeterminate"?: OrMwcInput["indeterminate"];
|
|
330
|
+
/** */
|
|
331
|
+
"prop:maxLength"?: OrMwcInput["maxLength"];
|
|
332
|
+
/** */
|
|
333
|
+
"prop:minLength"?: OrMwcInput["minLength"];
|
|
334
|
+
/** */
|
|
335
|
+
"prop:rows"?: OrMwcInput["rows"];
|
|
336
|
+
/** */
|
|
337
|
+
"prop:cols"?: OrMwcInput["cols"];
|
|
338
|
+
/** */
|
|
339
|
+
"prop:multiple"?: OrMwcInput["multiple"];
|
|
340
|
+
/** */
|
|
341
|
+
"prop:pattern"?: OrMwcInput["pattern"];
|
|
342
|
+
/** */
|
|
343
|
+
"prop:placeHolder"?: OrMwcInput["placeHolder"];
|
|
344
|
+
/** */
|
|
345
|
+
"prop:options"?: OrMwcInput["options"];
|
|
346
|
+
/** */
|
|
347
|
+
"prop:autoSelect"?: OrMwcInput["autoSelect"];
|
|
348
|
+
/** */
|
|
349
|
+
"prop:searchProvider"?: OrMwcInput["searchProvider"];
|
|
350
|
+
/** */
|
|
351
|
+
"prop:searchLabel"?: OrMwcInput["searchLabel"];
|
|
352
|
+
/** */
|
|
353
|
+
"prop:icon"?: OrMwcInput["icon"];
|
|
354
|
+
/** */
|
|
355
|
+
"prop:iconColor"?: OrMwcInput["iconColor"];
|
|
356
|
+
/** */
|
|
357
|
+
"prop:iconOn"?: OrMwcInput["iconOn"];
|
|
358
|
+
/** */
|
|
359
|
+
"prop:iconTrailing"?: OrMwcInput["iconTrailing"];
|
|
360
|
+
/** */
|
|
361
|
+
"prop:compact"?: OrMwcInput["compact"];
|
|
362
|
+
/** */
|
|
363
|
+
"prop:comfortable"?: OrMwcInput["comfortable"];
|
|
364
|
+
/** */
|
|
365
|
+
"prop:raised"?: OrMwcInput["raised"];
|
|
366
|
+
/** */
|
|
367
|
+
"prop:action"?: OrMwcInput["action"];
|
|
368
|
+
/** */
|
|
369
|
+
"prop:unElevated"?: OrMwcInput["unElevated"];
|
|
370
|
+
/** */
|
|
371
|
+
"prop:outlined"?: OrMwcInput["outlined"];
|
|
372
|
+
/** */
|
|
373
|
+
"prop:rounded"?: OrMwcInput["rounded"];
|
|
374
|
+
/** */
|
|
375
|
+
"prop:format"?: OrMwcInput["format"];
|
|
376
|
+
/** */
|
|
377
|
+
"prop:disableSliderNumberInput"?: OrMwcInput["disableSliderNumberInput"];
|
|
378
|
+
/** */
|
|
379
|
+
"prop:fullWidth"?: OrMwcInput["fullWidth"];
|
|
380
|
+
/** */
|
|
381
|
+
"prop:helperText"?: OrMwcInput["helperText"];
|
|
382
|
+
/** */
|
|
383
|
+
"prop:helperPersistent"?: OrMwcInput["helperPersistent"];
|
|
384
|
+
/** */
|
|
385
|
+
"prop:validationMessage"?: OrMwcInput["validationMessage"];
|
|
386
|
+
/** */
|
|
387
|
+
"prop:autoValidate"?: OrMwcInput["autoValidate"];
|
|
388
|
+
/** */
|
|
389
|
+
"prop:charCounter"?: OrMwcInput["charCounter"];
|
|
390
|
+
/** */
|
|
391
|
+
"prop:label"?: OrMwcInput["label"];
|
|
392
|
+
/** */
|
|
393
|
+
"prop:disabled"?: OrMwcInput["disabled"];
|
|
394
|
+
/** */
|
|
395
|
+
"prop:continuous"?: OrMwcInput["continuous"];
|
|
396
|
+
/** */
|
|
397
|
+
"prop:resizeVertical"?: OrMwcInput["resizeVertical"];
|
|
398
|
+
/** Always censure text fields (like a password), and do not allow toggling */
|
|
399
|
+
"prop:censored"?: OrMwcInput["censored"];
|
|
400
|
+
/** Toggles visibility state of the password InputType (true = shown, false = hidden) */
|
|
401
|
+
"prop:advertised"?: OrMwcInput["advertised"];
|
|
402
|
+
/** */
|
|
403
|
+
"prop:searchableValue"?: OrMwcInput["searchableValue"];
|
|
404
|
+
/** */
|
|
405
|
+
"on:newValue"?: (e: OrInputChangedEvent) => void;
|
|
235
406
|
|
|
407
|
+
/** Set the innerHTML of the element */
|
|
408
|
+
innerHTML?: string;
|
|
409
|
+
/** Set the textContent of the element */
|
|
410
|
+
textContent?: string | number;
|
|
411
|
+
};
|
|
236
412
|
|
|
237
413
|
export type OrMwcListProps = {
|
|
238
414
|
/** */
|
|
239
|
-
|
|
415
|
+
listItems?: OrMwcList["listItems"];
|
|
240
416
|
/** */
|
|
241
|
-
|
|
417
|
+
values?: OrMwcList["values"];
|
|
242
418
|
/** */
|
|
243
|
-
|
|
419
|
+
type?: OrMwcList["type"];
|
|
420
|
+
};
|
|
244
421
|
|
|
422
|
+
export type OrMwcListSolidJsProps = {
|
|
245
423
|
/** */
|
|
246
|
-
"
|
|
247
|
-
|
|
424
|
+
"prop:listItems"?: OrMwcList["listItems"];
|
|
425
|
+
/** */
|
|
426
|
+
"prop:values"?: OrMwcList["values"];
|
|
427
|
+
/** */
|
|
428
|
+
"prop:type"?: OrMwcList["type"];
|
|
248
429
|
|
|
430
|
+
/** Set the innerHTML of the element */
|
|
431
|
+
innerHTML?: string;
|
|
432
|
+
/** Set the textContent of the element */
|
|
433
|
+
textContent?: string | number;
|
|
434
|
+
};
|
|
249
435
|
|
|
250
436
|
export type OrMwcMenuProps = {
|
|
251
437
|
/** */
|
|
252
|
-
|
|
438
|
+
menuItems?: OrMwcMenu["menuItems"];
|
|
253
439
|
/** */
|
|
254
|
-
|
|
440
|
+
values?: OrMwcMenu["values"];
|
|
255
441
|
/** */
|
|
256
|
-
|
|
442
|
+
multiSelect?: OrMwcMenu["multiSelect"];
|
|
257
443
|
/** */
|
|
258
|
-
|
|
444
|
+
visible?: OrMwcMenu["visible"];
|
|
259
445
|
/** */
|
|
260
|
-
|
|
446
|
+
translateValues?: OrMwcMenu["translateValues"];
|
|
261
447
|
/** */
|
|
262
|
-
|
|
448
|
+
midHeight?: OrMwcMenu["midHeight"];
|
|
263
449
|
/** */
|
|
264
|
-
|
|
450
|
+
fullWidth?: OrMwcMenu["fullWidth"];
|
|
451
|
+
};
|
|
265
452
|
|
|
453
|
+
export type OrMwcMenuSolidJsProps = {
|
|
266
454
|
/** */
|
|
267
|
-
"
|
|
268
|
-
|
|
455
|
+
"prop:menuItems"?: OrMwcMenu["menuItems"];
|
|
456
|
+
/** */
|
|
457
|
+
"prop:values"?: OrMwcMenu["values"];
|
|
458
|
+
/** */
|
|
459
|
+
"prop:multiSelect"?: OrMwcMenu["multiSelect"];
|
|
460
|
+
/** */
|
|
461
|
+
"prop:visible"?: OrMwcMenu["visible"];
|
|
462
|
+
/** */
|
|
463
|
+
"prop:translateValues"?: OrMwcMenu["translateValues"];
|
|
464
|
+
/** */
|
|
465
|
+
"prop:midHeight"?: OrMwcMenu["midHeight"];
|
|
466
|
+
/** */
|
|
467
|
+
"prop:fullWidth"?: OrMwcMenu["fullWidth"];
|
|
269
468
|
|
|
469
|
+
/** Set the innerHTML of the element */
|
|
470
|
+
innerHTML?: string;
|
|
471
|
+
/** Set the textContent of the element */
|
|
472
|
+
textContent?: string | number;
|
|
473
|
+
};
|
|
270
474
|
|
|
271
475
|
export type OrMwcSnackbarProps = {
|
|
272
476
|
/** */
|
|
273
|
-
|
|
477
|
+
buttonText?: OrMwcSnackbar["buttonText"];
|
|
274
478
|
/** */
|
|
275
|
-
|
|
479
|
+
timeout?: OrMwcSnackbar["timeout"];
|
|
276
480
|
/** */
|
|
277
|
-
|
|
481
|
+
_open?: OrMwcSnackbar["_open"];
|
|
278
482
|
/** */
|
|
279
|
-
|
|
483
|
+
text?: OrMwcSnackbar["text"];
|
|
280
484
|
/** */
|
|
281
|
-
|
|
485
|
+
buttonAction?: OrMwcSnackbar["buttonAction"];
|
|
282
486
|
/** */
|
|
283
|
-
|
|
487
|
+
isOpen?: OrMwcSnackbar["isOpen"];
|
|
284
488
|
|
|
285
489
|
/** */
|
|
286
|
-
|
|
287
|
-
}
|
|
490
|
+
ondetail?: (e: OrMwcSnackbarChangedEvent) => void;
|
|
491
|
+
};
|
|
492
|
+
|
|
493
|
+
export type OrMwcSnackbarSolidJsProps = {
|
|
494
|
+
/** */
|
|
495
|
+
"prop:buttonText"?: OrMwcSnackbar["buttonText"];
|
|
496
|
+
/** */
|
|
497
|
+
"prop:timeout"?: OrMwcSnackbar["timeout"];
|
|
498
|
+
/** */
|
|
499
|
+
"prop:_open"?: OrMwcSnackbar["_open"];
|
|
500
|
+
/** */
|
|
501
|
+
"prop:text"?: OrMwcSnackbar["text"];
|
|
502
|
+
/** */
|
|
503
|
+
"prop:buttonAction"?: OrMwcSnackbar["buttonAction"];
|
|
504
|
+
/** */
|
|
505
|
+
"prop:isOpen"?: OrMwcSnackbar["isOpen"];
|
|
506
|
+
/** */
|
|
507
|
+
"on:detail"?: (e: OrMwcSnackbarChangedEvent) => void;
|
|
288
508
|
|
|
509
|
+
/** Set the innerHTML of the element */
|
|
510
|
+
innerHTML?: string;
|
|
511
|
+
/** Set the textContent of the element */
|
|
512
|
+
textContent?: string | number;
|
|
513
|
+
};
|
|
289
514
|
|
|
290
515
|
export type OrMwcTableProps = {
|
|
291
516
|
/** */
|
|
292
|
-
|
|
517
|
+
columns?: OrMwcTable["columns"];
|
|
293
518
|
/** */
|
|
294
|
-
|
|
519
|
+
columnsTemplate?: OrMwcTable["columnsTemplate"];
|
|
295
520
|
/** */
|
|
296
|
-
|
|
521
|
+
rows?: OrMwcTable["rows"];
|
|
297
522
|
/** */
|
|
298
|
-
|
|
523
|
+
rowsTemplate?: OrMwcTable["rowsTemplate"];
|
|
299
524
|
/** */
|
|
300
|
-
|
|
525
|
+
config?: OrMwcTable["config"];
|
|
301
526
|
/** */
|
|
302
|
-
|
|
527
|
+
paginationIndex?: OrMwcTable["paginationIndex"];
|
|
303
528
|
/** */
|
|
304
|
-
|
|
529
|
+
paginationSize?: OrMwcTable["paginationSize"];
|
|
305
530
|
/** */
|
|
306
|
-
|
|
531
|
+
sortDirection?: OrMwcTable["sortDirection"];
|
|
307
532
|
/** */
|
|
308
|
-
|
|
533
|
+
sortIndex?: OrMwcTable["sortIndex"];
|
|
309
534
|
/** */
|
|
310
|
-
|
|
535
|
+
selectedRows?: OrMwcTable["selectedRows"];
|
|
311
536
|
|
|
312
537
|
/** */
|
|
313
|
-
|
|
538
|
+
onindex?: (e: OrMwcTableRowSelectEvent) => void;
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
export type OrMwcTableSolidJsProps = {
|
|
314
542
|
/** */
|
|
315
|
-
"
|
|
316
|
-
|
|
543
|
+
"prop:columns"?: OrMwcTable["columns"];
|
|
544
|
+
/** */
|
|
545
|
+
"prop:columnsTemplate"?: OrMwcTable["columnsTemplate"];
|
|
546
|
+
/** */
|
|
547
|
+
"prop:rows"?: OrMwcTable["rows"];
|
|
548
|
+
/** */
|
|
549
|
+
"prop:rowsTemplate"?: OrMwcTable["rowsTemplate"];
|
|
550
|
+
/** */
|
|
551
|
+
"prop:config"?: OrMwcTable["config"];
|
|
552
|
+
/** */
|
|
553
|
+
"prop:paginationIndex"?: OrMwcTable["paginationIndex"];
|
|
554
|
+
/** */
|
|
555
|
+
"prop:paginationSize"?: OrMwcTable["paginationSize"];
|
|
556
|
+
/** */
|
|
557
|
+
"prop:sortDirection"?: OrMwcTable["sortDirection"];
|
|
558
|
+
/** */
|
|
559
|
+
"prop:sortIndex"?: OrMwcTable["sortIndex"];
|
|
560
|
+
/** */
|
|
561
|
+
"prop:selectedRows"?: OrMwcTable["selectedRows"];
|
|
562
|
+
/** */
|
|
563
|
+
"on:index"?: (e: OrMwcTableRowSelectEvent) => void;
|
|
317
564
|
|
|
565
|
+
/** Set the innerHTML of the element */
|
|
566
|
+
innerHTML?: string;
|
|
567
|
+
/** Set the textContent of the element */
|
|
568
|
+
textContent?: string | number;
|
|
569
|
+
};
|
|
318
570
|
|
|
319
571
|
export type OrMwcTabsProps = {
|
|
320
572
|
/** */
|
|
321
|
-
|
|
573
|
+
index?: OrMwcTabs["index"];
|
|
322
574
|
/** */
|
|
323
|
-
|
|
575
|
+
items?: OrMwcTabs["items"];
|
|
324
576
|
/** */
|
|
325
|
-
|
|
577
|
+
iconPosition?: OrMwcTabs["iconPosition"];
|
|
326
578
|
/** */
|
|
327
|
-
|
|
579
|
+
noScroll?: OrMwcTabs["noScroll"];
|
|
328
580
|
/** */
|
|
329
|
-
|
|
581
|
+
bgColor?: OrMwcTabs["bgColor"];
|
|
330
582
|
/** */
|
|
331
|
-
|
|
583
|
+
color?: OrMwcTabs["color"];
|
|
332
584
|
/** */
|
|
333
|
-
|
|
585
|
+
styles?: OrMwcTabs["styles"];
|
|
334
586
|
|
|
335
587
|
/** */
|
|
336
|
-
|
|
337
|
-
}
|
|
588
|
+
onactivated?: (e: CustomEvent) => void;
|
|
589
|
+
};
|
|
338
590
|
|
|
339
|
-
|
|
591
|
+
export type OrMwcTabsSolidJsProps = {
|
|
592
|
+
/** */
|
|
593
|
+
"prop:index"?: OrMwcTabs["index"];
|
|
594
|
+
/** */
|
|
595
|
+
"prop:items"?: OrMwcTabs["items"];
|
|
596
|
+
/** */
|
|
597
|
+
"prop:iconPosition"?: OrMwcTabs["iconPosition"];
|
|
598
|
+
/** */
|
|
599
|
+
"prop:noScroll"?: OrMwcTabs["noScroll"];
|
|
600
|
+
/** */
|
|
601
|
+
"prop:bgColor"?: OrMwcTabs["bgColor"];
|
|
602
|
+
/** */
|
|
603
|
+
"prop:color"?: OrMwcTabs["color"];
|
|
604
|
+
/** */
|
|
605
|
+
"prop:styles"?: OrMwcTabs["styles"];
|
|
606
|
+
/** */
|
|
607
|
+
"on:activated"?: (e: CustomEvent) => void;
|
|
340
608
|
|
|
609
|
+
/** Set the innerHTML of the element */
|
|
610
|
+
innerHTML?: string;
|
|
611
|
+
/** Set the textContent of the element */
|
|
612
|
+
textContent?: string | number;
|
|
613
|
+
};
|
|
341
614
|
|
|
615
|
+
export type CustomElements = {
|
|
342
616
|
/**
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
617
|
+
*
|
|
618
|
+
*
|
|
619
|
+
* ## Attributes & Properties
|
|
620
|
+
*
|
|
621
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
622
|
+
*
|
|
623
|
+
* - `heading`: undefined
|
|
624
|
+
* - `avatar`: undefined
|
|
625
|
+
* - `styles`: undefined
|
|
626
|
+
* - `content`: undefined (property only)
|
|
627
|
+
* - `actions`: undefined (property only)
|
|
628
|
+
* - `dismissAction`: undefined (property only)
|
|
629
|
+
* - `isOpen`: undefined (property only) (readonly)
|
|
630
|
+
*
|
|
631
|
+
* ## Events
|
|
632
|
+
*
|
|
633
|
+
* Events that will be emitted by the component.
|
|
634
|
+
*
|
|
635
|
+
* - `undefined`: undefined
|
|
636
|
+
* - `action`: undefined
|
|
637
|
+
*
|
|
638
|
+
* ## Methods
|
|
639
|
+
*
|
|
640
|
+
* Methods that can be called to access component functionality.
|
|
641
|
+
*
|
|
642
|
+
* - `setOpen(isOpen: boolean) => OrMwcDialog`: undefined
|
|
643
|
+
* - `setHeading(heading: TemplateResult | string | undefined) => OrMwcDialog`: undefined
|
|
644
|
+
* - `setContent(content: TemplateResult | (() => TemplateResult) | undefined) => OrMwcDialog`: undefined
|
|
645
|
+
* - `setActions(actions: DialogAction[] | undefined) => OrMwcDialog`: undefined
|
|
646
|
+
* - `setDismissAction(action: DialogActionBase | null | undefined) => OrMwcDialog`: undefined
|
|
647
|
+
* - `setStyles(styles: string | TemplateResult | undefined) => OrMwcDialog`: undefined
|
|
648
|
+
* - `setAvatar(avatar: boolean | undefined) => OrMwcDialog`: undefined
|
|
649
|
+
* - `open() => void`: undefined
|
|
650
|
+
* - `close(action?: string) => void`: undefined
|
|
651
|
+
*/
|
|
652
|
+
"or-mwc-dialog": Partial<
|
|
653
|
+
OrMwcDialogProps & BaseProps<OrMwcDialog> & BaseEvents
|
|
654
|
+
>;
|
|
380
655
|
|
|
381
656
|
/**
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
657
|
+
*
|
|
658
|
+
*
|
|
659
|
+
* ## Attributes & Properties
|
|
660
|
+
*
|
|
661
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
662
|
+
*
|
|
663
|
+
* - `dismissible`: undefined
|
|
664
|
+
* - `rightSided`: undefined
|
|
665
|
+
* - `transparent`: undefined
|
|
666
|
+
* - `open`: undefined
|
|
667
|
+
* - `header`: undefined (property only)
|
|
668
|
+
* - `appContent`: undefined (property only)
|
|
669
|
+
* - `topBar`: undefined (property only)
|
|
670
|
+
*
|
|
671
|
+
* ## Events
|
|
672
|
+
*
|
|
673
|
+
* Events that will be emitted by the component.
|
|
674
|
+
*
|
|
675
|
+
* - `value`: undefined
|
|
676
|
+
*
|
|
677
|
+
* ## Methods
|
|
678
|
+
*
|
|
679
|
+
* Methods that can be called to access component functionality.
|
|
680
|
+
*
|
|
681
|
+
* - `toggle() => void`: undefined
|
|
682
|
+
*/
|
|
683
|
+
"or-mwc-drawer": Partial<
|
|
684
|
+
OrMwcDrawerProps & BaseProps<OrMwcDrawer> & BaseEvents
|
|
685
|
+
>;
|
|
409
686
|
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
*
|
|
690
|
+
* ## Attributes & Properties
|
|
691
|
+
*
|
|
692
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
693
|
+
*
|
|
694
|
+
* - `focused`: undefined
|
|
695
|
+
* - `value`: undefined
|
|
696
|
+
* - `type`: undefined
|
|
697
|
+
* - `name`: undefined
|
|
698
|
+
* - `readonly`: undefined
|
|
699
|
+
* - `required`: undefined
|
|
700
|
+
* - `max`: undefined
|
|
701
|
+
* - `min`: undefined
|
|
702
|
+
* - `step`: undefined
|
|
703
|
+
* - `checked`: undefined
|
|
704
|
+
* - `indeterminate`: undefined
|
|
705
|
+
* - `maxLength`: undefined
|
|
706
|
+
* - `minLength`: undefined
|
|
707
|
+
* - `rows`: undefined
|
|
708
|
+
* - `cols`: undefined
|
|
709
|
+
* - `multiple`: undefined
|
|
710
|
+
* - `pattern`: undefined
|
|
711
|
+
* - `placeHolder`: undefined
|
|
712
|
+
* - `options`: undefined
|
|
713
|
+
* - `autoSelect`: undefined
|
|
714
|
+
* - `searchProvider`: undefined
|
|
715
|
+
* - `searchLabel`: undefined
|
|
716
|
+
* - `icon`: undefined
|
|
717
|
+
* - `iconColor`: undefined
|
|
718
|
+
* - `iconOn`: undefined
|
|
719
|
+
* - `iconTrailing`: undefined
|
|
720
|
+
* - `compact`: undefined
|
|
721
|
+
* - `comfortable`: undefined
|
|
722
|
+
* - `raised`: undefined
|
|
723
|
+
* - `action`: undefined
|
|
724
|
+
* - `unElevated`: undefined
|
|
725
|
+
* - `outlined`: undefined
|
|
726
|
+
* - `rounded`: undefined
|
|
727
|
+
* - `format`: undefined
|
|
728
|
+
* - `disableSliderNumberInput`: undefined
|
|
729
|
+
* - `fullWidth`: undefined
|
|
730
|
+
* - `helperText`: undefined
|
|
731
|
+
* - `helperPersistent`: undefined
|
|
732
|
+
* - `validationMessage`: undefined
|
|
733
|
+
* - `autoValidate`: undefined
|
|
734
|
+
* - `charCounter`: undefined
|
|
735
|
+
* - `label`: undefined
|
|
736
|
+
* - `disabled`: undefined
|
|
737
|
+
* - `continuous`: undefined
|
|
738
|
+
* - `resizeVertical`: undefined
|
|
739
|
+
* - `censored`: Always censure text fields (like a password), and do not allow toggling
|
|
740
|
+
* - `advertised`: Toggles visibility state of the password InputType (true = shown, false = hidden)
|
|
741
|
+
* - `nativeValue`: undefined (property only) (readonly)
|
|
742
|
+
* - `searchableValue`: undefined (property only)
|
|
743
|
+
* - `valid`: undefined (property only) (readonly)
|
|
744
|
+
* - `currentValue`: undefined (property only) (readonly)
|
|
745
|
+
*
|
|
746
|
+
* ## Events
|
|
747
|
+
*
|
|
748
|
+
* Events that will be emitted by the component.
|
|
749
|
+
*
|
|
750
|
+
* - `undefined`: undefined
|
|
751
|
+
* - `newValue`: undefined
|
|
752
|
+
*
|
|
753
|
+
* ## Methods
|
|
754
|
+
*
|
|
755
|
+
* Methods that can be called to access component functionality.
|
|
756
|
+
*
|
|
757
|
+
* - `focus() => void`: undefined
|
|
758
|
+
* - `setCustomValidity(msg: string | undefined) => void`: undefined
|
|
759
|
+
* - `checkValidity() => boolean`: undefined
|
|
760
|
+
* - `reportValidity() => boolean`: undefined
|
|
761
|
+
*/
|
|
762
|
+
"or-mwc-input": Partial<OrMwcInputProps & BaseProps<OrMwcInput> & BaseEvents>;
|
|
410
763
|
|
|
411
764
|
/**
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
* - `options`: undefined
|
|
437
|
-
* - `autoSelect`: undefined
|
|
438
|
-
* - `searchProvider`: undefined
|
|
439
|
-
* - `searchLabel`: undefined
|
|
440
|
-
* - `icon`: undefined
|
|
441
|
-
* - `iconColor`: undefined
|
|
442
|
-
* - `iconOn`: undefined
|
|
443
|
-
* - `iconTrailing`: undefined
|
|
444
|
-
* - `compact`: undefined
|
|
445
|
-
* - `comfortable`: undefined
|
|
446
|
-
* - `raised`: undefined
|
|
447
|
-
* - `action`: undefined
|
|
448
|
-
* - `unElevated`: undefined
|
|
449
|
-
* - `outlined`: undefined
|
|
450
|
-
* - `rounded`: undefined
|
|
451
|
-
* - `format`: undefined
|
|
452
|
-
* - `disableSliderNumberInput`: undefined
|
|
453
|
-
* - `fullWidth`: undefined
|
|
454
|
-
* - `helperText`: undefined
|
|
455
|
-
* - `helperPersistent`: undefined
|
|
456
|
-
* - `validationMessage`: undefined
|
|
457
|
-
* - `autoValidate`: undefined
|
|
458
|
-
* - `charCounter`: undefined
|
|
459
|
-
* - `label`: undefined
|
|
460
|
-
* - `disabled`: undefined
|
|
461
|
-
* - `continuous`: undefined
|
|
462
|
-
* - `resizeVertical`: undefined
|
|
463
|
-
* - `censored`: Always censure text fields (like a password), and do not allow toggling
|
|
464
|
-
* - `advertised`: Toggles visibility state of the password InputType (true = shown, false = hidden)
|
|
465
|
-
* - `nativeValue`: undefined (property only) (readonly)
|
|
466
|
-
* - `searchableValue`: undefined (property only)
|
|
467
|
-
* - `valid`: undefined (property only) (readonly)
|
|
468
|
-
* - `currentValue`: undefined (property only) (readonly)
|
|
469
|
-
*
|
|
470
|
-
* ## Events
|
|
471
|
-
*
|
|
472
|
-
* Events that will be emitted by the component.
|
|
473
|
-
*
|
|
474
|
-
* - `undefined`: undefined
|
|
475
|
-
* - `newValue`: undefined
|
|
476
|
-
*
|
|
477
|
-
* ## Methods
|
|
478
|
-
*
|
|
479
|
-
* Methods that can be called to access component functionality.
|
|
480
|
-
*
|
|
481
|
-
* - `focus() => void`: undefined
|
|
482
|
-
* - `setCustomValidity(msg: string | undefined) => void`: undefined
|
|
483
|
-
* - `checkValidity() => boolean`: undefined
|
|
484
|
-
* - `reportValidity() => boolean`: undefined
|
|
485
|
-
*/
|
|
486
|
-
"or-mwc-input": Partial<OrMwcInputProps & BaseProps<OrMwcInput> & BaseEvents>;
|
|
765
|
+
*
|
|
766
|
+
*
|
|
767
|
+
* ## Attributes & Properties
|
|
768
|
+
*
|
|
769
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
770
|
+
*
|
|
771
|
+
* - `listItems`: undefined
|
|
772
|
+
* - `values`: undefined
|
|
773
|
+
* - `type`: undefined
|
|
774
|
+
* - `selectedItems`: undefined (property only) (readonly)
|
|
775
|
+
*
|
|
776
|
+
* ## Events
|
|
777
|
+
*
|
|
778
|
+
* Events that will be emitted by the component.
|
|
779
|
+
*
|
|
780
|
+
* - `undefined`: undefined
|
|
781
|
+
*
|
|
782
|
+
* ## Methods
|
|
783
|
+
*
|
|
784
|
+
* Methods that can be called to access component functionality.
|
|
785
|
+
*
|
|
786
|
+
* - `setSelectedItems(items: ListItem | ListItem[] | string | string[] | undefined) => void`: undefined
|
|
787
|
+
*/
|
|
788
|
+
"or-mwc-list": Partial<OrMwcListProps & BaseProps<OrMwcList> & BaseEvents>;
|
|
487
789
|
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
*
|
|
793
|
+
* ## Attributes & Properties
|
|
794
|
+
*
|
|
795
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
796
|
+
*
|
|
797
|
+
* - `menuItems`: undefined
|
|
798
|
+
* - `values`: undefined
|
|
799
|
+
* - `multiSelect`: undefined
|
|
800
|
+
* - `visible`: undefined
|
|
801
|
+
* - `translateValues`: undefined
|
|
802
|
+
* - `midHeight`: undefined (property only)
|
|
803
|
+
* - `fullWidth`: undefined (property only)
|
|
804
|
+
*
|
|
805
|
+
* ## Events
|
|
806
|
+
*
|
|
807
|
+
* Events that will be emitted by the component.
|
|
808
|
+
*
|
|
809
|
+
* - `undefined`: undefined
|
|
810
|
+
*
|
|
811
|
+
* ## Methods
|
|
812
|
+
*
|
|
813
|
+
* Methods that can be called to access component functionality.
|
|
814
|
+
*
|
|
815
|
+
* - `open() => void`: undefined
|
|
816
|
+
*/
|
|
817
|
+
"or-mwc-menu": Partial<OrMwcMenuProps & BaseProps<OrMwcMenu> & BaseEvents>;
|
|
488
818
|
|
|
489
819
|
/**
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
820
|
+
*
|
|
821
|
+
*
|
|
822
|
+
* ## Attributes & Properties
|
|
823
|
+
*
|
|
824
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
825
|
+
*
|
|
826
|
+
* - `buttonText`: undefined
|
|
827
|
+
* - `timeout`: undefined
|
|
828
|
+
* - `_open`: undefined
|
|
829
|
+
* - `text`: undefined (property only)
|
|
830
|
+
* - `buttonAction`: undefined (property only)
|
|
831
|
+
* - `isOpen`: undefined (property only)
|
|
832
|
+
*
|
|
833
|
+
* ## Events
|
|
834
|
+
*
|
|
835
|
+
* Events that will be emitted by the component.
|
|
836
|
+
*
|
|
837
|
+
* - `detail`: undefined
|
|
838
|
+
*
|
|
839
|
+
* ## Methods
|
|
840
|
+
*
|
|
841
|
+
* Methods that can be called to access component functionality.
|
|
842
|
+
*
|
|
843
|
+
* - `open() => void`: undefined
|
|
844
|
+
* - `close(action?: string) => void`: undefined
|
|
845
|
+
*/
|
|
846
|
+
"or-mwc-snackbar": Partial<
|
|
847
|
+
OrMwcSnackbarProps & BaseProps<OrMwcSnackbar> & BaseEvents
|
|
848
|
+
>;
|
|
514
849
|
|
|
850
|
+
/**
|
|
851
|
+
*
|
|
852
|
+
*
|
|
853
|
+
* ## Attributes & Properties
|
|
854
|
+
*
|
|
855
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
856
|
+
*
|
|
857
|
+
* - `columns`: undefined
|
|
858
|
+
* - `columnsTemplate`: undefined
|
|
859
|
+
* - `rows`: undefined
|
|
860
|
+
* - `rowsTemplate`: undefined
|
|
861
|
+
* - `config`: undefined
|
|
862
|
+
* - `paginationIndex`: undefined
|
|
863
|
+
* - `paginationSize`: undefined
|
|
864
|
+
* - `sortDirection`: undefined
|
|
865
|
+
* - `sortIndex`: undefined
|
|
866
|
+
* - `selectedRows`: undefined
|
|
867
|
+
*
|
|
868
|
+
* ## Events
|
|
869
|
+
*
|
|
870
|
+
* Events that will be emitted by the component.
|
|
871
|
+
*
|
|
872
|
+
* - `undefined`: undefined
|
|
873
|
+
* - `index`: undefined
|
|
874
|
+
*
|
|
875
|
+
* ## Methods
|
|
876
|
+
*
|
|
877
|
+
* Methods that can be called to access component functionality.
|
|
878
|
+
*
|
|
879
|
+
* - `onColumnSort(ev: MouseEvent, index: number, sortDirection: 'ASC' | 'DESC') => void`: Event handling function for when users try to sort the rows within a column.
|
|
880
|
+
* - `getSortHeader(index: number, title: string, sortDirection: 'ASC' | 'DESC', arrowOnLeft = false) => Promise<TemplateResult>`: undefined
|
|
881
|
+
* - `getPaginationControls() => Promise<TemplateResult>`: undefined
|
|
882
|
+
* - `getRowCount(wait: boolean = true, tableElem?: HTMLElement) => Promise<number>`: undefined
|
|
883
|
+
* - `getTableElem(wait: boolean = false) => Promise<HTMLElement | undefined>`: undefined
|
|
884
|
+
*/
|
|
885
|
+
"or-mwc-table": Partial<OrMwcTableProps & BaseProps<OrMwcTable> & BaseEvents>;
|
|
515
886
|
|
|
516
887
|
/**
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
* Methods that can be called to access component functionality.
|
|
540
|
-
*
|
|
541
|
-
* - `open() => void`: undefined
|
|
542
|
-
*/
|
|
543
|
-
"or-mwc-menu": Partial<OrMwcMenuProps & BaseProps<OrMwcMenu> & BaseEvents>;
|
|
888
|
+
*
|
|
889
|
+
*
|
|
890
|
+
* ## Attributes & Properties
|
|
891
|
+
*
|
|
892
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
893
|
+
*
|
|
894
|
+
* - `index`: undefined
|
|
895
|
+
* - `items`: undefined
|
|
896
|
+
* - `iconPosition`: undefined
|
|
897
|
+
* - `noScroll`: undefined
|
|
898
|
+
* - `bgColor`: undefined
|
|
899
|
+
* - `color`: undefined
|
|
900
|
+
* - `styles`: undefined
|
|
901
|
+
*
|
|
902
|
+
* ## Events
|
|
903
|
+
*
|
|
904
|
+
* Events that will be emitted by the component.
|
|
905
|
+
*
|
|
906
|
+
* - `activated`: undefined
|
|
907
|
+
*/
|
|
908
|
+
"or-mwc-tabs": Partial<OrMwcTabsProps & BaseProps<OrMwcTabs> & BaseEvents>;
|
|
909
|
+
};
|
|
544
910
|
|
|
911
|
+
export type CustomElementsSolidJs = {
|
|
912
|
+
/**
|
|
913
|
+
*
|
|
914
|
+
*
|
|
915
|
+
* ## Attributes & Properties
|
|
916
|
+
*
|
|
917
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
918
|
+
*
|
|
919
|
+
* - `heading`: undefined
|
|
920
|
+
* - `avatar`: undefined
|
|
921
|
+
* - `styles`: undefined
|
|
922
|
+
* - `content`: undefined (property only)
|
|
923
|
+
* - `actions`: undefined (property only)
|
|
924
|
+
* - `dismissAction`: undefined (property only)
|
|
925
|
+
* - `isOpen`: undefined (property only) (readonly)
|
|
926
|
+
*
|
|
927
|
+
* ## Events
|
|
928
|
+
*
|
|
929
|
+
* Events that will be emitted by the component.
|
|
930
|
+
*
|
|
931
|
+
* - `undefined`: undefined
|
|
932
|
+
* - `action`: undefined
|
|
933
|
+
*
|
|
934
|
+
* ## Methods
|
|
935
|
+
*
|
|
936
|
+
* Methods that can be called to access component functionality.
|
|
937
|
+
*
|
|
938
|
+
* - `setOpen(isOpen: boolean) => OrMwcDialog`: undefined
|
|
939
|
+
* - `setHeading(heading: TemplateResult | string | undefined) => OrMwcDialog`: undefined
|
|
940
|
+
* - `setContent(content: TemplateResult | (() => TemplateResult) | undefined) => OrMwcDialog`: undefined
|
|
941
|
+
* - `setActions(actions: DialogAction[] | undefined) => OrMwcDialog`: undefined
|
|
942
|
+
* - `setDismissAction(action: DialogActionBase | null | undefined) => OrMwcDialog`: undefined
|
|
943
|
+
* - `setStyles(styles: string | TemplateResult | undefined) => OrMwcDialog`: undefined
|
|
944
|
+
* - `setAvatar(avatar: boolean | undefined) => OrMwcDialog`: undefined
|
|
945
|
+
* - `open() => void`: undefined
|
|
946
|
+
* - `close(action?: string) => void`: undefined
|
|
947
|
+
*/
|
|
948
|
+
"or-mwc-dialog": Partial<
|
|
949
|
+
OrMwcDialogProps &
|
|
950
|
+
OrMwcDialogSolidJsProps &
|
|
951
|
+
BaseProps<OrMwcDialog> &
|
|
952
|
+
BaseEvents
|
|
953
|
+
>;
|
|
545
954
|
|
|
546
955
|
/**
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
956
|
+
*
|
|
957
|
+
*
|
|
958
|
+
* ## Attributes & Properties
|
|
959
|
+
*
|
|
960
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
961
|
+
*
|
|
962
|
+
* - `dismissible`: undefined
|
|
963
|
+
* - `rightSided`: undefined
|
|
964
|
+
* - `transparent`: undefined
|
|
965
|
+
* - `open`: undefined
|
|
966
|
+
* - `header`: undefined (property only)
|
|
967
|
+
* - `appContent`: undefined (property only)
|
|
968
|
+
* - `topBar`: undefined (property only)
|
|
969
|
+
*
|
|
970
|
+
* ## Events
|
|
971
|
+
*
|
|
972
|
+
* Events that will be emitted by the component.
|
|
973
|
+
*
|
|
974
|
+
* - `value`: undefined
|
|
975
|
+
*
|
|
976
|
+
* ## Methods
|
|
977
|
+
*
|
|
978
|
+
* Methods that can be called to access component functionality.
|
|
979
|
+
*
|
|
980
|
+
* - `toggle() => void`: undefined
|
|
981
|
+
*/
|
|
982
|
+
"or-mwc-drawer": Partial<
|
|
983
|
+
OrMwcDrawerProps &
|
|
984
|
+
OrMwcDrawerSolidJsProps &
|
|
985
|
+
BaseProps<OrMwcDrawer> &
|
|
986
|
+
BaseEvents
|
|
987
|
+
>;
|
|
574
988
|
|
|
989
|
+
/**
|
|
990
|
+
*
|
|
991
|
+
*
|
|
992
|
+
* ## Attributes & Properties
|
|
993
|
+
*
|
|
994
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
995
|
+
*
|
|
996
|
+
* - `focused`: undefined
|
|
997
|
+
* - `value`: undefined
|
|
998
|
+
* - `type`: undefined
|
|
999
|
+
* - `name`: undefined
|
|
1000
|
+
* - `readonly`: undefined
|
|
1001
|
+
* - `required`: undefined
|
|
1002
|
+
* - `max`: undefined
|
|
1003
|
+
* - `min`: undefined
|
|
1004
|
+
* - `step`: undefined
|
|
1005
|
+
* - `checked`: undefined
|
|
1006
|
+
* - `indeterminate`: undefined
|
|
1007
|
+
* - `maxLength`: undefined
|
|
1008
|
+
* - `minLength`: undefined
|
|
1009
|
+
* - `rows`: undefined
|
|
1010
|
+
* - `cols`: undefined
|
|
1011
|
+
* - `multiple`: undefined
|
|
1012
|
+
* - `pattern`: undefined
|
|
1013
|
+
* - `placeHolder`: undefined
|
|
1014
|
+
* - `options`: undefined
|
|
1015
|
+
* - `autoSelect`: undefined
|
|
1016
|
+
* - `searchProvider`: undefined
|
|
1017
|
+
* - `searchLabel`: undefined
|
|
1018
|
+
* - `icon`: undefined
|
|
1019
|
+
* - `iconColor`: undefined
|
|
1020
|
+
* - `iconOn`: undefined
|
|
1021
|
+
* - `iconTrailing`: undefined
|
|
1022
|
+
* - `compact`: undefined
|
|
1023
|
+
* - `comfortable`: undefined
|
|
1024
|
+
* - `raised`: undefined
|
|
1025
|
+
* - `action`: undefined
|
|
1026
|
+
* - `unElevated`: undefined
|
|
1027
|
+
* - `outlined`: undefined
|
|
1028
|
+
* - `rounded`: undefined
|
|
1029
|
+
* - `format`: undefined
|
|
1030
|
+
* - `disableSliderNumberInput`: undefined
|
|
1031
|
+
* - `fullWidth`: undefined
|
|
1032
|
+
* - `helperText`: undefined
|
|
1033
|
+
* - `helperPersistent`: undefined
|
|
1034
|
+
* - `validationMessage`: undefined
|
|
1035
|
+
* - `autoValidate`: undefined
|
|
1036
|
+
* - `charCounter`: undefined
|
|
1037
|
+
* - `label`: undefined
|
|
1038
|
+
* - `disabled`: undefined
|
|
1039
|
+
* - `continuous`: undefined
|
|
1040
|
+
* - `resizeVertical`: undefined
|
|
1041
|
+
* - `censored`: Always censure text fields (like a password), and do not allow toggling
|
|
1042
|
+
* - `advertised`: Toggles visibility state of the password InputType (true = shown, false = hidden)
|
|
1043
|
+
* - `nativeValue`: undefined (property only) (readonly)
|
|
1044
|
+
* - `searchableValue`: undefined (property only)
|
|
1045
|
+
* - `valid`: undefined (property only) (readonly)
|
|
1046
|
+
* - `currentValue`: undefined (property only) (readonly)
|
|
1047
|
+
*
|
|
1048
|
+
* ## Events
|
|
1049
|
+
*
|
|
1050
|
+
* Events that will be emitted by the component.
|
|
1051
|
+
*
|
|
1052
|
+
* - `undefined`: undefined
|
|
1053
|
+
* - `newValue`: undefined
|
|
1054
|
+
*
|
|
1055
|
+
* ## Methods
|
|
1056
|
+
*
|
|
1057
|
+
* Methods that can be called to access component functionality.
|
|
1058
|
+
*
|
|
1059
|
+
* - `focus() => void`: undefined
|
|
1060
|
+
* - `setCustomValidity(msg: string | undefined) => void`: undefined
|
|
1061
|
+
* - `checkValidity() => boolean`: undefined
|
|
1062
|
+
* - `reportValidity() => boolean`: undefined
|
|
1063
|
+
*/
|
|
1064
|
+
"or-mwc-input": Partial<
|
|
1065
|
+
OrMwcInputProps &
|
|
1066
|
+
OrMwcInputSolidJsProps &
|
|
1067
|
+
BaseProps<OrMwcInput> &
|
|
1068
|
+
BaseEvents
|
|
1069
|
+
>;
|
|
575
1070
|
|
|
576
1071
|
/**
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
* Methods that can be called to access component functionality.
|
|
604
|
-
*
|
|
605
|
-
* - `onColumnSort(ev: MouseEvent, index: number, sortDirection: 'ASC' | 'DESC') => void`: Event handling function for when users try to sort the rows within a column.
|
|
606
|
-
* - `getSortHeader(index: number, title: string, sortDirection: 'ASC' | 'DESC', arrowOnLeft = false) => Promise<TemplateResult>`: undefined
|
|
607
|
-
* - `getPaginationControls() => Promise<TemplateResult>`: undefined
|
|
608
|
-
* - `getRowCount(wait: boolean = true, tableElem?: HTMLElement) => Promise<number>`: undefined
|
|
609
|
-
* - `getTableElem(wait: boolean = false) => Promise<HTMLElement | undefined>`: undefined
|
|
610
|
-
*/
|
|
611
|
-
"or-mwc-table": Partial<OrMwcTableProps & BaseProps<OrMwcTable> & BaseEvents>;
|
|
1072
|
+
*
|
|
1073
|
+
*
|
|
1074
|
+
* ## Attributes & Properties
|
|
1075
|
+
*
|
|
1076
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
1077
|
+
*
|
|
1078
|
+
* - `listItems`: undefined
|
|
1079
|
+
* - `values`: undefined
|
|
1080
|
+
* - `type`: undefined
|
|
1081
|
+
* - `selectedItems`: undefined (property only) (readonly)
|
|
1082
|
+
*
|
|
1083
|
+
* ## Events
|
|
1084
|
+
*
|
|
1085
|
+
* Events that will be emitted by the component.
|
|
1086
|
+
*
|
|
1087
|
+
* - `undefined`: undefined
|
|
1088
|
+
*
|
|
1089
|
+
* ## Methods
|
|
1090
|
+
*
|
|
1091
|
+
* Methods that can be called to access component functionality.
|
|
1092
|
+
*
|
|
1093
|
+
* - `setSelectedItems(items: ListItem | ListItem[] | string | string[] | undefined) => void`: undefined
|
|
1094
|
+
*/
|
|
1095
|
+
"or-mwc-list": Partial<
|
|
1096
|
+
OrMwcListProps & OrMwcListSolidJsProps & BaseProps<OrMwcList> & BaseEvents
|
|
1097
|
+
>;
|
|
612
1098
|
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
*
|
|
1102
|
+
* ## Attributes & Properties
|
|
1103
|
+
*
|
|
1104
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
1105
|
+
*
|
|
1106
|
+
* - `menuItems`: undefined
|
|
1107
|
+
* - `values`: undefined
|
|
1108
|
+
* - `multiSelect`: undefined
|
|
1109
|
+
* - `visible`: undefined
|
|
1110
|
+
* - `translateValues`: undefined
|
|
1111
|
+
* - `midHeight`: undefined (property only)
|
|
1112
|
+
* - `fullWidth`: undefined (property only)
|
|
1113
|
+
*
|
|
1114
|
+
* ## Events
|
|
1115
|
+
*
|
|
1116
|
+
* Events that will be emitted by the component.
|
|
1117
|
+
*
|
|
1118
|
+
* - `undefined`: undefined
|
|
1119
|
+
*
|
|
1120
|
+
* ## Methods
|
|
1121
|
+
*
|
|
1122
|
+
* Methods that can be called to access component functionality.
|
|
1123
|
+
*
|
|
1124
|
+
* - `open() => void`: undefined
|
|
1125
|
+
*/
|
|
1126
|
+
"or-mwc-menu": Partial<
|
|
1127
|
+
OrMwcMenuProps & OrMwcMenuSolidJsProps & BaseProps<OrMwcMenu> & BaseEvents
|
|
1128
|
+
>;
|
|
613
1129
|
|
|
614
1130
|
/**
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
1131
|
+
*
|
|
1132
|
+
*
|
|
1133
|
+
* ## Attributes & Properties
|
|
1134
|
+
*
|
|
1135
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
1136
|
+
*
|
|
1137
|
+
* - `buttonText`: undefined
|
|
1138
|
+
* - `timeout`: undefined
|
|
1139
|
+
* - `_open`: undefined
|
|
1140
|
+
* - `text`: undefined (property only)
|
|
1141
|
+
* - `buttonAction`: undefined (property only)
|
|
1142
|
+
* - `isOpen`: undefined (property only)
|
|
1143
|
+
*
|
|
1144
|
+
* ## Events
|
|
1145
|
+
*
|
|
1146
|
+
* Events that will be emitted by the component.
|
|
1147
|
+
*
|
|
1148
|
+
* - `detail`: undefined
|
|
1149
|
+
*
|
|
1150
|
+
* ## Methods
|
|
1151
|
+
*
|
|
1152
|
+
* Methods that can be called to access component functionality.
|
|
1153
|
+
*
|
|
1154
|
+
* - `open() => void`: undefined
|
|
1155
|
+
* - `close(action?: string) => void`: undefined
|
|
1156
|
+
*/
|
|
1157
|
+
"or-mwc-snackbar": Partial<
|
|
1158
|
+
OrMwcSnackbarProps &
|
|
1159
|
+
OrMwcSnackbarSolidJsProps &
|
|
1160
|
+
BaseProps<OrMwcSnackbar> &
|
|
1161
|
+
BaseEvents
|
|
1162
|
+
>;
|
|
637
1163
|
|
|
638
|
-
|
|
1164
|
+
/**
|
|
1165
|
+
*
|
|
1166
|
+
*
|
|
1167
|
+
* ## Attributes & Properties
|
|
1168
|
+
*
|
|
1169
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
1170
|
+
*
|
|
1171
|
+
* - `columns`: undefined
|
|
1172
|
+
* - `columnsTemplate`: undefined
|
|
1173
|
+
* - `rows`: undefined
|
|
1174
|
+
* - `rowsTemplate`: undefined
|
|
1175
|
+
* - `config`: undefined
|
|
1176
|
+
* - `paginationIndex`: undefined
|
|
1177
|
+
* - `paginationSize`: undefined
|
|
1178
|
+
* - `sortDirection`: undefined
|
|
1179
|
+
* - `sortIndex`: undefined
|
|
1180
|
+
* - `selectedRows`: undefined
|
|
1181
|
+
*
|
|
1182
|
+
* ## Events
|
|
1183
|
+
*
|
|
1184
|
+
* Events that will be emitted by the component.
|
|
1185
|
+
*
|
|
1186
|
+
* - `undefined`: undefined
|
|
1187
|
+
* - `index`: undefined
|
|
1188
|
+
*
|
|
1189
|
+
* ## Methods
|
|
1190
|
+
*
|
|
1191
|
+
* Methods that can be called to access component functionality.
|
|
1192
|
+
*
|
|
1193
|
+
* - `onColumnSort(ev: MouseEvent, index: number, sortDirection: 'ASC' | 'DESC') => void`: Event handling function for when users try to sort the rows within a column.
|
|
1194
|
+
* - `getSortHeader(index: number, title: string, sortDirection: 'ASC' | 'DESC', arrowOnLeft = false) => Promise<TemplateResult>`: undefined
|
|
1195
|
+
* - `getPaginationControls() => Promise<TemplateResult>`: undefined
|
|
1196
|
+
* - `getRowCount(wait: boolean = true, tableElem?: HTMLElement) => Promise<number>`: undefined
|
|
1197
|
+
* - `getTableElem(wait: boolean = false) => Promise<HTMLElement | undefined>`: undefined
|
|
1198
|
+
*/
|
|
1199
|
+
"or-mwc-table": Partial<
|
|
1200
|
+
OrMwcTableProps &
|
|
1201
|
+
OrMwcTableSolidJsProps &
|
|
1202
|
+
BaseProps<OrMwcTable> &
|
|
1203
|
+
BaseEvents
|
|
1204
|
+
>;
|
|
639
1205
|
|
|
640
|
-
|
|
1206
|
+
/**
|
|
1207
|
+
*
|
|
1208
|
+
*
|
|
1209
|
+
* ## Attributes & Properties
|
|
1210
|
+
*
|
|
1211
|
+
* Component attributes and properties that can be applied to the element or by using JavaScript.
|
|
1212
|
+
*
|
|
1213
|
+
* - `index`: undefined
|
|
1214
|
+
* - `items`: undefined
|
|
1215
|
+
* - `iconPosition`: undefined
|
|
1216
|
+
* - `noScroll`: undefined
|
|
1217
|
+
* - `bgColor`: undefined
|
|
1218
|
+
* - `color`: undefined
|
|
1219
|
+
* - `styles`: undefined
|
|
1220
|
+
*
|
|
1221
|
+
* ## Events
|
|
1222
|
+
*
|
|
1223
|
+
* Events that will be emitted by the component.
|
|
1224
|
+
*
|
|
1225
|
+
* - `activated`: undefined
|
|
1226
|
+
*/
|
|
1227
|
+
"or-mwc-tabs": Partial<
|
|
1228
|
+
OrMwcTabsProps & OrMwcTabsSolidJsProps & BaseProps<OrMwcTabs> & BaseEvents
|
|
1229
|
+
>;
|
|
1230
|
+
};
|
|
641
1231
|
|
|
1232
|
+
export type CustomCssProperties = {};
|
|
642
1233
|
|
|
643
|
-
declare module
|
|
1234
|
+
declare module "react" {
|
|
644
1235
|
namespace JSX {
|
|
645
1236
|
interface IntrinsicElements extends CustomElements {}
|
|
646
1237
|
}
|
|
647
1238
|
export interface CSSProperties extends CustomCssProperties {}
|
|
648
1239
|
}
|
|
649
1240
|
|
|
650
|
-
declare module
|
|
1241
|
+
declare module "preact" {
|
|
651
1242
|
namespace JSX {
|
|
652
1243
|
interface IntrinsicElements extends CustomElements {}
|
|
653
1244
|
}
|
|
654
1245
|
export interface CSSProperties extends CustomCssProperties {}
|
|
655
1246
|
}
|
|
656
1247
|
|
|
657
|
-
declare module
|
|
1248
|
+
declare module "@builder.io/qwik" {
|
|
658
1249
|
namespace JSX {
|
|
659
1250
|
interface IntrinsicElements extends CustomElements {}
|
|
660
1251
|
}
|
|
661
1252
|
export interface CSSProperties extends CustomCssProperties {}
|
|
662
1253
|
}
|
|
663
1254
|
|
|
664
|
-
declare module
|
|
1255
|
+
declare module "@stencil/core" {
|
|
665
1256
|
namespace JSX {
|
|
666
1257
|
interface IntrinsicElements extends CustomElements {}
|
|
667
1258
|
}
|
|
668
1259
|
export interface CSSProperties extends CustomCssProperties {}
|
|
669
1260
|
}
|
|
670
1261
|
|
|
671
|
-
declare module
|
|
1262
|
+
declare module "hono/jsx" {
|
|
672
1263
|
namespace JSX {
|
|
673
1264
|
interface IntrinsicElements extends CustomElements {}
|
|
674
1265
|
}
|
|
675
1266
|
export interface CSSProperties extends CustomCssProperties {}
|
|
676
1267
|
}
|
|
677
1268
|
|
|
678
|
-
declare module
|
|
1269
|
+
declare module "react-native" {
|
|
679
1270
|
namespace JSX {
|
|
680
1271
|
interface IntrinsicElements extends CustomElements {}
|
|
681
1272
|
}
|
|
682
1273
|
export interface CSSProperties extends CustomCssProperties {}
|
|
683
1274
|
}
|
|
684
1275
|
|
|
1276
|
+
declare module "solid-js" {
|
|
1277
|
+
namespace JSX {
|
|
1278
|
+
interface IntrinsicElements extends CustomElementsSolidJs {}
|
|
1279
|
+
}
|
|
1280
|
+
export interface CSSProperties extends CustomCssProperties {}
|
|
1281
|
+
}
|
|
1282
|
+
|
|
685
1283
|
declare global {
|
|
686
1284
|
namespace JSX {
|
|
687
1285
|
interface IntrinsicElements extends CustomElements {}
|