@openremote/or-asset-tree 1.13.1 → 1.14.0-snapshot

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.
@@ -1,6 +1,20 @@
1
-
2
- import type { style, OrAssetTreeRequestSelectionEvent, OrAssetTreeSelectionEvent, OrAssetTreeChangeParentEvent, OrAssetTreeToggleExpandEvent, OrAssetTreeRequestAddEvent, OrAssetTreeAddEvent, OrAssetTreeRequestDeleteEvent, OrAssetTreeAssetEvent, OrAssetTreeFilter, OrAssetTree } from "./lib/index.d.ts";
3
- import type { OrAddChangedEvent, OrAddAssetDialog } from "./lib/or-add-asset-dialog.d.ts";
1
+ import type {
2
+ style,
3
+ OrAssetTreeRequestSelectionEvent,
4
+ OrAssetTreeSelectionEvent,
5
+ OrAssetTreeChangeParentEvent,
6
+ OrAssetTreeToggleExpandEvent,
7
+ OrAssetTreeRequestAddEvent,
8
+ OrAssetTreeAddEvent,
9
+ OrAssetTreeRequestDeleteEvent,
10
+ OrAssetTreeAssetEvent,
11
+ OrAssetTreeFilter,
12
+ OrAssetTree,
13
+ } from "./lib/index.d.ts";
14
+ import type {
15
+ OrAddChangedEvent,
16
+ OrAddAssetDialog,
17
+ } from "./lib/or-add-asset-dialog.d.ts";
4
18
 
5
19
  /**
6
20
  * This type can be used to create scoped tags for your components.
@@ -28,7 +42,6 @@ export type ScopedElements<
28
42
  };
29
43
 
30
44
  type BaseProps<T extends HTMLElement> = {
31
-
32
45
  /** Content added between the opening and closing tags of the element */
33
46
  children?: any;
34
47
  /** Used for declaratively styling one or more elements using CSS (Cascading Stylesheets) */
