@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
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
},
|
|
179
179
|
"kind": "Package",
|
|
180
180
|
"canonicalReference": "@microsoft/fast-element!",
|
|
181
|
-
"docComment": "",
|
|
181
|
+
"docComment": "/**\n * Core APIs for building standards-based Web Components with FAST Element.\n *\n * @packageDocumentation\n */\n",
|
|
182
182
|
"name": "@microsoft/fast-element",
|
|
183
183
|
"preserveMemberOrder": false,
|
|
184
184
|
"members": [
|
|
@@ -1065,7 +1065,7 @@
|
|
|
1065
1065
|
{
|
|
1066
1066
|
"kind": "Class",
|
|
1067
1067
|
"canonicalReference": "@microsoft/fast-element!AttributeDefinition:class",
|
|
1068
|
-
"docComment": "/**\n * An implementation of
|
|
1068
|
+
"docComment": "/**\n * An implementation of {@link Accessor} that supports reactivity, change callbacks, attribute reflection, and type conversion for custom elements.\n *\n * @public\n */\n",
|
|
1069
1069
|
"excerptTokens": [
|
|
1070
1070
|
{
|
|
1071
1071
|
"kind": "Content",
|
|
@@ -1587,11 +1587,7 @@
|
|
|
1587
1587
|
{
|
|
1588
1588
|
"kind": "Reference",
|
|
1589
1589
|
"text": "DOMPolicy",
|
|
1590
|
-
"canonicalReference": "@microsoft/fast-element
|
|
1591
|
-
},
|
|
1592
|
-
{
|
|
1593
|
-
"kind": "Content",
|
|
1594
|
-
"text": " | undefined"
|
|
1590
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
1595
1591
|
},
|
|
1596
1592
|
{
|
|
1597
1593
|
"kind": "Content",
|
|
@@ -1622,15 +1618,15 @@
|
|
|
1622
1618
|
"parameterName": "policy",
|
|
1623
1619
|
"parameterTypeTokenRange": {
|
|
1624
1620
|
"startIndex": 4,
|
|
1625
|
-
"endIndex":
|
|
1621
|
+
"endIndex": 5
|
|
1626
1622
|
},
|
|
1627
1623
|
"isOptional": true
|
|
1628
1624
|
},
|
|
1629
1625
|
{
|
|
1630
1626
|
"parameterName": "isVolatile",
|
|
1631
1627
|
"parameterTypeTokenRange": {
|
|
1632
|
-
"startIndex":
|
|
1633
|
-
"endIndex":
|
|
1628
|
+
"startIndex": 6,
|
|
1629
|
+
"endIndex": 7
|
|
1634
1630
|
},
|
|
1635
1631
|
"isOptional": true
|
|
1636
1632
|
}
|
|
@@ -1710,7 +1706,7 @@
|
|
|
1710
1706
|
{
|
|
1711
1707
|
"kind": "Property",
|
|
1712
1708
|
"canonicalReference": "@microsoft/fast-element!Binding#evaluate:member",
|
|
1713
|
-
"docComment": "",
|
|
1709
|
+
"docComment": "/**\n * Evaluates the binding.\n */\n",
|
|
1714
1710
|
"excerptTokens": [
|
|
1715
1711
|
{
|
|
1716
1712
|
"kind": "Content",
|
|
@@ -1745,7 +1741,7 @@
|
|
|
1745
1741
|
{
|
|
1746
1742
|
"kind": "Property",
|
|
1747
1743
|
"canonicalReference": "@microsoft/fast-element!Binding#isVolatile:member",
|
|
1748
|
-
"docComment": "",
|
|
1744
|
+
"docComment": "/**\n * Indicates whether the binding is volatile.\n */\n",
|
|
1749
1745
|
"excerptTokens": [
|
|
1750
1746
|
{
|
|
1751
1747
|
"kind": "Content",
|
|
@@ -1805,7 +1801,7 @@
|
|
|
1805
1801
|
{
|
|
1806
1802
|
"kind": "Property",
|
|
1807
1803
|
"canonicalReference": "@microsoft/fast-element!Binding#policy:member",
|
|
1808
|
-
"docComment": "",
|
|
1804
|
+
"docComment": "/**\n * The security policy to associate with this binding.\n */\n",
|
|
1809
1805
|
"excerptTokens": [
|
|
1810
1806
|
{
|
|
1811
1807
|
"kind": "Content",
|
|
@@ -1814,11 +1810,7 @@
|
|
|
1814
1810
|
{
|
|
1815
1811
|
"kind": "Reference",
|
|
1816
1812
|
"text": "DOMPolicy",
|
|
1817
|
-
"canonicalReference": "@microsoft/fast-element
|
|
1818
|
-
},
|
|
1819
|
-
{
|
|
1820
|
-
"kind": "Content",
|
|
1821
|
-
"text": " | undefined"
|
|
1813
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
1822
1814
|
},
|
|
1823
1815
|
{
|
|
1824
1816
|
"kind": "Content",
|
|
@@ -1831,7 +1823,7 @@
|
|
|
1831
1823
|
"name": "policy",
|
|
1832
1824
|
"propertyTypeTokenRange": {
|
|
1833
1825
|
"startIndex": 1,
|
|
1834
|
-
"endIndex":
|
|
1826
|
+
"endIndex": 2
|
|
1835
1827
|
},
|
|
1836
1828
|
"isStatic": false,
|
|
1837
1829
|
"isProtected": false,
|
|
@@ -2209,11 +2201,51 @@
|
|
|
2209
2201
|
"excerptTokens": [
|
|
2210
2202
|
{
|
|
2211
2203
|
"kind": "Content",
|
|
2212
|
-
"text": "export interface CaptureType "
|
|
2204
|
+
"text": "export interface CaptureType<TSource = "
|
|
2205
|
+
},
|
|
2206
|
+
{
|
|
2207
|
+
"kind": "Content",
|
|
2208
|
+
"text": "any"
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"kind": "Content",
|
|
2212
|
+
"text": ", TParent = "
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
"kind": "Content",
|
|
2216
|
+
"text": "any"
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
"kind": "Content",
|
|
2220
|
+
"text": "> "
|
|
2213
2221
|
}
|
|
2214
2222
|
],
|
|
2215
2223
|
"fileUrlPath": "dist/dts/templating/template.d.ts",
|
|
2216
2224
|
"releaseTag": "Public",
|
|
2225
|
+
"typeParameters": [
|
|
2226
|
+
{
|
|
2227
|
+
"typeParameterName": "TSource",
|
|
2228
|
+
"constraintTokenRange": {
|
|
2229
|
+
"startIndex": 0,
|
|
2230
|
+
"endIndex": 0
|
|
2231
|
+
},
|
|
2232
|
+
"defaultTypeTokenRange": {
|
|
2233
|
+
"startIndex": 1,
|
|
2234
|
+
"endIndex": 2
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
"typeParameterName": "TParent",
|
|
2239
|
+
"constraintTokenRange": {
|
|
2240
|
+
"startIndex": 0,
|
|
2241
|
+
"endIndex": 0
|
|
2242
|
+
},
|
|
2243
|
+
"defaultTypeTokenRange": {
|
|
2244
|
+
"startIndex": 3,
|
|
2245
|
+
"endIndex": 4
|
|
2246
|
+
}
|
|
2247
|
+
}
|
|
2248
|
+
],
|
|
2217
2249
|
"name": "CaptureType",
|
|
2218
2250
|
"preserveMemberOrder": false,
|
|
2219
2251
|
"members": [],
|
|
@@ -2314,6 +2346,14 @@
|
|
|
2314
2346
|
"kind": "Content",
|
|
2315
2347
|
"text": "any"
|
|
2316
2348
|
},
|
|
2349
|
+
{
|
|
2350
|
+
"kind": "Content",
|
|
2351
|
+
"text": ", TParent = "
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
"kind": "Content",
|
|
2355
|
+
"text": "any"
|
|
2356
|
+
},
|
|
2317
2357
|
{
|
|
2318
2358
|
"kind": "Content",
|
|
2319
2359
|
"text": ">(propertyOrOptions: "
|
|
@@ -2340,6 +2380,10 @@
|
|
|
2340
2380
|
"text": "CaptureType",
|
|
2341
2381
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
2342
2382
|
},
|
|
2383
|
+
{
|
|
2384
|
+
"kind": "Content",
|
|
2385
|
+
"text": "<TSource, TParent>"
|
|
2386
|
+
},
|
|
2343
2387
|
{
|
|
2344
2388
|
"kind": "Content",
|
|
2345
2389
|
"text": ";"
|
|
@@ -2347,8 +2391,8 @@
|
|
|
2347
2391
|
],
|
|
2348
2392
|
"fileUrlPath": "dist/dts/templating/children.d.ts",
|
|
2349
2393
|
"returnTypeTokenRange": {
|
|
2350
|
-
"startIndex":
|
|
2351
|
-
"endIndex":
|
|
2394
|
+
"startIndex": 9,
|
|
2395
|
+
"endIndex": 11
|
|
2352
2396
|
},
|
|
2353
2397
|
"releaseTag": "Public",
|
|
2354
2398
|
"overloadIndex": 1,
|
|
@@ -2356,8 +2400,8 @@
|
|
|
2356
2400
|
{
|
|
2357
2401
|
"parameterName": "propertyOrOptions",
|
|
2358
2402
|
"parameterTypeTokenRange": {
|
|
2359
|
-
"startIndex":
|
|
2360
|
-
"endIndex":
|
|
2403
|
+
"startIndex": 5,
|
|
2404
|
+
"endIndex": 8
|
|
2361
2405
|
},
|
|
2362
2406
|
"isOptional": false
|
|
2363
2407
|
}
|
|
@@ -2373,6 +2417,17 @@
|
|
|
2373
2417
|
"startIndex": 1,
|
|
2374
2418
|
"endIndex": 2
|
|
2375
2419
|
}
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"typeParameterName": "TParent",
|
|
2423
|
+
"constraintTokenRange": {
|
|
2424
|
+
"startIndex": 0,
|
|
2425
|
+
"endIndex": 0
|
|
2426
|
+
},
|
|
2427
|
+
"defaultTypeTokenRange": {
|
|
2428
|
+
"startIndex": 3,
|
|
2429
|
+
"endIndex": 4
|
|
2430
|
+
}
|
|
2376
2431
|
}
|
|
2377
2432
|
],
|
|
2378
2433
|
"name": "children"
|
|
@@ -2848,7 +2903,7 @@
|
|
|
2848
2903
|
{
|
|
2849
2904
|
"kind": "Reference",
|
|
2850
2905
|
"text": "DOMPolicy",
|
|
2851
|
-
"canonicalReference": "@microsoft/fast-element
|
|
2906
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
2852
2907
|
},
|
|
2853
2908
|
{
|
|
2854
2909
|
"kind": "Content",
|
|
@@ -2955,7 +3010,7 @@
|
|
|
2955
3010
|
{
|
|
2956
3011
|
"kind": "Reference",
|
|
2957
3012
|
"text": "DOMPolicy",
|
|
2958
|
-
"canonicalReference": "@microsoft/fast-element
|
|
3013
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
2959
3014
|
},
|
|
2960
3015
|
{
|
|
2961
3016
|
"kind": "Content",
|
|
@@ -2991,7 +3046,7 @@
|
|
|
2991
3046
|
{
|
|
2992
3047
|
"kind": "Reference",
|
|
2993
3048
|
"text": "DOMPolicy",
|
|
2994
|
-
"canonicalReference": "@microsoft/fast-element
|
|
3049
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
2995
3050
|
},
|
|
2996
3051
|
{
|
|
2997
3052
|
"kind": "Content",
|
|
@@ -4933,8 +4988,8 @@
|
|
|
4933
4988
|
},
|
|
4934
4989
|
{
|
|
4935
4990
|
"kind": "Reference",
|
|
4936
|
-
"text": "
|
|
4937
|
-
"canonicalReference": "@microsoft/fast-element
|
|
4991
|
+
"text": "DOMPolicyDefinition",
|
|
4992
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
4938
4993
|
},
|
|
4939
4994
|
{
|
|
4940
4995
|
"kind": "Content",
|
|
@@ -4942,8 +4997,8 @@
|
|
|
4942
4997
|
},
|
|
4943
4998
|
{
|
|
4944
4999
|
"kind": "Reference",
|
|
4945
|
-
"text": "
|
|
4946
|
-
"canonicalReference": "@microsoft/fast-element
|
|
5000
|
+
"text": "DOMPolicyDefinition",
|
|
5001
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
4947
5002
|
},
|
|
4948
5003
|
{
|
|
4949
5004
|
"kind": "Content",
|
|
@@ -5276,6 +5331,165 @@
|
|
|
5276
5331
|
"endIndex": 6
|
|
5277
5332
|
}
|
|
5278
5333
|
},
|
|
5334
|
+
{
|
|
5335
|
+
"kind": "Interface",
|
|
5336
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface",
|
|
5337
|
+
"docComment": "/**\n * A policy that controls whether values can be written to DOM sinks.\n *\n * @public\n */\n",
|
|
5338
|
+
"excerptTokens": [
|
|
5339
|
+
{
|
|
5340
|
+
"kind": "Content",
|
|
5341
|
+
"text": "export interface DOMPolicy "
|
|
5342
|
+
}
|
|
5343
|
+
],
|
|
5344
|
+
"fileUrlPath": "dist/dts/dom-policy.d.ts",
|
|
5345
|
+
"releaseTag": "Public",
|
|
5346
|
+
"name": "DOMPolicy",
|
|
5347
|
+
"preserveMemberOrder": false,
|
|
5348
|
+
"members": [
|
|
5349
|
+
{
|
|
5350
|
+
"kind": "MethodSignature",
|
|
5351
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy#createHTML:member(1)",
|
|
5352
|
+
"docComment": "/**\n * Creates safe HTML from the provided value.\n *\n * @param value - The source to convert to safe HTML.\n */\n",
|
|
5353
|
+
"excerptTokens": [
|
|
5354
|
+
{
|
|
5355
|
+
"kind": "Content",
|
|
5356
|
+
"text": "createHTML(value: "
|
|
5357
|
+
},
|
|
5358
|
+
{
|
|
5359
|
+
"kind": "Content",
|
|
5360
|
+
"text": "string"
|
|
5361
|
+
},
|
|
5362
|
+
{
|
|
5363
|
+
"kind": "Content",
|
|
5364
|
+
"text": "): "
|
|
5365
|
+
},
|
|
5366
|
+
{
|
|
5367
|
+
"kind": "Content",
|
|
5368
|
+
"text": "string"
|
|
5369
|
+
},
|
|
5370
|
+
{
|
|
5371
|
+
"kind": "Content",
|
|
5372
|
+
"text": ";"
|
|
5373
|
+
}
|
|
5374
|
+
],
|
|
5375
|
+
"isOptional": false,
|
|
5376
|
+
"returnTypeTokenRange": {
|
|
5377
|
+
"startIndex": 3,
|
|
5378
|
+
"endIndex": 4
|
|
5379
|
+
},
|
|
5380
|
+
"releaseTag": "Public",
|
|
5381
|
+
"overloadIndex": 1,
|
|
5382
|
+
"parameters": [
|
|
5383
|
+
{
|
|
5384
|
+
"parameterName": "value",
|
|
5385
|
+
"parameterTypeTokenRange": {
|
|
5386
|
+
"startIndex": 1,
|
|
5387
|
+
"endIndex": 2
|
|
5388
|
+
},
|
|
5389
|
+
"isOptional": false
|
|
5390
|
+
}
|
|
5391
|
+
],
|
|
5392
|
+
"name": "createHTML"
|
|
5393
|
+
},
|
|
5394
|
+
{
|
|
5395
|
+
"kind": "MethodSignature",
|
|
5396
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy#protect:member(1)",
|
|
5397
|
+
"docComment": "/**\n * Protects a DOM sink that intends to write to the DOM.\n *\n * @param tagName - The tag name for the element to write to.\n *\n * @param aspect - The aspect of the DOM to write to.\n *\n * @param aspectName - The name of the aspect to write to.\n *\n * @param sink - The sink that is used to write to the DOM.\n */\n",
|
|
5398
|
+
"excerptTokens": [
|
|
5399
|
+
{
|
|
5400
|
+
"kind": "Content",
|
|
5401
|
+
"text": "protect(tagName: "
|
|
5402
|
+
},
|
|
5403
|
+
{
|
|
5404
|
+
"kind": "Content",
|
|
5405
|
+
"text": "string | null"
|
|
5406
|
+
},
|
|
5407
|
+
{
|
|
5408
|
+
"kind": "Content",
|
|
5409
|
+
"text": ", aspect: "
|
|
5410
|
+
},
|
|
5411
|
+
{
|
|
5412
|
+
"kind": "Reference",
|
|
5413
|
+
"text": "DOMAspect",
|
|
5414
|
+
"canonicalReference": "@microsoft/fast-element!DOMAspect:type"
|
|
5415
|
+
},
|
|
5416
|
+
{
|
|
5417
|
+
"kind": "Content",
|
|
5418
|
+
"text": ", aspectName: "
|
|
5419
|
+
},
|
|
5420
|
+
{
|
|
5421
|
+
"kind": "Content",
|
|
5422
|
+
"text": "string"
|
|
5423
|
+
},
|
|
5424
|
+
{
|
|
5425
|
+
"kind": "Content",
|
|
5426
|
+
"text": ", sink: "
|
|
5427
|
+
},
|
|
5428
|
+
{
|
|
5429
|
+
"kind": "Reference",
|
|
5430
|
+
"text": "DOMSink",
|
|
5431
|
+
"canonicalReference": "@microsoft/fast-element!DOMSink:type"
|
|
5432
|
+
},
|
|
5433
|
+
{
|
|
5434
|
+
"kind": "Content",
|
|
5435
|
+
"text": "): "
|
|
5436
|
+
},
|
|
5437
|
+
{
|
|
5438
|
+
"kind": "Reference",
|
|
5439
|
+
"text": "DOMSink",
|
|
5440
|
+
"canonicalReference": "@microsoft/fast-element!DOMSink:type"
|
|
5441
|
+
},
|
|
5442
|
+
{
|
|
5443
|
+
"kind": "Content",
|
|
5444
|
+
"text": ";"
|
|
5445
|
+
}
|
|
5446
|
+
],
|
|
5447
|
+
"isOptional": false,
|
|
5448
|
+
"returnTypeTokenRange": {
|
|
5449
|
+
"startIndex": 9,
|
|
5450
|
+
"endIndex": 10
|
|
5451
|
+
},
|
|
5452
|
+
"releaseTag": "Public",
|
|
5453
|
+
"overloadIndex": 1,
|
|
5454
|
+
"parameters": [
|
|
5455
|
+
{
|
|
5456
|
+
"parameterName": "tagName",
|
|
5457
|
+
"parameterTypeTokenRange": {
|
|
5458
|
+
"startIndex": 1,
|
|
5459
|
+
"endIndex": 2
|
|
5460
|
+
},
|
|
5461
|
+
"isOptional": false
|
|
5462
|
+
},
|
|
5463
|
+
{
|
|
5464
|
+
"parameterName": "aspect",
|
|
5465
|
+
"parameterTypeTokenRange": {
|
|
5466
|
+
"startIndex": 3,
|
|
5467
|
+
"endIndex": 4
|
|
5468
|
+
},
|
|
5469
|
+
"isOptional": false
|
|
5470
|
+
},
|
|
5471
|
+
{
|
|
5472
|
+
"parameterName": "aspectName",
|
|
5473
|
+
"parameterTypeTokenRange": {
|
|
5474
|
+
"startIndex": 5,
|
|
5475
|
+
"endIndex": 6
|
|
5476
|
+
},
|
|
5477
|
+
"isOptional": false
|
|
5478
|
+
},
|
|
5479
|
+
{
|
|
5480
|
+
"parameterName": "sink",
|
|
5481
|
+
"parameterTypeTokenRange": {
|
|
5482
|
+
"startIndex": 7,
|
|
5483
|
+
"endIndex": 8
|
|
5484
|
+
},
|
|
5485
|
+
"isOptional": false
|
|
5486
|
+
}
|
|
5487
|
+
],
|
|
5488
|
+
"name": "protect"
|
|
5489
|
+
}
|
|
5490
|
+
],
|
|
5491
|
+
"extendsTokenRanges": []
|
|
5492
|
+
},
|
|
5279
5493
|
{
|
|
5280
5494
|
"kind": "Variable",
|
|
5281
5495
|
"canonicalReference": "@microsoft/fast-element!DOMPolicy:var",
|
|
@@ -5314,8 +5528,8 @@
|
|
|
5314
5528
|
},
|
|
5315
5529
|
{
|
|
5316
5530
|
"kind": "Reference",
|
|
5317
|
-
"text": "
|
|
5318
|
-
"canonicalReference": "@microsoft/fast-element
|
|
5531
|
+
"text": "DOMPolicy",
|
|
5532
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
5319
5533
|
},
|
|
5320
5534
|
{
|
|
5321
5535
|
"kind": "Content",
|
|
@@ -8657,7 +8871,7 @@
|
|
|
8657
8871
|
},
|
|
8658
8872
|
{
|
|
8659
8873
|
"kind": "Content",
|
|
8660
|
-
"text": "
|
|
8874
|
+
"text": ";\n getEvent(): "
|
|
8661
8875
|
},
|
|
8662
8876
|
{
|
|
8663
8877
|
"kind": "Reference",
|
|
@@ -9756,45 +9970,10 @@
|
|
|
9756
9970
|
"kind": "Content",
|
|
9757
9971
|
"text": "FASTElement: "
|
|
9758
9972
|
},
|
|
9759
|
-
{
|
|
9760
|
-
"kind": "Content",
|
|
9761
|
-
"text": "{\n new (): "
|
|
9762
|
-
},
|
|
9763
|
-
{
|
|
9764
|
-
"kind": "Reference",
|
|
9765
|
-
"text": "FASTElement",
|
|
9766
|
-
"canonicalReference": "@microsoft/fast-element!FASTElement:interface"
|
|
9767
|
-
},
|
|
9768
|
-
{
|
|
9769
|
-
"kind": "Content",
|
|
9770
|
-
"text": ";\n define: typeof "
|
|
9771
|
-
},
|
|
9772
|
-
{
|
|
9773
|
-
"kind": "Reference",
|
|
9774
|
-
"text": "define",
|
|
9775
|
-
"canonicalReference": "@microsoft/fast-element!~define:function"
|
|
9776
|
-
},
|
|
9777
|
-
{
|
|
9778
|
-
"kind": "Content",
|
|
9779
|
-
"text": ";\n compose: typeof "
|
|
9780
|
-
},
|
|
9781
|
-
{
|
|
9782
|
-
"kind": "Reference",
|
|
9783
|
-
"text": "compose",
|
|
9784
|
-
"canonicalReference": "@microsoft/fast-element!~compose:function"
|
|
9785
|
-
},
|
|
9786
|
-
{
|
|
9787
|
-
"kind": "Content",
|
|
9788
|
-
"text": ";\n from: typeof "
|
|
9789
|
-
},
|
|
9790
9973
|
{
|
|
9791
9974
|
"kind": "Reference",
|
|
9792
|
-
"text": "
|
|
9793
|
-
"canonicalReference": "@microsoft/fast-element
|
|
9794
|
-
},
|
|
9795
|
-
{
|
|
9796
|
-
"kind": "Content",
|
|
9797
|
-
"text": ";\n}"
|
|
9975
|
+
"text": "FASTElementConstructor",
|
|
9976
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor:interface"
|
|
9798
9977
|
}
|
|
9799
9978
|
],
|
|
9800
9979
|
"fileUrlPath": "dist/dts/components/fast-element.d.ts",
|
|
@@ -9803,9 +9982,731 @@
|
|
|
9803
9982
|
"name": "FASTElement",
|
|
9804
9983
|
"variableTypeTokenRange": {
|
|
9805
9984
|
"startIndex": 1,
|
|
9806
|
-
"endIndex":
|
|
9985
|
+
"endIndex": 2
|
|
9807
9986
|
}
|
|
9808
9987
|
},
|
|
9988
|
+
{
|
|
9989
|
+
"kind": "Interface",
|
|
9990
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor:interface",
|
|
9991
|
+
"docComment": "/**\n * The FASTElement constructor and static registration helpers.\n *\n * @public\n */\n",
|
|
9992
|
+
"excerptTokens": [
|
|
9993
|
+
{
|
|
9994
|
+
"kind": "Content",
|
|
9995
|
+
"text": "export interface FASTElementConstructor "
|
|
9996
|
+
}
|
|
9997
|
+
],
|
|
9998
|
+
"fileUrlPath": "dist/dts/components/fast-element.d.ts",
|
|
9999
|
+
"releaseTag": "Public",
|
|
10000
|
+
"name": "FASTElementConstructor",
|
|
10001
|
+
"preserveMemberOrder": false,
|
|
10002
|
+
"members": [
|
|
10003
|
+
{
|
|
10004
|
+
"kind": "ConstructSignature",
|
|
10005
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor:new(1)",
|
|
10006
|
+
"docComment": "/**\n * Creates a FASTElement instance.\n */\n",
|
|
10007
|
+
"excerptTokens": [
|
|
10008
|
+
{
|
|
10009
|
+
"kind": "Content",
|
|
10010
|
+
"text": "new (): "
|
|
10011
|
+
},
|
|
10012
|
+
{
|
|
10013
|
+
"kind": "Reference",
|
|
10014
|
+
"text": "FASTElement",
|
|
10015
|
+
"canonicalReference": "@microsoft/fast-element!FASTElement:interface"
|
|
10016
|
+
},
|
|
10017
|
+
{
|
|
10018
|
+
"kind": "Content",
|
|
10019
|
+
"text": ";"
|
|
10020
|
+
}
|
|
10021
|
+
],
|
|
10022
|
+
"returnTypeTokenRange": {
|
|
10023
|
+
"startIndex": 1,
|
|
10024
|
+
"endIndex": 2
|
|
10025
|
+
},
|
|
10026
|
+
"releaseTag": "Public",
|
|
10027
|
+
"overloadIndex": 1,
|
|
10028
|
+
"parameters": []
|
|
10029
|
+
},
|
|
10030
|
+
{
|
|
10031
|
+
"kind": "MethodSignature",
|
|
10032
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor#compose:member(1)",
|
|
10033
|
+
"docComment": "/**\n * Composes FASTElement metadata without registering the element.\n *\n * @param nameOrDef - The name of the element to compose or a definition object.\n */\n",
|
|
10034
|
+
"excerptTokens": [
|
|
10035
|
+
{
|
|
10036
|
+
"kind": "Content",
|
|
10037
|
+
"text": "compose<TType extends "
|
|
10038
|
+
},
|
|
10039
|
+
{
|
|
10040
|
+
"kind": "Reference",
|
|
10041
|
+
"text": "Constructable",
|
|
10042
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10043
|
+
},
|
|
10044
|
+
{
|
|
10045
|
+
"kind": "Content",
|
|
10046
|
+
"text": "<"
|
|
10047
|
+
},
|
|
10048
|
+
{
|
|
10049
|
+
"kind": "Reference",
|
|
10050
|
+
"text": "HTMLElement",
|
|
10051
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10052
|
+
},
|
|
10053
|
+
{
|
|
10054
|
+
"kind": "Content",
|
|
10055
|
+
"text": ">"
|
|
10056
|
+
},
|
|
10057
|
+
{
|
|
10058
|
+
"kind": "Content",
|
|
10059
|
+
"text": " = "
|
|
10060
|
+
},
|
|
10061
|
+
{
|
|
10062
|
+
"kind": "Reference",
|
|
10063
|
+
"text": "Constructable",
|
|
10064
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10065
|
+
},
|
|
10066
|
+
{
|
|
10067
|
+
"kind": "Content",
|
|
10068
|
+
"text": "<"
|
|
10069
|
+
},
|
|
10070
|
+
{
|
|
10071
|
+
"kind": "Reference",
|
|
10072
|
+
"text": "HTMLElement",
|
|
10073
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10074
|
+
},
|
|
10075
|
+
{
|
|
10076
|
+
"kind": "Content",
|
|
10077
|
+
"text": ">"
|
|
10078
|
+
},
|
|
10079
|
+
{
|
|
10080
|
+
"kind": "Content",
|
|
10081
|
+
"text": ">(this: "
|
|
10082
|
+
},
|
|
10083
|
+
{
|
|
10084
|
+
"kind": "Content",
|
|
10085
|
+
"text": "TType"
|
|
10086
|
+
},
|
|
10087
|
+
{
|
|
10088
|
+
"kind": "Content",
|
|
10089
|
+
"text": ", nameOrDef: "
|
|
10090
|
+
},
|
|
10091
|
+
{
|
|
10092
|
+
"kind": "Content",
|
|
10093
|
+
"text": "string | "
|
|
10094
|
+
},
|
|
10095
|
+
{
|
|
10096
|
+
"kind": "Reference",
|
|
10097
|
+
"text": "PartialFASTElementDefinition",
|
|
10098
|
+
"canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
|
|
10099
|
+
},
|
|
10100
|
+
{
|
|
10101
|
+
"kind": "Content",
|
|
10102
|
+
"text": "<TType>"
|
|
10103
|
+
},
|
|
10104
|
+
{
|
|
10105
|
+
"kind": "Content",
|
|
10106
|
+
"text": "): "
|
|
10107
|
+
},
|
|
10108
|
+
{
|
|
10109
|
+
"kind": "Reference",
|
|
10110
|
+
"text": "Promise",
|
|
10111
|
+
"canonicalReference": "!Promise:interface"
|
|
10112
|
+
},
|
|
10113
|
+
{
|
|
10114
|
+
"kind": "Content",
|
|
10115
|
+
"text": "<"
|
|
10116
|
+
},
|
|
10117
|
+
{
|
|
10118
|
+
"kind": "Reference",
|
|
10119
|
+
"text": "FASTElementDefinition",
|
|
10120
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
10121
|
+
},
|
|
10122
|
+
{
|
|
10123
|
+
"kind": "Content",
|
|
10124
|
+
"text": "<TType>>"
|
|
10125
|
+
},
|
|
10126
|
+
{
|
|
10127
|
+
"kind": "Content",
|
|
10128
|
+
"text": ";"
|
|
10129
|
+
}
|
|
10130
|
+
],
|
|
10131
|
+
"isOptional": false,
|
|
10132
|
+
"returnTypeTokenRange": {
|
|
10133
|
+
"startIndex": 17,
|
|
10134
|
+
"endIndex": 21
|
|
10135
|
+
},
|
|
10136
|
+
"releaseTag": "Public",
|
|
10137
|
+
"overloadIndex": 1,
|
|
10138
|
+
"parameters": [
|
|
10139
|
+
{
|
|
10140
|
+
"parameterName": "this",
|
|
10141
|
+
"parameterTypeTokenRange": {
|
|
10142
|
+
"startIndex": 11,
|
|
10143
|
+
"endIndex": 12
|
|
10144
|
+
},
|
|
10145
|
+
"isOptional": false
|
|
10146
|
+
},
|
|
10147
|
+
{
|
|
10148
|
+
"parameterName": "nameOrDef",
|
|
10149
|
+
"parameterTypeTokenRange": {
|
|
10150
|
+
"startIndex": 13,
|
|
10151
|
+
"endIndex": 16
|
|
10152
|
+
},
|
|
10153
|
+
"isOptional": false
|
|
10154
|
+
}
|
|
10155
|
+
],
|
|
10156
|
+
"typeParameters": [
|
|
10157
|
+
{
|
|
10158
|
+
"typeParameterName": "TType",
|
|
10159
|
+
"constraintTokenRange": {
|
|
10160
|
+
"startIndex": 1,
|
|
10161
|
+
"endIndex": 5
|
|
10162
|
+
},
|
|
10163
|
+
"defaultTypeTokenRange": {
|
|
10164
|
+
"startIndex": 6,
|
|
10165
|
+
"endIndex": 10
|
|
10166
|
+
}
|
|
10167
|
+
}
|
|
10168
|
+
],
|
|
10169
|
+
"name": "compose"
|
|
10170
|
+
},
|
|
10171
|
+
{
|
|
10172
|
+
"kind": "MethodSignature",
|
|
10173
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor#compose:member(2)",
|
|
10174
|
+
"docComment": "/**\n * Composes FASTElement metadata without registering the element.\n *\n * @param type - The custom element type to compose.\n *\n * @param nameOrDef - The name of the element to compose or a definition object.\n */\n",
|
|
10175
|
+
"excerptTokens": [
|
|
10176
|
+
{
|
|
10177
|
+
"kind": "Content",
|
|
10178
|
+
"text": "compose<TType extends "
|
|
10179
|
+
},
|
|
10180
|
+
{
|
|
10181
|
+
"kind": "Reference",
|
|
10182
|
+
"text": "Constructable",
|
|
10183
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10184
|
+
},
|
|
10185
|
+
{
|
|
10186
|
+
"kind": "Content",
|
|
10187
|
+
"text": "<"
|
|
10188
|
+
},
|
|
10189
|
+
{
|
|
10190
|
+
"kind": "Reference",
|
|
10191
|
+
"text": "HTMLElement",
|
|
10192
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10193
|
+
},
|
|
10194
|
+
{
|
|
10195
|
+
"kind": "Content",
|
|
10196
|
+
"text": ">"
|
|
10197
|
+
},
|
|
10198
|
+
{
|
|
10199
|
+
"kind": "Content",
|
|
10200
|
+
"text": " = "
|
|
10201
|
+
},
|
|
10202
|
+
{
|
|
10203
|
+
"kind": "Reference",
|
|
10204
|
+
"text": "Constructable",
|
|
10205
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10206
|
+
},
|
|
10207
|
+
{
|
|
10208
|
+
"kind": "Content",
|
|
10209
|
+
"text": "<"
|
|
10210
|
+
},
|
|
10211
|
+
{
|
|
10212
|
+
"kind": "Reference",
|
|
10213
|
+
"text": "HTMLElement",
|
|
10214
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10215
|
+
},
|
|
10216
|
+
{
|
|
10217
|
+
"kind": "Content",
|
|
10218
|
+
"text": ">"
|
|
10219
|
+
},
|
|
10220
|
+
{
|
|
10221
|
+
"kind": "Content",
|
|
10222
|
+
"text": ">(type: "
|
|
10223
|
+
},
|
|
10224
|
+
{
|
|
10225
|
+
"kind": "Content",
|
|
10226
|
+
"text": "TType"
|
|
10227
|
+
},
|
|
10228
|
+
{
|
|
10229
|
+
"kind": "Content",
|
|
10230
|
+
"text": ", nameOrDef?: "
|
|
10231
|
+
},
|
|
10232
|
+
{
|
|
10233
|
+
"kind": "Content",
|
|
10234
|
+
"text": "string | "
|
|
10235
|
+
},
|
|
10236
|
+
{
|
|
10237
|
+
"kind": "Reference",
|
|
10238
|
+
"text": "PartialFASTElementDefinition",
|
|
10239
|
+
"canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
|
|
10240
|
+
},
|
|
10241
|
+
{
|
|
10242
|
+
"kind": "Content",
|
|
10243
|
+
"text": "<TType>"
|
|
10244
|
+
},
|
|
10245
|
+
{
|
|
10246
|
+
"kind": "Content",
|
|
10247
|
+
"text": "): "
|
|
10248
|
+
},
|
|
10249
|
+
{
|
|
10250
|
+
"kind": "Reference",
|
|
10251
|
+
"text": "Promise",
|
|
10252
|
+
"canonicalReference": "!Promise:interface"
|
|
10253
|
+
},
|
|
10254
|
+
{
|
|
10255
|
+
"kind": "Content",
|
|
10256
|
+
"text": "<"
|
|
10257
|
+
},
|
|
10258
|
+
{
|
|
10259
|
+
"kind": "Reference",
|
|
10260
|
+
"text": "FASTElementDefinition",
|
|
10261
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
10262
|
+
},
|
|
10263
|
+
{
|
|
10264
|
+
"kind": "Content",
|
|
10265
|
+
"text": "<TType>>"
|
|
10266
|
+
},
|
|
10267
|
+
{
|
|
10268
|
+
"kind": "Content",
|
|
10269
|
+
"text": ";"
|
|
10270
|
+
}
|
|
10271
|
+
],
|
|
10272
|
+
"isOptional": false,
|
|
10273
|
+
"returnTypeTokenRange": {
|
|
10274
|
+
"startIndex": 17,
|
|
10275
|
+
"endIndex": 21
|
|
10276
|
+
},
|
|
10277
|
+
"releaseTag": "Public",
|
|
10278
|
+
"overloadIndex": 2,
|
|
10279
|
+
"parameters": [
|
|
10280
|
+
{
|
|
10281
|
+
"parameterName": "type",
|
|
10282
|
+
"parameterTypeTokenRange": {
|
|
10283
|
+
"startIndex": 11,
|
|
10284
|
+
"endIndex": 12
|
|
10285
|
+
},
|
|
10286
|
+
"isOptional": false
|
|
10287
|
+
},
|
|
10288
|
+
{
|
|
10289
|
+
"parameterName": "nameOrDef",
|
|
10290
|
+
"parameterTypeTokenRange": {
|
|
10291
|
+
"startIndex": 13,
|
|
10292
|
+
"endIndex": 16
|
|
10293
|
+
},
|
|
10294
|
+
"isOptional": true
|
|
10295
|
+
}
|
|
10296
|
+
],
|
|
10297
|
+
"typeParameters": [
|
|
10298
|
+
{
|
|
10299
|
+
"typeParameterName": "TType",
|
|
10300
|
+
"constraintTokenRange": {
|
|
10301
|
+
"startIndex": 1,
|
|
10302
|
+
"endIndex": 5
|
|
10303
|
+
},
|
|
10304
|
+
"defaultTypeTokenRange": {
|
|
10305
|
+
"startIndex": 6,
|
|
10306
|
+
"endIndex": 10
|
|
10307
|
+
}
|
|
10308
|
+
}
|
|
10309
|
+
],
|
|
10310
|
+
"name": "compose"
|
|
10311
|
+
},
|
|
10312
|
+
{
|
|
10313
|
+
"kind": "MethodSignature",
|
|
10314
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor#define:member(1)",
|
|
10315
|
+
"docComment": "/**\n * Defines a platform custom element based on the provided type and definition.\n *\n * @param nameOrDef - The name of the element to define or a definition object.\n *\n * @param extensions - Optional callbacks to run before registration.\n */\n",
|
|
10316
|
+
"excerptTokens": [
|
|
10317
|
+
{
|
|
10318
|
+
"kind": "Content",
|
|
10319
|
+
"text": "define<TType extends "
|
|
10320
|
+
},
|
|
10321
|
+
{
|
|
10322
|
+
"kind": "Reference",
|
|
10323
|
+
"text": "Constructable",
|
|
10324
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10325
|
+
},
|
|
10326
|
+
{
|
|
10327
|
+
"kind": "Content",
|
|
10328
|
+
"text": "<"
|
|
10329
|
+
},
|
|
10330
|
+
{
|
|
10331
|
+
"kind": "Reference",
|
|
10332
|
+
"text": "HTMLElement",
|
|
10333
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10334
|
+
},
|
|
10335
|
+
{
|
|
10336
|
+
"kind": "Content",
|
|
10337
|
+
"text": ">"
|
|
10338
|
+
},
|
|
10339
|
+
{
|
|
10340
|
+
"kind": "Content",
|
|
10341
|
+
"text": " = "
|
|
10342
|
+
},
|
|
10343
|
+
{
|
|
10344
|
+
"kind": "Reference",
|
|
10345
|
+
"text": "Constructable",
|
|
10346
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10347
|
+
},
|
|
10348
|
+
{
|
|
10349
|
+
"kind": "Content",
|
|
10350
|
+
"text": "<"
|
|
10351
|
+
},
|
|
10352
|
+
{
|
|
10353
|
+
"kind": "Reference",
|
|
10354
|
+
"text": "HTMLElement",
|
|
10355
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10356
|
+
},
|
|
10357
|
+
{
|
|
10358
|
+
"kind": "Content",
|
|
10359
|
+
"text": ">"
|
|
10360
|
+
},
|
|
10361
|
+
{
|
|
10362
|
+
"kind": "Content",
|
|
10363
|
+
"text": ">(this: "
|
|
10364
|
+
},
|
|
10365
|
+
{
|
|
10366
|
+
"kind": "Content",
|
|
10367
|
+
"text": "TType"
|
|
10368
|
+
},
|
|
10369
|
+
{
|
|
10370
|
+
"kind": "Content",
|
|
10371
|
+
"text": ", nameOrDef: "
|
|
10372
|
+
},
|
|
10373
|
+
{
|
|
10374
|
+
"kind": "Content",
|
|
10375
|
+
"text": "string | "
|
|
10376
|
+
},
|
|
10377
|
+
{
|
|
10378
|
+
"kind": "Reference",
|
|
10379
|
+
"text": "PartialFASTElementDefinition",
|
|
10380
|
+
"canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
|
|
10381
|
+
},
|
|
10382
|
+
{
|
|
10383
|
+
"kind": "Content",
|
|
10384
|
+
"text": "<TType>"
|
|
10385
|
+
},
|
|
10386
|
+
{
|
|
10387
|
+
"kind": "Content",
|
|
10388
|
+
"text": ", extensions?: "
|
|
10389
|
+
},
|
|
10390
|
+
{
|
|
10391
|
+
"kind": "Reference",
|
|
10392
|
+
"text": "FASTElementExtension",
|
|
10393
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementExtension:type"
|
|
10394
|
+
},
|
|
10395
|
+
{
|
|
10396
|
+
"kind": "Content",
|
|
10397
|
+
"text": "[]"
|
|
10398
|
+
},
|
|
10399
|
+
{
|
|
10400
|
+
"kind": "Content",
|
|
10401
|
+
"text": "): "
|
|
10402
|
+
},
|
|
10403
|
+
{
|
|
10404
|
+
"kind": "Reference",
|
|
10405
|
+
"text": "Promise",
|
|
10406
|
+
"canonicalReference": "!Promise:interface"
|
|
10407
|
+
},
|
|
10408
|
+
{
|
|
10409
|
+
"kind": "Content",
|
|
10410
|
+
"text": "<TType>"
|
|
10411
|
+
},
|
|
10412
|
+
{
|
|
10413
|
+
"kind": "Content",
|
|
10414
|
+
"text": ";"
|
|
10415
|
+
}
|
|
10416
|
+
],
|
|
10417
|
+
"isOptional": false,
|
|
10418
|
+
"returnTypeTokenRange": {
|
|
10419
|
+
"startIndex": 20,
|
|
10420
|
+
"endIndex": 22
|
|
10421
|
+
},
|
|
10422
|
+
"releaseTag": "Public",
|
|
10423
|
+
"overloadIndex": 1,
|
|
10424
|
+
"parameters": [
|
|
10425
|
+
{
|
|
10426
|
+
"parameterName": "this",
|
|
10427
|
+
"parameterTypeTokenRange": {
|
|
10428
|
+
"startIndex": 11,
|
|
10429
|
+
"endIndex": 12
|
|
10430
|
+
},
|
|
10431
|
+
"isOptional": false
|
|
10432
|
+
},
|
|
10433
|
+
{
|
|
10434
|
+
"parameterName": "nameOrDef",
|
|
10435
|
+
"parameterTypeTokenRange": {
|
|
10436
|
+
"startIndex": 13,
|
|
10437
|
+
"endIndex": 16
|
|
10438
|
+
},
|
|
10439
|
+
"isOptional": false
|
|
10440
|
+
},
|
|
10441
|
+
{
|
|
10442
|
+
"parameterName": "extensions",
|
|
10443
|
+
"parameterTypeTokenRange": {
|
|
10444
|
+
"startIndex": 17,
|
|
10445
|
+
"endIndex": 19
|
|
10446
|
+
},
|
|
10447
|
+
"isOptional": true
|
|
10448
|
+
}
|
|
10449
|
+
],
|
|
10450
|
+
"typeParameters": [
|
|
10451
|
+
{
|
|
10452
|
+
"typeParameterName": "TType",
|
|
10453
|
+
"constraintTokenRange": {
|
|
10454
|
+
"startIndex": 1,
|
|
10455
|
+
"endIndex": 5
|
|
10456
|
+
},
|
|
10457
|
+
"defaultTypeTokenRange": {
|
|
10458
|
+
"startIndex": 6,
|
|
10459
|
+
"endIndex": 10
|
|
10460
|
+
}
|
|
10461
|
+
}
|
|
10462
|
+
],
|
|
10463
|
+
"name": "define"
|
|
10464
|
+
},
|
|
10465
|
+
{
|
|
10466
|
+
"kind": "MethodSignature",
|
|
10467
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor#define:member(2)",
|
|
10468
|
+
"docComment": "/**\n * Defines a platform custom element based on the provided type and definition.\n *\n * @param type - The custom element type to define.\n *\n * @param nameOrDef - The name of the element to define or a definition object.\n *\n * @param extensions - Optional callbacks to run before registration.\n */\n",
|
|
10469
|
+
"excerptTokens": [
|
|
10470
|
+
{
|
|
10471
|
+
"kind": "Content",
|
|
10472
|
+
"text": "define<TType extends "
|
|
10473
|
+
},
|
|
10474
|
+
{
|
|
10475
|
+
"kind": "Reference",
|
|
10476
|
+
"text": "Constructable",
|
|
10477
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10478
|
+
},
|
|
10479
|
+
{
|
|
10480
|
+
"kind": "Content",
|
|
10481
|
+
"text": "<"
|
|
10482
|
+
},
|
|
10483
|
+
{
|
|
10484
|
+
"kind": "Reference",
|
|
10485
|
+
"text": "HTMLElement",
|
|
10486
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10487
|
+
},
|
|
10488
|
+
{
|
|
10489
|
+
"kind": "Content",
|
|
10490
|
+
"text": ">"
|
|
10491
|
+
},
|
|
10492
|
+
{
|
|
10493
|
+
"kind": "Content",
|
|
10494
|
+
"text": " = "
|
|
10495
|
+
},
|
|
10496
|
+
{
|
|
10497
|
+
"kind": "Reference",
|
|
10498
|
+
"text": "Constructable",
|
|
10499
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
10500
|
+
},
|
|
10501
|
+
{
|
|
10502
|
+
"kind": "Content",
|
|
10503
|
+
"text": "<"
|
|
10504
|
+
},
|
|
10505
|
+
{
|
|
10506
|
+
"kind": "Reference",
|
|
10507
|
+
"text": "HTMLElement",
|
|
10508
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
10509
|
+
},
|
|
10510
|
+
{
|
|
10511
|
+
"kind": "Content",
|
|
10512
|
+
"text": ">"
|
|
10513
|
+
},
|
|
10514
|
+
{
|
|
10515
|
+
"kind": "Content",
|
|
10516
|
+
"text": ">(type: "
|
|
10517
|
+
},
|
|
10518
|
+
{
|
|
10519
|
+
"kind": "Content",
|
|
10520
|
+
"text": "TType"
|
|
10521
|
+
},
|
|
10522
|
+
{
|
|
10523
|
+
"kind": "Content",
|
|
10524
|
+
"text": ", nameOrDef?: "
|
|
10525
|
+
},
|
|
10526
|
+
{
|
|
10527
|
+
"kind": "Content",
|
|
10528
|
+
"text": "string | "
|
|
10529
|
+
},
|
|
10530
|
+
{
|
|
10531
|
+
"kind": "Reference",
|
|
10532
|
+
"text": "PartialFASTElementDefinition",
|
|
10533
|
+
"canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
|
|
10534
|
+
},
|
|
10535
|
+
{
|
|
10536
|
+
"kind": "Content",
|
|
10537
|
+
"text": "<TType>"
|
|
10538
|
+
},
|
|
10539
|
+
{
|
|
10540
|
+
"kind": "Content",
|
|
10541
|
+
"text": ", extensions?: "
|
|
10542
|
+
},
|
|
10543
|
+
{
|
|
10544
|
+
"kind": "Reference",
|
|
10545
|
+
"text": "FASTElementExtension",
|
|
10546
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementExtension:type"
|
|
10547
|
+
},
|
|
10548
|
+
{
|
|
10549
|
+
"kind": "Content",
|
|
10550
|
+
"text": "[]"
|
|
10551
|
+
},
|
|
10552
|
+
{
|
|
10553
|
+
"kind": "Content",
|
|
10554
|
+
"text": "): "
|
|
10555
|
+
},
|
|
10556
|
+
{
|
|
10557
|
+
"kind": "Reference",
|
|
10558
|
+
"text": "Promise",
|
|
10559
|
+
"canonicalReference": "!Promise:interface"
|
|
10560
|
+
},
|
|
10561
|
+
{
|
|
10562
|
+
"kind": "Content",
|
|
10563
|
+
"text": "<TType>"
|
|
10564
|
+
},
|
|
10565
|
+
{
|
|
10566
|
+
"kind": "Content",
|
|
10567
|
+
"text": ";"
|
|
10568
|
+
}
|
|
10569
|
+
],
|
|
10570
|
+
"isOptional": false,
|
|
10571
|
+
"returnTypeTokenRange": {
|
|
10572
|
+
"startIndex": 20,
|
|
10573
|
+
"endIndex": 22
|
|
10574
|
+
},
|
|
10575
|
+
"releaseTag": "Public",
|
|
10576
|
+
"overloadIndex": 2,
|
|
10577
|
+
"parameters": [
|
|
10578
|
+
{
|
|
10579
|
+
"parameterName": "type",
|
|
10580
|
+
"parameterTypeTokenRange": {
|
|
10581
|
+
"startIndex": 11,
|
|
10582
|
+
"endIndex": 12
|
|
10583
|
+
},
|
|
10584
|
+
"isOptional": false
|
|
10585
|
+
},
|
|
10586
|
+
{
|
|
10587
|
+
"parameterName": "nameOrDef",
|
|
10588
|
+
"parameterTypeTokenRange": {
|
|
10589
|
+
"startIndex": 13,
|
|
10590
|
+
"endIndex": 16
|
|
10591
|
+
},
|
|
10592
|
+
"isOptional": true
|
|
10593
|
+
},
|
|
10594
|
+
{
|
|
10595
|
+
"parameterName": "extensions",
|
|
10596
|
+
"parameterTypeTokenRange": {
|
|
10597
|
+
"startIndex": 17,
|
|
10598
|
+
"endIndex": 19
|
|
10599
|
+
},
|
|
10600
|
+
"isOptional": true
|
|
10601
|
+
}
|
|
10602
|
+
],
|
|
10603
|
+
"typeParameters": [
|
|
10604
|
+
{
|
|
10605
|
+
"typeParameterName": "TType",
|
|
10606
|
+
"constraintTokenRange": {
|
|
10607
|
+
"startIndex": 1,
|
|
10608
|
+
"endIndex": 5
|
|
10609
|
+
},
|
|
10610
|
+
"defaultTypeTokenRange": {
|
|
10611
|
+
"startIndex": 6,
|
|
10612
|
+
"endIndex": 10
|
|
10613
|
+
}
|
|
10614
|
+
}
|
|
10615
|
+
],
|
|
10616
|
+
"name": "define"
|
|
10617
|
+
},
|
|
10618
|
+
{
|
|
10619
|
+
"kind": "MethodSignature",
|
|
10620
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementConstructor#from:member(1)",
|
|
10621
|
+
"docComment": "/**\n * Creates a new FASTElement base class inherited from the provided base type.\n *\n * @param BaseType - The base element type to inherit from.\n */\n",
|
|
10622
|
+
"excerptTokens": [
|
|
10623
|
+
{
|
|
10624
|
+
"kind": "Content",
|
|
10625
|
+
"text": "from<TBase extends "
|
|
10626
|
+
},
|
|
10627
|
+
{
|
|
10628
|
+
"kind": "Content",
|
|
10629
|
+
"text": "typeof "
|
|
10630
|
+
},
|
|
10631
|
+
{
|
|
10632
|
+
"kind": "Reference",
|
|
10633
|
+
"text": "HTMLElement",
|
|
10634
|
+
"canonicalReference": "!HTMLElement:var"
|
|
10635
|
+
},
|
|
10636
|
+
{
|
|
10637
|
+
"kind": "Content",
|
|
10638
|
+
"text": ">(BaseType: "
|
|
10639
|
+
},
|
|
10640
|
+
{
|
|
10641
|
+
"kind": "Content",
|
|
10642
|
+
"text": "TBase"
|
|
10643
|
+
},
|
|
10644
|
+
{
|
|
10645
|
+
"kind": "Content",
|
|
10646
|
+
"text": "): "
|
|
10647
|
+
},
|
|
10648
|
+
{
|
|
10649
|
+
"kind": "Content",
|
|
10650
|
+
"text": "{\n new (): "
|
|
10651
|
+
},
|
|
10652
|
+
{
|
|
10653
|
+
"kind": "Reference",
|
|
10654
|
+
"text": "InstanceType",
|
|
10655
|
+
"canonicalReference": "!InstanceType:type"
|
|
10656
|
+
},
|
|
10657
|
+
{
|
|
10658
|
+
"kind": "Content",
|
|
10659
|
+
"text": "<TBase> & "
|
|
10660
|
+
},
|
|
10661
|
+
{
|
|
10662
|
+
"kind": "Reference",
|
|
10663
|
+
"text": "FASTElement",
|
|
10664
|
+
"canonicalReference": "@microsoft/fast-element!FASTElement:interface"
|
|
10665
|
+
},
|
|
10666
|
+
{
|
|
10667
|
+
"kind": "Content",
|
|
10668
|
+
"text": ";\n }"
|
|
10669
|
+
},
|
|
10670
|
+
{
|
|
10671
|
+
"kind": "Content",
|
|
10672
|
+
"text": ";"
|
|
10673
|
+
}
|
|
10674
|
+
],
|
|
10675
|
+
"isOptional": false,
|
|
10676
|
+
"returnTypeTokenRange": {
|
|
10677
|
+
"startIndex": 6,
|
|
10678
|
+
"endIndex": 11
|
|
10679
|
+
},
|
|
10680
|
+
"releaseTag": "Public",
|
|
10681
|
+
"overloadIndex": 1,
|
|
10682
|
+
"parameters": [
|
|
10683
|
+
{
|
|
10684
|
+
"parameterName": "BaseType",
|
|
10685
|
+
"parameterTypeTokenRange": {
|
|
10686
|
+
"startIndex": 4,
|
|
10687
|
+
"endIndex": 5
|
|
10688
|
+
},
|
|
10689
|
+
"isOptional": false
|
|
10690
|
+
}
|
|
10691
|
+
],
|
|
10692
|
+
"typeParameters": [
|
|
10693
|
+
{
|
|
10694
|
+
"typeParameterName": "TBase",
|
|
10695
|
+
"constraintTokenRange": {
|
|
10696
|
+
"startIndex": 1,
|
|
10697
|
+
"endIndex": 3
|
|
10698
|
+
},
|
|
10699
|
+
"defaultTypeTokenRange": {
|
|
10700
|
+
"startIndex": 0,
|
|
10701
|
+
"endIndex": 0
|
|
10702
|
+
}
|
|
10703
|
+
}
|
|
10704
|
+
],
|
|
10705
|
+
"name": "from"
|
|
10706
|
+
}
|
|
10707
|
+
],
|
|
10708
|
+
"extendsTokenRanges": []
|
|
10709
|
+
},
|
|
9809
10710
|
{
|
|
9810
10711
|
"kind": "Class",
|
|
9811
10712
|
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class",
|
|
@@ -10807,6 +11708,43 @@
|
|
|
10807
11708
|
"endIndex": 4
|
|
10808
11709
|
}
|
|
10809
11710
|
},
|
|
11711
|
+
{
|
|
11712
|
+
"kind": "Variable",
|
|
11713
|
+
"canonicalReference": "@microsoft/fast-element!fastElementRegistry:var",
|
|
11714
|
+
"docComment": "/**\n * The FAST custom element registry.\n *\n * @remarks\n *\n * This registry stores FAST element definitions by constructor so consumers can look up the `FASTElementDefinition` associated with an element type or instance.\n *\n * @public\n */\n",
|
|
11715
|
+
"excerptTokens": [
|
|
11716
|
+
{
|
|
11717
|
+
"kind": "Content",
|
|
11718
|
+
"text": "fastElementRegistry: "
|
|
11719
|
+
},
|
|
11720
|
+
{
|
|
11721
|
+
"kind": "Reference",
|
|
11722
|
+
"text": "TypeRegistry",
|
|
11723
|
+
"canonicalReference": "@microsoft/fast-element!TypeRegistry:interface"
|
|
11724
|
+
},
|
|
11725
|
+
{
|
|
11726
|
+
"kind": "Content",
|
|
11727
|
+
"text": "<"
|
|
11728
|
+
},
|
|
11729
|
+
{
|
|
11730
|
+
"kind": "Reference",
|
|
11731
|
+
"text": "FASTElementDefinition",
|
|
11732
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
11733
|
+
},
|
|
11734
|
+
{
|
|
11735
|
+
"kind": "Content",
|
|
11736
|
+
"text": ">"
|
|
11737
|
+
}
|
|
11738
|
+
],
|
|
11739
|
+
"fileUrlPath": "dist/dts/components/fast-definitions.d.ts",
|
|
11740
|
+
"isReadonly": true,
|
|
11741
|
+
"releaseTag": "Public",
|
|
11742
|
+
"name": "fastElementRegistry",
|
|
11743
|
+
"variableTypeTokenRange": {
|
|
11744
|
+
"startIndex": 1,
|
|
11745
|
+
"endIndex": 5
|
|
11746
|
+
}
|
|
11747
|
+
},
|
|
10810
11748
|
{
|
|
10811
11749
|
"kind": "TypeAlias",
|
|
10812
11750
|
"canonicalReference": "@microsoft/fast-element!FASTElementTemplateResolver:type",
|
|
@@ -11766,7 +12704,7 @@
|
|
|
11766
12704
|
{
|
|
11767
12705
|
"kind": "Property",
|
|
11768
12706
|
"canonicalReference": "@microsoft/fast-element!HTMLBindingDirective#dataBinding:member",
|
|
11769
|
-
"docComment": "",
|
|
12707
|
+
"docComment": "/**\n * The binding configuration to apply.\n */\n",
|
|
11770
12708
|
"excerptTokens": [
|
|
11771
12709
|
{
|
|
11772
12710
|
"kind": "Content",
|
|
@@ -11836,7 +12774,7 @@
|
|
|
11836
12774
|
{
|
|
11837
12775
|
"kind": "Reference",
|
|
11838
12776
|
"text": "DOMPolicy",
|
|
11839
|
-
"canonicalReference": "@microsoft/fast-element
|
|
12777
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
11840
12778
|
},
|
|
11841
12779
|
{
|
|
11842
12780
|
"kind": "Content",
|
|
@@ -15420,7 +16358,7 @@
|
|
|
15420
16358
|
},
|
|
15421
16359
|
{
|
|
15422
16360
|
"kind": "Content",
|
|
15423
|
-
"text": "<TSource, TReturn
|
|
16361
|
+
"text": "<TSource, TReturn>, initialSubscriber?: "
|
|
15424
16362
|
},
|
|
15425
16363
|
{
|
|
15426
16364
|
"kind": "Reference",
|
|
@@ -15438,7 +16376,7 @@
|
|
|
15438
16376
|
},
|
|
15439
16377
|
{
|
|
15440
16378
|
"kind": "Content",
|
|
15441
|
-
"text": "<TSource, TReturn
|
|
16379
|
+
"text": "<TSource, TReturn>;\n isVolatileBinding<TSource = any, TReturn = any>(expression: "
|
|
15442
16380
|
},
|
|
15443
16381
|
{
|
|
15444
16382
|
"kind": "Reference",
|
|
@@ -15447,7 +16385,7 @@
|
|
|
15447
16385
|
},
|
|
15448
16386
|
{
|
|
15449
16387
|
"kind": "Content",
|
|
15450
|
-
"text": "<
|
|
16388
|
+
"text": "<TSource, TReturn>): boolean;\n}>"
|
|
15451
16389
|
}
|
|
15452
16390
|
],
|
|
15453
16391
|
"fileUrlPath": "dist/dts/observation/observable.d.ts",
|
|
@@ -15564,7 +16502,7 @@
|
|
|
15564
16502
|
{
|
|
15565
16503
|
"kind": "Reference",
|
|
15566
16504
|
"text": "DOMPolicy",
|
|
15567
|
-
"canonicalReference": "@microsoft/fast-element
|
|
16505
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
15568
16506
|
},
|
|
15569
16507
|
{
|
|
15570
16508
|
"kind": "Content",
|
|
@@ -15657,7 +16595,7 @@
|
|
|
15657
16595
|
{
|
|
15658
16596
|
"kind": "Reference",
|
|
15659
16597
|
"text": "DOMPolicy",
|
|
15660
|
-
"canonicalReference": "@microsoft/fast-element
|
|
16598
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
15661
16599
|
},
|
|
15662
16600
|
{
|
|
15663
16601
|
"kind": "Content",
|
|
@@ -16790,6 +17728,14 @@
|
|
|
16790
17728
|
"kind": "Content",
|
|
16791
17729
|
"text": "any"
|
|
16792
17730
|
},
|
|
17731
|
+
{
|
|
17732
|
+
"kind": "Content",
|
|
17733
|
+
"text": ", TParent = "
|
|
17734
|
+
},
|
|
17735
|
+
{
|
|
17736
|
+
"kind": "Content",
|
|
17737
|
+
"text": "any"
|
|
17738
|
+
},
|
|
16793
17739
|
{
|
|
16794
17740
|
"kind": "Content",
|
|
16795
17741
|
"text": ">(propertyName: "
|
|
@@ -16806,12 +17752,16 @@
|
|
|
16806
17752
|
"kind": "Reference",
|
|
16807
17753
|
"text": "CaptureType",
|
|
16808
17754
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
17755
|
+
},
|
|
17756
|
+
{
|
|
17757
|
+
"kind": "Content",
|
|
17758
|
+
"text": "<TSource, TParent>"
|
|
16809
17759
|
}
|
|
16810
17760
|
],
|
|
16811
17761
|
"fileUrlPath": "dist/dts/templating/ref.d.ts",
|
|
16812
17762
|
"returnTypeTokenRange": {
|
|
16813
|
-
"startIndex":
|
|
16814
|
-
"endIndex":
|
|
17763
|
+
"startIndex": 7,
|
|
17764
|
+
"endIndex": 9
|
|
16815
17765
|
},
|
|
16816
17766
|
"releaseTag": "Public",
|
|
16817
17767
|
"overloadIndex": 1,
|
|
@@ -16819,8 +17769,8 @@
|
|
|
16819
17769
|
{
|
|
16820
17770
|
"parameterName": "propertyName",
|
|
16821
17771
|
"parameterTypeTokenRange": {
|
|
16822
|
-
"startIndex":
|
|
16823
|
-
"endIndex":
|
|
17772
|
+
"startIndex": 5,
|
|
17773
|
+
"endIndex": 6
|
|
16824
17774
|
},
|
|
16825
17775
|
"isOptional": false
|
|
16826
17776
|
}
|
|
@@ -16836,6 +17786,17 @@
|
|
|
16836
17786
|
"startIndex": 1,
|
|
16837
17787
|
"endIndex": 2
|
|
16838
17788
|
}
|
|
17789
|
+
},
|
|
17790
|
+
{
|
|
17791
|
+
"typeParameterName": "TParent",
|
|
17792
|
+
"constraintTokenRange": {
|
|
17793
|
+
"startIndex": 0,
|
|
17794
|
+
"endIndex": 0
|
|
17795
|
+
},
|
|
17796
|
+
"defaultTypeTokenRange": {
|
|
17797
|
+
"startIndex": 3,
|
|
17798
|
+
"endIndex": 4
|
|
17799
|
+
}
|
|
16839
17800
|
}
|
|
16840
17801
|
],
|
|
16841
17802
|
"name": "ref"
|
|
@@ -17187,6 +18148,10 @@
|
|
|
17187
18148
|
"text": "CaptureType",
|
|
17188
18149
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
17189
18150
|
},
|
|
18151
|
+
{
|
|
18152
|
+
"kind": "Content",
|
|
18153
|
+
"text": "<TSource, TParent>"
|
|
18154
|
+
},
|
|
17190
18155
|
{
|
|
17191
18156
|
"kind": "Content",
|
|
17192
18157
|
"text": ";"
|
|
@@ -17195,7 +18160,7 @@
|
|
|
17195
18160
|
"fileUrlPath": "dist/dts/templating/render.d.ts",
|
|
17196
18161
|
"returnTypeTokenRange": {
|
|
17197
18162
|
"startIndex": 27,
|
|
17198
|
-
"endIndex":
|
|
18163
|
+
"endIndex": 29
|
|
17199
18164
|
},
|
|
17200
18165
|
"releaseTag": "Public",
|
|
17201
18166
|
"overloadIndex": 1,
|
|
@@ -17984,6 +18949,10 @@
|
|
|
17984
18949
|
"text": "CaptureType",
|
|
17985
18950
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
17986
18951
|
},
|
|
18952
|
+
{
|
|
18953
|
+
"kind": "Content",
|
|
18954
|
+
"text": "<TSource, TParent>"
|
|
18955
|
+
},
|
|
17987
18956
|
{
|
|
17988
18957
|
"kind": "Content",
|
|
17989
18958
|
"text": ";"
|
|
@@ -17992,7 +18961,7 @@
|
|
|
17992
18961
|
"fileUrlPath": "dist/dts/templating/repeat.d.ts",
|
|
17993
18962
|
"returnTypeTokenRange": {
|
|
17994
18963
|
"startIndex": 31,
|
|
17995
|
-
"endIndex":
|
|
18964
|
+
"endIndex": 33
|
|
17996
18965
|
},
|
|
17997
18966
|
"releaseTag": "Public",
|
|
17998
18967
|
"overloadIndex": 1,
|
|
@@ -19165,7 +20134,7 @@
|
|
|
19165
20134
|
{
|
|
19166
20135
|
"kind": "Reference",
|
|
19167
20136
|
"text": "DOMPolicy",
|
|
19168
|
-
"canonicalReference": "@microsoft/fast-element
|
|
20137
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
19169
20138
|
},
|
|
19170
20139
|
{
|
|
19171
20140
|
"kind": "Content",
|
|
@@ -19292,6 +20261,14 @@
|
|
|
19292
20261
|
"kind": "Content",
|
|
19293
20262
|
"text": "any"
|
|
19294
20263
|
},
|
|
20264
|
+
{
|
|
20265
|
+
"kind": "Content",
|
|
20266
|
+
"text": ", TParent = "
|
|
20267
|
+
},
|
|
20268
|
+
{
|
|
20269
|
+
"kind": "Content",
|
|
20270
|
+
"text": "any"
|
|
20271
|
+
},
|
|
19295
20272
|
{
|
|
19296
20273
|
"kind": "Content",
|
|
19297
20274
|
"text": ">(propertyOrOptions: "
|
|
@@ -19318,6 +20295,10 @@
|
|
|
19318
20295
|
"text": "CaptureType",
|
|
19319
20296
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
19320
20297
|
},
|
|
20298
|
+
{
|
|
20299
|
+
"kind": "Content",
|
|
20300
|
+
"text": "<TSource, TParent>"
|
|
20301
|
+
},
|
|
19321
20302
|
{
|
|
19322
20303
|
"kind": "Content",
|
|
19323
20304
|
"text": ";"
|
|
@@ -19325,8 +20306,8 @@
|
|
|
19325
20306
|
],
|
|
19326
20307
|
"fileUrlPath": "dist/dts/templating/slotted.d.ts",
|
|
19327
20308
|
"returnTypeTokenRange": {
|
|
19328
|
-
"startIndex":
|
|
19329
|
-
"endIndex":
|
|
20309
|
+
"startIndex": 9,
|
|
20310
|
+
"endIndex": 11
|
|
19330
20311
|
},
|
|
19331
20312
|
"releaseTag": "Public",
|
|
19332
20313
|
"overloadIndex": 1,
|
|
@@ -19334,8 +20315,8 @@
|
|
|
19334
20315
|
{
|
|
19335
20316
|
"parameterName": "propertyOrOptions",
|
|
19336
20317
|
"parameterTypeTokenRange": {
|
|
19337
|
-
"startIndex":
|
|
19338
|
-
"endIndex":
|
|
20318
|
+
"startIndex": 5,
|
|
20319
|
+
"endIndex": 8
|
|
19339
20320
|
},
|
|
19340
20321
|
"isOptional": false
|
|
19341
20322
|
}
|
|
@@ -19351,6 +20332,17 @@
|
|
|
19351
20332
|
"startIndex": 1,
|
|
19352
20333
|
"endIndex": 2
|
|
19353
20334
|
}
|
|
20335
|
+
},
|
|
20336
|
+
{
|
|
20337
|
+
"typeParameterName": "TParent",
|
|
20338
|
+
"constraintTokenRange": {
|
|
20339
|
+
"startIndex": 0,
|
|
20340
|
+
"endIndex": 0
|
|
20341
|
+
},
|
|
20342
|
+
"defaultTypeTokenRange": {
|
|
20343
|
+
"startIndex": 3,
|
|
20344
|
+
"endIndex": 4
|
|
20345
|
+
}
|
|
19354
20346
|
}
|
|
19355
20347
|
],
|
|
19356
20348
|
"name": "slotted"
|
|
@@ -22809,6 +23801,10 @@
|
|
|
22809
23801
|
"text": "CaptureType",
|
|
22810
23802
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
22811
23803
|
},
|
|
23804
|
+
{
|
|
23805
|
+
"kind": "Content",
|
|
23806
|
+
"text": "<TSource, TParent>"
|
|
23807
|
+
},
|
|
22812
23808
|
{
|
|
22813
23809
|
"kind": "Content",
|
|
22814
23810
|
"text": ";"
|
|
@@ -22817,7 +23813,7 @@
|
|
|
22817
23813
|
"isOptional": false,
|
|
22818
23814
|
"returnTypeTokenRange": {
|
|
22819
23815
|
"startIndex": 1,
|
|
22820
|
-
"endIndex":
|
|
23816
|
+
"endIndex": 3
|
|
22821
23817
|
},
|
|
22822
23818
|
"releaseTag": "Public",
|
|
22823
23819
|
"overloadIndex": 1,
|
|
@@ -23166,6 +24162,10 @@
|
|
|
23166
24162
|
"text": "CaptureType",
|
|
23167
24163
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
23168
24164
|
},
|
|
24165
|
+
{
|
|
24166
|
+
"kind": "Content",
|
|
24167
|
+
"text": "<TSource, TParent>"
|
|
24168
|
+
},
|
|
23169
24169
|
{
|
|
23170
24170
|
"kind": "Content",
|
|
23171
24171
|
"text": ";"
|
|
@@ -23200,7 +24200,7 @@
|
|
|
23200
24200
|
],
|
|
23201
24201
|
"typeTokenRange": {
|
|
23202
24202
|
"startIndex": 3,
|
|
23203
|
-
"endIndex":
|
|
24203
|
+
"endIndex": 11
|
|
23204
24204
|
}
|
|
23205
24205
|
},
|
|
23206
24206
|
{
|
|
@@ -23275,7 +24275,7 @@
|
|
|
23275
24275
|
{
|
|
23276
24276
|
"kind": "Reference",
|
|
23277
24277
|
"text": "DOMPolicy",
|
|
23278
|
-
"canonicalReference": "@microsoft/fast-element
|
|
24278
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
23279
24279
|
},
|
|
23280
24280
|
{
|
|
23281
24281
|
"kind": "Content",
|
|
@@ -23503,6 +24503,228 @@
|
|
|
23503
24503
|
"endIndex": 5
|
|
23504
24504
|
}
|
|
23505
24505
|
},
|
|
24506
|
+
{
|
|
24507
|
+
"kind": "Interface",
|
|
24508
|
+
"canonicalReference": "@microsoft/fast-element!TypeDefinition:interface",
|
|
24509
|
+
"docComment": "/**\n * A type that can be registered with a `TypeRegistry`.\n *\n * @public\n */\n",
|
|
24510
|
+
"excerptTokens": [
|
|
24511
|
+
{
|
|
24512
|
+
"kind": "Content",
|
|
24513
|
+
"text": "export interface TypeDefinition "
|
|
24514
|
+
}
|
|
24515
|
+
],
|
|
24516
|
+
"fileUrlPath": "dist/dts/platform.d.ts",
|
|
24517
|
+
"releaseTag": "Public",
|
|
24518
|
+
"name": "TypeDefinition",
|
|
24519
|
+
"preserveMemberOrder": false,
|
|
24520
|
+
"members": [
|
|
24521
|
+
{
|
|
24522
|
+
"kind": "PropertySignature",
|
|
24523
|
+
"canonicalReference": "@microsoft/fast-element!TypeDefinition#type:member",
|
|
24524
|
+
"docComment": "/**\n * The registered type constructor.\n */\n",
|
|
24525
|
+
"excerptTokens": [
|
|
24526
|
+
{
|
|
24527
|
+
"kind": "Content",
|
|
24528
|
+
"text": "type: "
|
|
24529
|
+
},
|
|
24530
|
+
{
|
|
24531
|
+
"kind": "Reference",
|
|
24532
|
+
"text": "Function",
|
|
24533
|
+
"canonicalReference": "!Function:interface"
|
|
24534
|
+
},
|
|
24535
|
+
{
|
|
24536
|
+
"kind": "Content",
|
|
24537
|
+
"text": ";"
|
|
24538
|
+
}
|
|
24539
|
+
],
|
|
24540
|
+
"isReadonly": false,
|
|
24541
|
+
"isOptional": false,
|
|
24542
|
+
"releaseTag": "Public",
|
|
24543
|
+
"name": "type",
|
|
24544
|
+
"propertyTypeTokenRange": {
|
|
24545
|
+
"startIndex": 1,
|
|
24546
|
+
"endIndex": 2
|
|
24547
|
+
}
|
|
24548
|
+
}
|
|
24549
|
+
],
|
|
24550
|
+
"extendsTokenRanges": []
|
|
24551
|
+
},
|
|
24552
|
+
{
|
|
24553
|
+
"kind": "Interface",
|
|
24554
|
+
"canonicalReference": "@microsoft/fast-element!TypeRegistry:interface",
|
|
24555
|
+
"docComment": "/**\n * A registry that stores definitions by type.\n *\n * @public\n */\n",
|
|
24556
|
+
"excerptTokens": [
|
|
24557
|
+
{
|
|
24558
|
+
"kind": "Content",
|
|
24559
|
+
"text": "export interface TypeRegistry<TDefinition extends "
|
|
24560
|
+
},
|
|
24561
|
+
{
|
|
24562
|
+
"kind": "Reference",
|
|
24563
|
+
"text": "TypeDefinition",
|
|
24564
|
+
"canonicalReference": "@microsoft/fast-element!TypeDefinition:interface"
|
|
24565
|
+
},
|
|
24566
|
+
{
|
|
24567
|
+
"kind": "Content",
|
|
24568
|
+
"text": "> "
|
|
24569
|
+
}
|
|
24570
|
+
],
|
|
24571
|
+
"fileUrlPath": "dist/dts/platform.d.ts",
|
|
24572
|
+
"releaseTag": "Public",
|
|
24573
|
+
"typeParameters": [
|
|
24574
|
+
{
|
|
24575
|
+
"typeParameterName": "TDefinition",
|
|
24576
|
+
"constraintTokenRange": {
|
|
24577
|
+
"startIndex": 1,
|
|
24578
|
+
"endIndex": 2
|
|
24579
|
+
},
|
|
24580
|
+
"defaultTypeTokenRange": {
|
|
24581
|
+
"startIndex": 0,
|
|
24582
|
+
"endIndex": 0
|
|
24583
|
+
}
|
|
24584
|
+
}
|
|
24585
|
+
],
|
|
24586
|
+
"name": "TypeRegistry",
|
|
24587
|
+
"preserveMemberOrder": false,
|
|
24588
|
+
"members": [
|
|
24589
|
+
{
|
|
24590
|
+
"kind": "MethodSignature",
|
|
24591
|
+
"canonicalReference": "@microsoft/fast-element!TypeRegistry#getByType:member(1)",
|
|
24592
|
+
"docComment": "/**\n * Gets a definition by type.\n *\n * @param key - The type to retrieve the definition for.\n */\n",
|
|
24593
|
+
"excerptTokens": [
|
|
24594
|
+
{
|
|
24595
|
+
"kind": "Content",
|
|
24596
|
+
"text": "getByType(key: "
|
|
24597
|
+
},
|
|
24598
|
+
{
|
|
24599
|
+
"kind": "Reference",
|
|
24600
|
+
"text": "Function",
|
|
24601
|
+
"canonicalReference": "!Function:interface"
|
|
24602
|
+
},
|
|
24603
|
+
{
|
|
24604
|
+
"kind": "Content",
|
|
24605
|
+
"text": "): "
|
|
24606
|
+
},
|
|
24607
|
+
{
|
|
24608
|
+
"kind": "Content",
|
|
24609
|
+
"text": "TDefinition | undefined"
|
|
24610
|
+
},
|
|
24611
|
+
{
|
|
24612
|
+
"kind": "Content",
|
|
24613
|
+
"text": ";"
|
|
24614
|
+
}
|
|
24615
|
+
],
|
|
24616
|
+
"isOptional": false,
|
|
24617
|
+
"returnTypeTokenRange": {
|
|
24618
|
+
"startIndex": 3,
|
|
24619
|
+
"endIndex": 4
|
|
24620
|
+
},
|
|
24621
|
+
"releaseTag": "Public",
|
|
24622
|
+
"overloadIndex": 1,
|
|
24623
|
+
"parameters": [
|
|
24624
|
+
{
|
|
24625
|
+
"parameterName": "key",
|
|
24626
|
+
"parameterTypeTokenRange": {
|
|
24627
|
+
"startIndex": 1,
|
|
24628
|
+
"endIndex": 2
|
|
24629
|
+
},
|
|
24630
|
+
"isOptional": false
|
|
24631
|
+
}
|
|
24632
|
+
],
|
|
24633
|
+
"name": "getByType"
|
|
24634
|
+
},
|
|
24635
|
+
{
|
|
24636
|
+
"kind": "MethodSignature",
|
|
24637
|
+
"canonicalReference": "@microsoft/fast-element!TypeRegistry#getForInstance:member(1)",
|
|
24638
|
+
"docComment": "/**\n * Gets a definition by instance.\n *\n * @param object - The instance to retrieve the definition for.\n */\n",
|
|
24639
|
+
"excerptTokens": [
|
|
24640
|
+
{
|
|
24641
|
+
"kind": "Content",
|
|
24642
|
+
"text": "getForInstance(object: "
|
|
24643
|
+
},
|
|
24644
|
+
{
|
|
24645
|
+
"kind": "Content",
|
|
24646
|
+
"text": "any"
|
|
24647
|
+
},
|
|
24648
|
+
{
|
|
24649
|
+
"kind": "Content",
|
|
24650
|
+
"text": "): "
|
|
24651
|
+
},
|
|
24652
|
+
{
|
|
24653
|
+
"kind": "Content",
|
|
24654
|
+
"text": "TDefinition | undefined"
|
|
24655
|
+
},
|
|
24656
|
+
{
|
|
24657
|
+
"kind": "Content",
|
|
24658
|
+
"text": ";"
|
|
24659
|
+
}
|
|
24660
|
+
],
|
|
24661
|
+
"isOptional": false,
|
|
24662
|
+
"returnTypeTokenRange": {
|
|
24663
|
+
"startIndex": 3,
|
|
24664
|
+
"endIndex": 4
|
|
24665
|
+
},
|
|
24666
|
+
"releaseTag": "Public",
|
|
24667
|
+
"overloadIndex": 1,
|
|
24668
|
+
"parameters": [
|
|
24669
|
+
{
|
|
24670
|
+
"parameterName": "object",
|
|
24671
|
+
"parameterTypeTokenRange": {
|
|
24672
|
+
"startIndex": 1,
|
|
24673
|
+
"endIndex": 2
|
|
24674
|
+
},
|
|
24675
|
+
"isOptional": false
|
|
24676
|
+
}
|
|
24677
|
+
],
|
|
24678
|
+
"name": "getForInstance"
|
|
24679
|
+
},
|
|
24680
|
+
{
|
|
24681
|
+
"kind": "MethodSignature",
|
|
24682
|
+
"canonicalReference": "@microsoft/fast-element!TypeRegistry#register:member(1)",
|
|
24683
|
+
"docComment": "/**\n * Registers a type definition.\n *\n * @param definition - The type definition to register.\n *\n * @returns `true` when the definition was registered, otherwise `false`.\n */\n",
|
|
24684
|
+
"excerptTokens": [
|
|
24685
|
+
{
|
|
24686
|
+
"kind": "Content",
|
|
24687
|
+
"text": "register(definition: "
|
|
24688
|
+
},
|
|
24689
|
+
{
|
|
24690
|
+
"kind": "Content",
|
|
24691
|
+
"text": "TDefinition"
|
|
24692
|
+
},
|
|
24693
|
+
{
|
|
24694
|
+
"kind": "Content",
|
|
24695
|
+
"text": "): "
|
|
24696
|
+
},
|
|
24697
|
+
{
|
|
24698
|
+
"kind": "Content",
|
|
24699
|
+
"text": "boolean"
|
|
24700
|
+
},
|
|
24701
|
+
{
|
|
24702
|
+
"kind": "Content",
|
|
24703
|
+
"text": ";"
|
|
24704
|
+
}
|
|
24705
|
+
],
|
|
24706
|
+
"isOptional": false,
|
|
24707
|
+
"returnTypeTokenRange": {
|
|
24708
|
+
"startIndex": 3,
|
|
24709
|
+
"endIndex": 4
|
|
24710
|
+
},
|
|
24711
|
+
"releaseTag": "Public",
|
|
24712
|
+
"overloadIndex": 1,
|
|
24713
|
+
"parameters": [
|
|
24714
|
+
{
|
|
24715
|
+
"parameterName": "definition",
|
|
24716
|
+
"parameterTypeTokenRange": {
|
|
24717
|
+
"startIndex": 1,
|
|
24718
|
+
"endIndex": 2
|
|
24719
|
+
},
|
|
24720
|
+
"isOptional": false
|
|
24721
|
+
}
|
|
24722
|
+
],
|
|
24723
|
+
"name": "register"
|
|
24724
|
+
}
|
|
24725
|
+
],
|
|
24726
|
+
"extendsTokenRanges": []
|
|
24727
|
+
},
|
|
23506
24728
|
{
|
|
23507
24729
|
"kind": "Interface",
|
|
23508
24730
|
"canonicalReference": "@microsoft/fast-element!UpdateQueue:interface",
|
|
@@ -24248,7 +25470,7 @@
|
|
|
24248
25470
|
{
|
|
24249
25471
|
"kind": "Reference",
|
|
24250
25472
|
"text": "DOMPolicy",
|
|
24251
|
-
"canonicalReference": "@microsoft/fast-element
|
|
25473
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
24252
25474
|
},
|
|
24253
25475
|
{
|
|
24254
25476
|
"kind": "Content",
|
|
@@ -24954,7 +26176,7 @@
|
|
|
24954
26176
|
{
|
|
24955
26177
|
"kind": "Reference",
|
|
24956
26178
|
"text": "DOMPolicy",
|
|
24957
|
-
"canonicalReference": "@microsoft/fast-element
|
|
26179
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
24958
26180
|
},
|
|
24959
26181
|
{
|
|
24960
26182
|
"kind": "Content",
|
|
@@ -25098,7 +26320,7 @@
|
|
|
25098
26320
|
{
|
|
25099
26321
|
"kind": "Reference",
|
|
25100
26322
|
"text": "DOMPolicy",
|
|
25101
|
-
"canonicalReference": "@microsoft/fast-element
|
|
26323
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
25102
26324
|
},
|
|
25103
26325
|
{
|
|
25104
26326
|
"kind": "Content",
|
|
@@ -25273,6 +26495,10 @@
|
|
|
25273
26495
|
"text": "CaptureType",
|
|
25274
26496
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
25275
26497
|
},
|
|
26498
|
+
{
|
|
26499
|
+
"kind": "Content",
|
|
26500
|
+
"text": "<TSource, TParent>"
|
|
26501
|
+
},
|
|
25276
26502
|
{
|
|
25277
26503
|
"kind": "Content",
|
|
25278
26504
|
"text": ";"
|
|
@@ -25281,7 +26507,7 @@
|
|
|
25281
26507
|
"isStatic": false,
|
|
25282
26508
|
"returnTypeTokenRange": {
|
|
25283
26509
|
"startIndex": 1,
|
|
25284
|
-
"endIndex":
|
|
26510
|
+
"endIndex": 3
|
|
25285
26511
|
},
|
|
25286
26512
|
"releaseTag": "Public",
|
|
25287
26513
|
"isProtected": false,
|
|
@@ -25390,7 +26616,7 @@
|
|
|
25390
26616
|
{
|
|
25391
26617
|
"kind": "Reference",
|
|
25392
26618
|
"text": "DOMPolicy",
|
|
25393
|
-
"canonicalReference": "@microsoft/fast-element
|
|
26619
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
25394
26620
|
},
|
|
25395
26621
|
{
|
|
25396
26622
|
"kind": "Content",
|
|
@@ -25703,6 +26929,10 @@
|
|
|
25703
26929
|
"text": "CaptureType",
|
|
25704
26930
|
"canonicalReference": "@microsoft/fast-element!CaptureType:interface"
|
|
25705
26931
|
},
|
|
26932
|
+
{
|
|
26933
|
+
"kind": "Content",
|
|
26934
|
+
"text": "<TSource, TParent>"
|
|
26935
|
+
},
|
|
25706
26936
|
{
|
|
25707
26937
|
"kind": "Content",
|
|
25708
26938
|
"text": ";"
|
|
@@ -25711,7 +26941,7 @@
|
|
|
25711
26941
|
"fileUrlPath": "dist/dts/templating/when.d.ts",
|
|
25712
26942
|
"returnTypeTokenRange": {
|
|
25713
26943
|
"startIndex": 24,
|
|
25714
|
-
"endIndex":
|
|
26944
|
+
"endIndex": 26
|
|
25715
26945
|
},
|
|
25716
26946
|
"releaseTag": "Public",
|
|
25717
26947
|
"overloadIndex": 1,
|