@microsoft/fast-element 3.0.0-rc.1 → 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.
- package/CHANGELOG.md +51 -1
- package/README.md +50 -14
- package/dist/context/context.api.json +13 -13
- package/dist/declarative/declarative.api.json +654 -15
- package/dist/di/di.api.json +15 -15
- package/dist/dts/__test__/helpers.d.ts +6 -0
- package/dist/dts/__test__/setup-node.d.ts +0 -0
- package/dist/dts/binding/binding.d.ts +15 -5
- package/dist/dts/binding/one-time.d.ts +1 -1
- package/dist/dts/binding/one-way.d.ts +1 -1
- package/dist/dts/binding/signal.d.ts +1 -1
- package/dist/dts/binding/two-way.d.ts +1 -1
- package/dist/dts/components/attributes.d.ts +1 -1
- package/dist/dts/components/enable-hydration.d.ts +22 -2
- package/dist/dts/components/fast-definitions.d.ts +7 -4
- package/dist/dts/components/fast-element.d.ts +42 -12
- package/dist/dts/components/hydration-tracker.d.ts +47 -4
- package/dist/dts/components/hydration.d.ts +5 -0
- package/dist/dts/context.d.ts +7 -7
- package/dist/dts/declarative/debug.d.ts +2 -3
- package/dist/dts/declarative/index.d.ts +3 -2
- package/dist/dts/declarative/interfaces.d.ts +1 -2
- package/dist/dts/declarative/template.d.ts +2 -1
- package/dist/dts/declarative/utilities.d.ts +50 -4
- package/dist/dts/di/di.d.ts +6 -6
- package/dist/dts/dom-policy.d.ts +22 -4
- package/dist/dts/dom.d.ts +4 -16
- package/dist/dts/hydration/diagnostics.d.ts +93 -0
- package/dist/dts/hydration/hydration-debugger.d.ts +35 -0
- package/dist/dts/hydration/messages.d.ts +62 -0
- package/dist/dts/hydration/target-builder.d.ts +26 -1
- package/dist/dts/hydration.d.ts +7 -3
- package/dist/dts/index.d.ts +7 -3
- package/dist/dts/interfaces.d.ts +1 -0
- package/dist/dts/observation/observable.d.ts +3 -3
- package/dist/dts/platform.d.ts +20 -4
- package/dist/dts/registry.d.ts +1 -0
- package/dist/dts/templating/children.d.ts +1 -1
- package/dist/dts/templating/compiler.d.ts +1 -1
- package/dist/dts/templating/html-binding-directive.d.ts +6 -2
- package/dist/dts/templating/html-directive.d.ts +2 -1
- package/dist/dts/templating/hydration-view.d.ts +24 -3
- package/dist/dts/templating/ref.d.ts +1 -1
- package/dist/dts/templating/render.d.ts +2 -2
- package/dist/dts/templating/repeat.d.ts +1 -1
- package/dist/dts/templating/slotted.d.ts +1 -1
- package/dist/dts/templating/template.d.ts +5 -5
- package/dist/dts/templating/when.d.ts +1 -1
- package/dist/dts/testing/fakes.d.ts +4 -4
- package/dist/esm/__test__/helpers.js +22 -0
- package/dist/esm/__test__/setup-node.js +18 -0
- package/dist/esm/binding/two-way.js +1 -2
- package/dist/esm/components/attributes.js +12 -8
- package/dist/esm/components/element-controller.js +11 -6
- package/dist/esm/components/enable-hydration.js +27 -3
- package/dist/esm/components/fast-definitions.js +19 -18
- package/dist/esm/components/hydration-tracker.js +34 -5
- package/dist/esm/components/hydration.js +85 -6
- package/dist/esm/debug.js +1 -0
- package/dist/esm/declarative/attribute-map.js +2 -1
- package/dist/esm/declarative/debug.js +0 -1
- package/dist/esm/declarative/index.js +1 -0
- package/dist/esm/declarative/interfaces.js +0 -1
- package/dist/esm/declarative/observer-map-utilities.js +58 -55
- package/dist/esm/declarative/template-bridge.js +4 -14
- package/dist/esm/declarative/template.js +4 -3
- package/dist/esm/declarative/utilities.js +236 -1
- package/dist/esm/di/di.js +2 -1
- package/dist/esm/dom-policy.js +33 -4
- package/dist/esm/hydration/diagnostics.js +50 -0
- package/dist/esm/hydration/hydration-debugger.js +112 -0
- package/dist/esm/hydration/messages.js +84 -0
- package/dist/esm/hydration/target-builder.js +65 -19
- package/dist/esm/hydration.js +3 -1
- package/dist/esm/index.js +6 -2
- package/dist/esm/interfaces.js +1 -0
- package/dist/esm/metadata.js +2 -8
- package/dist/esm/observation/notifier.js +2 -4
- package/dist/esm/registry.js +1 -0
- package/dist/esm/templating/html-binding-directive.js +1 -1
- package/dist/esm/templating/hydration-view.js +20 -27
- package/dist/esm/templating/render.js +39 -18
- package/dist/esm/templating/repeat.js +51 -17
- package/dist/esm/templating/view.js +1 -1
- package/dist/esm/testing/fixture.js +2 -2
- package/dist/esm/testing/timeout.js +2 -2
- package/dist/fast-element.api.json +1329 -99
- package/dist/fast-element.d.ts +147 -66
- package/dist/fast-element.debug.js +392 -99
- package/dist/fast-element.debug.min.js +2 -2
- package/dist/fast-element.js +392 -99
- package/dist/fast-element.min.js +2 -2
- package/dist/fast-element.untrimmed.d.ts +133 -70
- package/dist/hydration/hydration.api.json +1280 -57
- package/dist/styles/styles.api.json +1 -1
- package/package.json +21 -9
- package/ARCHITECTURE_FASTELEMENT.md +0 -63
- package/ARCHITECTURE_HTML_TAGGED_TEMPLATE_LITERAL.md +0 -36
- package/ARCHITECTURE_INTRO.md +0 -10
- package/ARCHITECTURE_OVERVIEW.md +0 -52
- package/ARCHITECTURE_UPDATES.md +0 -11
- package/CHANGELOG.json +0 -2275
- package/DECLARATIVE_DESIGN.md +0 -806
- package/DECLARATIVE_HTML.md +0 -470
- package/DECLARATIVE_MIGRATION.md +0 -215
- package/DECLARATIVE_RENDERING.md +0 -530
- package/DECLARATIVE_RENDERING_LIFECYCLE.md +0 -288
- package/DECLARATIVE_SCHEMA_OBSERVER_MAP.md +0 -489
- package/DESIGN.md +0 -615
- package/MIGRATION.md +0 -387
- package/SIZES.md +0 -25
- package/api-extractor.arrays.json +0 -15
- package/api-extractor.context.json +0 -15
- package/api-extractor.declarative.json +0 -15
- package/api-extractor.di.json +0 -15
- package/api-extractor.hydration.json +0 -15
- package/api-extractor.styles.json +0 -15
- package/biome.json +0 -4
- package/docs/ACKNOWLEDGEMENTS.md +0 -12
- package/docs/api-report.api.md +0 -1299
- package/docs/arrays/api-report.api.md +0 -114
- package/docs/context/api-report.api.md +0 -69
- package/docs/declarative/api-report.api.md +0 -397
- package/docs/di/api-report.api.md +0 -315
- package/docs/fast-element-2-changes.md +0 -15
- package/docs/hydration/api-report.api.md +0 -285
- package/docs/styles/api-report.api.md +0 -135
- package/playwright.config.ts +0 -26
- package/playwright.declarative.config.ts +0 -26
- package/playwright.declarative.webui.config.ts +0 -20
- package/scripts/declarative/build-fixtures-with-webui.js +0 -135
- package/scripts/declarative/build-fixtures.js +0 -49
- package/scripts/declarative/build-fixtures.utilities.js +0 -101
- package/scripts/measure-sizes.js +0 -219
- package/scripts/run-api-extractor.js +0 -70
- package/test/declarative/fixtures/README.md +0 -72
- package/test/declarative/fixtures/WRITING_FIXTURES.md +0 -330
- package/test/declarative/fixtures/bindings/README.md +0 -12
- package/test/declarative/fixtures/bindings/attribute/entry.html +0 -13
- package/test/declarative/fixtures/bindings/attribute/fast-build.config.json +0 -6
- package/test/declarative/fixtures/bindings/attribute/index.html +0 -25
- package/test/declarative/fixtures/bindings/attribute/main.ts +0 -41
- package/test/declarative/fixtures/bindings/attribute/state.json +0 -8
- package/test/declarative/fixtures/bindings/attribute/templates.html +0 -11
- package/test/declarative/fixtures/bindings/content/entry.html +0 -12
- package/test/declarative/fixtures/bindings/content/fast-build.config.json +0 -6
- package/test/declarative/fixtures/bindings/content/index.html +0 -19
- package/test/declarative/fixtures/bindings/content/main.ts +0 -27
- package/test/declarative/fixtures/bindings/content/state.json +0 -4
- package/test/declarative/fixtures/bindings/content/templates.html +0 -6
- package/test/declarative/fixtures/bindings/dot-syntax/entry.html +0 -11
- package/test/declarative/fixtures/bindings/dot-syntax/fast-build.config.json +0 -6
- package/test/declarative/fixtures/bindings/dot-syntax/index.html +0 -47
- package/test/declarative/fixtures/bindings/dot-syntax/main.ts +0 -59
- package/test/declarative/fixtures/bindings/dot-syntax/state.json +0 -16
- package/test/declarative/fixtures/bindings/dot-syntax/templates.html +0 -17
- package/test/declarative/fixtures/bindings/event/entry.html +0 -11
- package/test/declarative/fixtures/bindings/event/fast-build.config.json +0 -6
- package/test/declarative/fixtures/bindings/event/index.html +0 -43
- package/test/declarative/fixtures/bindings/event/main.ts +0 -43
- package/test/declarative/fixtures/bindings/event/state.json +0 -3
- package/test/declarative/fixtures/bindings/event/templates.html +0 -18
- package/test/declarative/fixtures/bindings/host/entry.html +0 -40
- package/test/declarative/fixtures/bindings/host/fast-build.config.json +0 -6
- package/test/declarative/fixtures/bindings/host/index.html +0 -96
- package/test/declarative/fixtures/bindings/host/main.ts +0 -222
- package/test/declarative/fixtures/bindings/host/state.json +0 -9
- package/test/declarative/fixtures/bindings/host/templates.html +0 -55
- package/test/declarative/fixtures/directives/README.md +0 -12
- package/test/declarative/fixtures/directives/children/entry.html +0 -11
- package/test/declarative/fixtures/directives/children/fast-build.config.json +0 -6
- package/test/declarative/fixtures/directives/children/index.html +0 -15
- package/test/declarative/fixtures/directives/children/main.ts +0 -22
- package/test/declarative/fixtures/directives/children/state.json +0 -3
- package/test/declarative/fixtures/directives/children/templates.html +0 -3
- package/test/declarative/fixtures/directives/ref/entry.html +0 -11
- package/test/declarative/fixtures/directives/ref/fast-build.config.json +0 -6
- package/test/declarative/fixtures/directives/ref/index.html +0 -15
- package/test/declarative/fixtures/directives/ref/main.ts +0 -17
- package/test/declarative/fixtures/directives/ref/state.json +0 -1
- package/test/declarative/fixtures/directives/ref/templates.html +0 -3
- package/test/declarative/fixtures/directives/repeat/entry.html +0 -21
- package/test/declarative/fixtures/directives/repeat/fast-build.config.json +0 -6
- package/test/declarative/fixtures/directives/repeat/index.html +0 -133
- package/test/declarative/fixtures/directives/repeat/main.ts +0 -110
- package/test/declarative/fixtures/directives/repeat/sprites.svg +0 -8
- package/test/declarative/fixtures/directives/repeat/state.json +0 -10
- package/test/declarative/fixtures/directives/repeat/templates.html +0 -75
- package/test/declarative/fixtures/directives/slotted/entry.html +0 -17
- package/test/declarative/fixtures/directives/slotted/fast-build.config.json +0 -6
- package/test/declarative/fixtures/directives/slotted/index.html +0 -27
- package/test/declarative/fixtures/directives/slotted/main.ts +0 -29
- package/test/declarative/fixtures/directives/slotted/state.json +0 -1
- package/test/declarative/fixtures/directives/slotted/templates.html +0 -7
- package/test/declarative/fixtures/directives/when/entry.html +0 -51
- package/test/declarative/fixtures/directives/when/fast-build.config.json +0 -6
- package/test/declarative/fixtures/directives/when/index.html +0 -136
- package/test/declarative/fixtures/directives/when/main.ts +0 -172
- package/test/declarative/fixtures/directives/when/state.json +0 -12
- package/test/declarative/fixtures/directives/when/templates.html +0 -75
- package/test/declarative/fixtures/ecosystem/README.md +0 -11
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/entry.html +0 -12
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/fast-build.config.json +0 -6
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/index.html +0 -20
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/main.ts +0 -68
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/state.json +0 -4
- package/test/declarative/fixtures/ecosystem/declarative-no-hydration/templates.html +0 -7
- package/test/declarative/fixtures/ecosystem/errors/entry.html +0 -12
- package/test/declarative/fixtures/ecosystem/errors/fast-build.config.json +0 -6
- package/test/declarative/fixtures/ecosystem/errors/index.html +0 -20
- package/test/declarative/fixtures/ecosystem/errors/main.ts +0 -17
- package/test/declarative/fixtures/ecosystem/errors/state.json +0 -1
- package/test/declarative/fixtures/ecosystem/errors/templates.html +0 -7
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/entry.html +0 -17
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/fast-build.config.json +0 -6
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/index.html +0 -56
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/main.ts +0 -134
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/state.json +0 -12
- package/test/declarative/fixtures/ecosystem/lifecycle-callbacks/templates.html +0 -34
- package/test/declarative/fixtures/ecosystem/performance-metrics/entry.html +0 -25
- package/test/declarative/fixtures/ecosystem/performance-metrics/fast-build.config.json +0 -6
- package/test/declarative/fixtures/ecosystem/performance-metrics/fast-card.css +0 -10
- package/test/declarative/fixtures/ecosystem/performance-metrics/index.html +0 -181
- package/test/declarative/fixtures/ecosystem/performance-metrics/main.ts +0 -58
- package/test/declarative/fixtures/ecosystem/performance-metrics/state.json +0 -6
- package/test/declarative/fixtures/ecosystem/performance-metrics/templates.html +0 -15
- package/test/declarative/fixtures/extensions/README.md +0 -15
- package/test/declarative/fixtures/extensions/attribute-map/entry.html +0 -14
- package/test/declarative/fixtures/extensions/attribute-map/fast-build.config.json +0 -6
- package/test/declarative/fixtures/extensions/attribute-map/index.html +0 -31
- package/test/declarative/fixtures/extensions/attribute-map/main.ts +0 -40
- package/test/declarative/fixtures/extensions/attribute-map/state.json +0 -4
- package/test/declarative/fixtures/extensions/attribute-map/templates.html +0 -14
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/entry.html +0 -12
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/fast-build.config.json +0 -7
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/index.html +0 -25
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/main.ts +0 -31
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/state.json +0 -5
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy/templates.html +0 -11
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/entry.html +0 -13
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/fast-build.config.json +0 -7
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/index.html +0 -23
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/main.ts +0 -37
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/state.json +0 -1
- package/test/declarative/fixtures/extensions/attribute-map-naming-strategy-camel-case/templates.html +0 -9
- package/test/declarative/fixtures/extensions/observer-map/entry.html +0 -15
- package/test/declarative/fixtures/extensions/observer-map/fast-build.config.json +0 -6
- package/test/declarative/fixtures/extensions/observer-map/index.html +0 -442
- package/test/declarative/fixtures/extensions/observer-map/main.ts +0 -482
- package/test/declarative/fixtures/extensions/observer-map/state.json +0 -158
- package/test/declarative/fixtures/extensions/observer-map/templates.html +0 -172
- package/test/declarative/fixtures/extensions/observer-map-config-object/entry.html +0 -16
- package/test/declarative/fixtures/extensions/observer-map-config-object/fast-build.config.json +0 -6
- package/test/declarative/fixtures/extensions/observer-map-config-object/index.html +0 -27
- package/test/declarative/fixtures/extensions/observer-map-config-object/main.ts +0 -53
- package/test/declarative/fixtures/extensions/observer-map-config-object/state.json +0 -9
- package/test/declarative/fixtures/extensions/observer-map-config-object/templates.html +0 -12
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/README.md +0 -98
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/entry.html +0 -156
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/fast-build.config.json +0 -6
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/index.html +0 -376
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/main.ts +0 -366
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/state.json +0 -69
- package/test/declarative/fixtures/extensions/observer-map-deep-merge/templates.html +0 -91
- package/test/declarative/fixtures/extensions/observer-map-properties/entry.html +0 -14
- package/test/declarative/fixtures/extensions/observer-map-properties/fast-build.config.json +0 -6
- package/test/declarative/fixtures/extensions/observer-map-properties/index.html +0 -110
- package/test/declarative/fixtures/extensions/observer-map-properties/main.ts +0 -175
- package/test/declarative/fixtures/extensions/observer-map-properties/state.json +0 -29
- package/test/declarative/fixtures/extensions/observer-map-properties/templates.html +0 -55
- package/test/declarative/fixtures/scenarios/README.md +0 -7
- package/test/declarative/fixtures/scenarios/nested-elements/entry.html +0 -16
- package/test/declarative/fixtures/scenarios/nested-elements/fast-build.config.json +0 -6
- package/test/declarative/fixtures/scenarios/nested-elements/index.html +0 -126
- package/test/declarative/fixtures/scenarios/nested-elements/main.ts +0 -214
- package/test/declarative/fixtures/scenarios/nested-elements/state.json +0 -10
- package/test/declarative/fixtures/scenarios/nested-elements/templates.html +0 -54
- package/test/declarative/index.html +0 -12
- package/test/declarative/vite.config.ts +0 -55
- package/test/declarative-main.ts +0 -6
- package/test/extension-subpaths-main.ts +0 -9
- package/test/index.html +0 -11
- package/test/main.ts +0 -109
- package/test/pure-declarative-main.ts +0 -1
- package/test/vite.config.ts +0 -19
- package/tsconfig.api-extractor.json +0 -6
package/CHANGELOG.json
DELETED
|
@@ -1,2275 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/fast-element",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "Fri, 17 Apr 2026 00:26:37 GMT",
|
|
6
|
-
"version": "2.10.4",
|
|
7
|
-
"tag": "@microsoft/fast-element_v2.10.4",
|
|
8
|
-
"comments": {
|
|
9
|
-
"patch": [
|
|
10
|
-
{
|
|
11
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
12
|
-
"package": "@microsoft/fast-element",
|
|
13
|
-
"commit": "c687b2e83ef43fa1170012d29d4bee38e7f97f5a",
|
|
14
|
-
"comment": "fix: guard binding updates against stale notifications after view unbind"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"date": "Tue, 14 Apr 2026 00:15:09 GMT",
|
|
21
|
-
"version": "2.10.3",
|
|
22
|
-
"tag": "@microsoft/fast-element_v2.10.3",
|
|
23
|
-
"comments": {
|
|
24
|
-
"none": [
|
|
25
|
-
{
|
|
26
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
27
|
-
"package": "@microsoft/fast-element",
|
|
28
|
-
"commit": "e8ce63d65a17c94baf03f271b9fa269b7f27d3e1",
|
|
29
|
-
"comment": "Add test:chromium script for Chromium-only Playwright test runs"
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"date": "Wed, 08 Apr 2026 00:19:56 GMT",
|
|
36
|
-
"version": "2.10.3",
|
|
37
|
-
"tag": "@microsoft/fast-element_v2.10.3",
|
|
38
|
-
"comments": {
|
|
39
|
-
"patch": [
|
|
40
|
-
{
|
|
41
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
42
|
-
"package": "@microsoft/fast-element",
|
|
43
|
-
"commit": "e222ea1a8f0dfce91622f3b8504539c5fed1ddbd",
|
|
44
|
-
"comment": "fix: replace direct property access with Reflect.get for lazy getter resolution"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"none": [
|
|
48
|
-
{
|
|
49
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
50
|
-
"package": "@microsoft/fast-element",
|
|
51
|
-
"commit": "72e9f0d675f7a08de40eff911fefb783d1c43b3a",
|
|
52
|
-
"comment": "chore: add DESIGN.md and fix architecture doc errors"
|
|
53
|
-
}
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"date": "Tue, 07 Apr 2026 00:50:48 GMT",
|
|
59
|
-
"version": "2.10.2",
|
|
60
|
-
"tag": "@microsoft/fast-element_v2.10.2",
|
|
61
|
-
"comments": {
|
|
62
|
-
"none": [
|
|
63
|
-
{
|
|
64
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
65
|
-
"package": "@microsoft/fast-element",
|
|
66
|
-
"commit": "05ccb88f41eb44ec6cbe263335cc030de99f80a4",
|
|
67
|
-
"comment": "chore: add biome script to run biome on changed files in packages"
|
|
68
|
-
}
|
|
69
|
-
]
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"date": "Sat, 04 Apr 2026 00:22:26 GMT",
|
|
74
|
-
"version": "2.10.2",
|
|
75
|
-
"tag": "@microsoft/fast-element_v2.10.2",
|
|
76
|
-
"comments": {
|
|
77
|
-
"none": [
|
|
78
|
-
{
|
|
79
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
80
|
-
"package": "@microsoft/fast-element",
|
|
81
|
-
"commit": "4371b6c6124feaec26dd51116cb6d777a6507a99",
|
|
82
|
-
"comment": "Add documentation on FAST templating"
|
|
83
|
-
}
|
|
84
|
-
]
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"date": "Thu, 26 Mar 2026 00:04:08 GMT",
|
|
89
|
-
"version": "2.10.2",
|
|
90
|
-
"tag": "@microsoft/fast-element_v2.10.2",
|
|
91
|
-
"comments": {
|
|
92
|
-
"none": [
|
|
93
|
-
{
|
|
94
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
95
|
-
"package": "@microsoft/fast-element",
|
|
96
|
-
"commit": "6b0fd6c4a4b0c635d4e5c18d251b28abbf32bab5",
|
|
97
|
-
"comment": "chore: migrate to biome for linting and formatting"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
101
|
-
"package": "@microsoft/fast-element",
|
|
102
|
-
"commit": "11227f6085b9aa2a3048c70427867a1f8d2f6873",
|
|
103
|
-
"comment": "chore: replace old clean script with new implementation"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
107
|
-
"package": "@microsoft/fast-element",
|
|
108
|
-
"commit": "ea46496f56cd94cb0dae65b7026998c88604aaac",
|
|
109
|
-
"comment": "chore: fix publish blocker due to biome"
|
|
110
|
-
}
|
|
111
|
-
]
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"date": "Fri, 20 Mar 2026 00:07:36 GMT",
|
|
116
|
-
"version": "2.10.2",
|
|
117
|
-
"tag": "@microsoft/fast-element_v2.10.2",
|
|
118
|
-
"comments": {
|
|
119
|
-
"none": [
|
|
120
|
-
{
|
|
121
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
122
|
-
"package": "@microsoft/fast-element",
|
|
123
|
-
"commit": "6df43be90d257a49389c188935400792b7108cc6",
|
|
124
|
-
"comment": "Split tests to assist in base PR build gate times"
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
128
|
-
"package": "@microsoft/fast-element",
|
|
129
|
-
"commit": "1dd81b899a21eb28ed7dd15bdf1c558196775c3e",
|
|
130
|
-
"comment": "chore: update dependencies and configurations"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
134
|
-
"package": "@microsoft/fast-element",
|
|
135
|
-
"commit": "8f79bdbf1d7c3af827ca807347fc1134bbf45731",
|
|
136
|
-
"comment": "Remove karma/mocha/chai and related unused dependencies"
|
|
137
|
-
}
|
|
138
|
-
]
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"date": "Fri, 13 Mar 2026 18:13:56 GMT",
|
|
143
|
-
"version": "2.10.2",
|
|
144
|
-
"tag": "@microsoft/fast-element_v2.10.2",
|
|
145
|
-
"comments": {
|
|
146
|
-
"patch": [
|
|
147
|
-
{
|
|
148
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
149
|
-
"package": "@microsoft/fast-element",
|
|
150
|
-
"commit": "3ade63edb5abe7b5454e96390aac5ad13fdb4cc7",
|
|
151
|
-
"comment": "fix: add hydrating instance when needsHydration is true in HydratableElementController"
|
|
152
|
-
}
|
|
153
|
-
]
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"date": "Tue, 10 Mar 2026 00:17:17 GMT",
|
|
158
|
-
"version": "2.10.1",
|
|
159
|
-
"tag": "@microsoft/fast-element_v2.10.1",
|
|
160
|
-
"comments": {
|
|
161
|
-
"none": [
|
|
162
|
-
{
|
|
163
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
164
|
-
"package": "@microsoft/fast-element",
|
|
165
|
-
"commit": "f91c57b5df062d6a1bb46a692070b89e31df384d",
|
|
166
|
-
"comment": "Remove webpack-env from tsconfig"
|
|
167
|
-
}
|
|
168
|
-
]
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
"date": "Sun, 08 Mar 2026 00:09:02 GMT",
|
|
173
|
-
"version": "2.10.1",
|
|
174
|
-
"tag": "@microsoft/fast-element_v2.10.1",
|
|
175
|
-
"comments": {
|
|
176
|
-
"none": [
|
|
177
|
-
{
|
|
178
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
179
|
-
"package": "@microsoft/fast-element",
|
|
180
|
-
"commit": "37734050ee0b61e9ea58a567882359ed5ab78eb6",
|
|
181
|
-
"comment": "Update Karma tests to Playwright"
|
|
182
|
-
}
|
|
183
|
-
]
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"date": "Mon, 02 Mar 2026 22:31:57 GMT",
|
|
188
|
-
"version": "2.10.1",
|
|
189
|
-
"tag": "@microsoft/fast-element_v2.10.1",
|
|
190
|
-
"comments": {
|
|
191
|
-
"patch": [
|
|
192
|
-
{
|
|
193
|
-
"author": "email not defined",
|
|
194
|
-
"package": "@microsoft/fast-element",
|
|
195
|
-
"commit": "c992d2a5311f64272c3aebfb24105f374dd22cb1",
|
|
196
|
-
"comment": "Moves handleEvent from a class property into a closure in children.ts to remove non-standard observer.target property assignment"
|
|
197
|
-
}
|
|
198
|
-
]
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"date": "Tue, 17 Feb 2026 20:49:29 GMT",
|
|
203
|
-
"version": "2.10.0",
|
|
204
|
-
"tag": "@microsoft/fast-element_v2.10.0",
|
|
205
|
-
"comments": {
|
|
206
|
-
"patch": [
|
|
207
|
-
{
|
|
208
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
209
|
-
"package": "@microsoft/fast-element",
|
|
210
|
-
"commit": "4176d0cb01260e6c5d03c53351eb9be0d2736b90",
|
|
211
|
-
"comment": "chore: enable verbatimModuleSyntax to identify type-only imports and exports"
|
|
212
|
-
}
|
|
213
|
-
],
|
|
214
|
-
"none": [
|
|
215
|
-
{
|
|
216
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
217
|
-
"package": "@microsoft/fast-element",
|
|
218
|
-
"commit": "65f87c8f1fff03011d77f8159bae96e0f3fe9fce",
|
|
219
|
-
"comment": "chore: remove benchmark scripts and related utilities from fast-element package"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"author": "machi@microsoft.com",
|
|
223
|
-
"package": "@microsoft/fast-element",
|
|
224
|
-
"commit": "b5ed37b3aa98bc37430f2ba5cd47de3768066a3a",
|
|
225
|
-
"comment": "introduce playwright for testing"
|
|
226
|
-
}
|
|
227
|
-
],
|
|
228
|
-
"minor": [
|
|
229
|
-
{
|
|
230
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
231
|
-
"package": "@microsoft/fast-element",
|
|
232
|
-
"commit": "350bb02ec3c35f7b354314dd9e4dfb614c335723",
|
|
233
|
-
"comment": "feat: pass source element to hydration lifecycle callbacks"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
237
|
-
"package": "@microsoft/fast-element",
|
|
238
|
-
"commit": "57ef1a5495298ad3aadc6b74c95b10bbdbdde3ca",
|
|
239
|
-
"comment": "feat(hydration): add hydrationStarted callback and update documentation"
|
|
240
|
-
}
|
|
241
|
-
]
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"date": "Tue, 27 Jan 2026 17:28:54 GMT",
|
|
246
|
-
"version": "2.9.2",
|
|
247
|
-
"tag": "@microsoft/fast-element_v2.9.2",
|
|
248
|
-
"comments": {
|
|
249
|
-
"patch": [
|
|
250
|
-
{
|
|
251
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
252
|
-
"package": "@microsoft/fast-element",
|
|
253
|
-
"commit": "d1cd327a6d37cea742b1b1df48f807fe9a1da4f7",
|
|
254
|
-
"comment": "chore: hoist devDependencies"
|
|
255
|
-
}
|
|
256
|
-
]
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"date": "Tue, 16 Dec 2025 21:27:19 GMT",
|
|
261
|
-
"version": "2.9.1",
|
|
262
|
-
"tag": "@microsoft/fast-element_v2.9.1",
|
|
263
|
-
"comments": {
|
|
264
|
-
"patch": [
|
|
265
|
-
{
|
|
266
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
267
|
-
"package": "@microsoft/fast-element",
|
|
268
|
-
"commit": "2c8de46fbde0440593f559cd2ddd8d7c6248f68d",
|
|
269
|
-
"comment": "fix: correct hydration marker indexes for templates with host bindings"
|
|
270
|
-
}
|
|
271
|
-
]
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"date": "Mon, 08 Dec 2025 19:47:51 GMT",
|
|
276
|
-
"version": "2.9.0",
|
|
277
|
-
"tag": "@microsoft/fast-element_v2.9.0",
|
|
278
|
-
"comments": {
|
|
279
|
-
"minor": [
|
|
280
|
-
{
|
|
281
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
282
|
-
"package": "@microsoft/fast-element",
|
|
283
|
-
"commit": "1e21fa3cac5f940f639bf76311af291e1a368da1",
|
|
284
|
-
"comment": "feat: add support for compact attribute binding markers"
|
|
285
|
-
}
|
|
286
|
-
]
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"date": "Tue, 02 Dec 2025 21:46:59 GMT",
|
|
291
|
-
"version": "2.8.5",
|
|
292
|
-
"tag": "@microsoft/fast-element_v2.8.5",
|
|
293
|
-
"comments": {
|
|
294
|
-
"patch": [
|
|
295
|
-
{
|
|
296
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
297
|
-
"package": "@microsoft/fast-element",
|
|
298
|
-
"commit": "78c90cc517baa58b21e1dfc99939636fac7fbac6",
|
|
299
|
-
"comment": "fix: move hydration lifecycle callback to correct position"
|
|
300
|
-
}
|
|
301
|
-
]
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"date": "Mon, 01 Dec 2025 18:46:00 GMT",
|
|
306
|
-
"version": "2.8.4",
|
|
307
|
-
"tag": "@microsoft/fast-element_v2.8.4",
|
|
308
|
-
"comments": {
|
|
309
|
-
"patch": [
|
|
310
|
-
{
|
|
311
|
-
"author": "mmansour@microsoft.com",
|
|
312
|
-
"package": "@microsoft/fast-element",
|
|
313
|
-
"commit": "ed14307460fecef6636c0402199528f1db2cf97d",
|
|
314
|
-
"comment": "chore: add interfaces to sideEffects"
|
|
315
|
-
}
|
|
316
|
-
]
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
"date": "Sun, 16 Nov 2025 07:14:24 GMT",
|
|
321
|
-
"version": "2.8.3",
|
|
322
|
-
"tag": "@microsoft/fast-element_v2.8.3",
|
|
323
|
-
"comments": {
|
|
324
|
-
"none": [
|
|
325
|
-
{
|
|
326
|
-
"author": "13071055+chrisdholt@users.noreply.github.com",
|
|
327
|
-
"package": "@microsoft/fast-element",
|
|
328
|
-
"commit": "acbdd78666f70b0b49dc99f61b71af7c0b3e259e",
|
|
329
|
-
"comment": "chore: flatten repository package structure"
|
|
330
|
-
}
|
|
331
|
-
]
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
"date": "Wed, 12 Nov 2025 20:41:54 GMT",
|
|
336
|
-
"version": "2.8.3",
|
|
337
|
-
"tag": "@microsoft/fast-element_v2.8.3",
|
|
338
|
-
"comments": {
|
|
339
|
-
"patch": [
|
|
340
|
-
{
|
|
341
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
342
|
-
"package": "@microsoft/fast-element",
|
|
343
|
-
"commit": "2601b22d4bfabc277ddb259dbe028d695712986b",
|
|
344
|
-
"comment": "fix: update hydration attribute logic in HydratableElementController tests and implementation"
|
|
345
|
-
}
|
|
346
|
-
]
|
|
347
|
-
}
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"date": "Fri, 31 Oct 2025 20:45:55 GMT",
|
|
351
|
-
"version": "2.8.2",
|
|
352
|
-
"tag": "@microsoft/fast-element_v2.8.2",
|
|
353
|
-
"comments": {
|
|
354
|
-
"patch": [
|
|
355
|
-
{
|
|
356
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
357
|
-
"package": "@microsoft/fast-element",
|
|
358
|
-
"commit": "1c008047c3c0b651dbec6dd74ece2da71693cbf3",
|
|
359
|
-
"comment": "fix: use shadowOptions getter override to set hydration attributes"
|
|
360
|
-
}
|
|
361
|
-
]
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
{
|
|
365
|
-
"date": "Tue, 21 Oct 2025 16:17:27 GMT",
|
|
366
|
-
"version": "2.8.1",
|
|
367
|
-
"tag": "@microsoft/fast-element_v2.8.1",
|
|
368
|
-
"comments": {
|
|
369
|
-
"patch": [
|
|
370
|
-
{
|
|
371
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
372
|
-
"package": "@microsoft/fast-element",
|
|
373
|
-
"commit": "d66ae6571c97341890e5320048fc1a3ef38dc5be",
|
|
374
|
-
"comment": "feat: add methods to track hydrating instances"
|
|
375
|
-
}
|
|
376
|
-
]
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"date": "Mon, 13 Oct 2025 00:37:08 GMT",
|
|
381
|
-
"version": "2.8.0",
|
|
382
|
-
"tag": "@microsoft/fast-element_v2.8.0",
|
|
383
|
-
"comments": {
|
|
384
|
-
"minor": [
|
|
385
|
-
{
|
|
386
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
387
|
-
"package": "@microsoft/fast-element",
|
|
388
|
-
"commit": "28a1d5dcae41f04e2ff8cb9114c312efb88fb1e1",
|
|
389
|
-
"comment": "[feat]: implement lifecycle callbacks for hydration and template events"
|
|
390
|
-
}
|
|
391
|
-
]
|
|
392
|
-
}
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"date": "Wed, 20 Aug 2025 20:57:02 GMT",
|
|
396
|
-
"version": "2.7.0",
|
|
397
|
-
"tag": "@microsoft/fast-element_v2.7.0",
|
|
398
|
-
"comments": {
|
|
399
|
-
"minor": [
|
|
400
|
-
{
|
|
401
|
-
"author": "machi@microsoft.com",
|
|
402
|
-
"package": "@microsoft/fast-element",
|
|
403
|
-
"commit": "5201b7c0967da09a62f96e7315ba253c8b5937ec",
|
|
404
|
-
"comment": "remove shadowOptions observation"
|
|
405
|
-
}
|
|
406
|
-
]
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"date": "Wed, 06 Aug 2025 07:15:13 GMT",
|
|
411
|
-
"version": "2.6.0",
|
|
412
|
-
"tag": "@microsoft/fast-element_v2.6.0",
|
|
413
|
-
"comments": {
|
|
414
|
-
"minor": [
|
|
415
|
-
{
|
|
416
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
417
|
-
"package": "@microsoft/fast-element",
|
|
418
|
-
"commit": "4d33380afbfa3157cbcc69f4f39511e9a0bcd530",
|
|
419
|
-
"comment": "Add observervable export path"
|
|
420
|
-
}
|
|
421
|
-
]
|
|
422
|
-
}
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
"date": "Wed, 16 Jul 2025 22:43:52 GMT",
|
|
426
|
-
"version": "2.5.0",
|
|
427
|
-
"tag": "@microsoft/fast-element_v2.5.0",
|
|
428
|
-
"comments": {
|
|
429
|
-
"minor": [
|
|
430
|
-
{
|
|
431
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
432
|
-
"package": "@microsoft/fast-element",
|
|
433
|
-
"commit": "245c8e45d68513ee5d733340784bdaa2afcaf909",
|
|
434
|
-
"comment": "Update component lifecycles with async methods to allow for a deferred define step"
|
|
435
|
-
}
|
|
436
|
-
]
|
|
437
|
-
}
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"date": "Fri, 30 May 2025 05:02:03 GMT",
|
|
441
|
-
"version": "2.4.1",
|
|
442
|
-
"tag": "@microsoft/fast-element_v2.4.1",
|
|
443
|
-
"comments": {
|
|
444
|
-
"patch": [
|
|
445
|
-
{
|
|
446
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
447
|
-
"package": "@microsoft/fast-element",
|
|
448
|
-
"commit": "a31632f4c15256f2fe89c8f0decaba1fa8b5905b",
|
|
449
|
-
"comment": "Update logic for enumerated attribute hydration markers, add view hydration as export"
|
|
450
|
-
}
|
|
451
|
-
]
|
|
452
|
-
}
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"date": "Fri, 23 May 2025 23:52:29 GMT",
|
|
456
|
-
"version": "2.4.0",
|
|
457
|
-
"tag": "@microsoft/fast-element_v2.4.0",
|
|
458
|
-
"comments": {
|
|
459
|
-
"minor": [
|
|
460
|
-
{
|
|
461
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
462
|
-
"package": "@microsoft/fast-element",
|
|
463
|
-
"commit": "746baedf522782b78b6827c99062366770ecd384",
|
|
464
|
-
"comment": "Add enumerated hydration binding markers"
|
|
465
|
-
}
|
|
466
|
-
]
|
|
467
|
-
}
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"date": "Mon, 12 May 2025 00:33:45 GMT",
|
|
471
|
-
"version": "2.3.0",
|
|
472
|
-
"tag": "@microsoft/fast-element_v2.3.0",
|
|
473
|
-
"comments": {
|
|
474
|
-
"none": [
|
|
475
|
-
{
|
|
476
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
477
|
-
"package": "@microsoft/fast-element",
|
|
478
|
-
"commit": "d9eed655b48ad78b173a0688161f6e218fd0d9c9",
|
|
479
|
-
"comment": "Fix a dependency security issue due to an outdated version of express"
|
|
480
|
-
}
|
|
481
|
-
]
|
|
482
|
-
}
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"date": "Mon, 05 May 2025 00:33:41 GMT",
|
|
486
|
-
"version": "2.3.0",
|
|
487
|
-
"tag": "@microsoft/fast-element_v2.3.0",
|
|
488
|
-
"comments": {
|
|
489
|
-
"minor": [
|
|
490
|
-
{
|
|
491
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
492
|
-
"package": "@microsoft/fast-element",
|
|
493
|
-
"commit": "9ccfe094e922753556ab041f833cec716402cdd3",
|
|
494
|
-
"comment": "Allow shadowOptions to be observed"
|
|
495
|
-
}
|
|
496
|
-
]
|
|
497
|
-
}
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"date": "Mon, 28 Apr 2025 16:06:00 GMT",
|
|
501
|
-
"version": "2.2.1",
|
|
502
|
-
"tag": "@microsoft/fast-element_v2.2.1",
|
|
503
|
-
"comments": {
|
|
504
|
-
"none": [
|
|
505
|
-
{
|
|
506
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
507
|
-
"package": "@microsoft/fast-element",
|
|
508
|
-
"commit": "3217b8f88254fb703bd3aae6a408ba2de8b8f741",
|
|
509
|
-
"comment": "Add iterations to conditional test timeout"
|
|
510
|
-
}
|
|
511
|
-
]
|
|
512
|
-
}
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
"date": "Wed, 16 Apr 2025 15:53:12 GMT",
|
|
516
|
-
"version": "2.2.1",
|
|
517
|
-
"tag": "@microsoft/fast-element_v2.2.1",
|
|
518
|
-
"comments": {
|
|
519
|
-
"patch": [
|
|
520
|
-
{
|
|
521
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
522
|
-
"package": "@microsoft/fast-element",
|
|
523
|
-
"commit": "cd0139a2fd49a07a2602e5f31c1f4e6cab8b88e2",
|
|
524
|
-
"comment": "fix: use Observable method instead of decorator in FASTElementDefinition class"
|
|
525
|
-
}
|
|
526
|
-
],
|
|
527
|
-
"none": [
|
|
528
|
-
{
|
|
529
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
530
|
-
"package": "@microsoft/fast-element",
|
|
531
|
-
"commit": "0f9349a9d1a983dde9704cf1525a3303790c073d",
|
|
532
|
-
"comment": "Remove Updates.next() on flaky hydration test"
|
|
533
|
-
}
|
|
534
|
-
]
|
|
535
|
-
}
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"date": "Mon, 24 Mar 2025 18:26:13 GMT",
|
|
539
|
-
"version": "2.2.0",
|
|
540
|
-
"tag": "@microsoft/fast-element_v2.2.0",
|
|
541
|
-
"comments": {
|
|
542
|
-
"minor": [
|
|
543
|
-
{
|
|
544
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
545
|
-
"package": "@microsoft/fast-element",
|
|
546
|
-
"commit": "4ef0c4d19c6ccce86756a55a26ad0a6a3c1cdb47",
|
|
547
|
-
"comment": "Expose the fast registry and allow triggering definition updates"
|
|
548
|
-
}
|
|
549
|
-
]
|
|
550
|
-
}
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"date": "Thu, 13 Feb 2025 17:34:08 GMT",
|
|
554
|
-
"version": "2.1.0",
|
|
555
|
-
"tag": "@microsoft/fast-element_v2.1.0",
|
|
556
|
-
"comments": {
|
|
557
|
-
"minor": [
|
|
558
|
-
{
|
|
559
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
560
|
-
"package": "@microsoft/fast-element",
|
|
561
|
-
"commit": "c4836e507f848b4838eb2c106c17dd18c28240b1",
|
|
562
|
-
"comment": "Update the ArrayObserver to better account for sort and reverse"
|
|
563
|
-
}
|
|
564
|
-
],
|
|
565
|
-
"none": [
|
|
566
|
-
{
|
|
567
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
568
|
-
"package": "@microsoft/fast-element",
|
|
569
|
-
"commit": "c6b9e8a436b7b52e5df02182b663167bb34cad8a",
|
|
570
|
-
"comment": "Add documentation explaining some architectural concepts"
|
|
571
|
-
}
|
|
572
|
-
]
|
|
573
|
-
}
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"date": "Wed, 11 Dec 2024 19:53:31 GMT",
|
|
577
|
-
"version": "2.0.1",
|
|
578
|
-
"tag": "@microsoft/fast-element_v2.0.1",
|
|
579
|
-
"comments": {
|
|
580
|
-
"patch": [
|
|
581
|
-
{
|
|
582
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
583
|
-
"package": "@microsoft/fast-element",
|
|
584
|
-
"commit": "33111eeff26ab4ae2bbe1c90145170ed175d2217",
|
|
585
|
-
"comment": "Patch bumping to apply latest tag to the package"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"author": "abaris@null.net",
|
|
589
|
-
"package": "@microsoft/fast-element",
|
|
590
|
-
"commit": "51a79eb3294897fb1e71b5dcdcce0bea62521e80",
|
|
591
|
-
"comment": "fast-element: Simplify conditional checks in element-controller"
|
|
592
|
-
}
|
|
593
|
-
]
|
|
594
|
-
}
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
"date": "Mon, 19 Aug 2024 22:04:19 GMT",
|
|
598
|
-
"version": "2.0.0",
|
|
599
|
-
"tag": "@microsoft/fast-element_v2.0.0",
|
|
600
|
-
"comments": {
|
|
601
|
-
"major": [
|
|
602
|
-
{
|
|
603
|
-
"author": "13071055+chrisdholt@users.noreply.github.com",
|
|
604
|
-
"package": "@microsoft/fast-element",
|
|
605
|
-
"commit": "630a5e25a953201afa016e54aa77cf68d9d7663a",
|
|
606
|
-
"comment": "Update @microsoft/fast-element to major version"
|
|
607
|
-
}
|
|
608
|
-
],
|
|
609
|
-
"none": [
|
|
610
|
-
{
|
|
611
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
612
|
-
"package": "@microsoft/fast-element",
|
|
613
|
-
"commit": "78910b1158a6a24b717b3d94616fa93ab6786ab4",
|
|
614
|
-
"comment": "Remove yarn and lerna in favor of npm"
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
618
|
-
"package": "@microsoft/fast-element",
|
|
619
|
-
"commit": "97bf7097a3d85df153df3528a450d7d65dd9b1cc",
|
|
620
|
-
"comment": "Add api-extractor generated docs for di and context export paths"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
624
|
-
"package": "@microsoft/fast-element",
|
|
625
|
-
"commit": "4f166dc4fb83cca168b1f284da21fc6979fd1420",
|
|
626
|
-
"comment": "Update tensile-perf dependency"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
630
|
-
"package": "@microsoft/fast-element",
|
|
631
|
-
"commit": "92e82f74b9ec0e5eb28895a6aba6426224ee434d",
|
|
632
|
-
"comment": "Add working with decorators doc and updated api-report markdown"
|
|
633
|
-
}
|
|
634
|
-
],
|
|
635
|
-
"prerelease": [
|
|
636
|
-
{
|
|
637
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
638
|
-
"package": "@microsoft/fast-element",
|
|
639
|
-
"commit": "035aefc8a25f4f75f3eb2e8cfb4dd0c60e0d2f67",
|
|
640
|
-
"comment": "Fix CodeQL issues"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"author": "171390049+prabhujayapal@users.noreply.github.com",
|
|
644
|
-
"package": "@microsoft/fast-element",
|
|
645
|
-
"commit": "882eded0b9dbc7d129ae4e634878024a0d7ffc08",
|
|
646
|
-
"comment": "Adds support for FASTElement hydration"
|
|
647
|
-
}
|
|
648
|
-
]
|
|
649
|
-
}
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"date": "Thu, 20 Jun 2024 17:00:56 GMT",
|
|
653
|
-
"version": "2.0.0-beta.26",
|
|
654
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.26",
|
|
655
|
-
"comments": {
|
|
656
|
-
"none": [
|
|
657
|
-
{
|
|
658
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
659
|
-
"package": "@microsoft/fast-element",
|
|
660
|
-
"commit": "5eb926a3f3ec49782bf6ba5c2d58cb8b8c35e7f1",
|
|
661
|
-
"comment": "Update documentation site with 2.0.0 content"
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
665
|
-
"package": "@microsoft/fast-element",
|
|
666
|
-
"commit": "c5f4234c6b86e464c66bb9ec24e4ed5a15e64e65",
|
|
667
|
-
"comment": "Update benchmarking to be included in the package instead of being separate"
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
671
|
-
"package": "@microsoft/fast-element",
|
|
672
|
-
"commit": "862d860db267f645b0f0791cba27e6386f7382b8",
|
|
673
|
-
"comment": "Update source-map-loader as it was out of sync"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
677
|
-
"package": "@microsoft/fast-element",
|
|
678
|
-
"commit": "00bccd7812ca072fc2efdf39af7762bbfdc90846",
|
|
679
|
-
"comment": "Remove eslint config package"
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
683
|
-
"package": "@microsoft/fast-element",
|
|
684
|
-
"commit": "4b23b5caa76c172d3ea6c6559699d632a278442c",
|
|
685
|
-
"comment": "Remove redundant docs and upgrade Docusaurus to v3, enable versioned docs"
|
|
686
|
-
}
|
|
687
|
-
]
|
|
688
|
-
}
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"date": "Fri, 18 Aug 2023 00:04:40 GMT",
|
|
692
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.26",
|
|
693
|
-
"version": "2.0.0-beta.26",
|
|
694
|
-
"comments": {
|
|
695
|
-
"prerelease": [
|
|
696
|
-
{
|
|
697
|
-
"author": "chhol@microsoft.com",
|
|
698
|
-
"package": "@microsoft/fast-element",
|
|
699
|
-
"commit": "2dab94c0eda05bee7c4b497e68951d79d6fcbe46",
|
|
700
|
-
"comment": "BREAKING: update fast-element export paths to include extensions"
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"author": "chhol@microsoft.com",
|
|
704
|
-
"package": "@microsoft/fast-element",
|
|
705
|
-
"commit": "8a23a94530ec7e6fb269c149bd70ca97e662dbf4",
|
|
706
|
-
"comment": "update fast-element exports to be explicit"
|
|
707
|
-
}
|
|
708
|
-
]
|
|
709
|
-
}
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
"date": "Sat, 12 Aug 2023 00:26:36 GMT",
|
|
713
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.25",
|
|
714
|
-
"version": "2.0.0-beta.25",
|
|
715
|
-
"comments": {
|
|
716
|
-
"prerelease": [
|
|
717
|
-
{
|
|
718
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
719
|
-
"package": "@microsoft/fast-element",
|
|
720
|
-
"commit": "ff0b93a7fb4ca416629f51cc233078494aaf5f60",
|
|
721
|
-
"comment": "Prevent notification of array splices when operation does not mutate array values"
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
725
|
-
"package": "@microsoft/fast-element",
|
|
726
|
-
"commit": "9f6451f7e7c121d76e2ead6f50f77c312a0157f7",
|
|
727
|
-
"comment": "Adds volatile binding support for JavaScript optional chaining syntax"
|
|
728
|
-
}
|
|
729
|
-
]
|
|
730
|
-
}
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"date": "Fri, 16 Jun 2023 18:17:12 GMT",
|
|
734
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.24",
|
|
735
|
-
"version": "2.0.0-beta.24",
|
|
736
|
-
"comments": {
|
|
737
|
-
"prerelease": [
|
|
738
|
-
{
|
|
739
|
-
"author": "chhol@microsoft.com",
|
|
740
|
-
"package": "@microsoft/fast-element",
|
|
741
|
-
"commit": "8250aa8352940584ff443b550ee756d49f01c478",
|
|
742
|
-
"comment": "fix: update compiler to ensure first and last child references are defined"
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
746
|
-
"package": "@microsoft/fast-element",
|
|
747
|
-
"commit": "e678a782dd06a1c9ca79726da4a5765244858d21",
|
|
748
|
-
"comment": "Adds 'else' template option to the when directive"
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
752
|
-
"package": "@microsoft/fast-element",
|
|
753
|
-
"commit": "58f7ce2ca73cf59dd957889e0763f45d087c77c9",
|
|
754
|
-
"comment": "fixed a bug where re-binding a ChildrenDirective instance would throw a runtime exception from the mutation handler"
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
758
|
-
"package": "@microsoft/fast-element",
|
|
759
|
-
"commit": "88a0d7feb71b2452fa521b72ce308b1e499dfd94",
|
|
760
|
-
"comment": "Update adoptedStyleSheets strategy to use push/splice when available to fix Safari 16.4 bug"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
764
|
-
"package": "@microsoft/fast-element",
|
|
765
|
-
"commit": "9793634f3d06316a6a8689a909f4d41bdd667e99",
|
|
766
|
-
"comment": "fixes a bug where ChildrenDirective could not be used multiple times for the same element"
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
770
|
-
"package": "@microsoft/fast-element",
|
|
771
|
-
"commit": "86c1952373b1fa0d7100cf0d8e942a0580cda725",
|
|
772
|
-
"comment": "fixed bug causing behaviors attached to stylesheets not to be removed when the stylesheet was removed"
|
|
773
|
-
}
|
|
774
|
-
],
|
|
775
|
-
"none": [
|
|
776
|
-
{
|
|
777
|
-
"author": "chhol@microsoft.com",
|
|
778
|
-
"package": "@microsoft/fast-element",
|
|
779
|
-
"commit": "ca0e62ee8d05f72d1d8c1ad66bd6eea8e3f0a4eb",
|
|
780
|
-
"comment": "update prettier and eslint-config-prettier versions"
|
|
781
|
-
}
|
|
782
|
-
]
|
|
783
|
-
}
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
"date": "Tue, 28 Mar 2023 22:14:10 GMT",
|
|
787
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.23",
|
|
788
|
-
"version": "2.0.0-beta.23",
|
|
789
|
-
"comments": {
|
|
790
|
-
"prerelease": [
|
|
791
|
-
{
|
|
792
|
-
"author": "rob@bluespire.com",
|
|
793
|
-
"package": "@microsoft/fast-element",
|
|
794
|
-
"commit": "1d9c23ecd77a4079126b1156567b906efff66350",
|
|
795
|
-
"comment": "docs: add missing API docs"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"author": "rob@bluespire.com",
|
|
799
|
-
"package": "@microsoft/fast-element",
|
|
800
|
-
"commit": "032285c2bf0311f9f44cbc875b40696fc8f62857",
|
|
801
|
-
"comment": "fix: correct types for a break in TypeScript 5 legacy decorators"
|
|
802
|
-
}
|
|
803
|
-
]
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
"date": "Sat, 11 Mar 2023 00:09:48 GMT",
|
|
808
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.22",
|
|
809
|
-
"version": "2.0.0-beta.22",
|
|
810
|
-
"comments": {
|
|
811
|
-
"prerelease": [
|
|
812
|
-
{
|
|
813
|
-
"author": "rob@bluespire.com",
|
|
814
|
-
"package": "@microsoft/fast-element",
|
|
815
|
-
"commit": "1c81922fbc9a7596330d53251975fb3f47357361",
|
|
816
|
-
"comment": "feat: add Context.for"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
"author": "rob@bluespire.com",
|
|
820
|
-
"package": "@microsoft/fast-element",
|
|
821
|
-
"commit": "70eb15bc13d9f4d849bc5b1fe4d591a23e57c935",
|
|
822
|
-
"comment": "feat: enable data binding in CSS"
|
|
823
|
-
},
|
|
824
|
-
{
|
|
825
|
-
"author": "32497422+KingOfTac@users.noreply.github.com",
|
|
826
|
-
"package": "@microsoft/fast-element",
|
|
827
|
-
"commit": "d0ef0d6b1540ed90730187b45bdaf47aa9dcb183",
|
|
828
|
-
"comment": "add directives support for createElementTemplate"
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
"author": "rob@bluespire.com",
|
|
832
|
-
"package": "@microsoft/fast-element",
|
|
833
|
-
"commit": "24ec7cb05e955c5b916f611e96c47da665556604",
|
|
834
|
-
"comment": "fix: clean up toJSON noop on core fast-element types"
|
|
835
|
-
}
|
|
836
|
-
]
|
|
837
|
-
}
|
|
838
|
-
},
|
|
839
|
-
{
|
|
840
|
-
"date": "Tue, 14 Feb 2023 04:02:35 GMT",
|
|
841
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.21",
|
|
842
|
-
"version": "2.0.0-beta.21",
|
|
843
|
-
"comments": {
|
|
844
|
-
"prerelease": [
|
|
845
|
-
{
|
|
846
|
-
"author": "rob@bluespire.com",
|
|
847
|
-
"package": "@microsoft/fast-element",
|
|
848
|
-
"commit": "d38d31d2dd7496b5eb1e7c65b57de9a5e05e8546",
|
|
849
|
-
"comment": "fix: cleanup types, docs, etc. in root source files of fast-element in preparation for release"
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
853
|
-
"package": "@microsoft/fast-element",
|
|
854
|
-
"commit": "09d57ca18700331d054515c3b3f6fae07528cca0",
|
|
855
|
-
"comment": "Remove un-necessary expression from StyleElementStrategy"
|
|
856
|
-
}
|
|
857
|
-
]
|
|
858
|
-
}
|
|
859
|
-
},
|
|
860
|
-
{
|
|
861
|
-
"date": "Wed, 11 Jan 2023 22:07:47 GMT",
|
|
862
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.20",
|
|
863
|
-
"version": "2.0.0-beta.20",
|
|
864
|
-
"comments": {
|
|
865
|
-
"prerelease": [
|
|
866
|
-
{
|
|
867
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
868
|
-
"package": "@microsoft/fast-element",
|
|
869
|
-
"commit": "555f1b2cd614a1d5a9bc3985fb892d040c110cb3",
|
|
870
|
-
"comment": "add nullableBooleanConverter for attributes"
|
|
871
|
-
},
|
|
872
|
-
{
|
|
873
|
-
"author": "chhol@microsoft.com",
|
|
874
|
-
"package": "@microsoft/fast-element",
|
|
875
|
-
"commit": "52cd5171c3e9061af8066443023782bca2b0e59b",
|
|
876
|
-
"comment": "update return type for dangerousHTML to DangerousHTMLDirective"
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"author": "rob@bluespire.com",
|
|
880
|
-
"package": "@microsoft/fast-element",
|
|
881
|
-
"commit": "4c58813ec1b770b1f95c1b5993f8e3013a7544e2",
|
|
882
|
-
"comment": "chore: remove deprecated APIs from fast-element"
|
|
883
|
-
},
|
|
884
|
-
{
|
|
885
|
-
"author": "roeisenb@microsoft.com",
|
|
886
|
-
"package": "@microsoft/fast-element",
|
|
887
|
-
"commit": "84fd72febb4dff874db9322a6cb27e698b3ec790",
|
|
888
|
-
"comment": "chore: cleanup fast-element interfaces"
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
"author": "roeisenb@microsoft.com",
|
|
892
|
-
"package": "@microsoft/fast-element",
|
|
893
|
-
"commit": "5c3b2f0431ae8f840d3dc778ff93be73b585c6e2",
|
|
894
|
-
"comment": "refactor(fast-element): replace dangerousHTML with html.partial"
|
|
895
|
-
},
|
|
896
|
-
{
|
|
897
|
-
"author": "roeisenb@microsoft.com",
|
|
898
|
-
"package": "@microsoft/fast-element",
|
|
899
|
-
"commit": "d14f697ed3449db50384f5c1304f6bb384f9cfe0",
|
|
900
|
-
"comment": "feat: add ability to inline templates"
|
|
901
|
-
}
|
|
902
|
-
]
|
|
903
|
-
}
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
"date": "Fri, 02 Dec 2022 01:18:22 GMT",
|
|
907
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.19",
|
|
908
|
-
"version": "2.0.0-beta.19",
|
|
909
|
-
"comments": {
|
|
910
|
-
"prerelease": [
|
|
911
|
-
{
|
|
912
|
-
"author": "roeisenb@microsoft.com",
|
|
913
|
-
"package": "@microsoft/fast-element",
|
|
914
|
-
"commit": "e576aa70c22780fffba03097277e2db9a2ec1cd8",
|
|
915
|
-
"comment": "feat: add kernel mode with isolation by default"
|
|
916
|
-
}
|
|
917
|
-
]
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"date": "Tue, 15 Nov 2022 02:40:34 GMT",
|
|
922
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.18",
|
|
923
|
-
"version": "2.0.0-beta.18",
|
|
924
|
-
"comments": {
|
|
925
|
-
"prerelease": [
|
|
926
|
-
{
|
|
927
|
-
"author": "roeisenb@microsoft.com",
|
|
928
|
-
"package": "@microsoft/fast-element",
|
|
929
|
-
"commit": "1a1fc0b9e85f1e65c605e32f6724402291ffbcaa",
|
|
930
|
-
"comment": "chore: move ViewBehaviorOrchestrator to utilities"
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
"author": "roeisenb@microsoft.com",
|
|
934
|
-
"package": "@microsoft/fast-element",
|
|
935
|
-
"commit": "3c14603089495a7af8ed5b55122c418b47c45fd5",
|
|
936
|
-
"comment": "feat: add new DOM Policy protection throughout"
|
|
937
|
-
}
|
|
938
|
-
]
|
|
939
|
-
}
|
|
940
|
-
},
|
|
941
|
-
{
|
|
942
|
-
"date": "Tue, 01 Nov 2022 23:26:26 GMT",
|
|
943
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.17",
|
|
944
|
-
"version": "2.0.0-beta.17",
|
|
945
|
-
"comments": {
|
|
946
|
-
"prerelease": [
|
|
947
|
-
{
|
|
948
|
-
"author": "roeisenb@microsoft.com",
|
|
949
|
-
"package": "@microsoft/fast-element",
|
|
950
|
-
"commit": "a4982f452702a8fee67397767b603d4a67702b10",
|
|
951
|
-
"comment": "fix: prevent circular reference errors when stringifying DOM nodes controlled by FAST's rendering engine"
|
|
952
|
-
}
|
|
953
|
-
]
|
|
954
|
-
}
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"date": "Fri, 28 Oct 2022 20:44:44 GMT",
|
|
958
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.16",
|
|
959
|
-
"version": "2.0.0-beta.16",
|
|
960
|
-
"comments": {
|
|
961
|
-
"prerelease": [
|
|
962
|
-
{
|
|
963
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
964
|
-
"package": "@microsoft/fast-element",
|
|
965
|
-
"commit": "5b745b1fb3bf249a7a2d172b7fb69cb08694aadd",
|
|
966
|
-
"comment": "Fixed bug preventing main component stylesheet behaviors from being connected during connectedCallback"
|
|
967
|
-
}
|
|
968
|
-
]
|
|
969
|
-
}
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
"date": "Tue, 25 Oct 2022 20:24:32 GMT",
|
|
973
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.15",
|
|
974
|
-
"version": "2.0.0-beta.15",
|
|
975
|
-
"comments": {
|
|
976
|
-
"prerelease": [
|
|
977
|
-
{
|
|
978
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
979
|
-
"package": "@microsoft/fast-element",
|
|
980
|
-
"commit": "220cc7e0e0de490e51cc8b6f42ff46b03228beaa",
|
|
981
|
-
"comment": "Updated the ElementController to connect behaviors prior to rendering element templates"
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
985
|
-
"package": "@microsoft/fast-element",
|
|
986
|
-
"commit": "32ca5de5feda4870ed36329f58ded4a0a0421f02",
|
|
987
|
-
"comment": "Added support to fast-element to support element hydration and the `defer-hydration` attribute"
|
|
988
|
-
}
|
|
989
|
-
]
|
|
990
|
-
}
|
|
991
|
-
},
|
|
992
|
-
{
|
|
993
|
-
"date": "Fri, 14 Oct 2022 18:26:11 GMT",
|
|
994
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.14",
|
|
995
|
-
"version": "2.0.0-beta.14",
|
|
996
|
-
"comments": {
|
|
997
|
-
"prerelease": [
|
|
998
|
-
{
|
|
999
|
-
"author": "roeisenb@microsoft.com",
|
|
1000
|
-
"package": "@microsoft/fast-element",
|
|
1001
|
-
"commit": "19f1ae727e2ff6e629d2b134fc045a81d83caaed",
|
|
1002
|
-
"comment": "fix: tokenList bindings track adds and removes from multiple sources"
|
|
1003
|
-
},
|
|
1004
|
-
{
|
|
1005
|
-
"author": "roeisenb@microsoft.com",
|
|
1006
|
-
"package": "@microsoft/fast-element",
|
|
1007
|
-
"commit": "0248fa906f986d6b0cbdeb26cf388742e871449e",
|
|
1008
|
-
"comment": "refactor: remove duplication and re-organize binding behavior logic"
|
|
1009
|
-
}
|
|
1010
|
-
]
|
|
1011
|
-
}
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"date": "Mon, 10 Oct 2022 20:28:02 GMT",
|
|
1015
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.13",
|
|
1016
|
-
"version": "2.0.0-beta.13",
|
|
1017
|
-
"comments": {
|
|
1018
|
-
"prerelease": [
|
|
1019
|
-
{
|
|
1020
|
-
"author": "roeisenb@microsoft.com",
|
|
1021
|
-
"package": "@microsoft/fast-element",
|
|
1022
|
-
"commit": "fed5e806e44da9d10916d9d765fb7f35ed300a3f",
|
|
1023
|
-
"comment": "fix: prevent event callbacks when controller is not bound"
|
|
1024
|
-
}
|
|
1025
|
-
]
|
|
1026
|
-
}
|
|
1027
|
-
},
|
|
1028
|
-
{
|
|
1029
|
-
"date": "Thu, 06 Oct 2022 23:21:20 GMT",
|
|
1030
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.12",
|
|
1031
|
-
"version": "2.0.0-beta.12",
|
|
1032
|
-
"comments": {
|
|
1033
|
-
"none": [
|
|
1034
|
-
{
|
|
1035
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
1036
|
-
"package": "@microsoft/fast-element",
|
|
1037
|
-
"commit": "c06e32d72d518bf5c3152efe4e666f233190b445",
|
|
1038
|
-
"comment": "upgrade karma to ^6.4.1"
|
|
1039
|
-
}
|
|
1040
|
-
],
|
|
1041
|
-
"prerelease": [
|
|
1042
|
-
{
|
|
1043
|
-
"author": "roeisenb@microsoft.com",
|
|
1044
|
-
"package": "@microsoft/fast-element",
|
|
1045
|
-
"commit": "a69c2e3c0700918fef5ba934909781cc8ab71384",
|
|
1046
|
-
"comment": "fix: repeat update view context positioning"
|
|
1047
|
-
}
|
|
1048
|
-
]
|
|
1049
|
-
}
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
"date": "Wed, 05 Oct 2022 23:26:01 GMT",
|
|
1053
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.11",
|
|
1054
|
-
"version": "2.0.0-beta.11",
|
|
1055
|
-
"comments": {
|
|
1056
|
-
"prerelease": [
|
|
1057
|
-
{
|
|
1058
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1059
|
-
"package": "@microsoft/fast-element",
|
|
1060
|
-
"commit": "21d1de94be2b9399ddc43a2b93c6483fa7304591",
|
|
1061
|
-
"comment": "fix: removed a shadowRoot leak from ElementController"
|
|
1062
|
-
}
|
|
1063
|
-
]
|
|
1064
|
-
}
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"date": "Mon, 03 Oct 2022 23:44:38 GMT",
|
|
1068
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.10",
|
|
1069
|
-
"version": "2.0.0-beta.10",
|
|
1070
|
-
"comments": {
|
|
1071
|
-
"prerelease": [
|
|
1072
|
-
{
|
|
1073
|
-
"author": "roeisenb@microsoft.com",
|
|
1074
|
-
"package": "@microsoft/fast-element",
|
|
1075
|
-
"commit": "d29444567d824eb92f4e91e9e173319aef30cfb5",
|
|
1076
|
-
"comment": "fix: observation kernel missing binding observer disconnect method"
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
"author": "roeisenb@microsoft.com",
|
|
1080
|
-
"package": "@microsoft/fast-element",
|
|
1081
|
-
"commit": "9d620288eb30d963aa7ac08b4d771d79ea6eef7b",
|
|
1082
|
-
"comment": "feat: less surprising class bindings w/ more flexibility for developers"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
"author": "roeisenb@microsoft.com",
|
|
1086
|
-
"package": "@microsoft/fast-element",
|
|
1087
|
-
"commit": "a378bfa01843a8a042f3ae37aad6c8fd14fdbcc6",
|
|
1088
|
-
"comment": "fix: don't allow registering FASTElement itself as a web component"
|
|
1089
|
-
}
|
|
1090
|
-
]
|
|
1091
|
-
}
|
|
1092
|
-
},
|
|
1093
|
-
{
|
|
1094
|
-
"date": "Wed, 28 Sep 2022 20:45:51 GMT",
|
|
1095
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.9",
|
|
1096
|
-
"version": "2.0.0-beta.9",
|
|
1097
|
-
"comments": {
|
|
1098
|
-
"prerelease": [
|
|
1099
|
-
{
|
|
1100
|
-
"author": "roeisenb@microsoft.com",
|
|
1101
|
-
"package": "@microsoft/fast-element",
|
|
1102
|
-
"commit": "08fab33015853b7f820fdfdac2aecddfeb31843f",
|
|
1103
|
-
"comment": "fix: ensure composed templates receive the existing execution context"
|
|
1104
|
-
}
|
|
1105
|
-
]
|
|
1106
|
-
}
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"date": "Tue, 27 Sep 2022 22:31:52 GMT",
|
|
1110
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.8",
|
|
1111
|
-
"version": "2.0.0-beta.8",
|
|
1112
|
-
"comments": {
|
|
1113
|
-
"prerelease": [
|
|
1114
|
-
{
|
|
1115
|
-
"author": "roeisenb@microsoft.com",
|
|
1116
|
-
"package": "@microsoft/fast-element",
|
|
1117
|
-
"commit": "8834c6732c727d39f92f72b197388453a9c17f9b",
|
|
1118
|
-
"comment": "fix: correct view state when processing unbindables during rebind"
|
|
1119
|
-
},
|
|
1120
|
-
{
|
|
1121
|
-
"author": "roeisenb@microsoft.com",
|
|
1122
|
-
"package": "@microsoft/fast-element",
|
|
1123
|
-
"commit": "d949a8873621f409f9d9f3453cdb40b593d14b67",
|
|
1124
|
-
"comment": "fix: do not crash when null/undefined is provided literally in templates"
|
|
1125
|
-
}
|
|
1126
|
-
]
|
|
1127
|
-
}
|
|
1128
|
-
},
|
|
1129
|
-
{
|
|
1130
|
-
"date": "Fri, 23 Sep 2022 22:53:27 GMT",
|
|
1131
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.7",
|
|
1132
|
-
"version": "2.0.0-beta.7",
|
|
1133
|
-
"comments": {
|
|
1134
|
-
"prerelease": [
|
|
1135
|
-
{
|
|
1136
|
-
"author": "roeisenb@microsoft.com",
|
|
1137
|
-
"package": "@microsoft/fast-element",
|
|
1138
|
-
"commit": "1646b26450a08a77c8bd6302560fe12cc6989ae1",
|
|
1139
|
-
"comment": "feat: improve parent typing and fix repeat context type bug"
|
|
1140
|
-
},
|
|
1141
|
-
{
|
|
1142
|
-
"author": "roeisenb@microsoft.com",
|
|
1143
|
-
"package": "@microsoft/fast-element",
|
|
1144
|
-
"commit": "0d786392a38e1d83e56fb1e2112a3e571d193c11",
|
|
1145
|
-
"comment": "feat: prepare fast-element for scoped element registries"
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
"author": "wendywendy@microsoft.com",
|
|
1149
|
-
"package": "@microsoft/fast-element",
|
|
1150
|
-
"commit": "a42ff75a9130a5ce13006c272c2e2bbbaffdbb41",
|
|
1151
|
-
"comment": "persist totalAvailableViews to compare against removeIndex"
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
"author": "863023+radium-v@users.noreply.github.com",
|
|
1155
|
-
"package": "@microsoft/fast-element",
|
|
1156
|
-
"commit": "ec2b158dcf39c8b4152b22c3b65963046b473e17",
|
|
1157
|
-
"comment": "make ElementsFilter type arguments optional"
|
|
1158
|
-
},
|
|
1159
|
-
{
|
|
1160
|
-
"author": "roeisenb@microsoft.com",
|
|
1161
|
-
"package": "@microsoft/fast-element",
|
|
1162
|
-
"commit": "1039218eafa9a8dbea9da94e1c7803de48d1484c",
|
|
1163
|
-
"comment": "fix(fast-element): attributes properly located in inheritance hierarchy"
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1167
|
-
"package": "@microsoft/fast-element",
|
|
1168
|
-
"commit": "c1909e9899d517f9483b24043d49a8b193af3c26",
|
|
1169
|
-
"comment": "Adds PendingTask community protocol"
|
|
1170
|
-
},
|
|
1171
|
-
{
|
|
1172
|
-
"author": "roeisenb@microsoft.com",
|
|
1173
|
-
"package": "@microsoft/fast-element",
|
|
1174
|
-
"commit": "2edd63a8abe24c68cfc7c76d773c912c6f2d6543",
|
|
1175
|
-
"comment": "feat: new behavior and context API design"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"author": "roeisenb@microsoft.com",
|
|
1179
|
-
"package": "@microsoft/fast-element",
|
|
1180
|
-
"commit": "eb62934b258334c7f92ab3a1112ea62b3901cdac",
|
|
1181
|
-
"comment": "feat: implement getAsync code path for dependency injection"
|
|
1182
|
-
}
|
|
1183
|
-
]
|
|
1184
|
-
}
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"date": "Thu, 01 Sep 2022 21:53:34 GMT",
|
|
1188
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.6",
|
|
1189
|
-
"version": "2.0.0-beta.6",
|
|
1190
|
-
"comments": {
|
|
1191
|
-
"prerelease": [
|
|
1192
|
-
{
|
|
1193
|
-
"author": "roeisenb@microsoft.com",
|
|
1194
|
-
"package": "@microsoft/fast-element",
|
|
1195
|
-
"commit": "da9ebbe1b7471cd4e6f7b74f2f9bf02fcc54da4f",
|
|
1196
|
-
"comment": "feat: add new state, ownedState, and computedState APIs"
|
|
1197
|
-
}
|
|
1198
|
-
]
|
|
1199
|
-
}
|
|
1200
|
-
},
|
|
1201
|
-
{
|
|
1202
|
-
"date": "Thu, 18 Aug 2022 20:46:10 GMT",
|
|
1203
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.5",
|
|
1204
|
-
"version": "2.0.0-beta.5",
|
|
1205
|
-
"comments": {
|
|
1206
|
-
"prerelease": [
|
|
1207
|
-
{
|
|
1208
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1209
|
-
"package": "@microsoft/fast-element",
|
|
1210
|
-
"commit": "218cfc014f5c76464493725f83bd883e8b07defa",
|
|
1211
|
-
"comment": "Fix ExpressionObserer bug where watcher was not reset if the binding threw"
|
|
1212
|
-
},
|
|
1213
|
-
{
|
|
1214
|
-
"author": "prudepixie@users.noreply.github.com",
|
|
1215
|
-
"package": "@microsoft/fast-element",
|
|
1216
|
-
"commit": "fdd4514664691021a5673934c95acf31a8e73416",
|
|
1217
|
-
"comment": "make insertbefore noop in view"
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
"author": "prudepixie@users.noreply.github.com",
|
|
1221
|
-
"package": "@microsoft/fast-element",
|
|
1222
|
-
"commit": "eb8d5a59f645b85567adadac41a3bfa66001f941",
|
|
1223
|
-
"comment": "make sure default options for recycle gets set in different scenarios"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"author": "roeisenb@microsoft.com",
|
|
1227
|
-
"package": "@microsoft/fast-element",
|
|
1228
|
-
"commit": "ac3954c97acd3bd549a27829593855c431a24027",
|
|
1229
|
-
"comment": "refactor: remove dependency of DI on FASTElement"
|
|
1230
|
-
},
|
|
1231
|
-
{
|
|
1232
|
-
"author": "32497422+KingOfTac@users.noreply.github.com",
|
|
1233
|
-
"package": "@microsoft/fast-element",
|
|
1234
|
-
"commit": "29308db7920baaaac5b31b206d551669e165bc06",
|
|
1235
|
-
"comment": "add subpath export for package.json to packages"
|
|
1236
|
-
},
|
|
1237
|
-
{
|
|
1238
|
-
"author": "prudepixie@users.noreply.github.com",
|
|
1239
|
-
"package": "@microsoft/fast-element",
|
|
1240
|
-
"commit": "775d51602cba544347ec1e57fdb4fea248d1b1b5",
|
|
1241
|
-
"comment": "change default array strategy to merge strategy, update repeat directive"
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1245
|
-
"package": "@microsoft/fast-element",
|
|
1246
|
-
"commit": "aeac1198f427c33f789a2d869f58549ea5bfea57",
|
|
1247
|
-
"comment": "assert FASTElement's type so that instanceof behavior is consistent with other class implementations"
|
|
1248
|
-
}
|
|
1249
|
-
]
|
|
1250
|
-
}
|
|
1251
|
-
},
|
|
1252
|
-
{
|
|
1253
|
-
"date": "Mon, 18 Jul 2022 21:10:01 GMT",
|
|
1254
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.4",
|
|
1255
|
-
"version": "2.0.0-beta.4",
|
|
1256
|
-
"comments": {
|
|
1257
|
-
"prerelease": [
|
|
1258
|
-
{
|
|
1259
|
-
"author": "roeisenb@microsoft.com",
|
|
1260
|
-
"package": "@microsoft/fast-element",
|
|
1261
|
-
"commit": "f9fb9c88902bd81233fb927a7357d4bca7634f29",
|
|
1262
|
-
"comment": "feat: extract all error messages from context and DI"
|
|
1263
|
-
},
|
|
1264
|
-
{
|
|
1265
|
-
"author": "roeisenb@microsoft.com",
|
|
1266
|
-
"package": "@microsoft/fast-element",
|
|
1267
|
-
"commit": "27dc848327b25328e428f67505684d2171b58711",
|
|
1268
|
-
"comment": "feat: introduce new binding API"
|
|
1269
|
-
},
|
|
1270
|
-
{
|
|
1271
|
-
"author": "roeisenb@microsoft.com",
|
|
1272
|
-
"package": "@microsoft/fast-element",
|
|
1273
|
-
"commit": "7f4d6b5587f6eff52e5b7f414e27543bb4d7772d",
|
|
1274
|
-
"comment": "Enabled DOM Container fallback functions when a container cannot be located."
|
|
1275
|
-
},
|
|
1276
|
-
{
|
|
1277
|
-
"author": "roeisenb@microsoft.com",
|
|
1278
|
-
"package": "@microsoft/fast-element",
|
|
1279
|
-
"commit": "0f57d55822bbf97ab69f90efc0a0d100b27e10eb",
|
|
1280
|
-
"comment": "feat: add render directive, renderWith decorator, and RenderInstruction"
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
"author": "prudepixie@users.noreply.github.com",
|
|
1284
|
-
"package": "@microsoft/fast-element",
|
|
1285
|
-
"commit": "94e6b0a0e7e1fd1167bd6453c3f7b27efdc91804",
|
|
1286
|
-
"comment": "only store removed views if it can't be reused right away"
|
|
1287
|
-
},
|
|
1288
|
-
{
|
|
1289
|
-
"author": "32497422+KingOfTac@users.noreply.github.com",
|
|
1290
|
-
"package": "@microsoft/fast-element",
|
|
1291
|
-
"commit": "11d5b4075118456b2e7c2a4f32a415eeea94ed7f",
|
|
1292
|
-
"comment": "fix: enable createElementTemplate to have undefined attributes"
|
|
1293
|
-
},
|
|
1294
|
-
{
|
|
1295
|
-
"author": "prudepixie@users.noreply.github.com",
|
|
1296
|
-
"package": "@microsoft/fast-element",
|
|
1297
|
-
"commit": "31296ea2be3981d25f5feb773b2895dbedfaf2c2",
|
|
1298
|
-
"comment": "use index to track reusable views"
|
|
1299
|
-
},
|
|
1300
|
-
{
|
|
1301
|
-
"author": "roeisenb@microsoft.com",
|
|
1302
|
-
"package": "@microsoft/fast-element",
|
|
1303
|
-
"commit": "4567188a47598b3d2589b05f039bea695f2b8875",
|
|
1304
|
-
"comment": "feat: enable render, repeat, and when template helpers to handle static data in addition to the already supported dynamic bindings"
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
"author": "roeisenb@microsoft.com",
|
|
1308
|
-
"package": "@microsoft/fast-element",
|
|
1309
|
-
"commit": "f164aa75e62ed71c9386902051c021f1fdfba364",
|
|
1310
|
-
"comment": "fix: FASTElementDefinition#isDefined should be true only after define"
|
|
1311
|
-
},
|
|
1312
|
-
{
|
|
1313
|
-
"author": "roeisenb@microsoft.com",
|
|
1314
|
-
"package": "@microsoft/fast-element",
|
|
1315
|
-
"commit": "aacfde6d1f52a20af5511c5e792f730bd091d452",
|
|
1316
|
-
"comment": "feat: move testing and dependency injection to fast-element"
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
"author": "roeisenb@microsoft.com",
|
|
1320
|
-
"package": "@microsoft/fast-element",
|
|
1321
|
-
"commit": "04c51a17dde6d03dc2e2a4de3666cbbec950d900",
|
|
1322
|
-
"comment": "fix: warn when host bindings are accidentally applied on non CE views"
|
|
1323
|
-
},
|
|
1324
|
-
{
|
|
1325
|
-
"author": "roeisenb@microsoft.com",
|
|
1326
|
-
"package": "@microsoft/fast-element",
|
|
1327
|
-
"commit": "b32eb1004960da95b74dba7f111ee859b6655896",
|
|
1328
|
-
"comment": "feat: perf and safety improvements to fast element definition"
|
|
1329
|
-
}
|
|
1330
|
-
]
|
|
1331
|
-
}
|
|
1332
|
-
},
|
|
1333
|
-
{
|
|
1334
|
-
"date": "Wed, 22 Jun 2022 20:17:50 GMT",
|
|
1335
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.3",
|
|
1336
|
-
"version": "2.0.0-beta.3",
|
|
1337
|
-
"comments": {
|
|
1338
|
-
"prerelease": [
|
|
1339
|
-
{
|
|
1340
|
-
"comment": "fix: correct aspect type for content that looks like an attribute",
|
|
1341
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1342
|
-
"commit": "f28cdb9fdba9cb27904acfad7444de82d447f39e",
|
|
1343
|
-
"package": "@microsoft/fast-element"
|
|
1344
|
-
}
|
|
1345
|
-
]
|
|
1346
|
-
}
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
"date": "Wed, 15 Jun 2022 17:41:10 GMT",
|
|
1350
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.2",
|
|
1351
|
-
"version": "2.0.0-beta.2",
|
|
1352
|
-
"comments": {
|
|
1353
|
-
"prerelease": [
|
|
1354
|
-
{
|
|
1355
|
-
"comment": "doc: add note to FASTElement.metadata API",
|
|
1356
|
-
"author": "roeisenb@microsoft.com",
|
|
1357
|
-
"commit": "359467f9ae67c46a33dfc28ce86dfd908072695d",
|
|
1358
|
-
"package": "@microsoft/fast-element"
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
"comment": "when recycle is set to false while itemBinding stays the same, views should be recreated",
|
|
1362
|
-
"author": "wendy.hsu@microsoft.com",
|
|
1363
|
-
"commit": "9c92b9bb5bc9bf221b439c0a776b3621fdd9d9aa",
|
|
1364
|
-
"package": "@microsoft/fast-element"
|
|
1365
|
-
},
|
|
1366
|
-
{
|
|
1367
|
-
"comment": "feat: simplify execution context to align closer with v1",
|
|
1368
|
-
"author": "roeisenb@microsoft.com",
|
|
1369
|
-
"commit": "488d051999c43b93a0beef4db30a2bddd6bbdc64",
|
|
1370
|
-
"package": "@microsoft/fast-element"
|
|
1371
|
-
},
|
|
1372
|
-
{
|
|
1373
|
-
"comment": "feat: ergo improvements to context, array length, and metadata",
|
|
1374
|
-
"author": "roeisenb@microsoft.com",
|
|
1375
|
-
"commit": "12f5671e215ebd2b95c9cc83f856e233e01e9c4a",
|
|
1376
|
-
"package": "@microsoft/fast-element"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"comment": "feat: move optional bindings out of rollup and list as exports",
|
|
1380
|
-
"author": "roeisenb@microsoft.com",
|
|
1381
|
-
"commit": "e86a638b9e84cbf36d950025889742944e68e512",
|
|
1382
|
-
"package": "@microsoft/fast-element"
|
|
1383
|
-
},
|
|
1384
|
-
{
|
|
1385
|
-
"comment": "fix: make SyntheticViewTemplate type a string so it is generally usable",
|
|
1386
|
-
"author": "roeisenb@microsoft.com",
|
|
1387
|
-
"commit": "de7f234ef871204fcac2b5df59433d919809341d",
|
|
1388
|
-
"package": "@microsoft/fast-element"
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"comment": "feat: implement W3C WC community context protocol and integrate with DI",
|
|
1392
|
-
"author": "roeisenb@microsoft.com",
|
|
1393
|
-
"commit": "c45297c0ca48b7e5f4343ba48e5183f2bccdb946",
|
|
1394
|
-
"package": "@microsoft/fast-element"
|
|
1395
|
-
}
|
|
1396
|
-
]
|
|
1397
|
-
}
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
"date": "Wed, 01 Jun 2022 17:53:14 GMT",
|
|
1401
|
-
"tag": "@microsoft/fast-element_v2.0.0-beta.1",
|
|
1402
|
-
"version": "2.0.0-beta.1",
|
|
1403
|
-
"comments": {
|
|
1404
|
-
"prerelease": [
|
|
1405
|
-
{
|
|
1406
|
-
"comment": "`DOM` - Tree Walker methods are no longer used and are thus removed. The API for removing child nodes has been removed as well since it was only used in one place and could be inlined. The helper `createCustomAttributePlaceholder()` no longer requires an attribute name. It will be uniquely generated internally.",
|
|
1407
|
-
"author": "roeisenb@microsoft.com",
|
|
1408
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1409
|
-
"package": "@microsoft/fast-element"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"comment": "`class` - Bindings to `class` are now more nuanced. Binding directly to `class` will simply set the `className` property. If you need to bind to `class` knowing that manual JS will also manipulate the `classList` in addition to the binding, then you should now bind to `:classList` instead. This allows for performance optimizations in the simple, most common case.",
|
|
1413
|
-
"author": "roeisenb@microsoft.com",
|
|
1414
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1415
|
-
"package": "@microsoft/fast-element"
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
"comment": "`Behavior` and `ViewBehavior` - `Behavior` now requires an `ExecutionContext` for `unbind`. Behaviors can be used for elements or views. `ViewBehavior` has been introduced for use exclusively with views, and provides some optimization opportunities.",
|
|
1419
|
-
"author": "roeisenb@microsoft.com",
|
|
1420
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1421
|
-
"package": "@microsoft/fast-element"
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"comment": "`RefBehavior` has been replaced with `RefDirective`. The directive also implements `ViewBehavior` allowing a single directive instance to be shared across all template instances that use the ref.",
|
|
1425
|
-
"author": "roeisenb@microsoft.com",
|
|
1426
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1427
|
-
"package": "@microsoft/fast-element"
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
"comment": "Removed `SlottedBehavior` and `ChildrenBehavior` have been replaced with `SlottedDirective` and `ChildrenDirective`. These directives allow a single directive instance to be shared across all template instances that use the ref.",
|
|
1431
|
-
"author": "roeisenb@microsoft.com",
|
|
1432
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1433
|
-
"package": "@microsoft/fast-element"
|
|
1434
|
-
},
|
|
1435
|
-
{
|
|
1436
|
-
"comment": "Removed `AttachedBehaviorHTMLDirective` and `AttachedBehaviorType` since they are no longer used in the new directive/behavior architecture for ref, slotted, and children.",
|
|
1437
|
-
"author": "roeisenb@microsoft.com",
|
|
1438
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1439
|
-
"package": "@microsoft/fast-element"
|
|
1440
|
-
},
|
|
1441
|
-
{
|
|
1442
|
-
"comment": "Renamed `Notifier#source` to `Notifier#subject` to align with other observable terminology and prevent name clashes with `BindingObserver` properties.",
|
|
1443
|
-
"author": "roeisenb@microsoft.com",
|
|
1444
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1445
|
-
"package": "@microsoft/fast-element"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
"comment": "feat: create unified API for parsing markers",
|
|
1449
|
-
"author": "roeisenb@microsoft.com",
|
|
1450
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1451
|
-
"package": "@microsoft/fast-element"
|
|
1452
|
-
},
|
|
1453
|
-
{
|
|
1454
|
-
"comment": "allow null values in attributeChangedCallback",
|
|
1455
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1456
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1457
|
-
"package": "@microsoft/fast-element"
|
|
1458
|
-
},
|
|
1459
|
-
{
|
|
1460
|
-
"comment": "feat: add splice strategies for array observation",
|
|
1461
|
-
"author": "roeisenb@microsoft.com",
|
|
1462
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1463
|
-
"package": "@microsoft/fast-element"
|
|
1464
|
-
},
|
|
1465
|
-
{
|
|
1466
|
-
"comment": "feat: handle existing shadow roots when upgrading",
|
|
1467
|
-
"author": "roeisenb@microsoft.com",
|
|
1468
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1469
|
-
"package": "@microsoft/fast-element"
|
|
1470
|
-
},
|
|
1471
|
-
{
|
|
1472
|
-
"comment": "fix: enable safer type inference on the repeat helper",
|
|
1473
|
-
"author": "roeisenb@microsoft.com",
|
|
1474
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1475
|
-
"package": "@microsoft/fast-element"
|
|
1476
|
-
},
|
|
1477
|
-
{
|
|
1478
|
-
"comment": "Set prerelease version",
|
|
1479
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1480
|
-
"commit": "5b313a3262b977acbee3c2efac87d0d14a82f792",
|
|
1481
|
-
"package": "@microsoft/fast-element"
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
"comment": "refactor: separate update queue from DOM and fix architectural layers",
|
|
1485
|
-
"author": "roeisenb@microsoft.com",
|
|
1486
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1487
|
-
"package": "@microsoft/fast-element"
|
|
1488
|
-
},
|
|
1489
|
-
{
|
|
1490
|
-
"comment": "feat: aspected html directive exposes metadata",
|
|
1491
|
-
"author": "roeisenb@microsoft.com",
|
|
1492
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1493
|
-
"package": "@microsoft/fast-element"
|
|
1494
|
-
},
|
|
1495
|
-
{
|
|
1496
|
-
"comment": "`HTMLDirective` - The `targetIndex: number` property has been replaced by a `targetId: string` property. The `createBehavior` method no longer takes a target `Node` but instead takes a `BehaviorTargets` instance. The actual target can be looked up on the `BehaviorTargets` instance by indexing with the `targetId` property.",
|
|
1497
|
-
"author": "roeisenb@microsoft.com",
|
|
1498
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1499
|
-
"package": "@microsoft/fast-element"
|
|
1500
|
-
},
|
|
1501
|
-
{
|
|
1502
|
-
"comment": "`compileTemplate()` - Internals have been significantly changed. The implementation no longer uses a TreeWalker. The return type has change to an `HTMLTemplateCompilationResult` with different properties.",
|
|
1503
|
-
"author": "roeisenb@microsoft.com",
|
|
1504
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1505
|
-
"package": "@microsoft/fast-element"
|
|
1506
|
-
},
|
|
1507
|
-
{
|
|
1508
|
-
"comment": "refactor: move template/style resolution to lazy getter",
|
|
1509
|
-
"author": "roeisenb@microsoft.com",
|
|
1510
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1511
|
-
"package": "@microsoft/fast-element"
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
"comment": "refactor: enable pluggable template compiler for SSR scenarios",
|
|
1515
|
-
"author": "roeisenb@microsoft.com",
|
|
1516
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1517
|
-
"package": "@microsoft/fast-element"
|
|
1518
|
-
},
|
|
1519
|
-
{
|
|
1520
|
-
"comment": "feat: enable pluggable style handling strategies",
|
|
1521
|
-
"author": "roeisenb@microsoft.com",
|
|
1522
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1523
|
-
"package": "@microsoft/fast-element"
|
|
1524
|
-
},
|
|
1525
|
-
{
|
|
1526
|
-
"comment": "fix(fast-element): do not notify splices for changes pre-subscription",
|
|
1527
|
-
"author": "roeisenb@microsoft.com",
|
|
1528
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1529
|
-
"package": "@microsoft/fast-element"
|
|
1530
|
-
},
|
|
1531
|
-
{
|
|
1532
|
-
"comment": "feat: new directive registration/identification model",
|
|
1533
|
-
"author": "roeisenb@microsoft.com",
|
|
1534
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1535
|
-
"package": "@microsoft/fast-element"
|
|
1536
|
-
},
|
|
1537
|
-
{
|
|
1538
|
-
"comment": "fix: prevent duplicative array observation patch",
|
|
1539
|
-
"author": "roeisenb@microsoft.com",
|
|
1540
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1541
|
-
"package": "@microsoft/fast-element"
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
"comment": "Adds Aspect as public export",
|
|
1545
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1546
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1547
|
-
"package": "@microsoft/fast-element"
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
"comment": "feat: expose official Markup and Parser APIs",
|
|
1551
|
-
"author": "roeisenb@microsoft.com",
|
|
1552
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1553
|
-
"package": "@microsoft/fast-element"
|
|
1554
|
-
},
|
|
1555
|
-
{
|
|
1556
|
-
"comment": "refactor: refine binding mode types",
|
|
1557
|
-
"author": "roeisenb@microsoft.com",
|
|
1558
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1559
|
-
"package": "@microsoft/fast-element"
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
"comment": "feat: add two-way binding",
|
|
1563
|
-
"author": "roeisenb@microsoft.com",
|
|
1564
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1565
|
-
"package": "@microsoft/fast-element"
|
|
1566
|
-
},
|
|
1567
|
-
{
|
|
1568
|
-
"comment": "fix: defend against for/in use on arrays",
|
|
1569
|
-
"author": "roeisenb@microsoft.com",
|
|
1570
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1571
|
-
"package": "@microsoft/fast-element"
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
"comment": "fix: merge bug related to moved APIs",
|
|
1575
|
-
"author": "roeisenb@microsoft.com",
|
|
1576
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1577
|
-
"package": "@microsoft/fast-element"
|
|
1578
|
-
},
|
|
1579
|
-
{
|
|
1580
|
-
"comment": "feat: enable multiple instances of fast-element on a page at once",
|
|
1581
|
-
"author": "roeisenb@microsoft.com",
|
|
1582
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1583
|
-
"package": "@microsoft/fast-element"
|
|
1584
|
-
},
|
|
1585
|
-
{
|
|
1586
|
-
"comment": "Upgrade TypeScript",
|
|
1587
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1588
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1589
|
-
"package": "@microsoft/fast-element"
|
|
1590
|
-
},
|
|
1591
|
-
{
|
|
1592
|
-
"comment": "enumerate fast-element package as a ES module package",
|
|
1593
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1594
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1595
|
-
"package": "@microsoft/fast-element"
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
"comment": "feat: enable array length observation",
|
|
1599
|
-
"author": "roeisenb@microsoft.com",
|
|
1600
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1601
|
-
"package": "@microsoft/fast-element"
|
|
1602
|
-
},
|
|
1603
|
-
{
|
|
1604
|
-
"comment": "feat: add utilities and hooks, and change exports",
|
|
1605
|
-
"author": "roeisenb@microsoft.com",
|
|
1606
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1607
|
-
"package": "@microsoft/fast-element"
|
|
1608
|
-
},
|
|
1609
|
-
{
|
|
1610
|
-
"comment": "refactor: new design for execution context",
|
|
1611
|
-
"author": "roeisenb@microsoft.com",
|
|
1612
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1613
|
-
"package": "@microsoft/fast-element"
|
|
1614
|
-
},
|
|
1615
|
-
{
|
|
1616
|
-
"comment": "chore: fast-element package and build modernization",
|
|
1617
|
-
"author": "roeisenb@microsoft.com",
|
|
1618
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1619
|
-
"package": "@microsoft/fast-element"
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
"comment": "feat: new CSSDirective design",
|
|
1623
|
-
"author": "roeisenb@microsoft.com",
|
|
1624
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1625
|
-
"package": "@microsoft/fast-element"
|
|
1626
|
-
},
|
|
1627
|
-
{
|
|
1628
|
-
"comment": "chore: configure fast-element for internal stripping",
|
|
1629
|
-
"author": "roeisenb@microsoft.com",
|
|
1630
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1631
|
-
"package": "@microsoft/fast-element"
|
|
1632
|
-
},
|
|
1633
|
-
{
|
|
1634
|
-
"comment": "feat: enable synchronous dom updates for SSR",
|
|
1635
|
-
"author": "roeisenb@microsoft.com",
|
|
1636
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1637
|
-
"package": "@microsoft/fast-element"
|
|
1638
|
-
},
|
|
1639
|
-
{
|
|
1640
|
-
"comment": "refactor: extract polyfill and polyfill-like code to an optional module",
|
|
1641
|
-
"author": "roeisenb@microsoft.com",
|
|
1642
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1643
|
-
"package": "@microsoft/fast-element"
|
|
1644
|
-
},
|
|
1645
|
-
{
|
|
1646
|
-
"comment": "feat: add warn/error message infrastructure",
|
|
1647
|
-
"author": "roeisenb@microsoft.com",
|
|
1648
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1649
|
-
"package": "@microsoft/fast-element"
|
|
1650
|
-
},
|
|
1651
|
-
{
|
|
1652
|
-
"comment": "`View` and `HTMLView` - Type parameters added to enable strongly typed views based on their data source. The constructor of `HTMLView` has a new signature based on changes to the compiler's output. Internals have been cleaned up and no longer rely on the Range type.",
|
|
1653
|
-
"author": "roeisenb@microsoft.com",
|
|
1654
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1655
|
-
"package": "@microsoft/fast-element"
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
"comment": "`ElementViewTemplate`, `SyntheticViewTemplate`, and `ViewTemplate` - Added type parameters throughout. Logic to instantiate and apply behaviors moved out of the template and into the view where it can be lazily executed. Removed the ability of the `render` method to take a string id of the node to render to. You must provide a node.",
|
|
1659
|
-
"author": "roeisenb@microsoft.com",
|
|
1660
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1661
|
-
"package": "@microsoft/fast-element"
|
|
1662
|
-
}
|
|
1663
|
-
],
|
|
1664
|
-
"none": [
|
|
1665
|
-
{
|
|
1666
|
-
"comment": "update api extractor and typescript to use the latest versions",
|
|
1667
|
-
"author": "chhol@microsoft.com",
|
|
1668
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1669
|
-
"package": "@microsoft/fast-element"
|
|
1670
|
-
},
|
|
1671
|
-
{
|
|
1672
|
-
"comment": "docs: add alpha tags to unfinished binding APIs",
|
|
1673
|
-
"author": "roeisenb@microsoft.com",
|
|
1674
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1675
|
-
"package": "@microsoft/fast-element"
|
|
1676
|
-
},
|
|
1677
|
-
{
|
|
1678
|
-
"comment": "automated update of api-report.md",
|
|
1679
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1680
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1681
|
-
"package": "@microsoft/fast-element"
|
|
1682
|
-
},
|
|
1683
|
-
{
|
|
1684
|
-
"comment": "Fixed linting errors and warnings",
|
|
1685
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
1686
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1687
|
-
"package": "@microsoft/fast-element"
|
|
1688
|
-
},
|
|
1689
|
-
{
|
|
1690
|
-
"comment": "remove unnecessary dependency on @types/ie11 package",
|
|
1691
|
-
"author": "chhol@microsoft.com",
|
|
1692
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1693
|
-
"package": "@microsoft/fast-element"
|
|
1694
|
-
},
|
|
1695
|
-
{
|
|
1696
|
-
"comment": "Updated api-extractor version and exported markdown",
|
|
1697
|
-
"author": "7559015+janechu@users.noreply.github.com",
|
|
1698
|
-
"commit": "4699e77715068f8610aae908ede6356a249574b6",
|
|
1699
|
-
"package": "@microsoft/fast-element"
|
|
1700
|
-
}
|
|
1701
|
-
]
|
|
1702
|
-
}
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
"date": "Sun, 29 May 2022 07:08:52 GMT",
|
|
1706
|
-
"tag": "@microsoft/fast-element_v1.10.2",
|
|
1707
|
-
"version": "1.10.2",
|
|
1708
|
-
"comments": {
|
|
1709
|
-
"none": [
|
|
1710
|
-
{
|
|
1711
|
-
"comment": "add md extensions to referenced doc links for fast-element readme",
|
|
1712
|
-
"author": "steph@huynhicode.dev",
|
|
1713
|
-
"commit": "283b4838d46ed83c70ff4ad91f7f72a4936d59bf",
|
|
1714
|
-
"package": "@microsoft/fast-element"
|
|
1715
|
-
}
|
|
1716
|
-
]
|
|
1717
|
-
}
|
|
1718
|
-
},
|
|
1719
|
-
{
|
|
1720
|
-
"date": "Tue, 24 May 2022 07:10:02 GMT",
|
|
1721
|
-
"tag": "@microsoft/fast-element_v1.10.2",
|
|
1722
|
-
"version": "1.10.2",
|
|
1723
|
-
"comments": {
|
|
1724
|
-
"patch": [
|
|
1725
|
-
{
|
|
1726
|
-
"comment": "fix(fast-element): do not notify splices for changes pre-subscription",
|
|
1727
|
-
"author": "roeisenb@microsoft.com",
|
|
1728
|
-
"commit": "476be7672653b2e63b9ab771949718aa8f43df0d",
|
|
1729
|
-
"package": "@microsoft/fast-element"
|
|
1730
|
-
}
|
|
1731
|
-
]
|
|
1732
|
-
}
|
|
1733
|
-
},
|
|
1734
|
-
{
|
|
1735
|
-
"date": "Sun, 08 May 2022 07:08:18 GMT",
|
|
1736
|
-
"tag": "@microsoft/fast-element_v1.10.1",
|
|
1737
|
-
"version": "1.10.1",
|
|
1738
|
-
"comments": {
|
|
1739
|
-
"none": [
|
|
1740
|
-
{
|
|
1741
|
-
"comment": "adds missing types for chai-spies",
|
|
1742
|
-
"author": "chhol@microsoft.com",
|
|
1743
|
-
"commit": "890ff058b8771c84a9e669b4e9202c43f4d3e7fc",
|
|
1744
|
-
"package": "@microsoft/fast-element"
|
|
1745
|
-
}
|
|
1746
|
-
]
|
|
1747
|
-
}
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"date": "Fri, 06 May 2022 20:58:02 GMT",
|
|
1751
|
-
"tag": "@microsoft/fast-element_v1.10.1",
|
|
1752
|
-
"version": "1.10.1",
|
|
1753
|
-
"comments": {
|
|
1754
|
-
"none": [
|
|
1755
|
-
{
|
|
1756
|
-
"comment": "update api extractor to 7.23.1 to ensure we can support TS 4.7 internal API changes",
|
|
1757
|
-
"author": "chhol@microsoft.com",
|
|
1758
|
-
"commit": "fbc6a7fb670453322c93f8f12a223febad86f735",
|
|
1759
|
-
"package": "@microsoft/fast-element"
|
|
1760
|
-
}
|
|
1761
|
-
]
|
|
1762
|
-
}
|
|
1763
|
-
},
|
|
1764
|
-
{
|
|
1765
|
-
"date": "Wed, 04 May 2022 07:14:00 GMT",
|
|
1766
|
-
"tag": "@microsoft/fast-element_v1.10.1",
|
|
1767
|
-
"version": "1.10.1",
|
|
1768
|
-
"comments": {
|
|
1769
|
-
"none": [
|
|
1770
|
-
{
|
|
1771
|
-
"comment": "update markdown files",
|
|
1772
|
-
"author": "steph@huynhicode.dev",
|
|
1773
|
-
"commit": "c49a98f7f1bd8e167b0b7a96a181990f9a675f34",
|
|
1774
|
-
"package": "@microsoft/fast-element"
|
|
1775
|
-
}
|
|
1776
|
-
]
|
|
1777
|
-
}
|
|
1778
|
-
},
|
|
1779
|
-
{
|
|
1780
|
-
"date": "Tue, 03 May 2022 07:15:44 GMT",
|
|
1781
|
-
"tag": "@microsoft/fast-element_v1.10.1",
|
|
1782
|
-
"version": "1.10.1",
|
|
1783
|
-
"comments": {
|
|
1784
|
-
"patch": [
|
|
1785
|
-
{
|
|
1786
|
-
"comment": "Upgraded api-extractor",
|
|
1787
|
-
"author": "44823142+williamw2@users.noreply.github.com",
|
|
1788
|
-
"commit": "2341496a6fafe3051dc50333c21ca652026f725b",
|
|
1789
|
-
"package": "@microsoft/fast-element"
|
|
1790
|
-
}
|
|
1791
|
-
]
|
|
1792
|
-
}
|
|
1793
|
-
},
|
|
1794
|
-
{
|
|
1795
|
-
"date": "Wed, 27 Apr 2022 07:21:09 GMT",
|
|
1796
|
-
"tag": "@microsoft/fast-element_v1.10.0",
|
|
1797
|
-
"version": "1.10.0",
|
|
1798
|
-
"comments": {
|
|
1799
|
-
"minor": [
|
|
1800
|
-
{
|
|
1801
|
-
"comment": "update to typescript 4.6.2 and update ARIAMixin typings",
|
|
1802
|
-
"author": "chhol@microsoft.com",
|
|
1803
|
-
"commit": "35bdab45550b5d8b8762041110eccb06de78add5",
|
|
1804
|
-
"package": "@microsoft/fast-element"
|
|
1805
|
-
}
|
|
1806
|
-
]
|
|
1807
|
-
}
|
|
1808
|
-
},
|
|
1809
|
-
{
|
|
1810
|
-
"date": "Sun, 24 Apr 2022 07:13:26 GMT",
|
|
1811
|
-
"tag": "@microsoft/fast-element_v1.9.0",
|
|
1812
|
-
"version": "1.9.0",
|
|
1813
|
-
"comments": {
|
|
1814
|
-
"none": [
|
|
1815
|
-
{
|
|
1816
|
-
"comment": "Update to fix broken links and grammar.",
|
|
1817
|
-
"author": "16669785+awentzel@users.noreply.github.com",
|
|
1818
|
-
"commit": "ed08697132b639f3104562b16a0dcf5c5653a878",
|
|
1819
|
-
"package": "@microsoft/fast-element"
|
|
1820
|
-
}
|
|
1821
|
-
]
|
|
1822
|
-
}
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
"date": "Wed, 20 Apr 2022 07:13:17 GMT",
|
|
1826
|
-
"tag": "@microsoft/fast-element_v1.9.0",
|
|
1827
|
-
"version": "1.9.0",
|
|
1828
|
-
"comments": {
|
|
1829
|
-
"none": [
|
|
1830
|
-
{
|
|
1831
|
-
"comment": "Pull up api-extractor.json to root and then extend it for each project",
|
|
1832
|
-
"author": "stephanosp@microsoft.com",
|
|
1833
|
-
"commit": "e3076337cbc2d260a497116061ee3bba3866a97d",
|
|
1834
|
-
"package": "@microsoft/fast-element"
|
|
1835
|
-
}
|
|
1836
|
-
]
|
|
1837
|
-
}
|
|
1838
|
-
},
|
|
1839
|
-
{
|
|
1840
|
-
"date": "Sun, 17 Apr 2022 07:11:18 GMT",
|
|
1841
|
-
"tag": "@microsoft/fast-element_v1.9.0",
|
|
1842
|
-
"version": "1.9.0",
|
|
1843
|
-
"comments": {
|
|
1844
|
-
"none": [
|
|
1845
|
-
{
|
|
1846
|
-
"comment": "Merge branch 'master' into wanFixString",
|
|
1847
|
-
"author": "74849806+wannieman98@users.noreply.github.com",
|
|
1848
|
-
"commit": "14bc5d5f2ae608328eb16ad7e619bab00415f60a",
|
|
1849
|
-
"package": "@microsoft/fast-element"
|
|
1850
|
-
}
|
|
1851
|
-
]
|
|
1852
|
-
}
|
|
1853
|
-
},
|
|
1854
|
-
{
|
|
1855
|
-
"date": "Tue, 12 Apr 2022 07:13:35 GMT",
|
|
1856
|
-
"tag": "@microsoft/fast-element_v1.9.0",
|
|
1857
|
-
"version": "1.9.0",
|
|
1858
|
-
"comments": {
|
|
1859
|
-
"none": [
|
|
1860
|
-
{
|
|
1861
|
-
"comment": "repeat directive documentation fix code snippet not rendering properly",
|
|
1862
|
-
"author": "yinon@hotmail.com",
|
|
1863
|
-
"commit": "3e4d72447520f40d234b1df2cc70446dcef8bb47",
|
|
1864
|
-
"package": "@microsoft/fast-element"
|
|
1865
|
-
}
|
|
1866
|
-
]
|
|
1867
|
-
}
|
|
1868
|
-
},
|
|
1869
|
-
{
|
|
1870
|
-
"date": "Wed, 06 Apr 2022 07:12:42 GMT",
|
|
1871
|
-
"tag": "@microsoft/fast-element_v1.9.0",
|
|
1872
|
-
"version": "1.9.0",
|
|
1873
|
-
"comments": {
|
|
1874
|
-
"minor": [
|
|
1875
|
-
{
|
|
1876
|
-
"comment": "convert fast-element to type:module",
|
|
1877
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
1878
|
-
"commit": "ead7f7340654236f2503359e2fc6f0b41639b507",
|
|
1879
|
-
"package": "@microsoft/fast-element"
|
|
1880
|
-
}
|
|
1881
|
-
]
|
|
1882
|
-
}
|
|
1883
|
-
},
|
|
1884
|
-
{
|
|
1885
|
-
"date": "Sun, 03 Apr 2022 07:12:01 GMT",
|
|
1886
|
-
"tag": "@microsoft/fast-element_v1.8.0",
|
|
1887
|
-
"version": "1.8.0",
|
|
1888
|
-
"comments": {
|
|
1889
|
-
"none": [
|
|
1890
|
-
{
|
|
1891
|
-
"comment": "Fixed a typo in a doc example",
|
|
1892
|
-
"author": "47367562+bheston@users.noreply.github.com",
|
|
1893
|
-
"commit": "35913ce3a2dcba83bebb63cce2b8edf4e9da7df9",
|
|
1894
|
-
"package": "@microsoft/fast-element"
|
|
1895
|
-
},
|
|
1896
|
-
{
|
|
1897
|
-
"comment": "add comment-style tags for syntax highlighting (#5561)",
|
|
1898
|
-
"author": "chhol@microsoft.com",
|
|
1899
|
-
"commit": "7495a63e6e89b6e92e2d7f289eea063a8a354108",
|
|
1900
|
-
"package": "@microsoft/fast-element"
|
|
1901
|
-
},
|
|
1902
|
-
{
|
|
1903
|
-
"comment": "Update binding documentation to have an accurate example. Changes \"Bindings\" to \"Volatile Properties\".",
|
|
1904
|
-
"author": "tgoze@ntst.com",
|
|
1905
|
-
"commit": "1ffb431816f418864d2385b29ba494efcb3fa844",
|
|
1906
|
-
"package": "@microsoft/fast-element"
|
|
1907
|
-
}
|
|
1908
|
-
]
|
|
1909
|
-
}
|
|
1910
|
-
},
|
|
1911
|
-
{
|
|
1912
|
-
"date": "Tue, 08 Mar 2022 07:12:45 GMT",
|
|
1913
|
-
"tag": "@microsoft/fast-element_v1.8.0",
|
|
1914
|
-
"version": "1.8.0",
|
|
1915
|
-
"comments": {
|
|
1916
|
-
"minor": [
|
|
1917
|
-
{
|
|
1918
|
-
"comment": "feat: enable multiple fast-element instances in browser at once",
|
|
1919
|
-
"author": "roeisenb@microsoft.com",
|
|
1920
|
-
"commit": "0e506c6c67a8a7d75e4ef9cfbd000f9da810dc14",
|
|
1921
|
-
"package": "@microsoft/fast-element"
|
|
1922
|
-
}
|
|
1923
|
-
]
|
|
1924
|
-
}
|
|
1925
|
-
},
|
|
1926
|
-
{
|
|
1927
|
-
"date": "Fri, 25 Feb 2022 17:09:32 GMT",
|
|
1928
|
-
"tag": "@microsoft/fast-element_v1.7.2",
|
|
1929
|
-
"version": "1.7.2",
|
|
1930
|
-
"comments": {
|
|
1931
|
-
"patch": [
|
|
1932
|
-
{
|
|
1933
|
-
"comment": "fix: defend against for/in use on arrays",
|
|
1934
|
-
"author": "roeisenb@microsoft.com",
|
|
1935
|
-
"commit": "76a9c866277cd13a92a9ca6b3518eae2fb625d79",
|
|
1936
|
-
"package": "@microsoft/fast-element"
|
|
1937
|
-
}
|
|
1938
|
-
]
|
|
1939
|
-
}
|
|
1940
|
-
},
|
|
1941
|
-
{
|
|
1942
|
-
"date": "Thu, 24 Feb 2022 22:21:55 GMT",
|
|
1943
|
-
"tag": "@microsoft/fast-element_v1.7.1",
|
|
1944
|
-
"version": "1.7.1",
|
|
1945
|
-
"comments": {
|
|
1946
|
-
"patch": [
|
|
1947
|
-
{
|
|
1948
|
-
"comment": "fix: prevent duplicative array observation patch",
|
|
1949
|
-
"author": "roeisenb@microsoft.com",
|
|
1950
|
-
"commit": "9dfb9bb20afa48320eef2c6157e26ec2b10cfd3e",
|
|
1951
|
-
"package": "@microsoft/fast-element"
|
|
1952
|
-
}
|
|
1953
|
-
]
|
|
1954
|
-
}
|
|
1955
|
-
},
|
|
1956
|
-
{
|
|
1957
|
-
"date": "Sun, 23 Jan 2022 07:13:56 GMT",
|
|
1958
|
-
"tag": "@microsoft/fast-element_v1.7.0",
|
|
1959
|
-
"version": "1.7.0",
|
|
1960
|
-
"comments": {
|
|
1961
|
-
"minor": [
|
|
1962
|
-
{
|
|
1963
|
-
"comment": "add recyle option to repeat directive",
|
|
1964
|
-
"author": "scomea@microsoft.com",
|
|
1965
|
-
"commit": "897c39862b58a63ad9900426ae6ae2f95d222e1e",
|
|
1966
|
-
"package": "@microsoft/fast-element"
|
|
1967
|
-
}
|
|
1968
|
-
]
|
|
1969
|
-
}
|
|
1970
|
-
},
|
|
1971
|
-
{
|
|
1972
|
-
"date": "Wed, 12 Jan 2022 07:11:42 GMT",
|
|
1973
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
1974
|
-
"version": "1.6.2",
|
|
1975
|
-
"comments": {
|
|
1976
|
-
"none": [
|
|
1977
|
-
{
|
|
1978
|
-
"comment": "add links back to cheat sheet",
|
|
1979
|
-
"author": "steph@huynhicode.dev",
|
|
1980
|
-
"commit": "962ca2a330f8c277ac489613f0ff55cac08896e8",
|
|
1981
|
-
"package": "@microsoft/fast-element"
|
|
1982
|
-
}
|
|
1983
|
-
]
|
|
1984
|
-
}
|
|
1985
|
-
},
|
|
1986
|
-
{
|
|
1987
|
-
"date": "Tue, 11 Jan 2022 07:09:27 GMT",
|
|
1988
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
1989
|
-
"version": "1.6.2",
|
|
1990
|
-
"comments": {
|
|
1991
|
-
"none": [
|
|
1992
|
-
{
|
|
1993
|
-
"comment": "update rollup-plugin-filesize from 8.0.2 to 9.1.2",
|
|
1994
|
-
"author": "john.kreitlow@microsoft.com",
|
|
1995
|
-
"commit": "af847f2749ff605cced426e55a1580ea85c89cb0",
|
|
1996
|
-
"package": "@microsoft/fast-element"
|
|
1997
|
-
}
|
|
1998
|
-
]
|
|
1999
|
-
}
|
|
2000
|
-
},
|
|
2001
|
-
{
|
|
2002
|
-
"date": "Sun, 19 Dec 2021 07:12:39 GMT",
|
|
2003
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
2004
|
-
"version": "1.6.2",
|
|
2005
|
-
"comments": {
|
|
2006
|
-
"none": [
|
|
2007
|
-
{
|
|
2008
|
-
"comment": "minor fixes",
|
|
2009
|
-
"author": "steph@huynhicode.dev",
|
|
2010
|
-
"commit": "5056e83234e1c758375fa4882943d104fb476ca2",
|
|
2011
|
-
"package": "@microsoft/fast-element"
|
|
2012
|
-
}
|
|
2013
|
-
]
|
|
2014
|
-
}
|
|
2015
|
-
},
|
|
2016
|
-
{
|
|
2017
|
-
"date": "Tue, 14 Dec 2021 07:12:12 GMT",
|
|
2018
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
2019
|
-
"version": "1.6.2",
|
|
2020
|
-
"comments": {
|
|
2021
|
-
"none": [
|
|
2022
|
-
{
|
|
2023
|
-
"comment": "docs(using-directives): clarify slotted directive practices",
|
|
2024
|
-
"author": "roeisenb@microsoft.com",
|
|
2025
|
-
"commit": "babdb99e832319eaee76465765f9e6b72911d473",
|
|
2026
|
-
"package": "@microsoft/fast-element"
|
|
2027
|
-
}
|
|
2028
|
-
]
|
|
2029
|
-
}
|
|
2030
|
-
},
|
|
2031
|
-
{
|
|
2032
|
-
"date": "Wed, 08 Dec 2021 07:10:04 GMT",
|
|
2033
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
2034
|
-
"version": "1.6.2",
|
|
2035
|
-
"comments": {
|
|
2036
|
-
"none": [
|
|
2037
|
-
{
|
|
2038
|
-
"comment": "docs: add .NET acknowledgement",
|
|
2039
|
-
"author": "roeisenb@microsoft.com",
|
|
2040
|
-
"commit": "bd7d84152a823cc21aab0dfa196da9d663ad0778",
|
|
2041
|
-
"package": "@microsoft/fast-element"
|
|
2042
|
-
}
|
|
2043
|
-
]
|
|
2044
|
-
}
|
|
2045
|
-
},
|
|
2046
|
-
{
|
|
2047
|
-
"date": "Thu, 02 Dec 2021 07:11:13 GMT",
|
|
2048
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
2049
|
-
"version": "1.6.2",
|
|
2050
|
-
"comments": {
|
|
2051
|
-
"none": [
|
|
2052
|
-
{
|
|
2053
|
-
"comment": "docs: corrections to cdn links",
|
|
2054
|
-
"author": "roeisenb@microsoft.com",
|
|
2055
|
-
"commit": "2ec536794820959f771ebbfe25efd5a4489e7a76",
|
|
2056
|
-
"package": "@microsoft/fast-element"
|
|
2057
|
-
}
|
|
2058
|
-
]
|
|
2059
|
-
}
|
|
2060
|
-
},
|
|
2061
|
-
{
|
|
2062
|
-
"date": "Sun, 31 Oct 2021 07:17:45 GMT",
|
|
2063
|
-
"tag": "@microsoft/fast-element_v1.6.2",
|
|
2064
|
-
"version": "1.6.2",
|
|
2065
|
-
"comments": {
|
|
2066
|
-
"patch": [
|
|
2067
|
-
{
|
|
2068
|
-
"comment": "update fast eslint package version",
|
|
2069
|
-
"author": "chhol@microsoft.com",
|
|
2070
|
-
"commit": "a150068ee196e73fe7a4f7b538a38752e0e506ba",
|
|
2071
|
-
"package": "@microsoft/fast-element"
|
|
2072
|
-
}
|
|
2073
|
-
]
|
|
2074
|
-
}
|
|
2075
|
-
},
|
|
2076
|
-
{
|
|
2077
|
-
"date": "Wed, 13 Oct 2021 22:45:16 GMT",
|
|
2078
|
-
"tag": "@microsoft/fast-element_v1.6.1",
|
|
2079
|
-
"version": "1.6.1",
|
|
2080
|
-
"comments": {
|
|
2081
|
-
"patch": [
|
|
2082
|
-
{
|
|
2083
|
-
"comment": "build(fast-element): exclude empty js files from esm index.js",
|
|
2084
|
-
"author": "markwhitfeld@users.noreply.github.com",
|
|
2085
|
-
"commit": "49d27d20bf430ea4639978ba363e017fc5aa88e4",
|
|
2086
|
-
"package": "@microsoft/fast-element"
|
|
2087
|
-
}
|
|
2088
|
-
]
|
|
2089
|
-
}
|
|
2090
|
-
},
|
|
2091
|
-
{
|
|
2092
|
-
"date": "Wed, 13 Oct 2021 01:53:37 GMT",
|
|
2093
|
-
"tag": "@microsoft/fast-element_v1.6.0",
|
|
2094
|
-
"version": "1.6.0",
|
|
2095
|
-
"comments": {
|
|
2096
|
-
"none": [
|
|
2097
|
-
{
|
|
2098
|
-
"comment": "Fill color design token update",
|
|
2099
|
-
"author": "skawian@gmail.com",
|
|
2100
|
-
"commit": "1dd6243d7564f00d8af77d1335ab96b0e8153c2e",
|
|
2101
|
-
"package": "@microsoft/fast-element"
|
|
2102
|
-
}
|
|
2103
|
-
]
|
|
2104
|
-
}
|
|
2105
|
-
},
|
|
2106
|
-
{
|
|
2107
|
-
"date": "Fri, 08 Oct 2021 19:53:11 GMT",
|
|
2108
|
-
"tag": "@microsoft/fast-element_v1.6.0",
|
|
2109
|
-
"version": "1.6.0",
|
|
2110
|
-
"comments": {
|
|
2111
|
-
"minor": [
|
|
2112
|
-
{
|
|
2113
|
-
"comment": "feat(fast-element): expose a method for processing the update queue",
|
|
2114
|
-
"author": "roeisenb@microsoft.com",
|
|
2115
|
-
"commit": "d49d1ecc65ee74b7efb33b5a67fcad5fcead7342",
|
|
2116
|
-
"package": "@microsoft/fast-element"
|
|
2117
|
-
}
|
|
2118
|
-
]
|
|
2119
|
-
}
|
|
2120
|
-
},
|
|
2121
|
-
{
|
|
2122
|
-
"date": "Wed, 08 Sep 2021 07:16:17 GMT",
|
|
2123
|
-
"tag": "@microsoft/fast-element_v1.5.1",
|
|
2124
|
-
"version": "1.5.1",
|
|
2125
|
-
"comments": {
|
|
2126
|
-
"patch": [
|
|
2127
|
-
{
|
|
2128
|
-
"comment": "perf(Controller): reduce object allocation needed for isConnected prop",
|
|
2129
|
-
"author": "roeisenb@microsoft.com",
|
|
2130
|
-
"commit": "bdd28c8861b3523a9984ca8feda2af9019861a8a",
|
|
2131
|
-
"package": "@microsoft/fast-element"
|
|
2132
|
-
}
|
|
2133
|
-
]
|
|
2134
|
-
}
|
|
2135
|
-
},
|
|
2136
|
-
{
|
|
2137
|
-
"date": "Fri, 27 Aug 2021 14:14:26 GMT",
|
|
2138
|
-
"tag": "@microsoft/fast-element_v1.5.0",
|
|
2139
|
-
"version": "1.5.0",
|
|
2140
|
-
"comments": {
|
|
2141
|
-
"minor": [
|
|
2142
|
-
{
|
|
2143
|
-
"comment": "Adds capability to Observable to subscribe to any observable property change for an object",
|
|
2144
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
2145
|
-
"commit": "e498f1e35232169d2bf80e366350d0cde812d76d",
|
|
2146
|
-
"package": "@microsoft/fast-element"
|
|
2147
|
-
},
|
|
2148
|
-
{
|
|
2149
|
-
"comment": "ensure HTMLStyleElement DOM order matches call addStylesTo() call order",
|
|
2150
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
2151
|
-
"commit": "e43c49b26457f6bdca34b91bbaa8658359e4b2d5",
|
|
2152
|
-
"package": "@microsoft/fast-element"
|
|
2153
|
-
}
|
|
2154
|
-
]
|
|
2155
|
-
}
|
|
2156
|
-
},
|
|
2157
|
-
{
|
|
2158
|
-
"date": "Thu, 26 Aug 2021 07:17:43 GMT",
|
|
2159
|
-
"tag": "@microsoft/fast-element_v1.4.2",
|
|
2160
|
-
"version": "1.4.2",
|
|
2161
|
-
"comments": {
|
|
2162
|
-
"patch": [
|
|
2163
|
-
{
|
|
2164
|
-
"comment": "feat(fast-element): make the task queue resilient to task exceptions",
|
|
2165
|
-
"author": "roeisenb@microsoft.com",
|
|
2166
|
-
"commit": "0e03f23e37b83cd1b428c01cc0e3d4c2dd9f69bd",
|
|
2167
|
-
"package": "@microsoft/fast-element"
|
|
2168
|
-
}
|
|
2169
|
-
]
|
|
2170
|
-
}
|
|
2171
|
-
},
|
|
2172
|
-
{
|
|
2173
|
-
"date": "Tue, 03 Aug 2021 07:17:33 GMT",
|
|
2174
|
-
"tag": "@microsoft/fast-element_v1.4.1",
|
|
2175
|
-
"version": "1.4.1",
|
|
2176
|
-
"comments": {
|
|
2177
|
-
"none": [
|
|
2178
|
-
{
|
|
2179
|
-
"comment": "chore: eslint fixes in fast-element",
|
|
2180
|
-
"author": "mathieu.lavoie@logmein.com",
|
|
2181
|
-
"commit": "65e86a86cbf2b584f7a76081a9bef5a76e78b6f3",
|
|
2182
|
-
"package": "@microsoft/fast-element"
|
|
2183
|
-
}
|
|
2184
|
-
]
|
|
2185
|
-
}
|
|
2186
|
-
},
|
|
2187
|
-
{
|
|
2188
|
-
"date": "Wed, 28 Jul 2021 07:17:22 GMT",
|
|
2189
|
-
"tag": "@microsoft/fast-element_v1.4.1",
|
|
2190
|
-
"version": "1.4.1",
|
|
2191
|
-
"comments": {
|
|
2192
|
-
"none": [
|
|
2193
|
-
{
|
|
2194
|
-
"comment": "docs(components): add/update and expand content",
|
|
2195
|
-
"author": "roeisenb@microsoft.com",
|
|
2196
|
-
"commit": "07d03884b168bb66d482a72df2d2941f8561b9ce",
|
|
2197
|
-
"package": "@microsoft/fast-element"
|
|
2198
|
-
}
|
|
2199
|
-
],
|
|
2200
|
-
"patch": [
|
|
2201
|
-
{
|
|
2202
|
-
"comment": "implement patch to work around Angular optimization bug",
|
|
2203
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
2204
|
-
"commit": "e92c9e5197e54fc5c6ec6daaf36c09d9190c7ef2",
|
|
2205
|
-
"package": "@microsoft/fast-element"
|
|
2206
|
-
}
|
|
2207
|
-
]
|
|
2208
|
-
}
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
"date": "Sun, 30 May 2021 07:42:30 GMT",
|
|
2212
|
-
"tag": "@microsoft/fast-element_v1.4.0",
|
|
2213
|
-
"version": "1.4.0",
|
|
2214
|
-
"comments": {
|
|
2215
|
-
"none": [
|
|
2216
|
-
{
|
|
2217
|
-
"comment": "Merge branch 'master' into patch-1",
|
|
2218
|
-
"author": "xavier@norival.dev",
|
|
2219
|
-
"commit": "b5d702a313a19ce62468c8093c830e460c44f9b5",
|
|
2220
|
-
"package": "@microsoft/fast-element"
|
|
2221
|
-
}
|
|
2222
|
-
]
|
|
2223
|
-
}
|
|
2224
|
-
},
|
|
2225
|
-
{
|
|
2226
|
-
"date": "Fri, 21 May 2021 17:48:08 GMT",
|
|
2227
|
-
"tag": "@microsoft/fast-element_v1.4.0",
|
|
2228
|
-
"version": "1.4.0",
|
|
2229
|
-
"comments": {
|
|
2230
|
-
"minor": [
|
|
2231
|
-
{
|
|
2232
|
-
"comment": "Add cssPartial template function to facilitate partial CSS abstractions.",
|
|
2233
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
2234
|
-
"commit": "6ec5b991120bb6cfedcdbb1a748039292e51f348",
|
|
2235
|
-
"package": "@microsoft/fast-element"
|
|
2236
|
-
}
|
|
2237
|
-
]
|
|
2238
|
-
}
|
|
2239
|
-
},
|
|
2240
|
-
{
|
|
2241
|
-
"date": "Wed, 19 May 2021 23:37:36 GMT",
|
|
2242
|
-
"tag": "@microsoft/fast-element_v1.3.0",
|
|
2243
|
-
"version": "1.3.0",
|
|
2244
|
-
"comments": {
|
|
2245
|
-
"minor": [
|
|
2246
|
-
{
|
|
2247
|
-
"author": "nicholasrice@users.noreply.github.com",
|
|
2248
|
-
"commit": "a433b6bcab871f24ccbe828b2023c256942d40af",
|
|
2249
|
-
"package": "@microsoft/fast-element"
|
|
2250
|
-
},
|
|
2251
|
-
{
|
|
2252
|
-
"comment": "fix: ensure that custom events are cancelable by default",
|
|
2253
|
-
"author": "roeisenb@microsoft.com",
|
|
2254
|
-
"commit": "b825576094c81128257b27b708611851069624c4",
|
|
2255
|
-
"package": "@microsoft/fast-element"
|
|
2256
|
-
},
|
|
2257
|
-
{
|
|
2258
|
-
"comment": "perf: improve startup time and reduce library size",
|
|
2259
|
-
"author": "roeisenb@microsoft.com",
|
|
2260
|
-
"commit": "6965c7d74dbb8063086d34918de0458c1e37220a",
|
|
2261
|
-
"package": "@microsoft/fast-element"
|
|
2262
|
-
}
|
|
2263
|
-
],
|
|
2264
|
-
"none": [
|
|
2265
|
-
{
|
|
2266
|
-
"comment": "docs: add missing closing parenthesis to when directive example",
|
|
2267
|
-
"author": "zjffun@gmail.com",
|
|
2268
|
-
"commit": "c94ad896dda3d4c806585d1d0bbfb37abdc3d758",
|
|
2269
|
-
"package": "@microsoft/fast-element"
|
|
2270
|
-
}
|
|
2271
|
-
]
|
|
2272
|
-
}
|
|
2273
|
-
}
|
|
2274
|
-
]
|
|
2275
|
-
}
|