@@ -51,6 +64,8 @@ type BaseProps<T extends HTMLElement> = {
51
64
  key?: string | number;
52
65
  /** Specifies the language of the element. */
53
66
  lang?: string;
67
+ /** Defines the element's semantic role for accessibility APIs. */
68
+ role?: string;
54
69
  /** 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. */
55
70
  part?: string;
56
71
  /** Use the ref attribute with a variable to assign a DOM element to the variable once the element is rendered. */
@@ -71,208 +86,366 @@ type BaseProps<T extends HTMLElement> = {
71
86
  popovertarget?: "top" | "bottom" | "left" | "right" | "auto";
72
87
  /** Specifies the action to be performed on a popover element being controlled by a control element. */
73
88
  popovertargetaction?: "show" | "hide" | "toggle";
74
-
75
- } ;
76
-
77
- type BaseEvents = {
78
-
79
-
80
89
  };
81
90
 
82
-
91
+ type BaseEvents = {};
83
92
 
84
93
  export type OrAssetTreeProps = {
85
94
  /** Allows arbitrary assets to be displayed using a tree */
86
- "assets"?: OrAssetTree['assets'];
95
+ assets?: OrAssetTree["assets"];
87
96
  /** */
88
- "rootAssets"?: OrAssetTree['rootAssets'];
97
+ rootAssets?: OrAssetTree["rootAssets"];
89
98
  /** */
90
- "rootAssetIds"?: OrAssetTree['rootAssetIds'];
99
+ rootAssetIds?: OrAssetTree["rootAssetIds"];
91
100
  /** */
92
- "dataProvider"?: OrAssetTree['dataProvider'];
101
+ dataProvider?: OrAssetTree["dataProvider"];
93
102
  /** */
94
- "readonly"?: OrAssetTree['readonly'];
103
+ readonly?: OrAssetTree["readonly"];
95
104
  /** */
96
- "disabled"?: OrAssetTree['disabled'];
105
+ disabled?: OrAssetTree["disabled"];
97
106
  /** */
98
- "disableSubscribe"?: OrAssetTree['disableSubscribe'];
107
+ disableSubscribe?: OrAssetTree["disableSubscribe"];
99
108
  /** */
100
- "selectedIds"?: OrAssetTree['selectedIds'];
109
+ selectedIds?: OrAssetTree["selectedIds"];
101
110
  /** */
102
- "showDeselectBtn"?: OrAssetTree['showDeselectBtn'];
111
+ showDeselectBtn?: OrAssetTree["showDeselectBtn"];
103
112
  /** */
104
- "showSortBtn"?: OrAssetTree['showSortBtn'];
113
+ showSortBtn?: OrAssetTree["showSortBtn"];
105
114
  /** */
106
- "showFilter"?: OrAssetTree['showFilter'];
115
+ showFilter?: OrAssetTree["showFilter"];
107
116
  /** */
108
- "showFilterIcon"?: OrAssetTree['showFilterIcon'];
117
+ showFilterIcon?: OrAssetTree["showFilterIcon"];
109
118
  /** */
110
- "sortBy"?: OrAssetTree['sortBy'];
119
+ sortBy?: OrAssetTree["sortBy"];
111
120
  /** */
112
- "expandAllNodes"?: OrAssetTree['expandAllNodes'];
121
+ expandAllNodes?: OrAssetTree["expandAllNodes"];
113
122
  /** */
114
- "checkboxes"?: OrAssetTree['checkboxes'];
123
+ checkboxes?: OrAssetTree["checkboxes"];
115
124
  /** */
116
- "queryLimit"?: OrAssetTree['queryLimit'];
125
+ queryLimit?: OrAssetTree["queryLimit"];
117
126
  /** */
118
- "paginationThreshold"?: OrAssetTree['paginationThreshold'];
127
+ paginationThreshold?: OrAssetTree["paginationThreshold"];
119
128
  /** */
120
- "selectedNodes"?: OrAssetTree['selectedNodes'];
129
+ selectedNodes?: OrAssetTree["selectedNodes"];
121
130
 
122
131
  /** */
123
- "onundefined"?: (e: CustomEvent<OrAssetTreeSelectionEvent>) => void;
132
+ onassetEvent?: (e: OrAssetTreeAssetEvent) => void;
133
+ };
134
+
135
+ export type OrAssetTreeSolidJsProps = {
136
+ /** Allows arbitrary assets to be displayed using a tree */
137
+ "prop:assets"?: OrAssetTree["assets"];
124
138
  /** */
125
- "onassetEvent"?: (e: CustomEvent<OrAssetTreeAssetEvent>) => void;
126
- }
139
+ "prop:rootAssets"?: OrAssetTree["rootAssets"];
140
+ /** */
141
+ "prop:rootAssetIds"?: OrAssetTree["rootAssetIds"];
142
+ /** */
143
+ "prop:dataProvider"?: OrAssetTree["dataProvider"];
144
+ /** */
145
+ "prop:readonly"?: OrAssetTree["readonly"];
146
+ /** */
147
+ "prop:disabled"?: OrAssetTree["disabled"];
148
+ /** */
149
+ "prop:disableSubscribe"?: OrAssetTree["disableSubscribe"];
150
+ /** */
151
+ "prop:selectedIds"?: OrAssetTree["selectedIds"];
152
+ /** */
153
+ "prop:showDeselectBtn"?: OrAssetTree["showDeselectBtn"];
154
+ /** */
155
+ "prop:showSortBtn"?: OrAssetTree["showSortBtn"];
156
+ /** */
157
+ "prop:showFilter"?: OrAssetTree["showFilter"];
158
+ /** */
159
+ "prop:showFilterIcon"?: OrAssetTree["showFilterIcon"];
160
+ /** */
161
+ "prop:sortBy"?: OrAssetTree["sortBy"];
162
+ /** */
163
+ "prop:expandAllNodes"?: OrAssetTree["expandAllNodes"];
164
+ /** */
165
+ "prop:checkboxes"?: OrAssetTree["checkboxes"];
166
+ /** */
167
+ "prop:queryLimit"?: OrAssetTree["queryLimit"];
168
+ /** */
169
+ "prop:paginationThreshold"?: OrAssetTree["paginationThreshold"];
170
+ /** */
171
+ "prop:selectedNodes"?: OrAssetTree["selectedNodes"];
172
+ /** */
173
+ "on:assetEvent"?: (e: OrAssetTreeAssetEvent) => void;
127
174
 
175
+ /** Set the innerHTML of the element */
176
+ innerHTML?: string;
177
+ /** Set the textContent of the element */
178
+ textContent?: string | number;
179
+ };
128
180
 
