@@ -14,6 +14,11 @@ export namespace Components {
14
14
interface CarDetail {
15
15
"car" : CarData ;
16
16
}
17
+ /**
18
+ * Component that helps display a list of cars
19
+ * @slot header - The slot for the header content.
20
+ * @part car - The shadow part to target to style the car.
21
+ */
17
22
interface CarList {
18
23
"cars" : CarData [ ] ;
19
24
"selected" : CarData ;
@@ -47,6 +52,9 @@ export namespace Components {
47
52
}
48
53
interface PrerenderCmp {
49
54
}
55
+ /**
56
+ * @virtualProp mode - Mode
57
+ */
50
58
interface PropCmp {
51
59
"first" : string ;
52
60
"lastName" : string ;
@@ -92,6 +100,11 @@ declare global {
92
100
prototype : HTMLCarDetailElement ;
93
101
new ( ) : HTMLCarDetailElement ;
94
102
} ;
103
+ /**
104
+ * Component that helps display a list of cars
105
+ * @slot header - The slot for the header content.
106
+ * @part car - The shadow part to target to style the car.
107
+ */
95
108
interface HTMLCarListElement extends Components . CarList , HTMLStencilElement {
96
109
}
97
110
var HTMLCarListElement : {
@@ -164,6 +177,9 @@ declare global {
164
177
prototype : HTMLPrerenderCmpElement ;
165
178
new ( ) : HTMLPrerenderCmpElement ;
166
179
} ;
180
+ /**
181
+ * @virtualProp mode - Mode
182
+ */
167
183
interface HTMLPropCmpElement extends Components . PropCmp , HTMLStencilElement {
168
184
}
169
185
var HTMLPropCmpElement : {
@@ -225,6 +241,11 @@ declare namespace LocalJSX {
225
241
interface CarDetail {
226
242
"car" ?: CarData ;
227
243
}
244
+ /**
245
+ * Component that helps display a list of cars
246
+ * @slot header - The slot for the header content.
247
+ * @part car - The shadow part to target to style the car.
248
+ */
228
249
interface CarList {
229
250
"cars" ?: CarData [ ] ;
230
251
"onCarSelected" ?: ( event : CarListCustomEvent < CarData > ) => void ;
@@ -257,6 +278,9 @@ declare namespace LocalJSX {
257
278
}
258
279
interface PrerenderCmp {
259
280
}
281
+ /**
282
+ * @virtualProp mode - Mode
283
+ */
260
284
interface PropCmp {
261
285
"first" ?: string ;
262
286
"lastName" ?: string ;
@@ -304,6 +328,11 @@ declare module "@stencil/core" {
304
328
"app-root" : LocalJSX . AppRoot & JSXBase . HTMLAttributes < HTMLAppRootElement > ;
305
329
"build-data" : LocalJSX . BuildData & JSXBase . HTMLAttributes < HTMLBuildDataElement > ;
306
330
"car-detail" : LocalJSX . CarDetail & JSXBase . HTMLAttributes < HTMLCarDetailElement > ;
331
+ /**
332
+ * Component that helps display a list of cars
333
+ * @slot header - The slot for the header content.
334
+ * @part car - The shadow part to target to style the car.
335
+ */
307
336
"car-list" : LocalJSX . CarList & JSXBase . HTMLAttributes < HTMLCarListElement > ;
308
337
"dom-api" : LocalJSX . DomApi & JSXBase . HTMLAttributes < HTMLDomApiElement > ;
309
338
"dom-interaction" : LocalJSX . DomInteraction & JSXBase . HTMLAttributes < HTMLDomInteractionElement > ;
@@ -316,6 +345,9 @@ declare module "@stencil/core" {
316
345
"method-cmp" : LocalJSX . MethodCmp & JSXBase . HTMLAttributes < HTMLMethodCmpElement > ;
317
346
"path-alias-cmp" : LocalJSX . PathAliasCmp & JSXBase . HTMLAttributes < HTMLPathAliasCmpElement > ;
318
347
"prerender-cmp" : LocalJSX . PrerenderCmp & JSXBase . HTMLAttributes < HTMLPrerenderCmpElement > ;
348
+ /**
349
+ * @virtualProp mode - Mode
350
+ */
319
351
"prop-cmp" : LocalJSX . PropCmp & JSXBase . HTMLAttributes < HTMLPropCmpElement > ;
320
352
"slot-cmp" : LocalJSX . SlotCmp & JSXBase . HTMLAttributes < HTMLSlotCmpElement > ;
321
353
"slot-cmp-container" : LocalJSX . SlotCmpContainer & JSXBase . HTMLAttributes < HTMLSlotCmpContainerElement > ;
0 commit comments