@microsoft/fast-element 2.0.0-beta.9 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.json +518 -0
- package/CHANGELOG.md +181 -1
- package/README.md +1 -9
- package/api-extractor.context.json +14 -0
- package/api-extractor.di.json +14 -0
- package/dist/context/context.api.json +1068 -0
- package/dist/di/di.api.json +4929 -0
- package/dist/dts/binding/binding.d.ts +49 -0
- package/dist/dts/binding/normalize.d.ts +9 -0
- package/dist/dts/binding/one-time.d.ts +11 -0
- package/dist/dts/binding/one-way.d.ts +20 -0
- package/dist/dts/{templating/binding-signal.d.ts → binding/signal.d.ts} +19 -4
- package/dist/dts/{templating/binding-two-way.d.ts → binding/two-way.d.ts} +9 -5
- package/dist/dts/components/attributes.d.ts +7 -1
- package/dist/dts/components/element-controller.d.ts +104 -8
- package/dist/dts/components/element-hydration.d.ts +2 -0
- package/dist/dts/components/fast-definitions.d.ts +6 -0
- package/dist/dts/components/hydration.d.ts +56 -0
- package/dist/dts/components/install-hydration.d.ts +1 -0
- package/dist/dts/context.d.ts +29 -15
- package/dist/dts/di/di.d.ts +0 -5
- package/dist/dts/dom-policy.d.ts +83 -0
- package/dist/dts/dom.d.ts +100 -0
- package/dist/dts/hydration/target-builder.d.ts +63 -0
- package/dist/dts/index.d.ts +33 -26
- package/dist/dts/index.rollup.d.ts +0 -1
- package/dist/dts/index.rollup.debug.d.ts +0 -1
- package/dist/dts/interfaces.d.ts +32 -82
- package/dist/dts/metadata.d.ts +6 -5
- package/dist/dts/observation/arrays.d.ts +1 -1
- package/dist/dts/observation/observable.bench.d.ts +18 -0
- package/dist/dts/observation/observable.d.ts +5 -5
- package/dist/dts/pending-task.d.ts +19 -7
- package/dist/dts/platform.d.ts +11 -2
- package/dist/dts/polyfills.d.ts +0 -8
- package/dist/dts/styles/css-binding-directive.d.ts +60 -0
- package/dist/dts/styles/css.d.ts +9 -7
- package/dist/dts/styles/element-styles.d.ts +1 -14
- package/dist/dts/styles/host.d.ts +2 -5
- package/dist/dts/styles/style-strategy.d.ts +42 -0
- package/dist/dts/templating/compiler.d.ts +11 -13
- package/dist/dts/templating/{binding.d.ts → html-binding-directive.d.ts} +21 -41
- package/dist/dts/templating/html-directive.d.ts +44 -140
- package/dist/dts/templating/install-hydratable-view-templates.d.ts +1 -0
- package/dist/dts/templating/node-observation.d.ts +11 -1
- package/dist/dts/templating/ref.d.ts +4 -0
- package/dist/dts/templating/render.bench.d.ts +3 -0
- package/dist/dts/templating/render.d.ts +49 -9
- package/dist/dts/templating/repeat-basic-reverse.bench.d.ts +3 -0
- package/dist/dts/templating/repeat-basic-shift.bench.d.ts +3 -0
- package/dist/dts/templating/repeat.d.ts +31 -9
- package/dist/dts/templating/template.d.ts +97 -12
- package/dist/dts/templating/view.d.ts +146 -29
- package/dist/dts/templating/when-basic.bench.d.ts +3 -0
- package/dist/dts/templating/when-conditional.bench.d.ts +3 -0
- package/dist/dts/templating/when-switch.bench.d.ts +3 -0
- package/dist/dts/templating/when.d.ts +3 -1
- package/dist/dts/testing/fakes.d.ts +12 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/dts/utilities.d.ts +55 -1
- package/dist/esm/binding/binding.js +18 -0
- package/dist/esm/binding/normalize.js +17 -0
- package/dist/esm/binding/one-time.js +21 -0
- package/dist/esm/binding/one-way.js +30 -0
- package/dist/esm/{templating/binding-signal.js → binding/signal.js} +22 -6
- package/dist/esm/{templating/binding-two-way.js → binding/two-way.js} +18 -12
- package/dist/esm/components/attributes.js +19 -6
- package/dist/esm/components/element-controller.js +319 -49
- package/dist/esm/components/element-hydration.js +2 -0
- package/dist/esm/components/fast-definitions.js +12 -4
- package/dist/esm/components/fast-element.js +3 -1
- package/dist/esm/components/hydration.js +104 -0
- package/dist/esm/components/install-hydration.js +3 -0
- package/dist/esm/context.js +26 -4
- package/dist/esm/debug.js +8 -2
- package/dist/esm/di/di.js +9 -12
- package/dist/esm/dom-policy.js +345 -0
- package/dist/esm/dom.js +101 -0
- package/dist/esm/hydration/target-builder.js +175 -0
- package/dist/esm/index.js +34 -25
- package/dist/esm/index.rollup.debug.js +3 -1
- package/dist/esm/index.rollup.js +3 -1
- package/dist/esm/interfaces.js +51 -3
- package/dist/esm/metadata.js +11 -8
- package/dist/esm/observation/arrays.js +1 -1
- package/dist/esm/observation/observable.bench.js +79 -0
- package/dist/esm/observation/observable.js +20 -15
- package/dist/esm/observation/update-queue.js +2 -2
- package/dist/esm/pending-task.js +13 -1
- package/dist/esm/platform.js +12 -2
- package/dist/esm/polyfills.js +3 -61
- package/dist/esm/styles/css-binding-directive.js +76 -0
- package/dist/esm/styles/css.js +14 -7
- package/dist/esm/styles/element-styles.js +0 -33
- package/dist/esm/styles/style-strategy.js +1 -0
- package/dist/esm/templating/children.js +8 -4
- package/dist/esm/templating/compiler.js +37 -44
- package/dist/esm/templating/html-binding-directive.js +218 -0
- package/dist/esm/templating/html-directive.js +25 -152
- package/dist/esm/templating/install-hydratable-view-templates.js +17 -0
- package/dist/esm/templating/node-observation.js +14 -8
- package/dist/esm/templating/ref.js +1 -1
- package/dist/esm/templating/render.bench.js +56 -0
- package/dist/esm/templating/render.js +74 -30
- package/dist/esm/templating/repeat-basic-reverse.bench.js +43 -0
- package/dist/esm/templating/repeat-basic-shift.bench.js +43 -0
- package/dist/esm/templating/repeat.js +116 -17
- package/dist/esm/templating/template.js +135 -60
- package/dist/esm/templating/view.js +254 -34
- package/dist/esm/templating/when-basic.bench.js +36 -0
- package/dist/esm/templating/when-conditional.bench.js +39 -0
- package/dist/esm/templating/when-switch.bench.js +68 -0
- package/dist/esm/templating/when.js +12 -5
- package/dist/esm/testing/fakes.js +32 -1
- package/dist/esm/testing/fixture.js +1 -1
- package/dist/esm/utilities.js +97 -1
- package/dist/fast-element.api.json +9789 -5667
- package/dist/fast-element.d.ts +813 -2392
- package/dist/fast-element.debug.js +2788 -974
- package/dist/fast-element.debug.min.js +3 -1
- package/dist/fast-element.js +2641 -833
- package/dist/fast-element.min.js +3 -1
- package/dist/fast-element.untrimmed.d.ts +662 -314
- package/docs/{api-report.md → api-report.api.md} +238 -151
- package/docs/context/api-report.api.md +69 -0
- package/docs/di/api-report.api.md +315 -0
- package/karma.conf.cjs +2 -1
- package/package.json +59 -47
- package/scripts/run-api-extractor.js +51 -0
- package/scripts/run-benchmarks.js +46 -0
- package/tensile.config.js +12 -0
- package/dist/dts/templating/dom.d.ts +0 -41
- package/dist/esm/templating/binding.js +0 -282
- package/dist/esm/templating/dom.js +0 -49
- package/docs/guide/declaring-templates.md +0 -230
- package/docs/guide/defining-elements.md +0 -214
- package/docs/guide/leveraging-css.md +0 -253
- package/docs/guide/next-steps.md +0 -13
- package/docs/guide/observables-and-state.md +0 -213
- package/docs/guide/using-directives.md +0 -576
- package/docs/guide/working-with-shadow-dom.md +0 -296
package/.eslintrc.json
CHANGED
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,524 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/fast-element",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Wed, 11 Dec 2024 19:52:58 GMT",
|
|
6
|
+
"version": "2.0.1",
|
|
7
|
+
"tag": "@microsoft/fast-element_v2.0.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
12
|
+
"package": "@microsoft/fast-element",
|
|
13
|
+
"commit": "33111eeff26ab4ae2bbe1c90145170ed175d2217",
|
|
14
|
+
"comment": "Patch bumping to apply latest tag to the package"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "abaris@null.net",
|
|
18
|
+
"package": "@microsoft/fast-element",
|
|
19
|
+
"commit": "51a79eb3294897fb1e71b5dcdcce0bea62521e80",
|
|
20
|
+
"comment": "fast-element: Simplify conditional checks in element-controller"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"date": "Mon, 19 Aug 2024 22:04:19 GMT",
|
|
27
|
+
"version": "2.0.0",
|
|
28
|
+
"tag": "@microsoft/fast-element_v2.0.0",
|
|
29
|
+
"comments": {
|
|
30
|
+
"major": [
|
|
31
|
+
{
|
|
32
|
+
"author": "13071055+chrisdholt@users.noreply.github.com",
|
|
33
|
+
"package": "@microsoft/fast-element",
|
|
34
|
+
"commit": "630a5e25a953201afa016e54aa77cf68d9d7663a",
|
|
35
|
+
"comment": "Update @microsoft/fast-element to major version"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"none": [
|
|
39
|
+
{
|
|
40
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
41
|
+
"package": "@microsoft/fast-element",
|
|
42
|
+
"commit": "78910b1158a6a24b717b3d94616fa93ab6786ab4",
|
|
43
|
+
"comment": "Remove yarn and lerna in favor of npm"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
47
|
+
"package": "@microsoft/fast-element",
|
|
48
|
+
"commit": "97bf7097a3d85df153df3528a450d7d65dd9b1cc",
|
|
49
|
+
"comment": "Add api-extractor generated docs for di and context export paths"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
53
|
+
"package": "@microsoft/fast-element",
|
|
54
|
+
"commit": "4f166dc4fb83cca168b1f284da21fc6979fd1420",
|
|
55
|
+
"comment": "Update tensile-perf dependency"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
59
|
+
"package": "@microsoft/fast-element",
|
|
60
|
+
"commit": "92e82f74b9ec0e5eb28895a6aba6426224ee434d",
|
|
61
|
+
"comment": "Add working with decorators doc and updated api-report markdown"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"prerelease": [
|
|
65
|
+
{
|
|
66
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
67
|
+
"package": "@microsoft/fast-element",
|
|
68
|
+
"commit": "035aefc8a25f4f75f3eb2e8cfb4dd0c60e0d2f67",
|
|
69
|
+
"comment": "Fix CodeQL issues"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"author": "171390049+prabhujayapal@users.noreply.github.com",
|
|
73
|
+
"package": "@microsoft/fast-element",
|
|
74
|
+
"commit": "882eded0b9dbc7d129ae4e634878024a0d7ffc08",
|
|
75
|
+
"comment": "Adds support for FASTElement hydration"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"date": "Thu, 20 Jun 2024 17:00:56 GMT",
|
|
82
|
+
"version": "2.0.0-beta.26",
|
|
83
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.26",
|
|
84
|
+
"comments": {
|
|
85
|
+
"none": [
|
|
86
|
+
{
|
|
87
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
88
|
+
"package": "@microsoft/fast-element",
|
|
89
|
+
"commit": "5eb926a3f3ec49782bf6ba5c2d58cb8b8c35e7f1",
|
|
90
|
+
"comment": "Update documentation site with 2.0.0 content"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
94
|
+
"package": "@microsoft/fast-element",
|
|
95
|
+
"commit": "c5f4234c6b86e464c66bb9ec24e4ed5a15e64e65",
|
|
96
|
+
"comment": "Update benchmarking to be included in the package instead of being separate"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
100
|
+
"package": "@microsoft/fast-element",
|
|
101
|
+
"commit": "862d860db267f645b0f0791cba27e6386f7382b8",
|
|
102
|
+
"comment": "Update source-map-loader as it was out of sync"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
106
|
+
"package": "@microsoft/fast-element",
|
|
107
|
+
"commit": "00bccd7812ca072fc2efdf39af7762bbfdc90846",
|
|
108
|
+
"comment": "Remove eslint config package"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
112
|
+
"package": "@microsoft/fast-element",
|
|
113
|
+
"commit": "4b23b5caa76c172d3ea6c6559699d632a278442c",
|
|
114
|
+
"comment": "Remove redundant docs and upgrade Docusaurus to v3, enable versioned docs"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"date": "Fri, 18 Aug 2023 00:04:40 GMT",
|
|
121
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.26",
|
|
122
|
+
"version": "2.0.0-beta.26",
|
|
123
|
+
"comments": {
|
|
124
|
+
"prerelease": [
|
|
125
|
+
{
|
|
126
|
+
"author": "chhol@microsoft.com",
|
|
127
|
+
"package": "@microsoft/fast-element",
|
|
128
|
+
"commit": "2dab94c0eda05bee7c4b497e68951d79d6fcbe46",
|
|
129
|
+
"comment": "BREAKING: update fast-element export paths to include extensions"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"author": "chhol@microsoft.com",
|
|
133
|
+
"package": "@microsoft/fast-element",
|
|
134
|
+
"commit": "8a23a94530ec7e6fb269c149bd70ca97e662dbf4",
|
|
135
|
+
"comment": "update fast-element exports to be explicit"
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"date": "Sat, 12 Aug 2023 00:26:36 GMT",
|
|
142
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.25",
|
|
143
|
+
"version": "2.0.0-beta.25",
|
|
144
|
+
"comments": {
|
|
145
|
+
"prerelease": [
|
|
146
|
+
{
|
|
147
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
148
|
+
"package": "@microsoft/fast-element",
|
|
149
|
+
"commit": "ff0b93a7fb4ca416629f51cc233078494aaf5f60",
|
|
150
|
+
"comment": "Prevent notification of array splices when operation does not mutate array values"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
154
|
+
"package": "@microsoft/fast-element",
|
|
155
|
+
"commit": "9f6451f7e7c121d76e2ead6f50f77c312a0157f7",
|
|
156
|
+
"comment": "Adds volatile binding support for JavaScript optional chaining syntax"
|
|
157
|
+
}
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"date": "Fri, 16 Jun 2023 18:17:12 GMT",
|
|
163
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.24",
|
|
164
|
+
"version": "2.0.0-beta.24",
|
|
165
|
+
"comments": {
|
|
166
|
+
"prerelease": [
|
|
167
|
+
{
|
|
168
|
+
"author": "chhol@microsoft.com",
|
|
169
|
+
"package": "@microsoft/fast-element",
|
|
170
|
+
"commit": "8250aa8352940584ff443b550ee756d49f01c478",
|
|
171
|
+
"comment": "fix: update compiler to ensure first and last child references are defined"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
175
|
+
"package": "@microsoft/fast-element",
|
|
176
|
+
"commit": "e678a782dd06a1c9ca79726da4a5765244858d21",
|
|
177
|
+
"comment": "Adds 'else' template option to the when directive"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
181
|
+
"package": "@microsoft/fast-element",
|
|
182
|
+
"commit": "58f7ce2ca73cf59dd957889e0763f45d087c77c9",
|
|
183
|
+
"comment": "fixed a bug where re-binding a ChildrenDirective instance would throw a runtime exception from the mutation handler"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
187
|
+
"package": "@microsoft/fast-element",
|
|
188
|
+
"commit": "88a0d7feb71b2452fa521b72ce308b1e499dfd94",
|
|
189
|
+
"comment": "Update adoptedStyleSheets strategy to use push/splice when available to fix Safari 16.4 bug"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
193
|
+
"package": "@microsoft/fast-element",
|
|
194
|
+
"commit": "9793634f3d06316a6a8689a909f4d41bdd667e99",
|
|
195
|
+
"comment": "fixes a bug where ChildrenDirective could not be used multiple times for the same element"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
199
|
+
"package": "@microsoft/fast-element",
|
|
200
|
+
"commit": "86c1952373b1fa0d7100cf0d8e942a0580cda725",
|
|
201
|
+
"comment": "fixed bug causing behaviors attached to stylesheets not to be removed when the stylesheet was removed"
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"none": [
|
|
205
|
+
{
|
|
206
|
+
"author": "chhol@microsoft.com",
|
|
207
|
+
"package": "@microsoft/fast-element",
|
|
208
|
+
"commit": "ca0e62ee8d05f72d1d8c1ad66bd6eea8e3f0a4eb",
|
|
209
|
+
"comment": "update prettier and eslint-config-prettier versions"
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"date": "Tue, 28 Mar 2023 22:14:10 GMT",
|
|
216
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.23",
|
|
217
|
+
"version": "2.0.0-beta.23",
|
|
218
|
+
"comments": {
|
|
219
|
+
"prerelease": [
|
|
220
|
+
{
|
|
221
|
+
"author": "rob@bluespire.com",
|
|
222
|
+
"package": "@microsoft/fast-element",
|
|
223
|
+
"commit": "1d9c23ecd77a4079126b1156567b906efff66350",
|
|
224
|
+
"comment": "docs: add missing API docs"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"author": "rob@bluespire.com",
|
|
228
|
+
"package": "@microsoft/fast-element",
|
|
229
|
+
"commit": "032285c2bf0311f9f44cbc875b40696fc8f62857",
|
|
230
|
+
"comment": "fix: correct types for a break in TypeScript 5 legacy decorators"
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"date": "Sat, 11 Mar 2023 00:09:48 GMT",
|
|
237
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.22",
|
|
238
|
+
"version": "2.0.0-beta.22",
|
|
239
|
+
"comments": {
|
|
240
|
+
"prerelease": [
|
|
241
|
+
{
|
|
242
|
+
"author": "rob@bluespire.com",
|
|
243
|
+
"package": "@microsoft/fast-element",
|
|
244
|
+
"commit": "1c81922fbc9a7596330d53251975fb3f47357361",
|
|
245
|
+
"comment": "feat: add Context.for"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"author": "rob@bluespire.com",
|
|
249
|
+
"package": "@microsoft/fast-element",
|
|
250
|
+
"commit": "70eb15bc13d9f4d849bc5b1fe4d591a23e57c935",
|
|
251
|
+
"comment": "feat: enable data binding in CSS"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"author": "32497422+KingOfTac@users.noreply.github.com",
|
|
255
|
+
"package": "@microsoft/fast-element",
|
|
256
|
+
"commit": "d0ef0d6b1540ed90730187b45bdaf47aa9dcb183",
|
|
257
|
+
"comment": "add directives support for createElementTemplate"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"author": "rob@bluespire.com",
|
|
261
|
+
"package": "@microsoft/fast-element",
|
|
262
|
+
"commit": "24ec7cb05e955c5b916f611e96c47da665556604",
|
|
263
|
+
"comment": "fix: clean up toJSON noop on core fast-element types"
|
|
264
|
+
}
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"date": "Tue, 14 Feb 2023 04:02:35 GMT",
|
|
270
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.21",
|
|
271
|
+
"version": "2.0.0-beta.21",
|
|
272
|
+
"comments": {
|
|
273
|
+
"prerelease": [
|
|
274
|
+
{
|
|
275
|
+
"author": "rob@bluespire.com",
|
|
276
|
+
"package": "@microsoft/fast-element",
|
|
277
|
+
"commit": "d38d31d2dd7496b5eb1e7c65b57de9a5e05e8546",
|
|
278
|
+
"comment": "fix: cleanup types, docs, etc. in root source files of fast-element in preparation for release"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
282
|
+
"package": "@microsoft/fast-element",
|
|
283
|
+
"commit": "09d57ca18700331d054515c3b3f6fae07528cca0",
|
|
284
|
+
"comment": "Remove un-necessary expression from StyleElementStrategy"
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"date": "Wed, 11 Jan 2023 22:07:47 GMT",
|
|
291
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.20",
|
|
292
|
+
"version": "2.0.0-beta.20",
|
|
293
|
+
"comments": {
|
|
294
|
+
"prerelease": [
|
|
295
|
+
{
|
|
296
|
+
"author": "863023+radium-v@users.noreply.github.com",
|
|
297
|
+
"package": "@microsoft/fast-element",
|
|
298
|
+
"commit": "555f1b2cd614a1d5a9bc3985fb892d040c110cb3",
|
|
299
|
+
"comment": "add nullableBooleanConverter for attributes"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"author": "chhol@microsoft.com",
|
|
303
|
+
"package": "@microsoft/fast-element",
|
|
304
|
+
"commit": "52cd5171c3e9061af8066443023782bca2b0e59b",
|
|
305
|
+
"comment": "update return type for dangerousHTML to DangerousHTMLDirective"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"author": "rob@bluespire.com",
|
|
309
|
+
"package": "@microsoft/fast-element",
|
|
310
|
+
"commit": "4c58813ec1b770b1f95c1b5993f8e3013a7544e2",
|
|
311
|
+
"comment": "chore: remove deprecated APIs from fast-element"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"author": "roeisenb@microsoft.com",
|
|
315
|
+
"package": "@microsoft/fast-element",
|
|
316
|
+
"commit": "84fd72febb4dff874db9322a6cb27e698b3ec790",
|
|
317
|
+
"comment": "chore: cleanup fast-element interfaces"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"author": "roeisenb@microsoft.com",
|
|
321
|
+
"package": "@microsoft/fast-element",
|
|
322
|
+
"commit": "5c3b2f0431ae8f840d3dc778ff93be73b585c6e2",
|
|
323
|
+
"comment": "refactor(fast-element): replace dangerousHTML with html.partial"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"author": "roeisenb@microsoft.com",
|
|
327
|
+
"package": "@microsoft/fast-element",
|
|
328
|
+
"commit": "d14f697ed3449db50384f5c1304f6bb384f9cfe0",
|
|
329
|
+
"comment": "feat: add ability to inline templates"
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"date": "Fri, 02 Dec 2022 01:18:22 GMT",
|
|
336
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.19",
|
|
337
|
+
"version": "2.0.0-beta.19",
|
|
338
|
+
"comments": {
|
|
339
|
+
"prerelease": [
|
|
340
|
+
{
|
|
341
|
+
"author": "roeisenb@microsoft.com",
|
|
342
|
+
"package": "@microsoft/fast-element",
|
|
343
|
+
"commit": "e576aa70c22780fffba03097277e2db9a2ec1cd8",
|
|
344
|
+
"comment": "feat: add kernel mode with isolation by default"
|
|
345
|
+
}
|
|
346
|
+
]
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"date": "Tue, 15 Nov 2022 02:40:34 GMT",
|
|
351
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.18",
|
|
352
|
+
"version": "2.0.0-beta.18",
|
|
353
|
+
"comments": {
|
|
354
|
+
"prerelease": [
|
|
355
|
+
{
|
|
356
|
+
"author": "roeisenb@microsoft.com",
|
|
357
|
+
"package": "@microsoft/fast-element",
|
|
358
|
+
"commit": "1a1fc0b9e85f1e65c605e32f6724402291ffbcaa",
|
|
359
|
+
"comment": "chore: move ViewBehaviorOrchestrator to utilities"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"author": "roeisenb@microsoft.com",
|
|
363
|
+
"package": "@microsoft/fast-element",
|
|
364
|
+
"commit": "3c14603089495a7af8ed5b55122c418b47c45fd5",
|
|
365
|
+
"comment": "feat: add new DOM Policy protection throughout"
|
|
366
|
+
}
|
|
367
|
+
]
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"date": "Tue, 01 Nov 2022 23:26:26 GMT",
|
|
372
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.17",
|
|
373
|
+
"version": "2.0.0-beta.17",
|
|
374
|
+
"comments": {
|
|
375
|
+
"prerelease": [
|
|
376
|
+
{
|
|
377
|
+
"author": "roeisenb@microsoft.com",
|
|
378
|
+
"package": "@microsoft/fast-element",
|
|
379
|
+
"commit": "a4982f452702a8fee67397767b603d4a67702b10",
|
|
380
|
+
"comment": "fix: prevent circular reference errors when stringifying DOM nodes controlled by FAST's rendering engine"
|
|
381
|
+
}
|
|
382
|
+
]
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"date": "Fri, 28 Oct 2022 20:44:44 GMT",
|
|
387
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.16",
|
|
388
|
+
"version": "2.0.0-beta.16",
|
|
389
|
+
"comments": {
|
|
390
|
+
"prerelease": [
|
|
391
|
+
{
|
|
392
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
393
|
+
"package": "@microsoft/fast-element",
|
|
394
|
+
"commit": "5b745b1fb3bf249a7a2d172b7fb69cb08694aadd",
|
|
395
|
+
"comment": "Fixed bug preventing main component stylesheet behaviors from being connected during connectedCallback"
|
|
396
|
+
}
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"date": "Tue, 25 Oct 2022 20:24:32 GMT",
|
|
402
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.15",
|
|
403
|
+
"version": "2.0.0-beta.15",
|
|
404
|
+
"comments": {
|
|
405
|
+
"prerelease": [
|
|
406
|
+
{
|
|
407
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
408
|
+
"package": "@microsoft/fast-element",
|
|
409
|
+
"commit": "220cc7e0e0de490e51cc8b6f42ff46b03228beaa",
|
|
410
|
+
"comment": "Updated the ElementController to connect behaviors prior to rendering element templates"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
414
|
+
"package": "@microsoft/fast-element",
|
|
415
|
+
"commit": "32ca5de5feda4870ed36329f58ded4a0a0421f02",
|
|
416
|
+
"comment": "Added support to fast-element to support element hydration and the `defer-hydration` attribute"
|
|
417
|
+
}
|
|
418
|
+
]
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"date": "Fri, 14 Oct 2022 18:26:11 GMT",
|
|
423
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.14",
|
|
424
|
+
"version": "2.0.0-beta.14",
|
|
425
|
+
"comments": {
|
|
426
|
+
"prerelease": [
|
|
427
|
+
{
|
|
428
|
+
"author": "roeisenb@microsoft.com",
|
|
429
|
+
"package": "@microsoft/fast-element",
|
|
430
|
+
"commit": "19f1ae727e2ff6e629d2b134fc045a81d83caaed",
|
|
431
|
+
"comment": "fix: tokenList bindings track adds and removes from multiple sources"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"author": "roeisenb@microsoft.com",
|
|
435
|
+
"package": "@microsoft/fast-element",
|
|
436
|
+
"commit": "0248fa906f986d6b0cbdeb26cf388742e871449e",
|
|
437
|
+
"comment": "refactor: remove duplication and re-organize binding behavior logic"
|
|
438
|
+
}
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"date": "Mon, 10 Oct 2022 20:28:02 GMT",
|
|
444
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.13",
|
|
445
|
+
"version": "2.0.0-beta.13",
|
|
446
|
+
"comments": {
|
|
447
|
+
"prerelease": [
|
|
448
|
+
{
|
|
449
|
+
"author": "roeisenb@microsoft.com",
|
|
450
|
+
"package": "@microsoft/fast-element",
|
|
451
|
+
"commit": "fed5e806e44da9d10916d9d765fb7f35ed300a3f",
|
|
452
|
+
"comment": "fix: prevent event callbacks when controller is not bound"
|
|
453
|
+
}
|
|
454
|
+
]
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"date": "Thu, 06 Oct 2022 23:21:20 GMT",
|
|
459
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.12",
|
|
460
|
+
"version": "2.0.0-beta.12",
|
|
461
|
+
"comments": {
|
|
462
|
+
"none": [
|
|
463
|
+
{
|
|
464
|
+
"author": "863023+radium-v@users.noreply.github.com",
|
|
465
|
+
"package": "@microsoft/fast-element",
|
|
466
|
+
"commit": "c06e32d72d518bf5c3152efe4e666f233190b445",
|
|
467
|
+
"comment": "upgrade karma to ^6.4.1"
|
|
468
|
+
}
|
|
469
|
+
],
|
|
470
|
+
"prerelease": [
|
|
471
|
+
{
|
|
472
|
+
"author": "roeisenb@microsoft.com",
|
|
473
|
+
"package": "@microsoft/fast-element",
|
|
474
|
+
"commit": "a69c2e3c0700918fef5ba934909781cc8ab71384",
|
|
475
|
+
"comment": "fix: repeat update view context positioning"
|
|
476
|
+
}
|
|
477
|
+
]
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"date": "Wed, 05 Oct 2022 23:26:01 GMT",
|
|
482
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.11",
|
|
483
|
+
"version": "2.0.0-beta.11",
|
|
484
|
+
"comments": {
|
|
485
|
+
"prerelease": [
|
|
486
|
+
{
|
|
487
|
+
"author": "nicholasrice@users.noreply.github.com",
|
|
488
|
+
"package": "@microsoft/fast-element",
|
|
489
|
+
"commit": "21d1de94be2b9399ddc43a2b93c6483fa7304591",
|
|
490
|
+
"comment": "fix: removed a shadowRoot leak from ElementController"
|
|
491
|
+
}
|
|
492
|
+
]
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"date": "Mon, 03 Oct 2022 23:44:38 GMT",
|
|
497
|
+
"tag": "@microsoft/fast-element_v2.0.0-beta.10",
|
|
498
|
+
"version": "2.0.0-beta.10",
|
|
499
|
+
"comments": {
|
|
500
|
+
"prerelease": [
|
|
501
|
+
{
|
|
502
|
+
"author": "roeisenb@microsoft.com",
|
|
503
|
+
"package": "@microsoft/fast-element",
|
|
504
|
+
"commit": "d29444567d824eb92f4e91e9e173319aef30cfb5",
|
|
505
|
+
"comment": "fix: observation kernel missing binding observer disconnect method"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"author": "roeisenb@microsoft.com",
|
|
509
|
+
"package": "@microsoft/fast-element",
|
|
510
|
+
"commit": "9d620288eb30d963aa7ac08b4d771d79ea6eef7b",
|
|
511
|
+
"comment": "feat: less surprising class bindings w/ more flexibility for developers"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"author": "roeisenb@microsoft.com",
|
|
515
|
+
"package": "@microsoft/fast-element",
|
|
516
|
+
"commit": "a378bfa01843a8a042f3ae37aad6c8fd14fdbcc6",
|
|
517
|
+
"comment": "fix: don't allow registering FASTElement itself as a web component"
|
|
518
|
+
}
|
|
519
|
+
]
|
|
520
|
+
}
|
|
521
|
+
},
|
|
4
522
|
{
|
|
5
523
|
"date": "Wed, 28 Sep 2022 20:45:51 GMT",
|
|
6
524
|
"tag": "@microsoft/fast-element_v2.0.0-beta.9",
|