129
181
  export type OrAddAssetDialogProps = {
130
182
  /** */
131
- "config"?: OrAddAssetDialog['config'];
183
+ typeFilter?: OrAddAssetDialog["typeFilter"];
184
+ /** */
185
+ config?: OrAddAssetDialog["config"];
132
186
  /** */
133
- "agentTypes"?: OrAddAssetDialog['agentTypes'];
187
+ agentTypes?: OrAddAssetDialog["agentTypes"];
134
188
  /** */
135
- "assetTypes"?: OrAddAssetDialog['assetTypes'];
189
+ assetTypes?: OrAddAssetDialog["assetTypes"];
136
190
  /** */
137
- "parent"?: OrAddAssetDialog['parent'];
191
+ parent?: OrAddAssetDialog["parent"];
138
192
  /** */
139
- "selectedType"?: OrAddAssetDialog['selectedType'];
193
+ selectedType?: OrAddAssetDialog["selectedType"];
140
194
  /** */
141
- "selectedAttributes"?: OrAddAssetDialog['selectedAttributes'];
195
+ selectedAttributes?: OrAddAssetDialog["selectedAttributes"];
142
196
  /** */
143
- "selectedChildAssetType"?: OrAddAssetDialog['selectedChildAssetType'];
197
+ selectedChildAssetType?: OrAddAssetDialog["selectedChildAssetType"];
144
198
  /** */
145
- "name"?: OrAddAssetDialog['name'];
199
+ name?: OrAddAssetDialog["name"];
200
+ };
146
201
 
202
+ export type OrAddAssetDialogSolidJsProps = {
147
203
  /** */
148
- "onundefined"?: (e: CustomEvent<OrAddChangedEvent>) => void;
149
- }
204
+ "prop:typeFilter"?: OrAddAssetDialog["typeFilter"];
205
+ /** */
206
+ "prop:config"?: OrAddAssetDialog["config"];
207
+ /** */
208
+ "prop:agentTypes"?: OrAddAssetDialog["agentTypes"];
209
+ /** */
210
+ "prop:assetTypes"?: OrAddAssetDialog["assetTypes"];
211
+ /** */
212
+ "prop:parent"?: OrAddAssetDialog["parent"];
213
+ /** */
214
+ "prop:selectedType"?: OrAddAssetDialog["selectedType"];
215
+ /** */
216
+ "prop:selectedAttributes"?: OrAddAssetDialog["selectedAttributes"];
217
+ /** */
218
+ "prop:selectedChildAssetType"?: OrAddAssetDialog["selectedChildAssetType"];
219
+ /** */
220
+ "prop:name"?: OrAddAssetDialog["name"];
150
221
 
151
- export type CustomElements = {
222
+ /** Set the innerHTML of the element */
223
+ innerHTML?: string;
224
+ /** Set the textContent of the element */
225
+ textContent?: string | number;
226
+ };
152
227
 
