@microsoft/fast-element 2.10.4 → 3.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (211) hide show
  1. package/CHANGELOG.md +52 -2
  2. package/README.md +244 -1
  3. package/dist/arrays/arrays.api.json +2621 -0
  4. package/dist/context/context.api.json +13 -13
  5. package/dist/declarative/declarative.api.json +8483 -0
  6. package/dist/di/di.api.json +16 -16
  7. package/dist/dts/__test__/helpers.d.ts +6 -0
  8. package/dist/dts/array-observer.d.ts +2 -0
  9. package/dist/dts/arrays.d.ts +2 -0
  10. package/dist/dts/attr.d.ts +1 -0
  11. package/dist/dts/binding/binding.d.ts +15 -5
  12. package/dist/dts/binding/one-time.d.ts +1 -1
  13. package/dist/dts/binding/one-way.d.ts +1 -1
  14. package/dist/dts/binding/signal.d.ts +6 -6
  15. package/dist/dts/binding/two-way.d.ts +2 -1
  16. package/dist/dts/binding.d.ts +7 -0
  17. package/dist/dts/components/attributes.d.ts +1 -4
  18. package/dist/dts/components/definition-schema-transforms.d.ts +9 -0
  19. package/dist/dts/components/element-controller.d.ts +80 -114
  20. package/dist/dts/components/element-hydration.d.ts +1 -1
  21. package/dist/dts/components/enable-hydration.d.ts +54 -0
  22. package/dist/dts/components/fast-definitions.d.ts +98 -46
  23. package/dist/dts/components/fast-element.d.ts +43 -16
  24. package/dist/dts/components/hydration-tracker.d.ts +83 -0
  25. package/dist/dts/components/hydration.d.ts +23 -53
  26. package/dist/dts/components/schema.d.ts +205 -0
  27. package/dist/dts/context.d.ts +13 -13
  28. package/dist/dts/css.d.ts +3 -0
  29. package/dist/dts/debug.d.ts +5 -1
  30. package/dist/dts/declarative/attribute-map.d.ts +58 -0
  31. package/dist/dts/declarative/debug.d.ts +4 -0
  32. package/dist/dts/declarative/index.d.ts +14 -0
  33. package/dist/dts/declarative/interfaces.d.ts +8 -0
  34. package/dist/dts/declarative/observer-map-utilities.d.ts +58 -0
  35. package/dist/dts/declarative/observer-map.d.ts +89 -0
  36. package/dist/dts/declarative/runtime.d.ts +5 -0
  37. package/dist/dts/declarative/syntax.d.ts +21 -0
  38. package/dist/dts/declarative/template-bridge.d.ts +33 -0
  39. package/dist/dts/declarative/template-parser.d.ts +98 -0
  40. package/dist/dts/declarative/template.d.ts +10 -0
  41. package/dist/dts/declarative/utilities.d.ts +358 -0
  42. package/dist/dts/di/di.d.ts +7 -7
  43. package/dist/dts/directives/children.d.ts +2 -0
  44. package/dist/dts/directives/node-observation.d.ts +2 -0
  45. package/dist/dts/directives/ref.d.ts +2 -0
  46. package/dist/dts/directives/repeat.d.ts +4 -0
  47. package/dist/dts/directives/slotted.d.ts +2 -0
  48. package/dist/dts/directives/when.d.ts +3 -0
  49. package/dist/dts/dom-policy.d.ts +23 -5
  50. package/dist/dts/dom.d.ts +4 -16
  51. package/dist/dts/html.d.ts +5 -0
  52. package/dist/dts/hydration/diagnostics.d.ts +93 -0
  53. package/dist/dts/hydration/hydration-debugger.d.ts +35 -0
  54. package/dist/dts/hydration/messages.d.ts +62 -0
  55. package/dist/dts/hydration/runtime.d.ts +7 -0
  56. package/dist/dts/hydration/target-builder.d.ts +40 -12
  57. package/dist/dts/hydration.d.ts +18 -0
  58. package/dist/dts/index.d.ts +42 -42
  59. package/dist/dts/index.debug.d.ts +0 -1
  60. package/dist/dts/index.rollup.debug.d.ts +0 -1
  61. package/dist/dts/interfaces.d.ts +2 -49
  62. package/dist/dts/observable.d.ts +3 -6
  63. package/dist/dts/observation/arrays.d.ts +1 -1
  64. package/dist/dts/observation/observable.d.ts +3 -3
  65. package/dist/dts/observation/update-queue.d.ts +1 -1
  66. package/dist/dts/platform.d.ts +45 -8
  67. package/dist/dts/registry.d.ts +1 -0
  68. package/dist/dts/render.d.ts +7 -0
  69. package/dist/dts/schema.d.ts +1 -0
  70. package/dist/dts/state/exports.d.ts +1 -1
  71. package/dist/dts/state/state.d.ts +2 -2
  72. package/dist/dts/styles/css-directive.d.ts +5 -12
  73. package/dist/dts/styles/css.d.ts +5 -7
  74. package/dist/dts/styles/element-styles.d.ts +0 -10
  75. package/dist/dts/styles.d.ts +6 -0
  76. package/dist/dts/templating/compiler.d.ts +1 -1
  77. package/dist/dts/templating/html-binding-directive.d.ts +10 -2
  78. package/dist/dts/templating/html-directive.d.ts +19 -1
  79. package/dist/dts/templating/hydration-view.d.ts +130 -0
  80. package/dist/dts/templating/render.d.ts +1 -1
  81. package/dist/dts/templating/repeat.d.ts +1 -1
  82. package/dist/dts/templating/template.d.ts +15 -7
  83. package/dist/dts/templating/view.d.ts +25 -102
  84. package/dist/dts/templating.d.ts +10 -0
  85. package/dist/dts/testing/exports.d.ts +2 -2
  86. package/dist/dts/testing/fakes.d.ts +4 -4
  87. package/dist/dts/updates.d.ts +1 -0
  88. package/dist/dts/volatile.d.ts +2 -0
  89. package/dist/esm/__test__/helpers.js +22 -0
  90. package/dist/esm/__test__/setup-node.js +18 -0
  91. package/dist/esm/array-observer.js +1 -0
  92. package/dist/esm/arrays.js +1 -0
  93. package/dist/esm/attr.js +1 -0
  94. package/dist/esm/binding/normalize.js +1 -1
  95. package/dist/esm/binding/signal.js +4 -4
  96. package/dist/esm/binding/two-way.js +3 -3
  97. package/dist/esm/binding.js +4 -0
  98. package/dist/esm/components/attributes.js +18 -11
  99. package/dist/esm/components/definition-schema-transforms.js +23 -0
  100. package/dist/esm/components/element-controller.js +206 -270
  101. package/dist/esm/components/element-hydration.js +1 -1
  102. package/dist/esm/components/enable-hydration.js +124 -0
  103. package/dist/esm/components/fast-definitions.js +219 -56
  104. package/dist/esm/components/fast-element.js +18 -27
  105. package/dist/esm/components/hydration-tracker.js +122 -0
  106. package/dist/esm/components/hydration.js +137 -140
  107. package/dist/esm/components/schema.js +253 -0
  108. package/dist/esm/context.js +6 -6
  109. package/dist/esm/css.js +3 -0
  110. package/dist/esm/debug.js +27 -26
  111. package/dist/esm/declarative/attribute-map.js +122 -0
  112. package/dist/esm/declarative/debug.js +4 -0
  113. package/dist/esm/declarative/index.js +4 -0
  114. package/dist/esm/declarative/interfaces.js +9 -0
  115. package/dist/esm/declarative/observer-map-utilities.js +565 -0
  116. package/dist/esm/declarative/observer-map.js +216 -0
  117. package/dist/esm/declarative/runtime.js +14 -0
  118. package/dist/esm/declarative/syntax.js +36 -0
  119. package/dist/esm/declarative/template-bridge.js +160 -0
  120. package/dist/esm/declarative/template-parser.js +306 -0
  121. package/dist/esm/declarative/template.js +143 -0
  122. package/dist/esm/declarative/utilities.js +1069 -0
  123. package/dist/esm/di/di.js +8 -9
  124. package/dist/esm/directives/children.js +1 -0
  125. package/dist/esm/directives/node-observation.js +1 -0
  126. package/dist/esm/directives/ref.js +1 -0
  127. package/dist/esm/directives/repeat.js +1 -0
  128. package/dist/esm/directives/slotted.js +1 -0
  129. package/dist/esm/directives/when.js +1 -0
  130. package/dist/esm/dom-policy.js +35 -6
  131. package/dist/esm/dom.js +1 -1
  132. package/dist/esm/html.js +2 -0
  133. package/dist/esm/hydration/diagnostics.js +50 -0
  134. package/dist/esm/hydration/hydration-debugger.js +112 -0
  135. package/dist/esm/hydration/messages.js +84 -0
  136. package/dist/esm/hydration/runtime.js +33 -0
  137. package/dist/esm/hydration/target-builder.js +144 -91
  138. package/dist/esm/hydration.js +6 -0
  139. package/dist/esm/index.debug.js +2 -1
  140. package/dist/esm/index.js +38 -29
  141. package/dist/esm/index.rollup.debug.js +3 -2
  142. package/dist/esm/index.rollup.js +1 -1
  143. package/dist/esm/interfaces.js +2 -45
  144. package/dist/esm/metadata.js +2 -8
  145. package/dist/esm/observable.js +1 -4
  146. package/dist/esm/observation/arrays.js +1 -1
  147. package/dist/esm/observation/notifier.js +2 -4
  148. package/dist/esm/observation/observable.js +5 -5
  149. package/dist/esm/observation/update-queue.js +47 -58
  150. package/dist/esm/platform.js +31 -30
  151. package/dist/esm/registry.js +1 -0
  152. package/dist/esm/render.js +1 -0
  153. package/dist/esm/schema.js +1 -0
  154. package/dist/esm/state/exports.js +1 -1
  155. package/dist/esm/styles/css-directive.js +1 -2
  156. package/dist/esm/styles/css.js +15 -56
  157. package/dist/esm/styles/element-styles.js +69 -15
  158. package/dist/esm/styles.js +2 -0
  159. package/dist/esm/templating/html-binding-directive.js +11 -9
  160. package/dist/esm/templating/hydration-view.js +228 -0
  161. package/dist/esm/templating/render.js +39 -18
  162. package/dist/esm/templating/repeat.js +69 -33
  163. package/dist/esm/templating/template.js +7 -7
  164. package/dist/esm/templating/view.js +25 -234
  165. package/dist/esm/templating.js +7 -0
  166. package/dist/esm/testing/exports.js +2 -2
  167. package/dist/esm/testing/fixture.js +2 -2
  168. package/dist/esm/testing/timeout.js +2 -2
  169. package/dist/esm/updates.js +1 -0
  170. package/dist/esm/volatile.js +1 -0
  171. package/dist/fast-element.api.json +14389 -11138
  172. package/dist/fast-element.d.ts +3651 -809
  173. package/dist/fast-element.debug.js +5666 -4722
  174. package/dist/fast-element.debug.min.js +2 -2
  175. package/dist/fast-element.js +5394 -4381
  176. package/dist/fast-element.min.js +2 -2
  177. package/dist/fast-element.untrimmed.d.ts +923 -472
  178. package/dist/hydration/hydration.api.json +6460 -0
  179. package/dist/styles/styles.api.json +2672 -0
  180. package/package.json +165 -45
  181. package/ARCHITECTURE_FASTELEMENT.md +0 -63
  182. package/ARCHITECTURE_HTML_TAGGED_TEMPLATE_LITERAL.md +0 -36
  183. package/ARCHITECTURE_INTRO.md +0 -10
  184. package/ARCHITECTURE_OVERVIEW.md +0 -52
  185. package/ARCHITECTURE_UPDATES.md +0 -11
  186. package/CHANGELOG.json +0 -2275
  187. package/DESIGN.md +0 -510
  188. package/api-extractor.context.json +0 -14
  189. package/api-extractor.di.json +0 -14
  190. package/biome.json +0 -4
  191. package/dist/dts/components/install-hydration.d.ts +0 -1
  192. package/dist/dts/pending-task.d.ts +0 -32
  193. package/dist/dts/styles/css-binding-directive.d.ts +0 -60
  194. package/dist/dts/templating/install-hydratable-view-templates.d.ts +0 -1
  195. package/dist/esm/components/install-hydration.js +0 -3
  196. package/dist/esm/pending-task.js +0 -28
  197. package/dist/esm/polyfills.js +0 -60
  198. package/dist/esm/styles/css-binding-directive.js +0 -76
  199. package/dist/esm/templating/install-hydratable-view-templates.js +0 -23
  200. package/docs/ACKNOWLEDGEMENTS.md +0 -12
  201. package/docs/api-report.api.md +0 -1122
  202. package/docs/context/api-report.api.md +0 -69
  203. package/docs/di/api-report.api.md +0 -315
  204. package/docs/fast-element-2-changes.md +0 -15
  205. package/playwright.config.ts +0 -26
  206. package/scripts/run-api-extractor.js +0 -51
  207. package/test/index.html +0 -11
  208. package/test/main.ts +0 -104
  209. package/test/vite.config.ts +0 -19
  210. package/tsconfig.api-extractor.json +0 -6
  211. /package/dist/dts/{polyfills.d.ts → __test__/setup-node.d.ts} +0 -0
