@microsoft/fast-element 2.0.0-beta.2 → 2.0.0-beta.21

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 (115) hide show
  1. package/CHANGELOG.json +509 -0
  2. package/CHANGELOG.md +189 -1
  3. package/dist/dts/components/attributes.d.ts +15 -0
  4. package/dist/dts/components/{controller.d.ts → element-controller.d.ts} +74 -28
  5. package/dist/dts/components/fast-definitions.d.ts +41 -9
  6. package/dist/dts/components/fast-element.d.ts +14 -26
  7. package/dist/dts/components/hydration.d.ts +14 -0
  8. package/dist/{esm/observation/behavior.js → dts/components/install-hydration.d.ts} +0 -0
  9. package/dist/dts/context.d.ts +7 -7
  10. package/dist/dts/di/di.d.ts +894 -0
  11. package/dist/dts/dom-policy.d.ts +83 -0
  12. package/dist/dts/dom.d.ts +100 -0
  13. package/dist/dts/index.d.ts +5 -4
  14. package/dist/dts/index.rollup.d.ts +0 -1
  15. package/dist/dts/index.rollup.debug.d.ts +0 -1
  16. package/dist/dts/interfaces.d.ts +62 -80
  17. package/dist/dts/metadata.d.ts +5 -5
  18. package/dist/dts/observation/observable.d.ts +99 -54
  19. package/dist/dts/pending-task.d.ts +32 -0
  20. package/dist/dts/platform.d.ts +8 -1
  21. package/dist/dts/polyfills.d.ts +0 -8
  22. package/dist/dts/state/exports.d.ts +3 -0
  23. package/dist/dts/state/reactive.d.ts +8 -0
  24. package/dist/dts/state/state.d.ts +141 -0
  25. package/dist/dts/state/visitor.d.ts +6 -0
  26. package/dist/dts/state/watch.d.ts +10 -0
  27. package/dist/dts/styles/css-directive.d.ts +2 -2
  28. package/dist/dts/styles/css.d.ts +0 -5
  29. package/dist/dts/styles/element-styles.d.ts +10 -17
  30. package/dist/dts/styles/host.d.ts +68 -0
  31. package/dist/dts/styles/style-strategy.d.ts +42 -0
  32. package/dist/dts/templating/binding-signal.d.ts +12 -27
  33. package/dist/dts/templating/binding-two-way.d.ts +22 -37
  34. package/dist/dts/templating/binding.d.ts +76 -208
  35. package/dist/dts/templating/children.d.ts +1 -1
  36. package/dist/dts/templating/compiler.d.ts +11 -13
  37. package/dist/dts/templating/html-directive.d.ts +91 -97
  38. package/dist/dts/templating/node-observation.d.ts +15 -6
  39. package/dist/dts/templating/ref.d.ts +7 -11
  40. package/dist/dts/templating/render.d.ts +296 -0
  41. package/dist/dts/templating/repeat.d.ts +23 -34
  42. package/dist/dts/templating/slotted.d.ts +1 -1
  43. package/dist/dts/templating/template.d.ts +92 -14
  44. package/dist/dts/templating/view.d.ts +81 -11
  45. package/dist/dts/templating/when.d.ts +3 -3
  46. package/dist/dts/testing/exports.d.ts +3 -0
  47. package/dist/dts/testing/fakes.d.ts +14 -0
  48. package/dist/dts/testing/fixture.d.ts +84 -0
  49. package/dist/dts/testing/timeout.d.ts +7 -0
  50. package/dist/dts/utilities.d.ts +55 -19
  51. package/dist/esm/components/attributes.js +28 -5
  52. package/dist/esm/components/{controller.js → element-controller.js} +238 -137
  53. package/dist/esm/components/fast-definitions.js +38 -30
  54. package/dist/esm/components/fast-element.js +27 -16
  55. package/dist/esm/components/hydration.js +35 -0
  56. package/dist/esm/components/install-hydration.js +2 -0
  57. package/dist/esm/context.js +7 -3
  58. package/dist/esm/debug.js +41 -5
  59. package/dist/esm/di/di.js +1430 -0
  60. package/dist/esm/dom-policy.js +345 -0
  61. package/dist/esm/dom.js +101 -0
  62. package/dist/esm/index.js +4 -2
  63. package/dist/esm/index.rollup.debug.js +3 -1
  64. package/dist/esm/index.rollup.js +3 -1
  65. package/dist/esm/interfaces.js +52 -0
  66. package/dist/esm/metadata.js +9 -8
  67. package/dist/esm/observation/arrays.js +303 -2
  68. package/dist/esm/observation/observable.js +88 -142
  69. package/dist/esm/observation/update-queue.js +2 -2
  70. package/dist/esm/pending-task.js +28 -0
  71. package/dist/esm/platform.js +28 -3
  72. package/dist/esm/polyfills.js +3 -61
  73. package/dist/esm/state/exports.js +3 -0
  74. package/dist/esm/state/reactive.js +34 -0
  75. package/dist/esm/state/state.js +148 -0
  76. package/dist/esm/state/visitor.js +28 -0
  77. package/dist/esm/state/watch.js +36 -0
  78. package/dist/esm/styles/css.js +4 -9
  79. package/dist/esm/styles/element-styles.js +14 -33
  80. package/dist/esm/styles/host.js +1 -0
  81. package/dist/esm/styles/style-strategy.js +1 -0
  82. package/dist/esm/templating/binding-signal.js +67 -62
  83. package/dist/esm/templating/binding-two-way.js +72 -39
  84. package/dist/esm/templating/binding.js +142 -286
  85. package/dist/esm/templating/children.js +8 -4
  86. package/dist/esm/templating/compiler.js +59 -43
  87. package/dist/esm/templating/html-directive.js +56 -75
  88. package/dist/esm/templating/node-observation.js +20 -13
  89. package/dist/esm/templating/ref.js +4 -12
  90. package/dist/esm/templating/render.js +402 -0
  91. package/dist/esm/templating/repeat.js +88 -75
  92. package/dist/esm/templating/template.js +132 -60
  93. package/dist/esm/templating/view.js +113 -29
  94. package/dist/esm/templating/when.js +5 -4
  95. package/dist/esm/testing/exports.js +3 -0
  96. package/dist/esm/testing/fakes.js +107 -0
  97. package/dist/esm/testing/fixture.js +86 -0
  98. package/dist/esm/testing/timeout.js +24 -0
  99. package/dist/esm/utilities.js +97 -96
  100. package/dist/fast-element.api.json +9741 -8201
  101. package/dist/fast-element.d.ts +889 -646
  102. package/dist/fast-element.debug.js +2001 -1167
  103. package/dist/fast-element.debug.min.js +1 -1
  104. package/dist/fast-element.js +1907 -1109
  105. package/dist/fast-element.min.js +1 -1
  106. package/dist/fast-element.untrimmed.d.ts +913 -703
  107. package/docs/api-report.md +331 -258
  108. package/package.json +38 -16
  109. package/dist/dts/hooks.d.ts +0 -20
  110. package/dist/dts/observation/behavior.d.ts +0 -19
  111. package/dist/dts/observation/splice-strategies.d.ts +0 -13
  112. package/dist/dts/templating/dom.d.ts +0 -41
  113. package/dist/esm/hooks.js +0 -32
  114. package/dist/esm/observation/splice-strategies.js +0 -400
  115. package/dist/esm/templating/dom.js +0 -49