228
+ export type CustomElements = {
229
+ /**
230
+ *
231
+ *
232
+ * ## Attributes & Properties
233
+ *
234
+ * Component attributes and properties that can be applied to the element or by using JavaScript.
235
+ *
236
+ * - `assets`: Allows arbitrary assets to be displayed using a tree
237
+ * - `rootAssets`: undefined
238
+ * - `rootAssetIds`: undefined
239
+ * - `dataProvider`: undefined
240
+ * - `readonly`: undefined
241
+ * - `disabled`: undefined
242
+ * - `disableSubscribe`: undefined
243
+ * - `selectedIds`: undefined
244
+ * - `showDeselectBtn`: undefined
245
+ * - `showSortBtn`: undefined
246
+ * - `showFilter`: undefined
247
+ * - `showFilterIcon`: undefined
248
+ * - `sortBy`: undefined
249
+ * - `expandAllNodes`: undefined
250
+ * - `checkboxes`: undefined
251
+ * - `queryLimit`: undefined
252
+ * - `paginationThreshold`: undefined
253
+ * - `selectedNodes`: undefined (property only)
254
+ *
255
+ * ## Events
256
+ *
257
+ * Events that will be emitted by the component.
258
+ *
259
+ * - `undefined`: undefined
260
+ * - `assetEvent`: undefined
261
+ *
262
+ * ## Methods
263
+ *
264
+ * Methods that can be called to access component functionality.
265
+ *
266
+ * - `refresh() => void`: undefined
267
+ * - `isAncestorSelected(node: UiAssetTreeNode) => void`: undefined
268
+ * - `applyFilter(filter?: OrAssetTreeFilter | string, reflect = false) => void`: A setter function for updating the list of nodes (assets) shown in the UI.
269
+ * - `_addEventSubscriptions() => Promise<void>`: undefined
270
+ * - `onEventsConnect() => void`: undefined
271
+ * - `onEventsDisconnect() => void`: undefined
272
+ * - `getNodes() => UiAssetTreeNode[]`: undefined
273
+ * - `_onEvent(event: SharedEvent) => void`: undefined
274
+ * - `_onDragStart(ev: any) => void`: undefined
275
+ * - `_onDragEnd(ev: any) => void`: undefined
276
+ * - `_onDragOver(ev: any) => void`: undefined
277
+ * - `_onDragEnter(ev: any) => void`: undefined
278
+ * - `_onDragLeave(ev: any) => void`: undefined
279
+ */
280
+ "or-asset-tree": Partial<
281
+ OrAssetTreeProps & BaseProps<OrAssetTree> & BaseEvents
282
+ >;
153
283
 
154
284
  /**
155
- *
156
- *
157
- * ## Attributes & Properties
158
- *
159
- * Component attributes and properties that can be applied to the element or by using JavaScript.
160
- *
161
- * - `assets`: Allows arbitrary assets to be displayed using a tree
162
- * - `rootAssets`: undefined
163
- * - `rootAssetIds`: undefined
164
- * - `dataProvider`: undefined
165
- * - `readonly`: undefined
166
- * - `disabled`: undefined
167
- * - `disableSubscribe`: undefined
168
- * - `selectedIds`: undefined
169
- * - `showDeselectBtn`: undefined
170
- * - `showSortBtn`: undefined
171
- * - `showFilter`: undefined
172
- * - `showFilterIcon`: undefined
173
- * - `sortBy`: undefined
174
- * - `expandAllNodes`: undefined
175
- * - `checkboxes`: undefined
176
- * - `queryLimit`: undefined
177
- * - `paginationThreshold`: undefined
178
- * - `selectedNodes`: undefined (property only)
179
- *
180
- * ## Events
181
- *
182
- * Events that will be emitted by the component.
183
- *
184
- * - `undefined`: undefined
185
- * - `assetEvent`: undefined
186
- *
187
- * ## Methods
188
- *
189
- * Methods that can be called to access component functionality.
190
- *
191
- * - `refresh() => void`: undefined
192
- * - `isAncestorSelected(node: UiAssetTreeNode) => void`: undefined
193
- * - `applyFilter(filter?: OrAssetTreeFilter | string, reflect = false) => void`: A setter function for updating the list of nodes (assets) shown in the UI.
194
- * - `_addEventSubscriptions() => Promise<void>`: undefined
195
- * - `onEventsConnect() => void`: undefined
196
- * - `onEventsDisconnect() => void`: undefined
197
- * - `getNodes() => UiAssetTreeNode[]`: undefined
198
- * - `_onEvent(event: SharedEvent) => void`: undefined
199
- * - `_onDragStart(ev: any) => void`: undefined
200
- * - `_onDragEnd(ev: any) => void`: undefined
201
- * - `_onDragOver(ev: any) => void`: undefined
202
- * - `_onDragEnter(ev: any) => void`: undefined
203
- * - `_onDragLeave(ev: any) => void`: undefined
204
- */
205
- "or-asset-tree": Partial<OrAssetTreeProps & BaseProps<OrAssetTree> & BaseEvents>;
285
+ *
286
+ *
287
+ * ## Attributes & Properties
288
+ *
289
+ * Component attributes and properties that can be applied to the element or by using JavaScript.
290
+ *
291
+ * - `typeFilter`: undefined
292
+ * - `config`: undefined (property only)
293
+ * - `agentTypes`: undefined (property only)
294
+ * - `assetTypes`: undefined (property only)
295
+ * - `parent`: undefined (property only)
296
+ * - `selectedType`: undefined (property only)
297
+ * - `selectedAttributes`: undefined (property only)
298
+ * - `selectedChildAssetType`: undefined (property only)
299
+ * - `name`: undefined (property only)
300
+ *
301
+ * ## Events
302
+ *
303
+ * Events that will be emitted by the component.
304
+ *
305
+ * - `undefined`: undefined
306
+ */
307
+ "or-add-asset-dialog": Partial<
308
+ OrAddAssetDialogProps & BaseProps<OrAddAssetDialog> & BaseEvents
309
+ >;
310
+ };
206
311
 