@@ -0,0 +1,2672 @@
1
+ {
2
+ "metadata": {
3
+ "toolPackage": "@microsoft/api-extractor",
4
+ "toolVersion": "7.58.1",
5
+ "schemaVersion": 1011,
6
+ "oldestForwardsCompatibleVersion": 1001,
7
+ "tsdocConfig": {
8
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
9
+ "noStandardTags": true,
10
+ "tagDefinitions": [
11
+ {
12
+ "tagName": "@alpha",
13
+ "syntaxKind": "modifier"
14
+ },
15
+ {
16
+ "tagName": "@beta",
17
+ "syntaxKind": "modifier"
18
+ },
19
+ {
20
+ "tagName": "@defaultValue",
21
+ "syntaxKind": "block"
22
+ },
23
+ {
24
+ "tagName": "@decorator",
25
+ "syntaxKind": "block",
26
+ "allowMultiple": true
27
+ },
28
+ {
29
+ "tagName": "@deprecated",
30
+ "syntaxKind": "block"
31
+ },
32
+ {
33
+ "tagName": "@eventProperty",
34
+ "syntaxKind": "modifier"
35
+ },
36
+ {
37
+ "tagName": "@example",
38
+ "syntaxKind": "block",
39
+ "allowMultiple": true
40
+ },
41
+ {
42
+ "tagName": "@experimental",
43
+ "syntaxKind": "modifier"
44
+ },
45
+ {
46
+ "tagName": "@inheritDoc",
47
+ "syntaxKind": "inline"
48
+ },
49
+ {
50
+ "tagName": "@internal",
51
+ "syntaxKind": "modifier"
52
+ },
53
+ {
54
+ "tagName": "@label",
55
+ "syntaxKind": "inline"
56
+ },
57
+ {
58
+ "tagName": "@link",
59
+ "syntaxKind": "inline",
60
+ "allowMultiple": true
61
+ },
62
+ {
63
+ "tagName": "@override",
64
+ "syntaxKind": "modifier"
65
+ },
66
+ {
67
+ "tagName": "@packageDocumentation",
68
+ "syntaxKind": "modifier"
69
+ },
70
+ {
71
+ "tagName": "@param",
72
+ "syntaxKind": "block",
73
+ "allowMultiple": true
74
+ },
75
+ {
76
+ "tagName": "@privateRemarks",
77
+ "syntaxKind": "block"
78
+ },
79
+ {
80
+ "tagName": "@public",
81
+ "syntaxKind": "modifier"
82
+ },
83
+ {
84
+ "tagName": "@readonly",
85
+ "syntaxKind": "modifier"
86
+ },
87
+ {
88
+ "tagName": "@remarks",
89
+ "syntaxKind": "block"
90
+ },
91
+ {
92
+ "tagName": "@returns",
93
+ "syntaxKind": "block"
94
+ },
95
+ {
96
+ "tagName": "@sealed",
97
+ "syntaxKind": "modifier"
98
+ },
99
+ {
100
+ "tagName": "@see",
101
+ "syntaxKind": "block"
102
+ },
103
+ {
104
+ "tagName": "@throws",
105
+ "syntaxKind": "block",
106
+ "allowMultiple": true
107
+ },
108
+ {
109
+ "tagName": "@typeParam",
110
+ "syntaxKind": "block",
111
+ "allowMultiple": true
112
+ },
113
+ {
114
+ "tagName": "@virtual",
115
+ "syntaxKind": "modifier"
116
+ },
117
+ {
118
+ "tagName": "@jsx",
119
+ "syntaxKind": "block"
120
+ },
121
+ {
122
+ "tagName": "@jsxRuntime",
123
+ "syntaxKind": "block"
124
+ },
125
+ {
126
+ "tagName": "@jsxFrag",
127
+ "syntaxKind": "block"
128
+ },
129
+ {
130
+ "tagName": "@jsxImportSource",
131
+ "syntaxKind": "block"
132
+ },
133
+ {
134
+ "tagName": "@betaDocumentation",
135
+ "syntaxKind": "modifier"
136
+ },
137
+ {
138
+ "tagName": "@internalRemarks",
139
+ "syntaxKind": "block"
140
+ },
141
+ {
142
+ "tagName": "@preapproved",
143
+ "syntaxKind": "modifier"
144
+ }
145
+ ],
146
+ "supportForTags": {
147
+ "@alpha": true,
148
+ "@beta": true,
149
+ "@defaultValue": true,
150
+ "@decorator": true,
151
+ "@deprecated": true,
152
+ "@eventProperty": true,
153
+ "@example": true,
154
+ "@experimental": true,
155
+ "@inheritDoc": true,
156
+ "@internal": true,
157
+ "@label": true,
158
+ "@link": true,
159
+ "@override": true,
160
+ "@packageDocumentation": true,
161
+ "@param": true,
162
+ "@privateRemarks": true,
163
+ "@public": true,
164
+ "@readonly": true,
165
+ "@remarks": true,
166
+ "@returns": true,
167
+ "@sealed": true,
168
+ "@see": true,
169
+ "@throws": true,
170
+ "@typeParam": true,
171
+ "@virtual": true,
172
+ "@betaDocumentation": true,
173
+ "@internalRemarks": true,
174
+ "@preapproved": true
175
+ },
176
+ "reportUnsupportedHtmlElements": false
177
+ }
178
+ },
179
+ "kind": "Package",
180
+ "canonicalReference": "@microsoft/fast-element!",
181
+ "docComment": "",
182
+ "name": "@microsoft/fast-element",
183
+ "preserveMemberOrder": false,
184
+ "members": [
185
+ {
186
+ "kind": "EntryPoint",
187
+ "canonicalReference": "@microsoft/fast-element!",
188
+ "name": "",
189
+ "preserveMemberOrder": false,
190
+ "members": [
191
+ {
192
+ "kind": "TypeAlias",
193
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type",
194
+ "docComment": "/**\n * Represents styles that can be composed into the ShadowDOM of a custom element.\n *\n * @public\n */\n",
195
+ "excerptTokens": [
196
+ {
197
+ "kind": "Content",
198
+ "text": "export type ComposableStyles = "
199
+ },
200
+ {
201
+ "kind": "Content",
202
+ "text": "string | "
203
+ },
204
+ {
205
+ "kind": "Reference",
206
+ "text": "ElementStyles",
207
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
208
+ },
209
+ {
210
+ "kind": "Content",
211
+ "text": " | "
212
+ },
213
+ {
214
+ "kind": "Reference",
215
+ "text": "CSSStyleSheet",
216
+ "canonicalReference": "!CSSStyleSheet:interface"
217
+ },
218
+ {
219
+ "kind": "Content",
220
+ "text": ";"
221
+ }
222
+ ],
223
+ "fileUrlPath": "dist/dts/styles/element-styles.d.ts",
224
+ "releaseTag": "Public",
225
+ "name": "ComposableStyles",
226
+ "typeTokenRange": {
227
+ "startIndex": 1,
228
+ "endIndex": 5
229
+ }
230
+ },
231
+ {
232
+ "kind": "TypeAlias",
233
+ "canonicalReference": "@microsoft/fast-element!Constructable:type",
234
+ "docComment": "/**\n * Represents a type which can be constructed with the new operator.\n *\n * @public\n */\n",
235
+ "excerptTokens": [
236
+ {
237
+ "kind": "Content",
238
+ "text": "export type Constructable<T = "
239
+ },
240
+ {
241
+ "kind": "Content",
242
+ "text": "{}"
243
+ },
244
+ {
245
+ "kind": "Content",
246
+ "text": "> = "
247
+ },
248
+ {
249
+ "kind": "Content",
250
+ "text": "{\n new (...args: any[]): T;\n}"
251
+ },
252
+ {
253
+ "kind": "Content",
254
+ "text": ";"
255
+ }
256
+ ],
257
+ "fileUrlPath": "dist/dts/interfaces.d.ts",
258
+ "releaseTag": "Public",
259
+ "name": "Constructable",
260
+ "typeParameters": [
261
+ {
262
+ "typeParameterName": "T",
263
+ "constraintTokenRange": {
264
+ "startIndex": 0,
265
+ "endIndex": 0
266
+ },
267
+ "defaultTypeTokenRange": {
268
+ "startIndex": 1,
269
+ "endIndex": 2
270
+ }
271
+ }
272
+ ],
273
+ "typeTokenRange": {
274
+ "startIndex": 3,
275
+ "endIndex": 4
276
+ }
277
+ },
278
+ {
279
+ "kind": "TypeAlias",
280
+ "canonicalReference": "@microsoft/fast-element!ConstructibleStyleStrategy:type",
281
+ "docComment": "/**\n * A type that instantiates a StyleStrategy.\n *\n * @public\n */\n",
282
+ "excerptTokens": [
283
+ {
284
+ "kind": "Content",
285
+ "text": "export type ConstructibleStyleStrategy = "
286
+ },
287
+ {
288
+ "kind": "Content",
289
+ "text": "{\n new (styles: (string | "
290
+ },
291
+ {
292
+ "kind": "Reference",
293
+ "text": "CSSStyleSheet",
294
+ "canonicalReference": "!CSSStyleSheet:interface"
295
+ },
296
+ {
297
+ "kind": "Content",
298
+ "text": ")[]): "
299
+ },
300
+ {
301
+ "kind": "Reference",
302
+ "text": "StyleStrategy",
303
+ "canonicalReference": "@microsoft/fast-element!StyleStrategy:interface"
304
+ },
305
+ {
306
+ "kind": "Content",
307
+ "text": ";\n}"
308
+ },
309
+ {
310
+ "kind": "Content",
311
+ "text": ";"
312
+ }
313
+ ],
314
+ "fileUrlPath": "dist/dts/styles/element-styles.d.ts",
315
+ "releaseTag": "Public",
316
+ "name": "ConstructibleStyleStrategy",
317
+ "typeTokenRange": {
318
+ "startIndex": 1,
319
+ "endIndex": 6
320
+ }
321
+ },
322
+ {
323
+ "kind": "Function",
324
+ "canonicalReference": "@microsoft/fast-element!cssDirective:function(1)",
325
+ "docComment": "/**\n * Decorator: Defines a CSSDirective.\n *\n * @public\n */\n",
326
+ "excerptTokens": [
327
+ {
328
+ "kind": "Content",
329
+ "text": "export declare function cssDirective(): "
330
+ },
331
+ {
332
+ "kind": "Content",
333
+ "text": "(type: "
334
+ },
335
+ {
336
+ "kind": "Reference",
337
+ "text": "Constructable",
338
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
339
+ },
340
+ {
341
+ "kind": "Content",
342
+ "text": "<"
343
+ },
344
+ {
345
+ "kind": "Reference",
346
+ "text": "CSSDirective",
347
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
348
+ },
349
+ {
350
+ "kind": "Content",
351
+ "text": ">) => void"
352
+ },
353
+ {
354
+ "kind": "Content",
355
+ "text": ";"
356
+ }
357
+ ],
358
+ "fileUrlPath": "dist/dts/styles/css-directive.d.ts",
359
+ "returnTypeTokenRange": {
360
+ "startIndex": 1,
361
+ "endIndex": 6
362
+ },
363
+ "releaseTag": "Public",
364
+ "overloadIndex": 1,
365
+ "parameters": [],
366
+ "name": "cssDirective"
367
+ },
368
+ {
369
+ "kind": "Interface",
370
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface",
371
+ "docComment": "/**\n * Directive for use in CSS templates.\n *\n * @public\n */\n",
372
+ "excerptTokens": [
373
+ {
374
+ "kind": "Content",
375
+ "text": "export interface CSSDirective "
376
+ }
377
+ ],
378
+ "fileUrlPath": "dist/dts/styles/css-directive.d.ts",
379
+ "releaseTag": "Public",
380
+ "name": "CSSDirective",
381
+ "preserveMemberOrder": false,
382
+ "members": [
383
+ {
384
+ "kind": "MethodSignature",
385
+ "canonicalReference": "@microsoft/fast-element!CSSDirective#createCSS:member(1)",
386
+ "docComment": "/**\n * Creates static styles to interpolate into the CSS document.\n *\n * @returns - the styles to interpolate into CSS\n */\n",
387
+ "excerptTokens": [
388
+ {
389
+ "kind": "Content",
390
+ "text": "createCSS(): "
391
+ },
392
+ {
393
+ "kind": "Reference",
394
+ "text": "ComposableStyles",
395
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
396
+ },
397
+ {
398
+ "kind": "Content",
399
+ "text": ";"
400
+ }
401
+ ],
402
+ "isOptional": false,
403
+ "returnTypeTokenRange": {
404
+ "startIndex": 1,
405
+ "endIndex": 2
406
+ },
407
+ "releaseTag": "Public",
408
+ "overloadIndex": 1,
409
+ "parameters": [],
410
+ "name": "createCSS"
411
+ }
412
+ ],
413
+ "extendsTokenRanges": []
414
+ },
415
+ {
416
+ "kind": "Variable",
417
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:var",
418
+ "docComment": "/**\n * Instructs the css engine to provide styles during CSS template composition.\n *\n * @public\n */\n",
419
+ "excerptTokens": [
420
+ {
421
+ "kind": "Content",
422
+ "text": "CSSDirective: "
423
+ },
424
+ {
425
+ "kind": "Reference",
426
+ "text": "Readonly",
427
+ "canonicalReference": "!Readonly:type"
428
+ },
429
+ {
430
+ "kind": "Content",
431
+ "text": "<{\n getForInstance: (object: any) => "
432
+ },
433
+ {
434
+ "kind": "Reference",
435
+ "text": "CSSDirectiveDefinition",
436
+ "canonicalReference": "@microsoft/fast-element!CSSDirectiveDefinition:interface"
437
+ },
438
+ {
439
+ "kind": "Content",
440
+ "text": "<"
441
+ },
442
+ {
443
+ "kind": "Reference",
444
+ "text": "Constructable",
445
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
446
+ },
447
+ {
448
+ "kind": "Content",
449
+ "text": "<"
450
+ },
451
+ {
452
+ "kind": "Reference",
453
+ "text": "CSSDirective",
454
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
455
+ },
456
+ {
457
+ "kind": "Content",
458
+ "text": ">> | undefined;\n getByType: (key: "
459
+ },
460
+ {
461
+ "kind": "Reference",
462
+ "text": "Function",
463
+ "canonicalReference": "!Function:interface"
464
+ },
465
+ {
466
+ "kind": "Content",
467
+ "text": ") => "
468
+ },
469
+ {
470
+ "kind": "Reference",
471
+ "text": "CSSDirectiveDefinition",
472
+ "canonicalReference": "@microsoft/fast-element!CSSDirectiveDefinition:interface"
473
+ },
474
+ {
475
+ "kind": "Content",
476
+ "text": "<"
477
+ },
478
+ {
479
+ "kind": "Reference",
480
+ "text": "Constructable",
481
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
482
+ },
483
+ {
484
+ "kind": "Content",
485
+ "text": "<"
486
+ },
487
+ {
488
+ "kind": "Reference",
489
+ "text": "CSSDirective",
490
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
491
+ },
492
+ {
493
+ "kind": "Content",
494
+ "text": ">> | undefined;\n define<TType extends "
495
+ },
496
+ {
497
+ "kind": "Reference",
498
+ "text": "Constructable",
499
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
500
+ },
501
+ {
502
+ "kind": "Content",
503
+ "text": "<"
504
+ },
505
+ {
506
+ "kind": "Reference",
507
+ "text": "CSSDirective",
508
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
509
+ },
510
+ {
511
+ "kind": "Content",
512
+ "text": ">>(type: any): TType;\n}>"
513
+ }
514
+ ],
515
+ "fileUrlPath": "dist/dts/styles/css-directive.d.ts",
516
+ "isReadonly": true,
517
+ "releaseTag": "Public",
518
+ "name": "CSSDirective",
519
+ "variableTypeTokenRange": {
520
+ "startIndex": 1,
521
+ "endIndex": 21
522
+ }
523
+ },
524
+ {
525
+ "kind": "Interface",
526
+ "canonicalReference": "@microsoft/fast-element!CSSDirectiveDefinition:interface",
527
+ "docComment": "/**\n * Defines metadata for a CSSDirective.\n *\n * @public\n */\n",
528
+ "excerptTokens": [
529
+ {
530
+ "kind": "Content",
531
+ "text": "export interface CSSDirectiveDefinition<TType extends "
532
+ },
533
+ {
534
+ "kind": "Reference",
535
+ "text": "Constructable",
536
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
537
+ },
538
+ {
539
+ "kind": "Content",
540
+ "text": "<"
541
+ },
542
+ {
543
+ "kind": "Reference",
544
+ "text": "CSSDirective",
545
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
546
+ },
547
+ {
548
+ "kind": "Content",
549
+ "text": ">"
550
+ },
551
+ {
552
+ "kind": "Content",
553
+ "text": " = "
554
+ },
555
+ {
556
+ "kind": "Reference",
557
+ "text": "Constructable",
558
+ "canonicalReference": "@microsoft/fast-element!Constructable:type"
559
+ },
560
+ {
561
+ "kind": "Content",
562
+ "text": "<"
563
+ },
564
+ {
565
+ "kind": "Reference",
566
+ "text": "CSSDirective",
567
+ "canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
568
+ },
569
+ {
570
+ "kind": "Content",
571
+ "text": ">"
572
+ },
573
+ {
574
+ "kind": "Content",
575
+ "text": "> "
576
+ }
577
+ ],
578
+ "fileUrlPath": "dist/dts/styles/css-directive.d.ts",
579
+ "releaseTag": "Public",
580
+ "typeParameters": [
581
+ {
582
+ "typeParameterName": "TType",
583
+ "constraintTokenRange": {
584
+ "startIndex": 1,
585
+ "endIndex": 5
586
+ },
587
+ "defaultTypeTokenRange": {
588
+ "startIndex": 6,
589
+ "endIndex": 10
590
+ }
591
+ }
592
+ ],
593
+ "name": "CSSDirectiveDefinition",
594
+ "preserveMemberOrder": false,
595
+ "members": [
596
+ {
597
+ "kind": "PropertySignature",
598
+ "canonicalReference": "@microsoft/fast-element!CSSDirectiveDefinition#type:member",
599
+ "docComment": "/**\n * The type that the definition provides metadata for.\n */\n",
600
+ "excerptTokens": [
601
+ {
602
+ "kind": "Content",
603
+ "text": "readonly type: "
604
+ },
605
+ {
606
+ "kind": "Content",
607
+ "text": "TType"
608
+ },
609
+ {
610
+ "kind": "Content",
611
+ "text": ";"
612
+ }
613
+ ],
614
+ "isReadonly": true,
615
+ "isOptional": false,
616
+ "releaseTag": "Public",
617
+ "name": "type",
618
+ "propertyTypeTokenRange": {
619
+ "startIndex": 1,
620
+ "endIndex": 2
621
+ }
622
+ }
623
+ ],
624
+ "extendsTokenRanges": []
625
+ },
626
+ {
627
+ "kind": "Class",
628
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class",
629
+ "docComment": "/**\n * Represents styles that can be applied to a custom element.\n *\n * @public\n */\n",
630
+ "excerptTokens": [
631
+ {
632
+ "kind": "Content",
633
+ "text": "export declare class ElementStyles "
634
+ }
635
+ ],
636
+ "fileUrlPath": "dist/dts/styles/element-styles.d.ts",
637
+ "releaseTag": "Public",
638
+ "isAbstract": false,
639
+ "name": "ElementStyles",
640
+ "preserveMemberOrder": false,
641
+ "members": [
642
+ {
643
+ "kind": "Constructor",
644
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:constructor(1)",
645
+ "docComment": "/**\n * Creates an instance of ElementStyles.\n *\n * @param styles - The styles that will be associated with elements.\n */\n",
646
+ "excerptTokens": [
647
+ {
648
+ "kind": "Content",
649
+ "text": "constructor(styles: "
650
+ },
651
+ {
652
+ "kind": "Reference",
653
+ "text": "ReadonlyArray",
654
+ "canonicalReference": "!ReadonlyArray:interface"
655
+ },
656
+ {
657
+ "kind": "Content",
658
+ "text": "<"
659
+ },
660
+ {
661
+ "kind": "Reference",
662
+ "text": "ComposableStyles",
663
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
664
+ },
665
+ {
666
+ "kind": "Content",
667
+ "text": ">"
668
+ },
669
+ {
670
+ "kind": "Content",
671
+ "text": ");"
672
+ }
673
+ ],
674
+ "releaseTag": "Public",
675
+ "isProtected": false,
676
+ "overloadIndex": 1,
677
+ "parameters": [
678
+ {
679
+ "parameterName": "styles",
680
+ "parameterTypeTokenRange": {
681
+ "startIndex": 1,
682
+ "endIndex": 5
683
+ },
684
+ "isOptional": false
685
+ }
686
+ ]
687
+ },
688
+ {
689
+ "kind": "Method",
690
+ "canonicalReference": "@microsoft/fast-element!ElementStyles.normalize:member(1)",
691
+ "docComment": "/**\n * Normalizes a set of composable style options.\n *\n * @param styles - The style options to normalize.\n *\n * @returns A singular ElementStyles instance or undefined.\n */\n",
692
+ "excerptTokens": [
693
+ {
694
+ "kind": "Content",
695
+ "text": "static normalize(styles: "
696
+ },
697
+ {
698
+ "kind": "Reference",
699
+ "text": "ComposableStyles",
700
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
701
+ },
702
+ {
703
+ "kind": "Content",
704
+ "text": " | "
705
+ },
706
+ {
707
+ "kind": "Reference",
708
+ "text": "ComposableStyles",
709
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
710
+ },
711
+ {
712
+ "kind": "Content",
713
+ "text": "[] | undefined"
714
+ },
715
+ {
716
+ "kind": "Content",
717
+ "text": "): "
718
+ },
719
+ {
720
+ "kind": "Reference",
721
+ "text": "ElementStyles",
722
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
723
+ },
724
+ {
725
+ "kind": "Content",
726
+ "text": " | undefined"
727
+ },
728
+ {
729
+ "kind": "Content",
730
+ "text": ";"
731
+ }
732
+ ],
733
+ "isStatic": true,
734
+ "returnTypeTokenRange": {
735
+ "startIndex": 6,
736
+ "endIndex": 8
737
+ },
738
+ "releaseTag": "Public",
739
+ "isProtected": false,
740
+ "overloadIndex": 1,
741
+ "parameters": [
742
+ {
743
+ "parameterName": "styles",
744
+ "parameterTypeTokenRange": {
745
+ "startIndex": 1,
746
+ "endIndex": 5
747
+ },
748
+ "isOptional": false
749
+ }
750
+ ],
751
+ "isOptional": false,
752
+ "isAbstract": false,
753
+ "name": "normalize"
754
+ },
755
+ {
756
+ "kind": "Method",
757
+ "canonicalReference": "@microsoft/fast-element!ElementStyles.setDefaultStrategy:member(1)",
758
+ "docComment": "/**\n * Sets the default strategy type to use when creating style strategies.\n *\n * @param Strategy - The strategy type to construct.\n */\n",
759
+ "excerptTokens": [
760
+ {
761
+ "kind": "Content",
762
+ "text": "static setDefaultStrategy(Strategy: "
763
+ },
764
+ {
765
+ "kind": "Reference",
766
+ "text": "ConstructibleStyleStrategy",
767
+ "canonicalReference": "@microsoft/fast-element!ConstructibleStyleStrategy:type"
768
+ },
769
+ {
770
+ "kind": "Content",
771
+ "text": "): "
772
+ },
773
+ {
774
+ "kind": "Content",
775
+ "text": "void"
776
+ },
777
+ {
778
+ "kind": "Content",
779
+ "text": ";"
780
+ }
781
+ ],
782
+ "isStatic": true,
783
+ "returnTypeTokenRange": {
784
+ "startIndex": 3,
785
+ "endIndex": 4
786
+ },
787
+ "releaseTag": "Public",
788
+ "isProtected": false,
789
+ "overloadIndex": 1,
790
+ "parameters": [
791
+ {
792
+ "parameterName": "Strategy",
793
+ "parameterTypeTokenRange": {
794
+ "startIndex": 1,
795
+ "endIndex": 2
796
+ },
797
+ "isOptional": false
798
+ }
799
+ ],
800
+ "isOptional": false,
801
+ "isAbstract": false,
802
+ "name": "setDefaultStrategy"
803
+ },
804
+ {
805
+ "kind": "Property",
806
+ "canonicalReference": "@microsoft/fast-element!ElementStyles#strategy:member",
807
+ "docComment": "/**\n * Gets the StyleStrategy associated with these element styles.\n */\n",
808
+ "excerptTokens": [
809
+ {
810
+ "kind": "Content",
811
+ "text": "get strategy(): "
812
+ },
813
+ {
814
+ "kind": "Reference",
815
+ "text": "StyleStrategy",
816
+ "canonicalReference": "@microsoft/fast-element!StyleStrategy:interface"
817
+ },
818
+ {
819
+ "kind": "Content",
820
+ "text": ";"
821
+ }
822
+ ],
823
+ "isReadonly": true,
824
+ "isOptional": false,
825
+ "releaseTag": "Public",
826
+ "name": "strategy",
827
+ "propertyTypeTokenRange": {
828
+ "startIndex": 1,
829
+ "endIndex": 2
830
+ },
831
+ "isStatic": false,
832
+ "isProtected": false,
833
+ "isAbstract": false
834
+ },
835
+ {
836
+ "kind": "Property",
837
+ "canonicalReference": "@microsoft/fast-element!ElementStyles#styles:member",
838
+ "docComment": "",
839
+ "excerptTokens": [
840
+ {
841
+ "kind": "Content",
842
+ "text": "readonly styles: "
843
+ },
844
+ {
845
+ "kind": "Reference",
846
+ "text": "ReadonlyArray",
847
+ "canonicalReference": "!ReadonlyArray:interface"
848
+ },
849
+ {
850
+ "kind": "Content",
851
+ "text": "<"
852
+ },
853
+ {
854
+ "kind": "Reference",
855
+ "text": "ComposableStyles",
856
+ "canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
857
+ },
858
+ {
859
+ "kind": "Content",
860
+ "text": ">"
861
+ },
862
+ {
863
+ "kind": "Content",
864
+ "text": ";"
865
+ }
866
+ ],
867
+ "isReadonly": true,
868
+ "isOptional": false,
869
+ "releaseTag": "Public",
870
+ "name": "styles",
871
+ "propertyTypeTokenRange": {
872
+ "startIndex": 1,
873
+ "endIndex": 5
874
+ },
875
+ "isStatic": false,
876
+ "isProtected": false,
877
+ "isAbstract": false
878
+ },
879
+ {
880
+ "kind": "Property",
881
+ "canonicalReference": "@microsoft/fast-element!ElementStyles.supportsAdoptedStyleSheets:member",
882
+ "docComment": "/**\n * Indicates whether the DOM supports the adoptedStyleSheets feature.\n */\n",
883
+ "excerptTokens": [
884
+ {
885
+ "kind": "Content",
886
+ "text": "static readonly supportsAdoptedStyleSheets: "
887
+ },
888
+ {
889
+ "kind": "Content",
890
+ "text": "boolean"
891
+ },
892
+ {
893
+ "kind": "Content",
894
+ "text": ";"
895
+ }
896
+ ],
897
+ "isReadonly": true,
898
+ "isOptional": false,
899
+ "releaseTag": "Public",
900
+ "name": "supportsAdoptedStyleSheets",
901
+ "propertyTypeTokenRange": {
902
+ "startIndex": 1,
903
+ "endIndex": 2
904
+ },
905
+ "isStatic": true,
906
+ "isProtected": false,
907
+ "isAbstract": false
908
+ },
909
+ {
910
+ "kind": "Method",
911
+ "canonicalReference": "@microsoft/fast-element!ElementStyles#withStrategy:member(1)",
912
+ "docComment": "/**\n * Sets the strategy that handles adding/removing these styles for an element.\n *\n * @param strategy - The strategy to use.\n */\n",
913
+ "excerptTokens": [
914
+ {
915
+ "kind": "Content",
916
+ "text": "withStrategy(Strategy: "
917
+ },
918
+ {
919
+ "kind": "Reference",
920
+ "text": "ConstructibleStyleStrategy",
921
+ "canonicalReference": "@microsoft/fast-element!ConstructibleStyleStrategy:type"
922
+ },
923
+ {
924
+ "kind": "Content",
925
+ "text": "): "
926
+ },
927
+ {
928
+ "kind": "Content",
929
+ "text": "this"
930
+ },
931
+ {
932
+ "kind": "Content",
933
+ "text": ";"
934
+ }
935
+ ],
936
+ "isStatic": false,
937
+ "returnTypeTokenRange": {
938
+ "startIndex": 3,
939
+ "endIndex": 4
940
+ },
941
+ "releaseTag": "Public",
942
+ "isProtected": false,
943
+ "overloadIndex": 1,
944
+ "parameters": [
945
+ {
946
+ "parameterName": "Strategy",
947
+ "parameterTypeTokenRange": {
948
+ "startIndex": 1,
949
+ "endIndex": 2
950
+ },
951
+ "isOptional": false
952
+ }
953
+ ],
954
+ "isOptional": false,
955
+ "isAbstract": false,
956
+ "name": "withStrategy"
957
+ }
958
+ ],
959
+ "implementsTokenRanges": []
960
+ },
961
+ {
962
+ "kind": "Interface",
963
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext:interface",
964
+ "docComment": "/**\n * Provides additional contextual information available to behaviors and expressions.\n *\n * @public\n */\n",
965
+ "excerptTokens": [
966
+ {
967
+ "kind": "Content",
968
+ "text": "export interface ExecutionContext<TParent = "
969
+ },
970
+ {
971
+ "kind": "Content",
972
+ "text": "any"
973
+ },
974
+ {
975
+ "kind": "Content",
976
+ "text": "> "
977
+ }
978
+ ],
979
+ "fileUrlPath": "dist/dts/observation/observable.d.ts",
980
+ "releaseTag": "Public",
981
+ "typeParameters": [
982
+ {
983
+ "typeParameterName": "TParent",
984
+ "constraintTokenRange": {
985
+ "startIndex": 0,
986
+ "endIndex": 0
987
+ },
988
+ "defaultTypeTokenRange": {
989
+ "startIndex": 1,
990
+ "endIndex": 2
991
+ }
992
+ }
993
+ ],
994
+ "name": "ExecutionContext",
995
+ "preserveMemberOrder": false,
996
+ "members": [
997
+ {
998
+ "kind": "PropertySignature",
999
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#event:member",
1000
+ "docComment": "/**\n * The current event within an event handler.\n */\n",
1001
+ "excerptTokens": [
1002
+ {
1003
+ "kind": "Content",
1004
+ "text": "readonly event: "
1005
+ },
1006
+ {
1007
+ "kind": "Reference",
1008
+ "text": "Event",
1009
+ "canonicalReference": "!Event:interface"
1010
+ },
1011
+ {
1012
+ "kind": "Content",
1013
+ "text": ";"
1014
+ }
1015
+ ],
1016
+ "isReadonly": true,
1017
+ "isOptional": false,
1018
+ "releaseTag": "Public",
1019
+ "name": "event",
1020
+ "propertyTypeTokenRange": {
1021
+ "startIndex": 1,
1022
+ "endIndex": 2
1023
+ }
1024
+ },
1025
+ {
1026
+ "kind": "MethodSignature",
1027
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#eventDetail:member(1)",
1028
+ "docComment": "/**\n * Returns the typed event detail of a custom event.\n */\n",
1029
+ "excerptTokens": [
1030
+ {
1031
+ "kind": "Content",
1032
+ "text": "eventDetail<TDetail>(): "
1033
+ },
1034
+ {
1035
+ "kind": "Content",
1036
+ "text": "TDetail"
1037
+ },
1038
+ {
1039
+ "kind": "Content",
1040
+ "text": ";"
1041
+ }
1042
+ ],
1043
+ "isOptional": false,
1044
+ "returnTypeTokenRange": {
1045
+ "startIndex": 1,
1046
+ "endIndex": 2
1047
+ },
1048
+ "releaseTag": "Public",
1049
+ "overloadIndex": 1,
1050
+ "parameters": [],
1051
+ "typeParameters": [
1052
+ {
1053
+ "typeParameterName": "TDetail",
1054
+ "constraintTokenRange": {
1055
+ "startIndex": 0,
1056
+ "endIndex": 0
1057
+ },
1058
+ "defaultTypeTokenRange": {
1059
+ "startIndex": 0,
1060
+ "endIndex": 0
1061
+ }
1062
+ }
1063
+ ],
1064
+ "name": "eventDetail"
1065
+ },
1066
+ {
1067
+ "kind": "MethodSignature",
1068
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#eventTarget:member(1)",
1069
+ "docComment": "/**\n * Returns the typed event target of the event.\n */\n",
1070
+ "excerptTokens": [
1071
+ {
1072
+ "kind": "Content",
1073
+ "text": "eventTarget<TTarget extends "
1074
+ },
1075
+ {
1076
+ "kind": "Reference",
1077
+ "text": "EventTarget",
1078
+ "canonicalReference": "!EventTarget:interface"
1079
+ },
1080
+ {
1081
+ "kind": "Content",
1082
+ "text": ">(): "
1083
+ },
1084
+ {
1085
+ "kind": "Content",
1086
+ "text": "TTarget"
1087
+ },
1088
+ {
1089
+ "kind": "Content",
1090
+ "text": ";"
1091
+ }
1092
+ ],
1093
+ "isOptional": false,
1094
+ "returnTypeTokenRange": {
1095
+ "startIndex": 3,
1096
+ "endIndex": 4
1097
+ },
1098
+ "releaseTag": "Public",
1099
+ "overloadIndex": 1,
1100
+ "parameters": [],
1101
+ "typeParameters": [
1102
+ {
1103
+ "typeParameterName": "TTarget",
1104
+ "constraintTokenRange": {
1105
+ "startIndex": 1,
1106
+ "endIndex": 2
1107
+ },
1108
+ "defaultTypeTokenRange": {
1109
+ "startIndex": 0,
1110
+ "endIndex": 0
1111
+ }
1112
+ }
1113
+ ],
1114
+ "name": "eventTarget"
1115
+ },
1116
+ {
1117
+ "kind": "PropertySignature",
1118
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#index:member",
1119
+ "docComment": "/**\n * The index of the current item within a repeat context.\n */\n",
1120
+ "excerptTokens": [
1121
+ {
1122
+ "kind": "Content",
1123
+ "text": "index: "
1124
+ },
1125
+ {
1126
+ "kind": "Content",
1127
+ "text": "number"
1128
+ },
1129
+ {
1130
+ "kind": "Content",
1131
+ "text": ";"
1132
+ }
1133
+ ],
1134
+ "isReadonly": false,
1135
+ "isOptional": false,
1136
+ "releaseTag": "Public",
1137
+ "name": "index",
1138
+ "propertyTypeTokenRange": {
1139
+ "startIndex": 1,
1140
+ "endIndex": 2
1141
+ }
1142
+ },
1143
+ {
1144
+ "kind": "PropertySignature",
1145
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#isEven:member",
1146
+ "docComment": "/**\n * Indicates whether the current item within a repeat context has an even index.\n */\n",
1147
+ "excerptTokens": [
1148
+ {
1149
+ "kind": "Content",
1150
+ "text": "readonly isEven: "
1151
+ },
1152
+ {
1153
+ "kind": "Content",
1154
+ "text": "boolean"
1155
+ },
1156
+ {
1157
+ "kind": "Content",
1158
+ "text": ";"
1159
+ }
1160
+ ],
1161
+ "isReadonly": true,
1162
+ "isOptional": false,
1163
+ "releaseTag": "Public",
1164
+ "name": "isEven",
1165
+ "propertyTypeTokenRange": {
1166
+ "startIndex": 1,
1167
+ "endIndex": 2
1168
+ }
1169
+ },
1170
+ {
1171
+ "kind": "PropertySignature",
1172
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#isFirst:member",
1173
+ "docComment": "/**\n * Indicates whether the current item within a repeat context is the first item in the collection.\n */\n",
1174
+ "excerptTokens": [
1175
+ {
1176
+ "kind": "Content",
1177
+ "text": "readonly isFirst: "
1178
+ },
1179
+ {
1180
+ "kind": "Content",
1181
+ "text": "boolean"
1182
+ },
1183
+ {
1184
+ "kind": "Content",
1185
+ "text": ";"
1186
+ }
1187
+ ],
1188
+ "isReadonly": true,
1189
+ "isOptional": false,
1190
+ "releaseTag": "Public",
1191
+ "name": "isFirst",
1192
+ "propertyTypeTokenRange": {
1193
+ "startIndex": 1,
1194
+ "endIndex": 2
1195
+ }
1196
+ },
1197
+ {
1198
+ "kind": "PropertySignature",
1199
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#isInMiddle:member",
1200
+ "docComment": "/**\n * Indicates whether the current item within a repeat context is somewhere in the middle of the collection.\n */\n",
1201
+ "excerptTokens": [
1202
+ {
1203
+ "kind": "Content",
1204
+ "text": "readonly isInMiddle: "
1205
+ },
1206
+ {
1207
+ "kind": "Content",
1208
+ "text": "boolean"
1209
+ },
1210
+ {
1211
+ "kind": "Content",
1212
+ "text": ";"
1213
+ }
1214
+ ],
1215
+ "isReadonly": true,
1216
+ "isOptional": false,
1217
+ "releaseTag": "Public",
1218
+ "name": "isInMiddle",
1219
+ "propertyTypeTokenRange": {
1220
+ "startIndex": 1,
1221
+ "endIndex": 2
1222
+ }
1223
+ },
1224
+ {
1225
+ "kind": "PropertySignature",
1226
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#isLast:member",
1227
+ "docComment": "/**\n * Indicates whether the current item within a repeat context is the last item in the collection.\n */\n",
1228
+ "excerptTokens": [
1229
+ {
1230
+ "kind": "Content",
1231
+ "text": "readonly isLast: "
1232
+ },
1233
+ {
1234
+ "kind": "Content",
1235
+ "text": "boolean"
1236
+ },
1237
+ {
1238
+ "kind": "Content",
1239
+ "text": ";"
1240
+ }
1241
+ ],
1242
+ "isReadonly": true,
1243
+ "isOptional": false,
1244
+ "releaseTag": "Public",
1245
+ "name": "isLast",
1246
+ "propertyTypeTokenRange": {
1247
+ "startIndex": 1,
1248
+ "endIndex": 2
1249
+ }
1250
+ },
1251
+ {
1252
+ "kind": "PropertySignature",
1253
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#isOdd:member",
1254
+ "docComment": "/**\n * Indicates whether the current item within a repeat context has an odd index.\n */\n",
1255
+ "excerptTokens": [
1256
+ {
1257
+ "kind": "Content",
1258
+ "text": "readonly isOdd: "
1259
+ },
1260
+ {
1261
+ "kind": "Content",
1262
+ "text": "boolean"
1263
+ },
1264
+ {
1265
+ "kind": "Content",
1266
+ "text": ";"
1267
+ }
1268
+ ],
1269
+ "isReadonly": true,
1270
+ "isOptional": false,
1271
+ "releaseTag": "Public",
1272
+ "name": "isOdd",
1273
+ "propertyTypeTokenRange": {
1274
+ "startIndex": 1,
1275
+ "endIndex": 2
1276
+ }
1277
+ },
1278
+ {
1279
+ "kind": "PropertySignature",
1280
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#length:member",
1281
+ "docComment": "/**\n * The length of the current collection within a repeat context.\n */\n",
1282
+ "excerptTokens": [
1283
+ {
1284
+ "kind": "Content",
1285
+ "text": "length: "
1286
+ },
1287
+ {
1288
+ "kind": "Content",
1289
+ "text": "number"
1290
+ },
1291
+ {
1292
+ "kind": "Content",
1293
+ "text": ";"
1294
+ }
1295
+ ],
1296
+ "isReadonly": false,
1297
+ "isOptional": false,
1298
+ "releaseTag": "Public",
1299
+ "name": "length",
1300
+ "propertyTypeTokenRange": {
1301
+ "startIndex": 1,
1302
+ "endIndex": 2
1303
+ }
1304
+ },
1305
+ {
1306
+ "kind": "PropertySignature",
1307
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#parent:member",
1308
+ "docComment": "/**\n * The parent data source within a nested context.\n */\n",
1309
+ "excerptTokens": [
1310
+ {
1311
+ "kind": "Content",
1312
+ "text": "parent: "
1313
+ },
1314
+ {
1315
+ "kind": "Content",
1316
+ "text": "TParent"
1317
+ },
1318
+ {
1319
+ "kind": "Content",
1320
+ "text": ";"
1321
+ }
1322
+ ],
1323
+ "isReadonly": false,
1324
+ "isOptional": false,
1325
+ "releaseTag": "Public",
1326
+ "name": "parent",
1327
+ "propertyTypeTokenRange": {
1328
+ "startIndex": 1,
1329
+ "endIndex": 2
1330
+ }
1331
+ },
1332
+ {
1333
+ "kind": "PropertySignature",
1334
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext#parentContext:member",
1335
+ "docComment": "/**\n * The parent execution context when in nested context scenarios.\n */\n",
1336
+ "excerptTokens": [
1337
+ {
1338
+ "kind": "Content",
1339
+ "text": "parentContext: "
1340
+ },
1341
+ {
1342
+ "kind": "Reference",
1343
+ "text": "ExecutionContext",
1344
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext:interface"
1345
+ },
1346
+ {
1347
+ "kind": "Content",
1348
+ "text": "<TParent>"
1349
+ },
1350
+ {
1351
+ "kind": "Content",
1352
+ "text": ";"
1353
+ }
1354
+ ],
1355
+ "isReadonly": false,
1356
+ "isOptional": false,
1357
+ "releaseTag": "Public",
1358
+ "name": "parentContext",
1359
+ "propertyTypeTokenRange": {
1360
+ "startIndex": 1,
1361
+ "endIndex": 3
1362
+ }
1363
+ }
1364
+ ],
1365
+ "extendsTokenRanges": []
1366
+ },
1367
+ {
1368
+ "kind": "Variable",
1369
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext:var",
1370
+ "docComment": "/**\n * Provides additional contextual information available to behaviors and expressions.\n *\n * @public\n */\n",
1371
+ "excerptTokens": [
1372
+ {
1373
+ "kind": "Content",
1374
+ "text": "ExecutionContext: "
1375
+ },
1376
+ {
1377
+ "kind": "Reference",
1378
+ "text": "Readonly",
1379
+ "canonicalReference": "!Readonly:type"
1380
+ },
1381
+ {
1382
+ "kind": "Content",
1383
+ "text": "<{\n default: "
1384
+ },
1385
+ {
1386
+ "kind": "Reference",
1387
+ "text": "ExecutionContext",
1388
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext:interface"
1389
+ },
1390
+ {
1391
+ "kind": "Content",
1392
+ "text": ";\n getEvent(): "
1393
+ },
1394
+ {
1395
+ "kind": "Reference",
1396
+ "text": "Event",
1397
+ "canonicalReference": "!Event:interface"
1398
+ },
1399
+ {
1400
+ "kind": "Content",
1401
+ "text": " | null;\n setEvent(event: "
1402
+ },
1403
+ {
1404
+ "kind": "Reference",
1405
+ "text": "Event",
1406
+ "canonicalReference": "!Event:interface"
1407
+ },
1408
+ {
1409
+ "kind": "Content",
1410
+ "text": " | null): void;\n}>"
1411
+ }
1412
+ ],
1413
+ "fileUrlPath": "dist/dts/observation/observable.d.ts",
1414
+ "isReadonly": true,
1415
+ "releaseTag": "Public",
1416
+ "name": "ExecutionContext",
1417
+ "variableTypeTokenRange": {
1418
+ "startIndex": 1,
1419
+ "endIndex": 9
1420
+ }
1421
+ },
1422
+ {
1423
+ "kind": "Interface",
1424
+ "canonicalReference": "@microsoft/fast-element!ExpressionController:interface",
1425
+ "docComment": "/**\n * Controls the lifecycle of an expression and provides relevant context.\n *\n * @public\n */\n",
1426
+ "excerptTokens": [
1427
+ {
1428
+ "kind": "Content",
1429
+ "text": "export interface ExpressionController<TSource = "
1430
+ },
1431
+ {
1432
+ "kind": "Content",
1433
+ "text": "any"
1434
+ },
1435
+ {
1436
+ "kind": "Content",
1437
+ "text": ", TParent = "
1438
+ },
1439
+ {
1440
+ "kind": "Content",
1441
+ "text": "any"
1442
+ },
1443
+ {
1444
+ "kind": "Content",
1445
+ "text": "> "
1446
+ }
1447
+ ],
1448
+ "fileUrlPath": "dist/dts/observation/observable.d.ts",
1449
+ "releaseTag": "Public",
1450
+ "typeParameters": [
1451
+ {
1452
+ "typeParameterName": "TSource",
1453
+ "constraintTokenRange": {
1454
+ "startIndex": 0,
1455
+ "endIndex": 0
1456
+ },
1457
+ "defaultTypeTokenRange": {
1458
+ "startIndex": 1,
1459
+ "endIndex": 2
1460
+ }
1461
+ },
1462
+ {
1463
+ "typeParameterName": "TParent",
1464
+ "constraintTokenRange": {
1465
+ "startIndex": 0,
1466
+ "endIndex": 0
1467
+ },
1468
+ "defaultTypeTokenRange": {
1469
+ "startIndex": 3,
1470
+ "endIndex": 4
1471
+ }
1472
+ }
1473
+ ],
1474
+ "name": "ExpressionController",
1475
+ "preserveMemberOrder": false,
1476
+ "members": [
1477
+ {
1478
+ "kind": "PropertySignature",
1479
+ "canonicalReference": "@microsoft/fast-element!ExpressionController#context:member",
1480
+ "docComment": "/**\n * The context the expression is evaluated against.\n */\n",
1481
+ "excerptTokens": [
1482
+ {
1483
+ "kind": "Content",
1484
+ "text": "readonly context: "
1485
+ },
1486
+ {
1487
+ "kind": "Reference",
1488
+ "text": "ExecutionContext",
1489
+ "canonicalReference": "@microsoft/fast-element!ExecutionContext:interface"
1490
+ },
1491
+ {
1492
+ "kind": "Content",
1493
+ "text": "<TParent>"
1494
+ },
1495
+ {
1496
+ "kind": "Content",
1497
+ "text": ";"
1498
+ }
1499
+ ],
1500
+ "isReadonly": true,
1501
+ "isOptional": false,
1502
+ "releaseTag": "Public",
1503
+ "name": "context",
1504
+ "propertyTypeTokenRange": {
1505
+ "startIndex": 1,
1506
+ "endIndex": 3
1507
+ }
1508
+ },
1509
+ {
1510
+ "kind": "PropertySignature",
1511
+ "canonicalReference": "@microsoft/fast-element!ExpressionController#isBound:member",
1512
+ "docComment": "/**\n * Indicates whether the controller is bound.\n */\n",
1513
+ "excerptTokens": [
1514
+ {
1515
+ "kind": "Content",
1516
+ "text": "readonly isBound: "
1517
+ },
1518
+ {
1519
+ "kind": "Content",
1520
+ "text": "boolean"
1521
+ },
1522
+ {
1523
+ "kind": "Content",
1524
+ "text": ";"
1525
+ }
1526
+ ],
1527
+ "isReadonly": true,
1528
+ "isOptional": false,
1529
+ "releaseTag": "Public",
1530
+ "name": "isBound",
1531
+ "propertyTypeTokenRange": {
1532
+ "startIndex": 1,
1533
+ "endIndex": 2
1534
+ }
1535
+ },
1536
+ {
1537
+ "kind": "MethodSignature",
1538
+ "canonicalReference": "@microsoft/fast-element!ExpressionController#onUnbind:member(1)",
1539
+ "docComment": "/**\n * Registers an unbind handler with the controller.\n *\n * @param behavior - An object to call when the controller unbinds.\n */\n",
1540
+ "excerptTokens": [
1541
+ {
1542
+ "kind": "Content",
1543
+ "text": "onUnbind(behavior: "
1544
+ },
1545
+ {
1546
+ "kind": "Content",
1547
+ "text": "{\n unbind(controller: "
1548
+ },
1549
+ {
1550
+ "kind": "Reference",
1551
+ "text": "ExpressionController",
1552
+ "canonicalReference": "@microsoft/fast-element!ExpressionController:interface"
1553
+ },
1554
+ {
1555
+ "kind": "Content",
1556
+ "text": "<TSource, TParent>): any;\n }"
1557
+ },
1558
+ {
1559
+ "kind": "Content",
1560
+ "text": "): "
1561
+ },
1562
+ {
1563
+ "kind": "Content",
1564
+ "text": "void"
1565
+ },
1566
+ {
1567
+ "kind": "Content",
1568
+ "text": ";"
1569
+ }
1570
+ ],
1571
+ "isOptional": false,
1572
+ "returnTypeTokenRange": {
1573
+ "startIndex": 5,
1574
+ "endIndex": 6
1575
+ },
1576
+ "releaseTag": "Public",
1577
+ "overloadIndex": 1,
1578
+ "parameters": [
1579
+ {
1580
+ "parameterName": "behavior",
1581
+ "parameterTypeTokenRange": {
1582
+ "startIndex": 1,
1583
+ "endIndex": 4
1584
+ },
1585
+ "isOptional": false
1586
+ }
1587
+ ],
1588
+ "name": "onUnbind"
1589
+ },
1590
+ {
1591
+ "kind": "PropertySignature",
1592
+ "canonicalReference": "@microsoft/fast-element!ExpressionController#source:member",
1593
+ "docComment": "/**\n * The source the expression is evaluated against.\n */\n",
1594
+ "excerptTokens": [
1595
+ {
1596
+ "kind": "Content",
1597
+ "text": "readonly source: "
1598
+ },
1599
+ {
1600
+ "kind": "Content",
1601
+ "text": "TSource"
1602
+ },
1603
+ {
1604
+ "kind": "Content",
1605
+ "text": ";"
1606
+ }
1607
+ ],
1608
+ "isReadonly": true,
1609
+ "isOptional": false,
1610
+ "releaseTag": "Public",
1611
+ "name": "source",
1612
+ "propertyTypeTokenRange": {
1613
+ "startIndex": 1,
1614
+ "endIndex": 2
1615
+ }
1616
+ },
1617
+ {
1618
+ "kind": "PropertySignature",
1619
+ "canonicalReference": "@microsoft/fast-element!ExpressionController#sourceLifetime:member",
1620
+ "docComment": "/**\n * Indicates how the source's lifetime relates to the controller's lifetime.\n */\n",
1621
+ "excerptTokens": [
1622
+ {
1623
+ "kind": "Content",
1624
+ "text": "readonly sourceLifetime?: "
1625
+ },
1626
+ {
1627
+ "kind": "Reference",
1628
+ "text": "SourceLifetime",
1629
+ "canonicalReference": "@microsoft/fast-element!SourceLifetime:type"
1630
+ },
1631
+ {
1632
+ "kind": "Content",
1633
+ "text": ";"
1634
+ }
1635
+ ],
1636
+ "isReadonly": true,
1637
+ "isOptional": true,
1638
+ "releaseTag": "Public",
1639
+ "name": "sourceLifetime",
1640
+ "propertyTypeTokenRange": {
1641
+ "startIndex": 1,
1642
+ "endIndex": 2
1643
+ }
1644
+ }
1645
+ ],
1646
+ "extendsTokenRanges": []
1647
+ },
1648
+ {
1649
+ "kind": "Interface",
1650
+ "canonicalReference": "@microsoft/fast-element!HostBehavior:interface",
1651
+ "docComment": "/**\n * Represents an object that can contribute behavior to a host.\n *\n * @public\n */\n",
1652
+ "excerptTokens": [
1653
+ {
1654
+ "kind": "Content",
1655
+ "text": "export interface HostBehavior<TSource = "
1656
+ },
1657
+ {
1658
+ "kind": "Content",
1659
+ "text": "any"
1660
+ },
1661
+ {
1662
+ "kind": "Content",
1663
+ "text": "> "
1664
+ }
1665
+ ],
1666
+ "fileUrlPath": "dist/dts/styles/host.d.ts",
1667
+ "releaseTag": "Public",
1668
+ "typeParameters": [
1669
+ {
1670
+ "typeParameterName": "TSource",
1671
+ "constraintTokenRange": {
1672
+ "startIndex": 0,
1673
+ "endIndex": 0
1674
+ },
1675
+ "defaultTypeTokenRange": {
1676
+ "startIndex": 1,
1677
+ "endIndex": 2
1678
+ }
1679
+ }
1680
+ ],
1681
+ "name": "HostBehavior",
1682
+ "preserveMemberOrder": false,
1683
+ "members": [
1684
+ {
1685
+ "kind": "MethodSignature",
1686
+ "canonicalReference": "@microsoft/fast-element!HostBehavior#addedCallback:member(1)",
1687
+ "docComment": "/**\n * Executed when this behavior is attached to a controller.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
1688
+ "excerptTokens": [
1689
+ {
1690
+ "kind": "Content",
1691
+ "text": "addedCallback?(controller: "
1692
+ },
1693
+ {
1694
+ "kind": "Reference",
1695
+ "text": "HostController",
1696
+ "canonicalReference": "@microsoft/fast-element!HostController:interface"
1697
+ },
1698
+ {
1699
+ "kind": "Content",
1700
+ "text": "<TSource>"
1701
+ },
1702
+ {
1703
+ "kind": "Content",
1704
+ "text": "): "
1705
+ },
1706
+ {
1707
+ "kind": "Content",
1708
+ "text": "void"
1709
+ },
1710
+ {
1711
+ "kind": "Content",
1712
+ "text": ";"
1713
+ }
1714
+ ],
1715
+ "isOptional": true,
1716
+ "returnTypeTokenRange": {
1717
+ "startIndex": 4,
1718
+ "endIndex": 5
1719
+ },
1720
+ "releaseTag": "Public",
1721
+ "overloadIndex": 1,
1722
+ "parameters": [
1723
+ {
1724
+ "parameterName": "controller",
1725
+ "parameterTypeTokenRange": {
1726
+ "startIndex": 1,
1727
+ "endIndex": 3
1728
+ },
1729
+ "isOptional": false
1730
+ }
1731
+ ],
1732
+ "name": "addedCallback"
1733
+ },
1734
+ {
1735
+ "kind": "MethodSignature",
1736
+ "canonicalReference": "@microsoft/fast-element!HostBehavior#connectedCallback:member(1)",
1737
+ "docComment": "/**\n * Executed when this behavior's host is connected.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
1738
+ "excerptTokens": [
1739
+ {
1740
+ "kind": "Content",
1741
+ "text": "connectedCallback?(controller: "
1742
+ },
1743
+ {
1744
+ "kind": "Reference",
1745
+ "text": "HostController",
1746
+ "canonicalReference": "@microsoft/fast-element!HostController:interface"
1747
+ },
1748
+ {
1749
+ "kind": "Content",
1750
+ "text": "<TSource>"
1751
+ },
1752
+ {
1753
+ "kind": "Content",
1754
+ "text": "): "
1755
+ },
1756
+ {
1757
+ "kind": "Content",
1758
+ "text": "void"
1759
+ },
1760
+ {
1761
+ "kind": "Content",
1762
+ "text": ";"
1763
+ }
1764
+ ],
1765
+ "isOptional": true,
1766
+ "returnTypeTokenRange": {
1767
+ "startIndex": 4,
1768
+ "endIndex": 5
1769
+ },
1770
+ "releaseTag": "Public",
1771
+ "overloadIndex": 1,
1772
+ "parameters": [
1773
+ {
1774
+ "parameterName": "controller",
1775
+ "parameterTypeTokenRange": {
1776
+ "startIndex": 1,
1777
+ "endIndex": 3
1778
+ },
1779
+ "isOptional": false
1780
+ }
1781
+ ],
1782
+ "name": "connectedCallback"
1783
+ },
1784
+ {
1785
+ "kind": "MethodSignature",
1786
+ "canonicalReference": "@microsoft/fast-element!HostBehavior#disconnectedCallback:member(1)",
1787
+ "docComment": "/**\n * Executed when this behavior's host is disconnected.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
1788
+ "excerptTokens": [
1789
+ {
1790
+ "kind": "Content",
1791
+ "text": "disconnectedCallback?(controller: "
1792
+ },
1793
+ {
1794
+ "kind": "Reference",
1795
+ "text": "HostController",
1796
+ "canonicalReference": "@microsoft/fast-element!HostController:interface"
1797
+ },
1798
+ {
1799
+ "kind": "Content",
1800
+ "text": "<TSource>"
1801
+ },
1802
+ {
1803
+ "kind": "Content",
1804
+ "text": "): "
1805
+ },
1806
+ {
1807
+ "kind": "Content",
1808
+ "text": "void"
1809
+ },
1810
+ {
1811
+ "kind": "Content",
1812
+ "text": ";"
1813
+ }
1814
+ ],
1815
+ "isOptional": true,
1816
+ "returnTypeTokenRange": {
1817
+ "startIndex": 4,
1818
+ "endIndex": 5
1819
+ },
1820
+ "releaseTag": "Public",
1821
+ "overloadIndex": 1,
1822
+ "parameters": [
1823
+ {
1824
+ "parameterName": "controller",
1825
+ "parameterTypeTokenRange": {
1826
+ "startIndex": 1,
1827
+ "endIndex": 3
1828
+ },
1829
+ "isOptional": false
1830
+ }
1831
+ ],
1832
+ "name": "disconnectedCallback"
1833
+ },
1834
+ {
1835
+ "kind": "MethodSignature",
1836
+ "canonicalReference": "@microsoft/fast-element!HostBehavior#removedCallback:member(1)",
1837
+ "docComment": "/**\n * Executed when this behavior is detached from a controller.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
1838
+ "excerptTokens": [
1839
+ {
1840
+ "kind": "Content",
1841
+ "text": "removedCallback?(controller: "
1842
+ },
1843
+ {
1844
+ "kind": "Reference",
1845
+ "text": "HostController",
1846
+ "canonicalReference": "@microsoft/fast-element!HostController:interface"
1847
+ },
1848
+ {
1849
+ "kind": "Content",
1850
+ "text": "<TSource>"
1851
+ },
1852
+ {
1853
+ "kind": "Content",
1854
+ "text": "): "
1855
+ },
1856
+ {
1857
+ "kind": "Content",
1858
+ "text": "void"
1859
+ },
1860
+ {
1861
+ "kind": "Content",
1862
+ "text": ";"
1863
+ }
1864
+ ],
1865
+ "isOptional": true,
1866
+ "returnTypeTokenRange": {
1867
+ "startIndex": 4,
1868
+ "endIndex": 5
1869
+ },
1870
+ "releaseTag": "Public",
1871
+ "overloadIndex": 1,
1872
+ "parameters": [
1873
+ {
1874
+ "parameterName": "controller",
1875
+ "parameterTypeTokenRange": {
1876
+ "startIndex": 1,
1877
+ "endIndex": 3
1878
+ },
1879
+ "isOptional": false
1880
+ }
1881
+ ],
1882
+ "name": "removedCallback"
1883
+ }
1884
+ ],
1885
+ "extendsTokenRanges": []
1886
+ },
1887
+ {
1888
+ "kind": "Interface",
1889
+ "canonicalReference": "@microsoft/fast-element!HostController:interface",
1890
+ "docComment": "/**\n * Controls the lifecycle and context of behaviors and styles associated with a component host.\n *\n * @public\n */\n",
1891
+ "excerptTokens": [
1892
+ {
1893
+ "kind": "Content",
1894
+ "text": "export interface HostController<TSource = "
1895
+ },
1896
+ {
1897
+ "kind": "Content",
1898
+ "text": "any"
1899
+ },
1900
+ {
1901
+ "kind": "Content",
1902
+ "text": "> extends "
1903
+ },
1904
+ {
1905
+ "kind": "Reference",
1906
+ "text": "ExpressionController",
1907
+ "canonicalReference": "@microsoft/fast-element!ExpressionController:interface"
1908
+ },
1909
+ {
1910
+ "kind": "Content",
1911
+ "text": "<TSource>"
1912
+ },
1913
+ {
1914
+ "kind": "Content",
1915
+ "text": " "
1916
+ }
1917
+ ],
1918
+ "fileUrlPath": "dist/dts/styles/host.d.ts",
1919
+ "releaseTag": "Public",
1920
+ "typeParameters": [
1921
+ {
1922
+ "typeParameterName": "TSource",
1923
+ "constraintTokenRange": {
1924
+ "startIndex": 0,
1925
+ "endIndex": 0
1926
+ },
1927
+ "defaultTypeTokenRange": {
1928
+ "startIndex": 1,
1929
+ "endIndex": 2
1930
+ }
1931
+ }
1932
+ ],
1933
+ "name": "HostController",
1934
+ "preserveMemberOrder": false,
1935
+ "members": [
1936
+ {
1937
+ "kind": "MethodSignature",
1938
+ "canonicalReference": "@microsoft/fast-element!HostController#addBehavior:member(1)",
1939
+ "docComment": "/**\n * Adds the behavior to the component.\n *\n * @param behavior - The behavior to add.\n */\n",
1940
+ "excerptTokens": [
1941
+ {
1942
+ "kind": "Content",
1943
+ "text": "addBehavior(behavior: "
1944
+ },
1945
+ {
1946
+ "kind": "Reference",
1947
+ "text": "HostBehavior",
1948
+ "canonicalReference": "@microsoft/fast-element!HostBehavior:interface"
1949
+ },
1950
+ {
1951
+ "kind": "Content",
1952
+ "text": "<TSource>"
1953
+ },
1954
+ {
1955
+ "kind": "Content",
1956
+ "text": "): "
1957
+ },
1958
+ {
1959
+ "kind": "Content",
1960
+ "text": "void"
1961
+ },
1962
+ {
1963
+ "kind": "Content",
1964
+ "text": ";"
1965
+ }
1966
+ ],
1967
+ "isOptional": false,
1968
+ "returnTypeTokenRange": {
1969
+ "startIndex": 4,
1970
+ "endIndex": 5
1971
+ },
1972
+ "releaseTag": "Public",
1973
+ "overloadIndex": 1,
1974
+ "parameters": [
1975
+ {
1976
+ "parameterName": "behavior",
1977
+ "parameterTypeTokenRange": {
1978
+ "startIndex": 1,
1979
+ "endIndex": 3
1980
+ },
1981
+ "isOptional": false
1982
+ }
1983
+ ],
1984
+ "name": "addBehavior"
1985
+ },
1986
+ {
1987
+ "kind": "MethodSignature",
1988
+ "canonicalReference": "@microsoft/fast-element!HostController#addStyles:member(1)",
1989
+ "docComment": "/**\n * Adds styles to this element. Providing an HTMLStyleElement will attach the element instance to the shadowRoot.\n *\n * @param styles - The styles to add.\n */\n",
1990
+ "excerptTokens": [
1991
+ {
1992
+ "kind": "Content",
1993
+ "text": "addStyles(styles: "
1994
+ },
1995
+ {
1996
+ "kind": "Reference",
1997
+ "text": "ElementStyles",
1998
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
1999
+ },
2000
+ {
2001
+ "kind": "Content",
2002
+ "text": " | "
2003
+ },
2004
+ {
2005
+ "kind": "Reference",
2006
+ "text": "HTMLStyleElement",
2007
+ "canonicalReference": "!HTMLStyleElement:interface"
2008
+ },
2009
+ {
2010
+ "kind": "Content",
2011
+ "text": " | null | undefined"
2012
+ },
2013
+ {
2014
+ "kind": "Content",
2015
+ "text": "): "
2016
+ },
2017
+ {
2018
+ "kind": "Content",
2019
+ "text": "void"
2020
+ },
2021
+ {
2022
+ "kind": "Content",
2023
+ "text": ";"
2024
+ }
2025
+ ],
2026
+ "isOptional": false,
2027
+ "returnTypeTokenRange": {
2028
+ "startIndex": 6,
2029
+ "endIndex": 7
2030
+ },
2031
+ "releaseTag": "Public",
2032
+ "overloadIndex": 1,
2033
+ "parameters": [
2034
+ {
2035
+ "parameterName": "styles",
2036
+ "parameterTypeTokenRange": {
2037
+ "startIndex": 1,
2038
+ "endIndex": 5
2039
+ },
2040
+ "isOptional": false
2041
+ }
2042
+ ],
2043
+ "name": "addStyles"
2044
+ },
2045
+ {
2046
+ "kind": "PropertySignature",
2047
+ "canonicalReference": "@microsoft/fast-element!HostController#isConnected:member",
2048
+ "docComment": "/**\n * Indicates whether the host is connected or not.\n */\n",
2049
+ "excerptTokens": [
2050
+ {
2051
+ "kind": "Content",
2052
+ "text": "readonly isConnected: "
2053
+ },
2054
+ {
2055
+ "kind": "Content",
2056
+ "text": "boolean"
2057
+ },
2058
+ {
2059
+ "kind": "Content",
2060
+ "text": ";"
2061
+ }
2062
+ ],
2063
+ "isReadonly": true,
2064
+ "isOptional": false,
2065
+ "releaseTag": "Public",
2066
+ "name": "isConnected",
2067
+ "propertyTypeTokenRange": {
2068
+ "startIndex": 1,
2069
+ "endIndex": 2
2070
+ }
2071
+ },
2072
+ {
2073
+ "kind": "PropertySignature",
2074
+ "canonicalReference": "@microsoft/fast-element!HostController#mainStyles:member",
2075
+ "docComment": "/**\n * The main set of styles used for the component, independent of any behavior-specific styles.\n */\n",
2076
+ "excerptTokens": [
2077
+ {
2078
+ "kind": "Content",
2079
+ "text": "mainStyles: "
2080
+ },
2081
+ {
2082
+ "kind": "Reference",
2083
+ "text": "ElementStyles",
2084
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
2085
+ },
2086
+ {
2087
+ "kind": "Content",
2088
+ "text": " | null"
2089
+ },
2090
+ {
2091
+ "kind": "Content",
2092
+ "text": ";"
2093
+ }
2094
+ ],
2095
+ "isReadonly": false,
2096
+ "isOptional": false,
2097
+ "releaseTag": "Public",
2098
+ "name": "mainStyles",
2099
+ "propertyTypeTokenRange": {
2100
+ "startIndex": 1,
2101
+ "endIndex": 3
2102
+ }
2103
+ },
2104
+ {
2105
+ "kind": "MethodSignature",
2106
+ "canonicalReference": "@microsoft/fast-element!HostController#removeBehavior:member(1)",
2107
+ "docComment": "/**\n * Removes the behavior from the component.\n *\n * @param behavior - The behavior to remove.\n *\n * @param force - Forces removal even if this behavior was added more than once.\n */\n",
2108
+ "excerptTokens": [
2109
+ {
2110
+ "kind": "Content",
2111
+ "text": "removeBehavior(behavior: "
2112
+ },
2113
+ {
2114
+ "kind": "Reference",
2115
+ "text": "HostBehavior",
2116
+ "canonicalReference": "@microsoft/fast-element!HostBehavior:interface"
2117
+ },
2118
+ {
2119
+ "kind": "Content",
2120
+ "text": "<TSource>"
2121
+ },
2122
+ {
2123
+ "kind": "Content",
2124
+ "text": ", force?: "
2125
+ },
2126
+ {
2127
+ "kind": "Content",
2128
+ "text": "boolean"
2129
+ },
2130
+ {
2131
+ "kind": "Content",
2132
+ "text": "): "
2133
+ },
2134
+ {
2135
+ "kind": "Content",
2136
+ "text": "void"
2137
+ },
2138
+ {
2139
+ "kind": "Content",
2140
+ "text": ";"
2141
+ }
2142
+ ],
2143
+ "isOptional": false,
2144
+ "returnTypeTokenRange": {
2145
+ "startIndex": 6,
2146
+ "endIndex": 7
2147
+ },
2148
+ "releaseTag": "Public",
2149
+ "overloadIndex": 1,
2150
+ "parameters": [
2151
+ {
2152
+ "parameterName": "behavior",
2153
+ "parameterTypeTokenRange": {
2154
+ "startIndex": 1,
2155
+ "endIndex": 3
2156
+ },
2157
+ "isOptional": false
2158
+ },
2159
+ {
2160
+ "parameterName": "force",
2161
+ "parameterTypeTokenRange": {
2162
+ "startIndex": 4,
2163
+ "endIndex": 5
2164
+ },
2165
+ "isOptional": true
2166
+ }
2167
+ ],
2168
+ "name": "removeBehavior"
2169
+ },
2170
+ {
2171
+ "kind": "MethodSignature",
2172
+ "canonicalReference": "@microsoft/fast-element!HostController#removeStyles:member(1)",
2173
+ "docComment": "/**\n * Removes styles from this element. Providing an HTMLStyleElement will detach the element instance from the shadowRoot.\n *\n * @param styles - the styles to remove.\n */\n",
2174
+ "excerptTokens": [
2175
+ {
2176
+ "kind": "Content",
2177
+ "text": "removeStyles(styles: "
2178
+ },
2179
+ {
2180
+ "kind": "Reference",
2181
+ "text": "ElementStyles",
2182
+ "canonicalReference": "@microsoft/fast-element!ElementStyles:class"
2183
+ },
2184
+ {
2185
+ "kind": "Content",
2186
+ "text": " | "
2187
+ },
2188
+ {
2189
+ "kind": "Reference",
2190
+ "text": "HTMLStyleElement",
2191
+ "canonicalReference": "!HTMLStyleElement:interface"
2192
+ },
2193
+ {
2194
+ "kind": "Content",
2195
+ "text": " | null | undefined"
2196
+ },
2197
+ {
2198
+ "kind": "Content",
2199
+ "text": "): "
2200
+ },
2201
+ {
2202
+ "kind": "Content",
2203
+ "text": "void"
2204
+ },
2205
+ {
2206
+ "kind": "Content",
2207
+ "text": ";"
2208
+ }
2209
+ ],
2210
+ "isOptional": false,
2211
+ "returnTypeTokenRange": {
2212
+ "startIndex": 6,
2213
+ "endIndex": 7
2214
+ },
2215
+ "releaseTag": "Public",
2216
+ "overloadIndex": 1,
2217
+ "parameters": [
2218
+ {
2219
+ "parameterName": "styles",
2220
+ "parameterTypeTokenRange": {
2221
+ "startIndex": 1,
2222
+ "endIndex": 5
2223
+ },
2224
+ "isOptional": false
2225
+ }
2226
+ ],
2227
+ "name": "removeStyles"
2228
+ }
2229
+ ],
2230
+ "extendsTokenRanges": [
2231
+ {
2232
+ "startIndex": 3,
2233
+ "endIndex": 5
2234
+ }
2235
+ ]
2236
+ },
2237
+ {
2238
+ "kind": "TypeAlias",
2239
+ "canonicalReference": "@microsoft/fast-element!SourceLifetime:type",
2240
+ "docComment": "/**\n * Describes how the source's lifetime relates to its controller's lifetime.\n *\n * @public\n */\n",
2241
+ "excerptTokens": [
2242
+ {
2243
+ "kind": "Content",
2244
+ "text": "export type SourceLifetime = "
2245
+ },
2246
+ {
2247
+ "kind": "Content",
2248
+ "text": "(typeof "
2249
+ },
2250
+ {
2251
+ "kind": "Reference",
2252
+ "text": "SourceLifetime",
2253
+ "canonicalReference": "@microsoft/fast-element!SourceLifetime:var"
2254
+ },
2255
+ {
2256
+ "kind": "Content",
2257
+ "text": ")[keyof typeof "
2258
+ },
2259
+ {
2260
+ "kind": "Reference",
2261
+ "text": "SourceLifetime",
2262
+ "canonicalReference": "@microsoft/fast-element!SourceLifetime:var"
2263
+ },
2264
+ {
2265
+ "kind": "Content",
2266
+ "text": "]"
2267
+ },
2268
+ {
2269
+ "kind": "Content",
2270
+ "text": ";"
2271
+ }
2272
+ ],
2273
+ "fileUrlPath": "dist/dts/observation/observable.d.ts",
2274
+ "releaseTag": "Public",
2275
+ "name": "SourceLifetime",
2276
+ "typeTokenRange": {
2277
+ "startIndex": 1,
2278
+ "endIndex": 6
2279
+ }
2280
+ },
2281
+ {
2282
+ "kind": "Variable",
2283
+ "canonicalReference": "@microsoft/fast-element!SourceLifetime:var",
2284
+ "docComment": "/**\n * Describes how the source's lifetime relates to its controller's lifetime.\n *\n * @public\n */\n",
2285
+ "excerptTokens": [
2286
+ {
2287
+ "kind": "Content",
2288
+ "text": "SourceLifetime: "
2289
+ },
2290
+ {
2291
+ "kind": "Reference",
2292
+ "text": "Readonly",
2293
+ "canonicalReference": "!Readonly:type"
2294
+ },
2295
+ {
2296
+ "kind": "Content",
2297
+ "text": "<{\n readonly unknown: undefined;\n readonly coupled: 1;\n}>"
2298
+ }
2299
+ ],
2300
+ "fileUrlPath": "dist/dts/observation/observable.d.ts",
2301
+ "isReadonly": true,
2302
+ "releaseTag": "Public",
2303
+ "name": "SourceLifetime",
2304
+ "variableTypeTokenRange": {
2305
+ "startIndex": 1,
2306
+ "endIndex": 3
2307
+ }
2308
+ },
2309
+ {
2310
+ "kind": "Interface",
2311
+ "canonicalReference": "@microsoft/fast-element!StyleStrategy:interface",
2312
+ "docComment": "/**\n * Implemented to provide specific behavior when adding/removing styles for elements.\n *\n * @public\n */\n",
2313
+ "excerptTokens": [
2314
+ {
2315
+ "kind": "Content",
2316
+ "text": "export interface StyleStrategy "
2317
+ }
2318
+ ],
2319
+ "fileUrlPath": "dist/dts/styles/style-strategy.d.ts",
2320
+ "releaseTag": "Public",
2321
+ "name": "StyleStrategy",
2322
+ "preserveMemberOrder": false,
2323
+ "members": [
2324
+ {
2325
+ "kind": "MethodSignature",
2326
+ "canonicalReference": "@microsoft/fast-element!StyleStrategy#addStylesTo:member(1)",
2327
+ "docComment": "/**\n * Adds styles to the target.\n *\n * @param target - The target to add the styles to.\n */\n",
2328
+ "excerptTokens": [
2329
+ {
2330
+ "kind": "Content",
2331
+ "text": "addStylesTo(target: "
2332
+ },
2333
+ {
2334
+ "kind": "Reference",
2335
+ "text": "StyleTarget",
2336
+ "canonicalReference": "@microsoft/fast-element!StyleTarget:interface"
2337
+ },
2338
+ {
2339
+ "kind": "Content",
2340
+ "text": "): "
2341
+ },
2342
+ {
2343
+ "kind": "Content",
2344
+ "text": "void"
2345
+ },
2346
+ {
2347
+ "kind": "Content",
2348
+ "text": ";"
2349
+ }
2350
+ ],
2351
+ "isOptional": false,
2352
+ "returnTypeTokenRange": {
2353
+ "startIndex": 3,
2354
+ "endIndex": 4
2355
+ },
2356
+ "releaseTag": "Public",
2357
+ "overloadIndex": 1,
2358
+ "parameters": [
2359
+ {
2360
+ "parameterName": "target",
2361
+ "parameterTypeTokenRange": {
2362
+ "startIndex": 1,
2363
+ "endIndex": 2
2364
+ },
2365
+ "isOptional": false
2366
+ }
2367
+ ],
2368
+ "name": "addStylesTo"
2369
+ },
2370
+ {
2371
+ "kind": "MethodSignature",
2372
+ "canonicalReference": "@microsoft/fast-element!StyleStrategy#removeStylesFrom:member(1)",
2373
+ "docComment": "/**\n * Removes styles from the target.\n *\n * @param target - The target to remove the styles from.\n */\n",
2374
+ "excerptTokens": [
2375
+ {
2376
+ "kind": "Content",
2377
+ "text": "removeStylesFrom(target: "
2378
+ },
2379
+ {
2380
+ "kind": "Reference",
2381
+ "text": "StyleTarget",
2382
+ "canonicalReference": "@microsoft/fast-element!StyleTarget:interface"
2383
+ },
2384
+ {
2385
+ "kind": "Content",
2386
+ "text": "): "
2387
+ },
2388
+ {
2389
+ "kind": "Content",
2390
+ "text": "void"
2391
+ },
2392
+ {
2393
+ "kind": "Content",
2394
+ "text": ";"
2395
+ }
2396
+ ],
2397
+ "isOptional": false,
2398
+ "returnTypeTokenRange": {
2399
+ "startIndex": 3,
2400
+ "endIndex": 4
2401
+ },
2402
+ "releaseTag": "Public",
2403
+ "overloadIndex": 1,
2404
+ "parameters": [
2405
+ {
2406
+ "parameterName": "target",
2407
+ "parameterTypeTokenRange": {
2408
+ "startIndex": 1,
2409
+ "endIndex": 2
2410
+ },
2411
+ "isOptional": false
2412
+ }
2413
+ ],
2414
+ "name": "removeStylesFrom"
2415
+ }
2416
+ ],
2417
+ "extendsTokenRanges": []
2418
+ },
2419
+ {
2420
+ "kind": "Interface",
2421
+ "canonicalReference": "@microsoft/fast-element!StyleTarget:interface",
2422
+ "docComment": "/**\n * A node that can be targeted by styles.\n *\n * @public\n */\n",
2423
+ "excerptTokens": [
2424
+ {
2425
+ "kind": "Content",
2426
+ "text": "export interface StyleTarget extends "
2427
+ },
2428
+ {
2429
+ "kind": "Reference",
2430
+ "text": "Pick",
2431
+ "canonicalReference": "!Pick:type"
2432
+ },
2433
+ {
2434
+ "kind": "Content",
2435
+ "text": "<"
2436
+ },
2437
+ {
2438
+ "kind": "Reference",
2439
+ "text": "Node",
2440
+ "canonicalReference": "!Node:interface"
2441
+ },
2442
+ {
2443
+ "kind": "Content",
2444
+ "text": ", \"getRootNode\">"
2445
+ },
2446
+ {
2447
+ "kind": "Content",
2448
+ "text": " "
2449
+ }
2450
+ ],
2451
+ "fileUrlPath": "dist/dts/styles/style-strategy.d.ts",
2452
+ "releaseTag": "Public",
2453
+ "name": "StyleTarget",
2454
+ "preserveMemberOrder": false,
2455
+ "members": [
2456
+ {
2457
+ "kind": "PropertySignature",
2458
+ "canonicalReference": "@microsoft/fast-element!StyleTarget#adoptedStyleSheets:member",
2459
+ "docComment": "/**\n * Stylesheets to be adopted by the node.\n */\n",
2460
+ "excerptTokens": [
2461
+ {
2462
+ "kind": "Content",
2463
+ "text": "adoptedStyleSheets?: "
2464
+ },
2465
+ {
2466
+ "kind": "Reference",
2467
+ "text": "CSSStyleSheet",
2468
+ "canonicalReference": "!CSSStyleSheet:interface"
2469
+ },
2470
+ {
2471
+ "kind": "Content",
2472
+ "text": "[]"
2473
+ },
2474
+ {
2475
+ "kind": "Content",
2476
+ "text": ";"
2477
+ }
2478
+ ],
2479
+ "isReadonly": false,
2480
+ "isOptional": true,
2481
+ "releaseTag": "Public",
2482
+ "name": "adoptedStyleSheets",
2483
+ "propertyTypeTokenRange": {
2484
+ "startIndex": 1,
2485
+ "endIndex": 3
2486
+ }
2487
+ },
2488
+ {
2489
+ "kind": "MethodSignature",
2490
+ "canonicalReference": "@microsoft/fast-element!StyleTarget#append:member(1)",
2491
+ "docComment": "/**\n * Adds styles to the target by appending the styles.\n *\n * @param styles - The styles element to add.\n */\n",
2492
+ "excerptTokens": [
2493
+ {
2494
+ "kind": "Content",
2495
+ "text": "append(styles: "
2496
+ },
2497
+ {
2498
+ "kind": "Reference",
2499
+ "text": "HTMLStyleElement",
2500
+ "canonicalReference": "!HTMLStyleElement:interface"
2501
+ },
2502
+ {
2503
+ "kind": "Content",
2504
+ "text": "): "
2505
+ },
2506
+ {
2507
+ "kind": "Content",
2508
+ "text": "void"
2509
+ },
2510
+ {
2511
+ "kind": "Content",
2512
+ "text": ";"
2513
+ }
2514
+ ],
2515
+ "isOptional": false,
2516
+ "returnTypeTokenRange": {
2517
+ "startIndex": 3,
2518
+ "endIndex": 4
2519
+ },
2520
+ "releaseTag": "Public",
2521
+ "overloadIndex": 1,
2522
+ "parameters": [
2523
+ {
2524
+ "parameterName": "styles",
2525
+ "parameterTypeTokenRange": {
2526
+ "startIndex": 1,
2527
+ "endIndex": 2
2528
+ },
2529
+ "isOptional": false
2530
+ }
2531
+ ],
2532
+ "name": "append"
2533
+ },
2534
+ {
2535
+ "kind": "MethodSignature",
2536
+ "canonicalReference": "@microsoft/fast-element!StyleTarget#querySelectorAll:member(1)",
2537
+ "docComment": "/**\n * Returns all element descendants of node that match selectors.\n *\n * @param selectors - The CSS selector to use for the query.\n */\n",
2538
+ "excerptTokens": [
2539
+ {
2540
+ "kind": "Content",
2541
+ "text": "querySelectorAll<E extends "
2542
+ },
2543
+ {
2544
+ "kind": "Reference",
2545
+ "text": "Element",
2546
+ "canonicalReference": "!Element:interface"
2547
+ },
2548
+ {
2549
+ "kind": "Content",
2550
+ "text": " = "
2551
+ },
2552
+ {
2553
+ "kind": "Reference",
2554
+ "text": "Element",
2555
+ "canonicalReference": "!Element:interface"
2556
+ },
2557
+ {
2558
+ "kind": "Content",
2559
+ "text": ">(selectors: "
2560
+ },
2561
+ {
2562
+ "kind": "Content",
2563
+ "text": "string"
2564
+ },
2565
+ {
2566
+ "kind": "Content",
2567
+ "text": "): "
2568
+ },
2569
+ {
2570
+ "kind": "Reference",
2571
+ "text": "NodeListOf",
2572
+ "canonicalReference": "!NodeListOf:interface"
2573
+ },
2574
+ {
2575
+ "kind": "Content",
2576
+ "text": "<E>"
2577
+ },
2578
+ {
2579
+ "kind": "Content",
2580
+ "text": ";"
2581
+ }
2582
+ ],
2583
+ "isOptional": false,
2584
+ "returnTypeTokenRange": {
2585
+ "startIndex": 7,
2586
+ "endIndex": 9
2587
+ },
2588
+ "releaseTag": "Public",
2589
+ "overloadIndex": 1,
2590
+ "parameters": [
2591
+ {
2592
+ "parameterName": "selectors",
2593
+ "parameterTypeTokenRange": {
2594
+ "startIndex": 5,
2595
+ "endIndex": 6
2596
+ },
2597
+ "isOptional": false
2598
+ }
2599
+ ],
2600
+ "typeParameters": [
2601
+ {
2602
+ "typeParameterName": "E",
2603
+ "constraintTokenRange": {
2604
+ "startIndex": 1,
2605
+ "endIndex": 2
2606
+ },
2607
+ "defaultTypeTokenRange": {
2608
+ "startIndex": 3,
2609
+ "endIndex": 4
2610
+ }
2611
+ }
2612
+ ],
2613
+ "name": "querySelectorAll"
2614
+ },
2615
+ {
2616
+ "kind": "MethodSignature",
2617
+ "canonicalReference": "@microsoft/fast-element!StyleTarget#removeChild:member(1)",
2618
+ "docComment": "/**\n * Removes styles from the target.\n *\n * @param styles - The styles element to remove.\n */\n",
2619
+ "excerptTokens": [
2620
+ {
2621
+ "kind": "Content",
2622
+ "text": "removeChild(styles: "
2623
+ },
2624
+ {
2625
+ "kind": "Reference",
2626
+ "text": "HTMLStyleElement",
2627
+ "canonicalReference": "!HTMLStyleElement:interface"
2628
+ },
2629
+ {
2630
+ "kind": "Content",
2631
+ "text": "): "
2632
+ },
2633
+ {
2634
+ "kind": "Content",
2635
+ "text": "void"
2636
+ },
2637
+ {
2638
+ "kind": "Content",
2639
+ "text": ";"
2640
+ }
2641
+ ],
2642
+ "isOptional": false,
2643
+ "returnTypeTokenRange": {
2644
+ "startIndex": 3,
2645
+ "endIndex": 4
2646
+ },
2647
+ "releaseTag": "Public",
2648
+ "overloadIndex": 1,
2649
+ "parameters": [
2650
+ {
2651
+ "parameterName": "styles",
2652
+ "parameterTypeTokenRange": {
2653
+ "startIndex": 1,
2654
+ "endIndex": 2
2655
+ },
2656
+ "isOptional": false
2657
+ }
2658
+ ],
2659
+ "name": "removeChild"
2660
+ }
2661
+ ],
2662
+ "extendsTokenRanges": [
2663
+ {
2664
+ "startIndex": 1,
2665
+ "endIndex": 5
2666
+ }
2667
+ ]
2668
+ }
2669
+ ]
2670
+ }
2671
+ ]
2672
+ }