package/CHANGELOG.json CHANGED
@@ -1,6 +1,515 @@
1
1
  {
2
2
  "name": "@microsoft/fast-element",
3
3
  "entries": [
4
+ {
5
+ "date": "Tue, 14 Feb 2023 04:02:35 GMT",
6
+ "tag": "@microsoft/fast-element_v2.0.0-beta.21",
7
+ "version": "2.0.0-beta.21",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "rob@bluespire.com",
12
+ "package": "@microsoft/fast-element",
13
+ "commit": "d38d31d2dd7496b5eb1e7c65b57de9a5e05e8546",
14
+ "comment": "fix: cleanup types, docs, etc. in root source files of fast-element in preparation for release"
15
+ },
16
+ {
17
+ "author": "nicholasrice@users.noreply.github.com",
18
+ "package": "@microsoft/fast-element",
19
+ "commit": "09d57ca18700331d054515c3b3f6fae07528cca0",
20
+ "comment": "Remove un-necessary expression from StyleElementStrategy"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 11 Jan 2023 22:07:47 GMT",
27
+ "tag": "@microsoft/fast-element_v2.0.0-beta.20",
28
+ "version": "2.0.0-beta.20",
29
+ "comments": {
30
+ "prerelease": [
31
+ {
32
+ "author": "863023+radium-v@users.noreply.github.com",
33
+ "package": "@microsoft/fast-element",
34
+ "commit": "555f1b2cd614a1d5a9bc3985fb892d040c110cb3",
35
+ "comment": "add nullableBooleanConverter for attributes"
36
+ },
37
+ {
38
+ "author": "chhol@microsoft.com",
39
+ "package": "@microsoft/fast-element",
40
+ "commit": "52cd5171c3e9061af8066443023782bca2b0e59b",
41
+ "comment": "update return type for dangerousHTML to DangerousHTMLDirective"
42
+ },
43
+ {
44
+ "author": "rob@bluespire.com",
45
+ "package": "@microsoft/fast-element",
46
+ "commit": "4c58813ec1b770b1f95c1b5993f8e3013a7544e2",
47
+ "comment": "chore: remove deprecated APIs from fast-element"
48
+ },
49
+ {
50
+ "author": "roeisenb@microsoft.com",
51
+ "package": "@microsoft/fast-element",
52
+ "commit": "84fd72febb4dff874db9322a6cb27e698b3ec790",
53
+ "comment": "chore: cleanup fast-element interfaces"
54
+ },
55
+ {
56
+ "author": "roeisenb@microsoft.com",
57
+ "package": "@microsoft/fast-element",
58
+ "commit": "5c3b2f0431ae8f840d3dc778ff93be73b585c6e2",
59
+ "comment": "refactor(fast-element): replace dangerousHTML with html.partial"
60
+ },
61
+ {
62
+ "author": "roeisenb@microsoft.com",
63
+ "package": "@microsoft/fast-element",
64
+ "commit": "d14f697ed3449db50384f5c1304f6bb384f9cfe0",
65
+ "comment": "feat: add ability to inline templates"
66
+ }
67
+ ]
68
+ }
69
+ },
70
+ {
71
+ "date": "Fri, 02 Dec 2022 01:18:22 GMT",
72
+ "tag": "@microsoft/fast-element_v2.0.0-beta.19",
73
+ "version": "2.0.0-beta.19",
74
+ "comments": {
75
+ "prerelease": [
76
+ {
77
+ "author": "roeisenb@microsoft.com",
78
+ "package": "@microsoft/fast-element",
79
+ "commit": "e576aa70c22780fffba03097277e2db9a2ec1cd8",
80
+ "comment": "feat: add kernel mode with isolation by default"
81
+ }
82
+ ]
83
+ }
84
+ },
85
+ {
86
+ "date": "Tue, 15 Nov 2022 02:40:34 GMT",
87
+ "tag": "@microsoft/fast-element_v2.0.0-beta.18",
88
+ "version": "2.0.0-beta.18",
89
+ "comments": {
90
+ "prerelease": [
91
+ {
92
+ "author": "roeisenb@microsoft.com",
93
+ "package": "@microsoft/fast-element",
94
+ "commit": "1a1fc0b9e85f1e65c605e32f6724402291ffbcaa",
95
+ "comment": "chore: move ViewBehaviorOrchestrator to utilities"
96
+ },
97
+ {
98
+ "author": "roeisenb@microsoft.com",
99
+ "package": "@microsoft/fast-element",
100
+ "commit": "3c14603089495a7af8ed5b55122c418b47c45fd5",
101
+ "comment": "feat: add new DOM Policy protection throughout"
102
+ }
103
+ ]
104
+ }
105
+ },
106
+ {
107
+ "date": "Tue, 01 Nov 2022 23:26:26 GMT",
108
+ "tag": "@microsoft/fast-element_v2.0.0-beta.17",
109
+ "version": "2.0.0-beta.17",
110
+ "comments": {
111
+ "prerelease": [
112
+ {
113
+ "author": "roeisenb@microsoft.com",
114
+ "package": "@microsoft/fast-element",
115
+ "commit": "a4982f452702a8fee67397767b603d4a67702b10",
116
+ "comment": "fix: prevent circular reference errors when stringifying DOM nodes controlled by FAST's rendering engine"
117
+ }
118
+ ]
119
+ }
120
+ },
121
+ {
122
+ "date": "Fri, 28 Oct 2022 20:44:44 GMT",
123
+ "tag": "@microsoft/fast-element_v2.0.0-beta.16",
124
+ "version": "2.0.0-beta.16",
125
+ "comments": {
126
+ "prerelease": [
127
+ {
128
+ "author": "nicholasrice@users.noreply.github.com",
129
+ "package": "@microsoft/fast-element",
130
+ "commit": "5b745b1fb3bf249a7a2d172b7fb69cb08694aadd",
131
+ "comment": "Fixed bug preventing main component stylesheet behaviors from being connected during connectedCallback"
132
+ }
133
+ ]
134
+ }
135
+ },
136
+ {
137
+ "date": "Tue, 25 Oct 2022 20:24:32 GMT",
138
+ "tag": "@microsoft/fast-element_v2.0.0-beta.15",
139
+ "version": "2.0.0-beta.15",
140
+ "comments": {
141
+ "prerelease": [
142
+ {
143
+ "author": "nicholasrice@users.noreply.github.com",
144
+ "package": "@microsoft/fast-element",
145
+ "commit": "220cc7e0e0de490e51cc8b6f42ff46b03228beaa",
146
+ "comment": "Updated the ElementController to connect behaviors prior to rendering element templates"
147
+ },
148
+ {
149
+ "author": "nicholasrice@users.noreply.github.com",
150
+ "package": "@microsoft/fast-element",
151
+ "commit": "32ca5de5feda4870ed36329f58ded4a0a0421f02",
152
+ "comment": "Added support to fast-element to support element hydration and the `defer-hydration` attribute"
153
+ }
154
+ ]
155
+ }
156
+ },
157
+ {
158
+ "date": "Fri, 14 Oct 2022 18:26:11 GMT",
159
+ "tag": "@microsoft/fast-element_v2.0.0-beta.14",
160
+ "version": "2.0.0-beta.14",
161
+ "comments": {
162
+ "prerelease": [
163
+ {
164
+ "author": "roeisenb@microsoft.com",
165
+ "package": "@microsoft/fast-element",
166
+ "commit": "19f1ae727e2ff6e629d2b134fc045a81d83caaed",
167
+ "comment": "fix: tokenList bindings track adds and removes from multiple sources"
168
+ },
169
+ {
170
+ "author": "roeisenb@microsoft.com",
171
+ "package": "@microsoft/fast-element",
172
+ "commit": "0248fa906f986d6b0cbdeb26cf388742e871449e",
173
+ "comment": "refactor: remove duplication and re-organize binding behavior logic"
174
+ }
175
+ ]
176
+ }
177
+ },
178
+ {
179
+ "date": "Mon, 10 Oct 2022 20:28:02 GMT",
180
+ "tag": "@microsoft/fast-element_v2.0.0-beta.13",
181
+ "version": "2.0.0-beta.13",
182
+ "comments": {
183
+ "prerelease": [
184
+ {
185
+ "author": "roeisenb@microsoft.com",
186
+ "package": "@microsoft/fast-element",
187
+ "commit": "fed5e806e44da9d10916d9d765fb7f35ed300a3f",
188
+ "comment": "fix: prevent event callbacks when controller is not bound"
189
+ }
190
+ ]
191
+ }
192
+ },
193
+ {
194
+ "date": "Thu, 06 Oct 2022 23:21:20 GMT",
195
+ "tag": "@microsoft/fast-element_v2.0.0-beta.12",
196
+ "version": "2.0.0-beta.12",
197
+ "comments": {
198
+ "none": [
199
+ {
200
+ "author": "863023+radium-v@users.noreply.github.com",
201
+ "package": "@microsoft/fast-element",
202
+ "commit": "c06e32d72d518bf5c3152efe4e666f233190b445",
203
+ "comment": "upgrade karma to ^6.4.1"
204
+ }
205
+ ],
206
+ "prerelease": [
207
+ {
208
+ "author": "roeisenb@microsoft.com",
209
+ "package": "@microsoft/fast-element",
210
+ "commit": "a69c2e3c0700918fef5ba934909781cc8ab71384",
211
+ "comment": "fix: repeat update view context positioning"
212
+ }
213
+ ]
214
+ }
215
+ },
216
+ {
217
+ "date": "Wed, 05 Oct 2022 23:26:01 GMT",
218
+ "tag": "@microsoft/fast-element_v2.0.0-beta.11",
219
+ "version": "2.0.0-beta.11",
220
+ "comments": {
221
+ "prerelease": [
222
+ {
223
+ "author": "nicholasrice@users.noreply.github.com",
224
+ "package": "@microsoft/fast-element",
225
+ "commit": "21d1de94be2b9399ddc43a2b93c6483fa7304591",
226
+ "comment": "fix: removed a shadowRoot leak from ElementController"
227
+ }
228
+ ]
229
+ }
230
+ },
231
+ {
232
+ "date": "Mon, 03 Oct 2022 23:44:38 GMT",
233
+ "tag": "@microsoft/fast-element_v2.0.0-beta.10",
234
+ "version": "2.0.0-beta.10",
235
+ "comments": {
236
+ "prerelease": [
237
+ {
238
+ "author": "roeisenb@microsoft.com",
239
+ "package": "@microsoft/fast-element",
240
+ "commit": "d29444567d824eb92f4e91e9e173319aef30cfb5",
241
+ "comment": "fix: observation kernel missing binding observer disconnect method"
242
+ },
243
+ {
244
+ "author": "roeisenb@microsoft.com",
245
+ "package": "@microsoft/fast-element",
246
+ "commit": "9d620288eb30d963aa7ac08b4d771d79ea6eef7b",
247
+ "comment": "feat: less surprising class bindings w/ more flexibility for developers"
248
+ },
249
+ {
250
+ "author": "roeisenb@microsoft.com",
251
+ "package": "@microsoft/fast-element",
252
+ "commit": "a378bfa01843a8a042f3ae37aad6c8fd14fdbcc6",
253
+ "comment": "fix: don't allow registering FASTElement itself as a web component"
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "date": "Wed, 28 Sep 2022 20:45:51 GMT",
260
+ "tag": "@microsoft/fast-element_v2.0.0-beta.9",
261
+ "version": "2.0.0-beta.9",
262
+ "comments": {
263
+ "prerelease": [
264
+ {
265
+ "author": "roeisenb@microsoft.com",
266
+ "package": "@microsoft/fast-element",
267
+ "commit": "08fab33015853b7f820fdfdac2aecddfeb31843f",
268
+ "comment": "fix: ensure composed templates receive the existing execution context"
269
+ }
270
+ ]
271
+ }
272
+ },
273
+ {
274
+ "date": "Tue, 27 Sep 2022 22:31:52 GMT",
275
+ "tag": "@microsoft/fast-element_v2.0.0-beta.8",
276
+ "version": "2.0.0-beta.8",
277
+ "comments": {
278
+ "prerelease": [
279
+ {
280
+ "author": "roeisenb@microsoft.com",
281
+ "package": "@microsoft/fast-element",
282
+ "commit": "8834c6732c727d39f92f72b197388453a9c17f9b",
283
+ "comment": "fix: correct view state when processing unbindables during rebind"
284
+ },
285
+ {
286
+ "author": "roeisenb@microsoft.com",
287
+ "package": "@microsoft/fast-element",
288
+ "commit": "d949a8873621f409f9d9f3453cdb40b593d14b67",
289
+ "comment": "fix: do not crash when null/undefined is provided literally in templates"
290
+ }
291
+ ]
292
+ }
293
+ },
294
+ {
295
+ "date": "Fri, 23 Sep 2022 22:53:27 GMT",
296
+ "tag": "@microsoft/fast-element_v2.0.0-beta.7",
297
+ "version": "2.0.0-beta.7",
298
+ "comments": {
299
+ "prerelease": [
300
+ {
301
+ "author": "roeisenb@microsoft.com",
302
+ "package": "@microsoft/fast-element",
303
+ "commit": "1646b26450a08a77c8bd6302560fe12cc6989ae1",
304
+ "comment": "feat: improve parent typing and fix repeat context type bug"
305
+ },
306
+ {
307
+ "author": "roeisenb@microsoft.com",
308
+ "package": "@microsoft/fast-element",
309
+ "commit": "0d786392a38e1d83e56fb1e2112a3e571d193c11",
310
+ "comment": "feat: prepare fast-element for scoped element registries"
311
+ },
312
+ {
313
+ "author": "wendywendy@microsoft.com",
314
+ "package": "@microsoft/fast-element",
315
+ "commit": "a42ff75a9130a5ce13006c272c2e2bbbaffdbb41",
316
+ "comment": "persist totalAvailableViews to compare against removeIndex"
317
+ },
318
+ {
319
+ "author": "863023+radium-v@users.noreply.github.com",
320
+ "package": "@microsoft/fast-element",
321
+ "commit": "ec2b158dcf39c8b4152b22c3b65963046b473e17",
322
+ "comment": "make ElementsFilter type arguments optional"
323
+ },
324
+ {
325
+ "author": "roeisenb@microsoft.com",
326
+ "package": "@microsoft/fast-element",
327
+ "commit": "1039218eafa9a8dbea9da94e1c7803de48d1484c",
328
+ "comment": "fix(fast-element): attributes properly located in inheritance hierarchy"
329
+ },
330
+ {
331
+ "author": "nicholasrice@users.noreply.github.com",
332
+ "package": "@microsoft/fast-element",
333
+ "commit": "c1909e9899d517f9483b24043d49a8b193af3c26",
334
+ "comment": "Adds PendingTask community protocol"
335
+ },
336
+ {
337
+ "author": "roeisenb@microsoft.com",
338
+ "package": "@microsoft/fast-element",
339
+ "commit": "2edd63a8abe24c68cfc7c76d773c912c6f2d6543",
340
+ "comment": "feat: new behavior and context API design"
341
+ },
342
+ {
343
+ "author": "roeisenb@microsoft.com",
344
+ "package": "@microsoft/fast-element",
345
+ "commit": "eb62934b258334c7f92ab3a1112ea62b3901cdac",
346
+ "comment": "feat: implement getAsync code path for dependency injection"
347
+ }
348
+ ]
349
+ }
350
+ },
351
+ {
352
+ "date": "Thu, 01 Sep 2022 21:53:34 GMT",
353
+ "tag": "@microsoft/fast-element_v2.0.0-beta.6",
354
+ "version": "2.0.0-beta.6",
355
+ "comments": {
356
+ "prerelease": [
357
+ {
358
+ "author": "roeisenb@microsoft.com",
359
+ "package": "@microsoft/fast-element",
360
+ "commit": "da9ebbe1b7471cd4e6f7b74f2f9bf02fcc54da4f",
361
+ "comment": "feat: add new state, ownedState, and computedState APIs"
362
+ }
363
+ ]
364
+ }
365
+ },
366
+ {
367
+ "date": "Thu, 18 Aug 2022 20:46:10 GMT",
368
+ "tag": "@microsoft/fast-element_v2.0.0-beta.5",
369
+ "version": "2.0.0-beta.5",
370
+ "comments": {
371
+ "prerelease": [
372
+ {
373
+ "author": "nicholasrice@users.noreply.github.com",
374
+ "package": "@microsoft/fast-element",
375
+ "commit": "218cfc014f5c76464493725f83bd883e8b07defa",
376
+ "comment": "Fix ExpressionObserer bug where watcher was not reset if the binding threw"
377
+ },
378
+ {
379
+ "author": "prudepixie@users.noreply.github.com",
380
+ "package": "@microsoft/fast-element",
381
+ "commit": "fdd4514664691021a5673934c95acf31a8e73416",
382
+ "comment": "make insertbefore noop in view"
383
+ },
384
+ {
385
+ "author": "prudepixie@users.noreply.github.com",
386
+ "package": "@microsoft/fast-element",
387
+ "commit": "eb8d5a59f645b85567adadac41a3bfa66001f941",
388
+ "comment": "make sure default options for recycle gets set in different scenarios"
389
+ },
390
+ {
391
+ "author": "roeisenb@microsoft.com",
392
+ "package": "@microsoft/fast-element",
393
+ "commit": "ac3954c97acd3bd549a27829593855c431a24027",
394
+ "comment": "refactor: remove dependency of DI on FASTElement"
395
+ },
396
+ {
397
+ "author": "32497422+KingOfTac@users.noreply.github.com",
398
+ "package": "@microsoft/fast-element",
399
+ "commit": "29308db7920baaaac5b31b206d551669e165bc06",
400
+ "comment": "add subpath export for package.json to packages"
401
+ },
402
+ {
403
+ "author": "prudepixie@users.noreply.github.com",
404
+ "package": "@microsoft/fast-element",
405
+ "commit": "775d51602cba544347ec1e57fdb4fea248d1b1b5",
406
+ "comment": "change default array strategy to merge strategy, update repeat directive"
407
+ },
408
+ {
409
+ "author": "nicholasrice@users.noreply.github.com",
410
+ "package": "@microsoft/fast-element",
411
+ "commit": "aeac1198f427c33f789a2d869f58549ea5bfea57",
412
+ "comment": "assert FASTElement's type so that instanceof behavior is consistent with other class implementations"
413
+ }
414
+ ]
415
+ }
416
+ },
417
+ {
418
+ "date": "Mon, 18 Jul 2022 21:10:01 GMT",
419
+ "tag": "@microsoft/fast-element_v2.0.0-beta.4",
420
+ "version": "2.0.0-beta.4",
421
+ "comments": {
422
+ "prerelease": [
423
+ {
424
+ "author": "roeisenb@microsoft.com",
425
+ "package": "@microsoft/fast-element",
426
+ "commit": "f9fb9c88902bd81233fb927a7357d4bca7634f29",
427
+ "comment": "feat: extract all error messages from context and DI"
428
+ },
429
+ {
430
+ "author": "roeisenb@microsoft.com",
431
+ "package": "@microsoft/fast-element",
432
+ "commit": "27dc848327b25328e428f67505684d2171b58711",
433
+ "comment": "feat: introduce new binding API"
434
+ },
435
+ {
436
+ "author": "roeisenb@microsoft.com",
437
+ "package": "@microsoft/fast-element",
438
+ "commit": "7f4d6b5587f6eff52e5b7f414e27543bb4d7772d",
439
+ "comment": "Enabled DOM Container fallback functions when a container cannot be located."
440
+ },
441
+ {
442
+ "author": "roeisenb@microsoft.com",
443
+ "package": "@microsoft/fast-element",
444
+ "commit": "0f57d55822bbf97ab69f90efc0a0d100b27e10eb",
445
+ "comment": "feat: add render directive, renderWith decorator, and RenderInstruction"
446
+ },
447
+ {
448
+ "author": "prudepixie@users.noreply.github.com",
449
+ "package": "@microsoft/fast-element",
450
+ "commit": "94e6b0a0e7e1fd1167bd6453c3f7b27efdc91804",
451
+ "comment": "only store removed views if it can't be reused right away"
452
+ },
453
+ {
454
+ "author": "32497422+KingOfTac@users.noreply.github.com",
455
+ "package": "@microsoft/fast-element",
456
+ "commit": "11d5b4075118456b2e7c2a4f32a415eeea94ed7f",
457
+ "comment": "fix: enable createElementTemplate to have undefined attributes"
458
+ },
459
+ {
460
+ "author": "prudepixie@users.noreply.github.com",
461
+ "package": "@microsoft/fast-element",
462
+ "commit": "31296ea2be3981d25f5feb773b2895dbedfaf2c2",
463
+ "comment": "use index to track reusable views"
464
+ },
465
+ {
466
+ "author": "roeisenb@microsoft.com",
467
+ "package": "@microsoft/fast-element",
468
+ "commit": "4567188a47598b3d2589b05f039bea695f2b8875",
469
+ "comment": "feat: enable render, repeat, and when template helpers to handle static data in addition to the already supported dynamic bindings"
470
+ },
471
+ {
472
+ "author": "roeisenb@microsoft.com",
473
+ "package": "@microsoft/fast-element",
474
+ "commit": "f164aa75e62ed71c9386902051c021f1fdfba364",
475
+ "comment": "fix: FASTElementDefinition#isDefined should be true only after define"
476
+ },
477
+ {
478
+ "author": "roeisenb@microsoft.com",
479
+ "package": "@microsoft/fast-element",
480
+ "commit": "aacfde6d1f52a20af5511c5e792f730bd091d452",
481
+ "comment": "feat: move testing and dependency injection to fast-element"
482
+ },
483
+ {
484
+ "author": "roeisenb@microsoft.com",
485
+ "package": "@microsoft/fast-element",
486
+ "commit": "04c51a17dde6d03dc2e2a4de3666cbbec950d900",
487
+ "comment": "fix: warn when host bindings are accidentally applied on non CE views"
488
+ },
489
+ {
490
+ "author": "roeisenb@microsoft.com",
491
+ "package": "@microsoft/fast-element",
492
+ "commit": "b32eb1004960da95b74dba7f111ee859b6655896",
493
+ "comment": "feat: perf and safety improvements to fast element definition"
494
+ }
495
+ ]
496
+ }
497
+ },
498
+ {
499
+ "date": "Wed, 22 Jun 2022 20:17:50 GMT",
500
+ "tag": "@microsoft/fast-element_v2.0.0-beta.3",
501
+ "version": "2.0.0-beta.3",
502
+ "comments": {
503
+ "prerelease": [
504
+ {
505
+ "comment": "fix: correct aspect type for content that looks like an attribute",
506
+ "author": "nicholasrice@users.noreply.github.com",
507
+ "commit": "f28cdb9fdba9cb27904acfad7444de82d447f39e",
508
+ "package": "@microsoft/fast-element"
509
+ }
510
+ ]
511
+ }
512
+ },
4
513
  {
5
514
  "date": "Wed, 15 Jun 2022 17:41:10 GMT",
6
515
  "tag": "@microsoft/fast-element_v2.0.0-beta.2",