312
+ export type CustomElementsSolidJs = {
313
+ /**
314
+ *
315
+ *
316
+ * ## Attributes & Properties
317
+ *
318
+ * Component attributes and properties that can be applied to the element or by using JavaScript.
319
+ *
320
+ * - `assets`: Allows arbitrary assets to be displayed using a tree
321
+ * - `rootAssets`: undefined
322
+ * - `rootAssetIds`: undefined
323
+ * - `dataProvider`: undefined
324
+ * - `readonly`: undefined
325
+ * - `disabled`: undefined
326
+ * - `disableSubscribe`: undefined
327
+ * - `selectedIds`: undefined
328
+ * - `showDeselectBtn`: undefined
329
+ * - `showSortBtn`: undefined
330
+ * - `showFilter`: undefined
331
+ * - `showFilterIcon`: undefined
332
+ * - `sortBy`: undefined
333
+ * - `expandAllNodes`: undefined
334
+ * - `checkboxes`: undefined
335
+ * - `queryLimit`: undefined
336
+ * - `paginationThreshold`: undefined
337
+ * - `selectedNodes`: undefined (property only)
338
+ *
339
+ * ## Events
340
+ *
341
+ * Events that will be emitted by the component.
342
+ *
343
+ * - `undefined`: undefined
344
+ * - `assetEvent`: undefined
345
+ *
346
+ * ## Methods
347
+ *
348
+ * Methods that can be called to access component functionality.
349
+ *
350
+ * - `refresh() => void`: undefined
351
+ * - `isAncestorSelected(node: UiAssetTreeNode) => void`: undefined
352
+ * - `applyFilter(filter?: OrAssetTreeFilter | string, reflect = false) => void`: A setter function for updating the list of nodes (assets) shown in the UI.
353
+ * - `_addEventSubscriptions() => Promise<void>`: undefined
354
+ * - `onEventsConnect() => void`: undefined
355
+ * - `onEventsDisconnect() => void`: undefined
356
+ * - `getNodes() => UiAssetTreeNode[]`: undefined
357
+ * - `_onEvent(event: SharedEvent) => void`: undefined
358
+ * - `_onDragStart(ev: any) => void`: undefined
359
+ * - `_onDragEnd(ev: any) => void`: undefined
360
+ * - `_onDragOver(ev: any) => void`: undefined
361
+ * - `_onDragEnter(ev: any) => void`: undefined
362
+ * - `_onDragLeave(ev: any) => void`: undefined
363
+ */
364
+ "or-asset-tree": Partial<
365
+ OrAssetTreeProps &
366
+ OrAssetTreeSolidJsProps &
367
+ BaseProps<OrAssetTree> &
368
+ BaseEvents
369
+ >;
207
370
 
208
371
  /**
209
- *
210
- *
211
- * ## Attributes & Properties
212
- *
213
- * Component attributes and properties that can be applied to the element or by using JavaScript.
214
- *
215
- * - `config`: undefined (property only)
216
- * - `agentTypes`: undefined (property only)
217
- * - `assetTypes`: undefined (property only)
218
- * - `parent`: undefined (property only)
219
- * - `selectedType`: undefined (property only)
220
- * - `selectedAttributes`: undefined (property only)
221
- * - `selectedChildAssetType`: undefined (property only)
222
- * - `name`: undefined (property only)
223
- *
224
- * ## Events
225
- *
226
- * Events that will be emitted by the component.
227
- *
228
- * - `undefined`: undefined
229
- */
230
- "or-add-asset-dialog": Partial<OrAddAssetDialogProps & BaseProps<OrAddAssetDialog> & BaseEvents>;
231
- }
372
+ *
373
+ *
374
+ * ## Attributes & Properties
375
+ *
376
+ * Component attributes and properties that can be applied to the element or by using JavaScript.
377
+ *
378
+ * - `typeFilter`: undefined
379
+ * - `config`: undefined (property only)
380
+ * - `agentTypes`: undefined (property only)
381
+ * - `assetTypes`: undefined (property only)
382
+ * - `parent`: undefined (property only)
383
+ * - `selectedType`: undefined (property only)
384
+ * - `selectedAttributes`: undefined (property only)
385
+ * - `selectedChildAssetType`: undefined (property only)
386
+ * - `name`: undefined (property only)
387
+ *
388
+ * ## Events
389
+ *
390
+ * Events that will be emitted by the component.
391
+ *
392
+ * - `undefined`: undefined
393
+ */
394
+ "or-add-asset-dialog": Partial<
395
+ OrAddAssetDialogProps &
396
+ OrAddAssetDialogSolidJsProps &
397
+ BaseProps<OrAddAssetDialog> &
398
+ BaseEvents
399
+ >;
400
+ };
232
401
 
