@microsoft/fast-element 2.8.4 → 2.9.0
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.json +31 -1
- package/CHANGELOG.md +18 -2
- package/dist/dts/components/element-controller.d.ts +4 -5
- package/dist/dts/components/hydration.d.ts +20 -1
- package/dist/dts/index.d.ts +2 -1
- package/dist/esm/components/element-controller.js +6 -9
- package/dist/esm/components/hydration.js +48 -2
- package/dist/esm/debug.js +3 -0
- package/dist/esm/hydration/target-builder.js +2 -2
- package/dist/esm/index.js +2 -1
- package/dist/fast-element.api.json +323 -3
- package/dist/fast-element.debug.js +54 -13
- package/dist/fast-element.debug.min.js +2 -2
- package/dist/fast-element.js +51 -13
- package/dist/fast-element.min.js +2 -2
- package/dist/fast-element.untrimmed.d.ts +94 -1
- package/docs/api-report.api.md +21 -1
- package/package.json +1 -1
package/docs/api-report.api.md
CHANGED
|
@@ -240,7 +240,7 @@ export function customElement(nameOrDef: string | PartialFASTElementDefinition):
|
|
|
240
240
|
// @public
|
|
241
241
|
export type DecoratorAttributeConfiguration = Omit<AttributeConfiguration, "property">;
|
|
242
242
|
|
|
243
|
-
// @
|
|
243
|
+
// @beta
|
|
244
244
|
export const deferHydrationAttribute = "defer-hydration";
|
|
245
245
|
|
|
246
246
|
// @public
|
|
@@ -640,6 +640,26 @@ export class InlineTemplateDirective implements HTMLDirective {
|
|
|
640
640
|
static readonly empty: InlineTemplateDirective;
|
|
641
641
|
}
|
|
642
642
|
|
|
643
|
+
// Warning: (ae-forgotten-export) The symbol "HydrationView" needs to be exported by the entry point index.d.ts
|
|
644
|
+
//
|
|
645
|
+
// @beta
|
|
646
|
+
export function isHydratable(view: ViewController): view is HydrationView;
|
|
647
|
+
|
|
648
|
+
// Warning: (ae-forgotten-export) The symbol "HydratableSyntheticViewTemplate" needs to be exported by the entry point index.d.ts
|
|
649
|
+
//
|
|
650
|
+
// @beta (undocumented)
|
|
651
|
+
export function isHydratable<TSource = any, TParent = any>(template: SyntheticViewTemplate<TSource, TParent>): template is HydratableSyntheticViewTemplate<TSource, TParent>;
|
|
652
|
+
|
|
653
|
+
// Warning: (ae-forgotten-export) The symbol "HydratableElementViewTemplate" needs to be exported by the entry point index.d.ts
|
|
654
|
+
//
|
|
655
|
+
// @beta (undocumented)
|
|
656
|
+
export function isHydratable<TSource = any, TParent = any>(template: ElementViewTemplate<TSource, TParent>): template is HydratableElementViewTemplate<TSource, TParent>;
|
|
657
|
+
|
|
658
|
+
// Warning: (ae-forgotten-export) The symbol "HydratableContentTemplate" needs to be exported by the entry point index.d.ts
|
|
659
|
+
//
|
|
660
|
+
// @beta (undocumented)
|
|
661
|
+
export function isHydratable(template: ContentTemplate): template is HydratableContentTemplate;
|
|
662
|
+
|
|
643
663
|
// @public
|
|
644
664
|
export interface LengthObserver extends Subscriber {
|
|
645
665
|
length: number;
|