233
- export type CustomCssProperties = {
402
+ export type CustomCssProperties = {};
234
403
 
404
+ declare module "react" {
405
+ namespace JSX {
406
+ interface IntrinsicElements extends CustomElements {}
407
+ }
408
+ export interface CSSProperties extends CustomCssProperties {}
235
409
  }
236
410
 
237
-
238
- declare module 'react' {
411
+ declare module "preact" {
239
412
  namespace JSX {
240
413
  interface IntrinsicElements extends CustomElements {}
241
414
  }
242
415
  export interface CSSProperties extends CustomCssProperties {}
243
416
  }
244
417
 
245
- declare module 'preact' {
418
+ declare module "@builder.io/qwik" {
246
419
  namespace JSX {
247
420
  interface IntrinsicElements extends CustomElements {}
248
421
  }
249
422
  export interface CSSProperties extends CustomCssProperties {}
250
423
  }
251
424
 
252
- declare module '@builder.io/qwik' {
425
+ declare module "@stencil/core" {
253
426
  namespace JSX {
254
427
  interface IntrinsicElements extends CustomElements {}
255
428
  }
256
429
  export interface CSSProperties extends CustomCssProperties {}
257
430
  }
258
431
 
259
- declare module '@stencil/core' {
432
+ declare module "hono/jsx" {
260
433
  namespace JSX {
261
434
  interface IntrinsicElements extends CustomElements {}
262
435
  }
263
436
  export interface CSSProperties extends CustomCssProperties {}
264
437
  }
265
438
 
266
- declare module 'hono/jsx' {
439
+ declare module "react-native" {
267
440
  namespace JSX {
268
441
  interface IntrinsicElements extends CustomElements {}
269
442
  }
270
443
  export interface CSSProperties extends CustomCssProperties {}
271
444
  }
272
445
 
273
- declare module 'react-native' {
446
+ declare module "solid-js" {
274
447
  namespace JSX {
275
- interface IntrinsicElements extends CustomElements {}
448
+ interface IntrinsicElements extends CustomElementsSolidJs {}
276
449
  }
277
450
  export interface CSSProperties extends CustomCssProperties {}
278
451
  }
@@ -1851,6 +1851,16 @@
1851
1851
  },
1852
1852
  "default": "\"\""
1853
1853
  },
1854
+ {
1855
+ "kind": "field",
1856
+ "name": "typeFilter",
1857
+ "type": {
1858
+ "text": "string"
1859
+ },
1860
+ "privacy": "private",
1861
+ "default": "\"\"",
1862
+ "attribute": "typeFilter"
1863
+ },
1854
1864
  {
1855
1865
  "kind": "field",
1856
1866
  "name": "name",
@@ -1892,6 +1902,14 @@
1892
1902
  },
1893
1903
  "privacy": "protected"
1894
1904
  },
1905
+ {
1906
+ "kind": "field",
1907
+ "name": "_filterInput",
1908
+ "type": {
1909
+ "text": "OrMwcInput"
1910
+ },
1911
+ "privacy": "private"
1912
+ },
1895
1913
  {
1896
1914
  "kind": "method",
1897
1915
  "name": "getTypeTemplate",
@@ -1971,6 +1989,16 @@
1971
1989
  }
1972
1990
  }
1973
1991
  ],
1992
+ "attributes": [
1993
+ {
1994
+ "name": "typeFilter",
1995
+ "type": {
1996
+ "text": "string"
1997
+ },
1998
+ "default": "\"\"",
1999
+ "fieldName": "typeFilter"
2000
+ }
2001
+ ],
1974
2002
  "superclass": {
1975
2003
  "name": "LitElement",
1976
2004
  "package": "lit"