@symbiote-native/angular 2.0.1 → 3.0.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/README.md +5 -4
- package/babel-register-composed.cjs +0 -8
- package/build/angular/callback-host.d.ts +25 -0
- package/build/angular/callback-host.js +211 -0
- package/build/angular/callback-host.js.map +1 -0
- package/build/angular/change-detection-flush.d.ts +14 -2
- package/build/angular/change-detection-flush.js +54 -6
- package/build/angular/change-detection-flush.js.map +1 -1
- package/build/angular/components/flat-list/index.js +39 -86
- package/build/angular/components/flat-list/index.js.map +1 -1
- package/build/angular/components/image-shared.js +49 -110
- package/build/angular/components/image-shared.js.map +1 -1
- package/build/angular/components/keyboard-avoiding-view/index.js +33 -72
- package/build/angular/components/keyboard-avoiding-view/index.js.map +1 -1
- package/build/angular/components/modal/index.js +58 -103
- package/build/angular/components/modal/index.js.map +1 -1
- package/build/angular/components/pressable-props.d.ts +2 -0
- package/build/angular/components/section-list/index.js +20 -103
- package/build/angular/components/section-list/index.js.map +1 -1
- package/build/angular/components/touchable-props.d.ts +1 -0
- package/build/angular/components/virtualized-list/directives.js +32 -22
- package/build/angular/components/virtualized-list/directives.js.map +1 -1
- package/build/angular/components/virtualized-list/index.d.ts +7 -1
- package/build/angular/components/virtualized-list/index.js +350 -359
- package/build/angular/components/virtualized-list/index.js.map +1 -1
- package/build/angular/components/virtualized-section-list/directives.js +20 -12
- package/build/angular/components/virtualized-section-list/directives.js.map +1 -1
- package/build/angular/components/virtualized-section-list/index.js +36 -142
- package/build/angular/components/virtualized-section-list/index.js.map +1 -1
- package/build/angular/components.d.ts +1 -1
- package/build/angular/components.js +1 -1
- package/build/angular/components.js.map +1 -1
- package/build/angular/create-portal/index.js +9 -8
- package/build/angular/create-portal/index.js.map +1 -1
- package/build/angular/create-tunnel/index.js +13 -12
- package/build/angular/create-tunnel/index.js.map +1 -1
- package/build/angular/descriptor-to-angular/index.js +6 -6
- package/build/angular/descriptor-to-angular/index.js.map +1 -1
- package/build/angular/diagnostics.d.ts +13 -0
- package/build/angular/diagnostics.js +18 -0
- package/build/angular/diagnostics.js.map +1 -1
- package/build/angular/element-props.d.ts +1 -3
- package/build/angular/elements.d.ts +46 -32
- package/build/angular/elements.js +217 -434
- package/build/angular/elements.js.map +1 -1
- package/build/angular/index.d.ts +3 -1
- package/build/angular/index.js +44 -13
- package/build/angular/index.js.map +1 -1
- package/build/angular/modules/animated/animated-leaf-binder.js +0 -2
- package/build/angular/modules/animated/animated-leaf-binder.js.map +1 -1
- package/build/angular/modules/animated/create-animated-component.js +69 -74
- package/build/angular/modules/animated/create-animated-component.js.map +1 -1
- package/build/angular/modules/animated/index.d.ts +30 -19
- package/build/angular/modules/status-bar/index.js +2 -8
- package/build/angular/modules/status-bar/index.js.map +1 -1
- package/build/angular/primitives/index.d.ts +14 -28
- package/build/angular/primitives/index.js +44 -107
- package/build/angular/primitives/index.js.map +1 -1
- package/build/angular/primitives/shared.d.ts +1 -0
- package/build/angular/primitives/shared.js +47 -32
- package/build/angular/primitives/shared.js.map +1 -1
- package/build/angular/render/index.js +34 -1
- package/build/angular/render/index.js.map +1 -1
- package/build/angular/renderer/index.d.ts +56 -0
- package/build/angular/renderer/index.js +295 -114
- package/build/angular/renderer/index.js.map +1 -1
- package/build/angular/runtime-matching.d.ts +9 -0
- package/build/angular/runtime-matching.js +82 -0
- package/build/angular/runtime-matching.js.map +1 -0
- package/build/angular/services/color-scheme.service.js +4 -4
- package/build/angular/services/color-scheme.service.js.map +1 -1
- package/build/angular/services/window-dimensions.service.js +4 -4
- package/build/angular/services/window-dimensions.service.js.map +1 -1
- package/build/angular/style-host.d.ts +11 -0
- package/build/angular/style-host.js +86 -0
- package/build/angular/style-host.js.map +1 -0
- package/package.json +5 -5
- package/src/callback-host.ts +229 -0
- package/src/change-detection-flush.ts +62 -9
- package/src/components/flat-list/index.ts +2 -1
- package/src/components/keyboard-avoiding-view/index.ts +8 -0
- package/src/components/pressable-props.ts +8 -0
- package/src/components/touchable-props.ts +4 -0
- package/src/components/virtualized-list/index.ts +98 -45
- package/src/components.ts +0 -2
- package/src/diagnostics.ts +18 -0
- package/src/element-props.ts +1 -5
- package/src/elements.ts +159 -38
- package/src/index.ts +47 -14
- package/src/primitives/index.ts +14 -70
- package/src/primitives/shared.ts +21 -6
- package/src/render/index.ts +44 -0
- package/src/renderer/index.ts +347 -104
- package/src/runtime-matching.ts +80 -0
- package/src/style-host.ts +94 -0
- package/tsconfig.angular.base.json +11 -0
|
@@ -56,17 +56,18 @@ let nextTunnelEntryId = 0;
|
|
|
56
56
|
* wherever it's mounted, any surface. Combine with `@if` for conditional visibility, exactly
|
|
57
57
|
* like `*ngIf`. */
|
|
58
58
|
export class TunnelInDirective {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
constructor() {
|
|
60
|
+
this.templateRef = inject(TemplateRef);
|
|
61
|
+
this.id = nextTunnelEntryId++;
|
|
62
|
+
}
|
|
62
63
|
ngOnInit() {
|
|
63
64
|
this.tunnelIn.register(this.id, this.templateRef);
|
|
64
65
|
}
|
|
65
66
|
ngOnDestroy() {
|
|
66
67
|
this.tunnelIn.unregister(this.id);
|
|
67
68
|
}
|
|
68
|
-
static
|
|
69
|
-
static
|
|
69
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: TunnelInDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
70
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.8", type: TunnelInDirective, isStandalone: true, selector: "[tunnelIn]", inputs: { tunnelIn: "tunnelIn" }, ngImport: i0 }); }
|
|
70
71
|
}
|
|
71
72
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: TunnelInDirective, decorators: [{
|
|
72
73
|
type: Directive,
|
|
@@ -78,11 +79,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImpor
|
|
|
78
79
|
/** Renders everything currently registered on `tunnel`, in registration order. Mount this in
|
|
79
80
|
* the component that should actually paint the content — the tunnel's own `<router-outlet>`. */
|
|
80
81
|
export class TunnelOut {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
82
|
+
constructor() {
|
|
83
|
+
this.viewContainerRef = inject(ViewContainerRef);
|
|
84
|
+
this.injector = inject(Injector);
|
|
85
|
+
this.views = new Map();
|
|
86
|
+
}
|
|
86
87
|
ngOnInit() {
|
|
87
88
|
const ref = effect(() => this.sync(this.tunnel.entries()), { ...(ngDevMode ? { debugName: "ref" } : /* istanbul ignore next */ {}), injector: this.injector });
|
|
88
89
|
this.stopEffect = () => ref.destroy();
|
|
@@ -106,8 +107,8 @@ export class TunnelOut {
|
|
|
106
107
|
this.views.set(id, this.viewContainerRef.createEmbeddedView(templateRef));
|
|
107
108
|
}
|
|
108
109
|
}
|
|
109
|
-
static
|
|
110
|
-
static
|
|
110
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: TunnelOut, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
111
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.8", type: TunnelOut, isStandalone: true, selector: "tunnel-out", inputs: { tunnel: "tunnel" }, ngImport: i0, template: '', isInline: true }); }
|
|
111
112
|
}
|
|
112
113
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: TunnelOut, decorators: [{
|
|
113
114
|
type: Component,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/create-tunnel/index.ts"],"names":[],"mappings":"AAAA,qGAAqG;AACrG,wFAAwF;AACxF,8FAA8F;AAC9F,kGAAkG;AAClG,gGAAgG;AAChG,0FAA0F;AAC1F,EAAE;AACF,6FAA6F;AAC7F,kGAAkG;AAClG,8FAA8F;AAC9F,wFAAwF;AACxF,yFAAyF;AACzF,gGAAgG;AAChG,4FAA4F;AAC5F,EAAE;AACF,gGAAgG;AAChG,kGAAkG;AAClG,iFAAiF;AACjF,oEAAoE;AACpE,EAAE;AACF,2FAA2F;AAC3F,yFAAyF;AACzF,6DAA6D;AAC7D,yBAAyB;AACzB,4DAA4D;AAC5D,MAAM;AACN,MAAM;AACN,4CAA4C;AAC5C,kGAAkG;AAClG,iGAAiG;AACjG,iGAAiG;AACjG,uBAAuB;AAEvB,OAAO,EACL,SAAS,EACT,SAAS,EACT,MAAM,EACN,MAAM,EACN,QAAQ,EACR,KAAK,EACL,MAAM,EACN,WAAW,EACX,gBAAgB,GAKjB,MAAM,eAAe,CAAC;;AAQvB,MAAM,UAAU,YAAY;IAC1B,MAAM,KAAK,GAAG,MAAM,CAA4C,IAAI,GAAG,EAAE;8EAAC,CAAC;IAE3E,OAAO;QACL,OAAO,EAAE,KAAK,CAAC,UAAU,EAAE;QAC3B,QAAQ,CAAC,EAAE,EAAE,WAAW;YACtB,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;QACzD,CAAC;QACD,UAAU,CAAC,EAAE;YACX,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;gBACjB,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;oBAAE,OAAO,GAAG,CAAC;gBAC7B,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,CAAC;gBAC1B,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;gBAChB,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;QACL,CAAC;KACF,CAAC;AACJ,CAAC;AAED,IAAI,iBAAiB,GAAG,CAAC,CAAC;AAE1B;;oBAEoB;AAEpB,MAAM,OAAO,iBAAiB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/create-tunnel/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
import { ChangeDetectionStrategy, Component, ElementRef, inject, Input, Renderer2, } from '@angular/core';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export class DescriptorOutlet {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
constructor() {
|
|
10
|
+
this.renderer = inject(Renderer2);
|
|
11
|
+
this.hostNode = inject(ElementRef).nativeElement;
|
|
12
|
+
}
|
|
13
13
|
ngOnChanges(changes) {
|
|
14
14
|
if (!('node' in changes) || this.node === undefined)
|
|
15
15
|
return;
|
|
@@ -123,8 +123,8 @@ export class DescriptorOutlet {
|
|
|
123
123
|
this.renderer.insertBefore(parent, newChild, oldChild);
|
|
124
124
|
this.renderer.removeChild(parent, oldChild);
|
|
125
125
|
}
|
|
126
|
-
static
|
|
127
|
-
static
|
|
126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: DescriptorOutlet, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
127
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.8", type: DescriptorOutlet, isStandalone: true, selector: "symbiote-descriptor-outlet", inputs: { node: "node" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
128
128
|
}
|
|
129
129
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.8", ngImport: i0, type: DescriptorOutlet, decorators: [{
|
|
130
130
|
type: Component,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/descriptor-to-angular/index.ts"],"names":[],"mappings":"AAAA,0FAA0F;AAC1F,4FAA4F;AAC5F,6FAA6F;AAC7F,+FAA+F;AAC/F,oCAAoC;AAEpC,OAAO,EACL,uBAAuB,EACvB,SAAS,EACT,UAAU,EACV,MAAM,EACN,KAAK,EACL,SAAS,GAIV,MAAM,eAAe,CAAC;;AA4BvB,MAAM,OAAO,gBAAgB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/descriptor-to-angular/index.ts"],"names":[],"mappings":"AAAA,0FAA0F;AAC1F,4FAA4F;AAC5F,6FAA6F;AAC7F,+FAA+F;AAC/F,oCAAoC;AAEpC,OAAO,EACL,uBAAuB,EACvB,SAAS,EACT,UAAU,EACV,MAAM,EACN,KAAK,EACL,SAAS,GAIV,MAAM,eAAe,CAAC;;AA4BvB,MAAM,OAAO,gBAAgB;IAN7B;QASmB,aAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;QAC7B,aAAQ,GACvB,MAAM,CAAsB,UAAU,CAAC,CAAC,aAAa,CAAC;KA6JzD;IA1JC,WAAW,CAAC,OAAsB;QAChC,IAAI,CAAC,CAAC,MAAM,IAAI,OAAO,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS;YAAE,OAAO;QAC5D,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC;IAED,WAAW;QACT,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS;YAAE,OAAO;QACxC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC7D,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;IAC5B,CAAC;IAEO,SAAS,CACf,QAAsC,EACtC,IAAiB;QAEjB,IAAI,QAAQ,KAAK,SAAS,EAAE,CAAC;YAC3B,MAAM,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YACzC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;YACvD,OAAO,OAAO,CAAC;QACjB,CAAC;QACD,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;IAEO,WAAW,CAAC,KAAuB;QACzC,OAAO,OAAO,KAAK,KAAK,QAAQ;YAC9B,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC;YACxB,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAChC,CAAC;IAEO,UAAU,CAAC,KAAa;QAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC;IACxE,CAAC;IAEO,aAAa,CAAC,UAAuB;QAC3C,MAAM,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1D,MAAM,KAAK,GAAG,EAAE,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC;QACtC,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;YACjD,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;QAC9C,CAAC;QAED,MAAM,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC;QAC3E,KAAK,MAAM,KAAK,IAAI,QAAQ,EAAE,CAAC;YAC7B,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;QAC9C,CAAC;QAED,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;IAChE,CAAC;IAEO,UAAU,CAChB,MAAe,EACf,QAAwB,EACxB,IAAsB;QAEtB,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE,CAAC;YAC7B,IAAI,QAAQ,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;gBAC7B,IAAI,QAAQ,CAAC,KAAK,KAAK,IAAI,EAAE,CAAC;oBAC5B,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBAC5C,QAAQ,CAAC,KAAK,GAAG,IAAI,CAAC;gBACxB,CAAC;gBACD,OAAO,QAAQ,CAAC;YAClB,CAAC;YACD,MAAM,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;YAC3D,OAAO,WAAW,CAAC;QACrB,CAAC;QAED,IAAI,QAAQ,CAAC,IAAI,KAAK,SAAS,EAAE,CAAC;YAChC,OAAO,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;QACnD,CAAC;QACD,MAAM,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;QAC7C,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;QAC3D,OAAO,WAAW,CAAC;IACrB,CAAC;IAEO,YAAY,CAClB,MAAe,EACf,QAA0B,EAC1B,IAAiB;QAEjB,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,CAAC;YAC5C,MAAM,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YAC7C,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;YAC3D,OAAO,WAAW,CAAC;QACrB,CAAC;QAED,IAAI,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC;QACtC,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC,aAAa,CACpC,QAAQ,CAAC,IAAI,EACb,QAAQ,CAAC,QAAQ,EACjB,IAAI,CAAC,QAAQ,CACd,CAAC;QACF,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;QAC3B,OAAO,QAAQ,CAAC;IAClB,CAAC;IAEO,UAAU,CAChB,QAA0B,EAC1B,SAAkC;QAElC,MAAM,SAAS,GAAG,QAAQ,CAAC,KAAK,CAAC;QACjC,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACzC,IAAI,CAAC,CAAC,GAAG,IAAI,SAAS,CAAC,EAAE,CAAC;gBACxB,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,SAAS,CAAC,CAAC;YAC3D,CAAC;QACH,CAAC;QACD,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC;YACrD,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,EAAE,CAAC;gBACtC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;YACvD,CAAC;QACH,CAAC;QACD,QAAQ,CAAC,KAAK,GAAG,EAAE,GAAG,SAAS,EAAE,CAAC;IACpC,CAAC;IAEO,aAAa,CACnB,MAAe,EACf,gBAAkC,EAClC,YAAgC;QAEhC,MAAM,YAAY,GAAqB,EAAE,CAAC;QAC1C,MAAM,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC,MAAM,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;QAEtE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAChC,MAAM,QAAQ,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;YACrC,MAAM,IAAI,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,QAAQ,KAAK,SAAS,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;gBACjD,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC;YAC7D,CAAC;QACH,CAAC;QAED,KAAK,IAAI,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAClD,MAAM,IAAI,GAAG,YAAY,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,IAAI,KAAK,SAAS;gBAAE,SAAS;YACjC,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;YAC9C,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC3B,CAAC;QAED,KAAK,IAAI,CAAC,GAAG,MAAM,EAAE,CAAC,GAAG,gBAAgB,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YACtD,MAAM,QAAQ,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;YACrC,IAAI,QAAQ,KAAK,SAAS;gBACxB,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;QACrD,CAAC;QAED,OAAO,YAAY,CAAC;IACtB,CAAC;IAEO,YAAY,CAClB,MAAe,EACf,QAAiB,EACjB,QAAiB;QAEjB,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;QACvD,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IAC9C,CAAC;8GAjKU,gBAAgB;kGAAhB,gBAAgB,qIAHjB,EAAE;;2FAGD,gBAAgB;kBAN5B,SAAS;mBAAC;oBACT,QAAQ,EAAE,4BAA4B;oBACtC,UAAU,EAAE,IAAI;oBAChB,QAAQ,EAAE,EAAE;oBACZ,eAAe,EAAE,uBAAuB,CAAC,MAAM;iBAChD;;sBAEE,KAAK;uBAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;;AAmK3B,SAAS,WAAW,CAAC,IAAiB,EAAE,IAAiB;IACvD,OAAO,IAAI,CAAC,IAAI,KAAK,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,IAAI,CAAC,GAAG,CAAC;AAC1D,CAAC"}
|
|
@@ -24,6 +24,19 @@ export declare function countAngular(counter: IAngularCounter): void;
|
|
|
24
24
|
export declare function readAngularProfile(): IAngularProfile;
|
|
25
25
|
export declare function setAngularProfileDetail(enabled: boolean): void;
|
|
26
26
|
export declare function noteAngularWrite(propName: string): void;
|
|
27
|
+
/**
|
|
28
|
+
* A style KEY write, named `style.<key>` in the readout — and the prefix is built HERE.
|
|
29
|
+
*
|
|
30
|
+
* `noteAngularWrite` gates itself, but an ARGUMENT is evaluated before the callee can refuse it, so
|
|
31
|
+
* `noteAngularWrite(`style.${key}`)` builds a string on every `setStyle` in a Release build with the
|
|
32
|
+
* detail map off. `setStyle` is Angular's only styling channel — one call per key per node — so the
|
|
33
|
+
* bench row's create allocated ~7 000 of them for nobody.
|
|
34
|
+
*
|
|
35
|
+
* It is the same trap `CLAUDE.md` records for `dlog` arguments on this very renderer, in a different
|
|
36
|
+
* function; `tests/dlog-argument-budget.test.ts` scans for the `dlog` spelling and does not see this
|
|
37
|
+
* one.
|
|
38
|
+
*/
|
|
39
|
+
export declare function noteAngularStyleWrite(key: string): void;
|
|
27
40
|
export declare function noteAngularCreate(tagName: string): void;
|
|
28
41
|
export interface IAngularProfileDetail {
|
|
29
42
|
writesByProp: readonly (readonly [string, number])[];
|
|
@@ -64,6 +64,24 @@ export function noteAngularWrite(propName) {
|
|
|
64
64
|
return;
|
|
65
65
|
writesByProp.set(propName, (writesByProp.get(propName) ?? 0) + 1);
|
|
66
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* A style KEY write, named `style.<key>` in the readout — and the prefix is built HERE.
|
|
69
|
+
*
|
|
70
|
+
* `noteAngularWrite` gates itself, but an ARGUMENT is evaluated before the callee can refuse it, so
|
|
71
|
+
* `noteAngularWrite(`style.${key}`)` builds a string on every `setStyle` in a Release build with the
|
|
72
|
+
* detail map off. `setStyle` is Angular's only styling channel — one call per key per node — so the
|
|
73
|
+
* bench row's create allocated ~7 000 of them for nobody.
|
|
74
|
+
*
|
|
75
|
+
* It is the same trap `CLAUDE.md` records for `dlog` arguments on this very renderer, in a different
|
|
76
|
+
* function; `tests/dlog-argument-budget.test.ts` scans for the `dlog` spelling and does not see this
|
|
77
|
+
* one.
|
|
78
|
+
*/
|
|
79
|
+
export function noteAngularStyleWrite(key) {
|
|
80
|
+
if (!isDetailEnabled)
|
|
81
|
+
return;
|
|
82
|
+
const name = `style.${key}`;
|
|
83
|
+
writesByProp.set(name, (writesByProp.get(name) ?? 0) + 1);
|
|
84
|
+
}
|
|
67
85
|
export function noteAngularCreate(tagName) {
|
|
68
86
|
if (!isDetailEnabled)
|
|
69
87
|
return;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"diagnostics.js","sourceRoot":"","sources":["../../src/diagnostics.ts"],"names":[],"mappings":"AAAA,6FAA6F;AAC7F,mGAAmG;AACnG,qFAAqF;AACrF,EAAE;AACF,mGAAmG;AACnG,8FAA8F;AAC9F,4FAA4F;AAC5F,oGAAoG;AACpG,kGAAkG;AAClG,uFAAuF;AACvF,EAAE;AACF,6FAA6F;AAC7F,kGAAkG;AAClG,uFAAuF;AA+CvF,SAAS,cAAc;IACrB,OAAO;QACL,QAAQ,EAAE,CAAC;QACX,YAAY,EAAE,CAAC;QACf,cAAc,EAAE,CAAC;QACjB,YAAY,EAAE,CAAC;QACf,aAAa,EAAE,CAAC;QAChB,YAAY,EAAE,CAAC;QACf,WAAW,EAAE,CAAC;QACd,UAAU,EAAE,CAAC;QACb,UAAU,EAAE,CAAC;QACb,cAAc,EAAE,CAAC;QACjB,SAAS,EAAE,CAAC;QACZ,WAAW,EAAE,CAAC;QACd,aAAa,EAAE,CAAC;QAChB,aAAa,EAAE,CAAC;QAChB,cAAc,EAAE,CAAC;QACjB,mBAAmB,EAAE,CAAC;QACtB,iBAAiB,EAAE,CAAC;QACpB,oBAAoB,EAAE,CAAC;QACvB,mBAAmB,EAAE,CAAC;KACvB,CAAC;AACJ,CAAC;AAED,IAAI,QAAQ,GAAG,cAAc,EAAE,CAAC;AAEhC,MAAM,UAAU,YAAY,CAAC,OAAwB;IACnD,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;AACzB,CAAC;AAED,+FAA+F;AAC/F,wDAAwD;AACxD,MAAM,UAAU,kBAAkB;IAChC,MAAM,QAAQ,GAAG,QAAQ,CAAC;IAC1B,QAAQ,GAAG,cAAc,EAAE,CAAC;IAC5B,OAAO,QAAQ,CAAC;AAClB,CAAC;AAED,mGAAmG;AACnG,+FAA+F;AAC/F,iGAAiG;AACjG,IAAI,eAAe,GAAG,KAAK,CAAC;AAC5B,MAAM,YAAY,GAAG,IAAI,GAAG,EAAkB,CAAC;AAC/C,MAAM,YAAY,GAAG,IAAI,GAAG,EAAkB,CAAC;AAE/C,MAAM,UAAU,uBAAuB,CAAC,OAAgB;IACtD,eAAe,GAAG,OAAO,CAAC;IAC1B,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,YAAY,CAAC,KAAK,EAAE,CAAC;QACrB,YAAY,CAAC,KAAK,EAAE,CAAC;IACvB,CAAC;AACH,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,QAAgB;IAC/C,IAAI,CAAC,eAAe;QAAE,OAAO;IAC7B,YAAY,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;AACpE,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,OAAe;IAC/C,IAAI,CAAC,eAAe;QAAE,OAAO;IAC7B,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;AAClE,CAAC;AAOD,sFAAsF;AACtF,MAAM,UAAU,wBAAwB;IACtC,MAAM,MAAM,GAAG;QACb,YAAY,EAAE,CAAC,GAAG,YAAY,CAAC,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QACrE,YAAY,EAAE,CAAC,GAAG,YAAY,CAAC,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;KACtE,CAAC;IACF,YAAY,CAAC,KAAK,EAAE,CAAC;IACrB,YAAY,CAAC,KAAK,EAAE,CAAC;IACrB,OAAO,MAAM,CAAC;AAChB,CAAC"}
|
|
1
|
+
{"version":3,"file":"diagnostics.js","sourceRoot":"","sources":["../../src/diagnostics.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,10 +12,8 @@ export interface IElementProps extends IAccessibilityProps, IAriaProps, IRespond
|
|
|
12
12
|
renderToHardwareTextureAndroid?: boolean;
|
|
13
13
|
shouldRasterizeIOS?: boolean;
|
|
14
14
|
needsOffscreenAlphaCompositing?: boolean;
|
|
15
|
-
/** The array-capable `[style]`, aliased to `style` in the renderer. */
|
|
16
|
-
symbioteStyle?: IStyleProp<IViewStyle>;
|
|
17
15
|
/**
|
|
18
|
-
*
|
|
16
|
+
* The press-state callback is in the union because a subclass cannot widen an
|
|
19
17
|
* inherited property and `<pressable>`/`<touchable-*>` are the tags that take one; on every other
|
|
20
18
|
* tag the engine resolves it at `pressed: false`.
|
|
21
19
|
*/
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import type { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { type ControlValueAccessor } from '@angular/forms';
|
|
4
|
+
import { SymbioteCallbackHost } from './callback-host';
|
|
5
|
+
import { SymbioteStyleHost } from './style-host';
|
|
4
6
|
import type { IActivityIndicatorProps, IImageProps, INativeFeedbackBackground, IInputAccessoryViewViewProps, IModalViewProps, ISwitchProps, ITextInputProps } from '@symbiote-native/components';
|
|
5
7
|
import type { IElementProps, IStickyHeaderElementProps, ITextElementProps } from './element-props';
|
|
6
8
|
import type { IAngularImageBackgroundProps } from './components/image-background-props';
|
|
@@ -17,13 +19,11 @@ import * as i0 from "@angular/core";
|
|
|
17
19
|
* — so without this loop a bare tag commits nothing at all. It stays generic on purpose: per-prop
|
|
18
20
|
* forwarding code is a component wrapper by another name, which is what this migration removes.
|
|
19
21
|
* `renderer.setProperty` lands in the adapter's own renderer, which routes the value through the
|
|
20
|
-
* engine's `routeProp` and applies the `id` -> `nativeID`
|
|
22
|
+
* engine's `routeProp` and applies the `id` -> `nativeID` alias.
|
|
21
23
|
*/
|
|
22
24
|
export declare abstract class SymbioteElement implements OnChanges {
|
|
23
25
|
private readonly renderer;
|
|
24
26
|
protected readonly host: ElementRef<any>;
|
|
25
|
-
protected readonly detector: ChangeDetectorRef;
|
|
26
|
-
private readonly wrapCallback;
|
|
27
27
|
testID?: IElementProps['testID'];
|
|
28
28
|
nativeID?: IElementProps['nativeID'];
|
|
29
29
|
id?: IElementProps['id'];
|
|
@@ -84,8 +84,25 @@ export declare abstract class SymbioteElement implements OnChanges {
|
|
|
84
84
|
renderToHardwareTextureAndroid?: IElementProps['renderToHardwareTextureAndroid'];
|
|
85
85
|
shouldRasterizeIOS?: IElementProps['shouldRasterizeIOS'];
|
|
86
86
|
needsOffscreenAlphaCompositing?: IElementProps['needsOffscreenAlphaCompositing'];
|
|
87
|
-
symbioteStyle?: IElementProps['symbioteStyle'];
|
|
88
87
|
style?: IElementProps['style'];
|
|
88
|
+
/**
|
|
89
|
+
* Declared so Angular SHADOWS the `[class]` binding into it instead of decomposing the string.
|
|
90
|
+
*
|
|
91
|
+
* A styling binding goes to a directive input when the directive declares that exact public name
|
|
92
|
+
* — `setShadowStylingInputFlags` sets `hasClassInput`/`hasStyleInput` off the input map, and
|
|
93
|
+
* `checkStylingMap` then hands the whole value over and never calls the renderer per key
|
|
94
|
+
* (`view/directives.ts`, `instructions/styling.ts`). `style` has been declared here all along and
|
|
95
|
+
* is shadowed; `class` was not, so every `[class]` reached the renderer one TOKEN at a time — on
|
|
96
|
+
* the element-directive path as much as the bare one. Measured at ~3.3 us per class binding
|
|
97
|
+
* (`adapter-create-cost.itest.ts`, "prices the class channel"), on the channel every example app
|
|
98
|
+
* uses for its static look.
|
|
99
|
+
*
|
|
100
|
+
* `[class.foo]` and `[ngClass]` are NOT shadowed and keep arriving as `addClass`, so a node can
|
|
101
|
+
* now be told its classes both ways at once; the renderer unions the two sources
|
|
102
|
+
* (`classStringFor`). Typed as a string rather than RN's `className`, because that is what
|
|
103
|
+
* `ɵɵclassMap` hands over after it concatenates any static `class=` prefix.
|
|
104
|
+
*/
|
|
105
|
+
class?: string;
|
|
89
106
|
onPress?: IElementProps['onPress'];
|
|
90
107
|
onPressIn?: IElementProps['onPressIn'];
|
|
91
108
|
onPressOut?: IElementProps['onPressOut'];
|
|
@@ -96,7 +113,7 @@ export declare abstract class SymbioteElement implements OnChanges {
|
|
|
96
113
|
onBlur?: IElementProps['onBlur'];
|
|
97
114
|
ngOnChanges(changes: SimpleChanges): void;
|
|
98
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<SymbioteElement, never>;
|
|
99
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SymbioteElement, never, never, { "testID": { "alias": "testID"; "required": false; }; "nativeID": { "alias": "nativeID"; "required": false; }; "id": { "alias": "id"; "required": false; }; "accessible": { "alias": "accessible"; "required": false; }; "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "accessibilityHint": { "alias": "accessibilityHint"; "required": false; }; "accessibilityRole": { "alias": "accessibilityRole"; "required": false; }; "accessibilityState": { "alias": "accessibilityState"; "required": false; }; "accessibilityValue": { "alias": "accessibilityValue"; "required": false; }; "accessibilityActions": { "alias": "accessibilityActions"; "required": false; }; "accessibilityLabelledBy": { "alias": "accessibilityLabelledBy"; "required": false; }; "importantForAccessibility": { "alias": "importantForAccessibility"; "required": false; }; "accessibilityLiveRegion": { "alias": "accessibilityLiveRegion"; "required": false; }; "screenReaderFocusable": { "alias": "screenReaderFocusable"; "required": false; }; "accessibilityViewIsModal": { "alias": "accessibilityViewIsModal"; "required": false; }; "accessibilityElementsHidden": { "alias": "accessibilityElementsHidden"; "required": false; }; "accessibilityIgnoresInvertColors": { "alias": "accessibilityIgnoresInvertColors"; "required": false; }; "accessibilityLanguage": { "alias": "accessibilityLanguage"; "required": false; }; "accessibilityRespondsToUserInteraction": { "alias": "accessibilityRespondsToUserInteraction"; "required": false; }; "accessibilityShowsLargeContentViewer": { "alias": "accessibilityShowsLargeContentViewer"; "required": false; }; "accessibilityLargeContentTitle": { "alias": "accessibilityLargeContentTitle"; "required": false; }; "onAccessibilityAction": { "alias": "onAccessibilityAction"; "required": false; }; "onAccessibilityTap": { "alias": "onAccessibilityTap"; "required": false; }; "onMagicTap": { "alias": "onMagicTap"; "required": false; }; "onAccessibilityEscape": { "alias": "onAccessibilityEscape"; "required": false; }; "role": { "alias": "role"; "required": false; }; "aria-label": { "alias": "aria-label"; "required": false; }; "aria-labelledby": { "alias": "aria-labelledby"; "required": false; }; "aria-live": { "alias": "aria-live"; "required": false; }; "aria-hidden": { "alias": "aria-hidden"; "required": false; }; "aria-busy": { "alias": "aria-busy"; "required": false; }; "aria-checked": { "alias": "aria-checked"; "required": false; }; "aria-disabled": { "alias": "aria-disabled"; "required": false; }; "aria-expanded": { "alias": "aria-expanded"; "required": false; }; "aria-selected": { "alias": "aria-selected"; "required": false; }; "aria-modal": { "alias": "aria-modal"; "required": false; }; "aria-valuemax": { "alias": "aria-valuemax"; "required": false; }; "aria-valuemin": { "alias": "aria-valuemin"; "required": false; }; "aria-valuenow": { "alias": "aria-valuenow"; "required": false; }; "aria-valuetext": { "alias": "aria-valuetext"; "required": false; }; "onStartShouldSetResponder": { "alias": "onStartShouldSetResponder"; "required": false; }; "onStartShouldSetResponderCapture": { "alias": "onStartShouldSetResponderCapture"; "required": false; }; "onMoveShouldSetResponder": { "alias": "onMoveShouldSetResponder"; "required": false; }; "onMoveShouldSetResponderCapture": { "alias": "onMoveShouldSetResponderCapture"; "required": false; }; "onResponderGrant": { "alias": "onResponderGrant"; "required": false; }; "onResponderReject": { "alias": "onResponderReject"; "required": false; }; "onResponderStart": { "alias": "onResponderStart"; "required": false; }; "onResponderMove": { "alias": "onResponderMove"; "required": false; }; "onResponderEnd": { "alias": "onResponderEnd"; "required": false; }; "onResponderRelease": { "alias": "onResponderRelease"; "required": false; }; "onResponderTerminate": { "alias": "onResponderTerminate"; "required": false; }; "onResponderTerminationRequest": { "alias": "onResponderTerminationRequest"; "required": false; }; "pointerEvents": { "alias": "pointerEvents"; "required": false; }; "hitSlop": { "alias": "hitSlop"; "required": false; }; "focusable": { "alias": "focusable"; "required": false; }; "collapsable": { "alias": "collapsable"; "required": false; }; "removeClippedSubviews": { "alias": "removeClippedSubviews"; "required": false; }; "renderToHardwareTextureAndroid": { "alias": "renderToHardwareTextureAndroid"; "required": false; }; "shouldRasterizeIOS": { "alias": "shouldRasterizeIOS"; "required": false; }; "needsOffscreenAlphaCompositing": { "alias": "needsOffscreenAlphaCompositing"; "required": false; }; "
|
|
116
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SymbioteElement, never, never, { "testID": { "alias": "testID"; "required": false; }; "nativeID": { "alias": "nativeID"; "required": false; }; "id": { "alias": "id"; "required": false; }; "accessible": { "alias": "accessible"; "required": false; }; "accessibilityLabel": { "alias": "accessibilityLabel"; "required": false; }; "accessibilityHint": { "alias": "accessibilityHint"; "required": false; }; "accessibilityRole": { "alias": "accessibilityRole"; "required": false; }; "accessibilityState": { "alias": "accessibilityState"; "required": false; }; "accessibilityValue": { "alias": "accessibilityValue"; "required": false; }; "accessibilityActions": { "alias": "accessibilityActions"; "required": false; }; "accessibilityLabelledBy": { "alias": "accessibilityLabelledBy"; "required": false; }; "importantForAccessibility": { "alias": "importantForAccessibility"; "required": false; }; "accessibilityLiveRegion": { "alias": "accessibilityLiveRegion"; "required": false; }; "screenReaderFocusable": { "alias": "screenReaderFocusable"; "required": false; }; "accessibilityViewIsModal": { "alias": "accessibilityViewIsModal"; "required": false; }; "accessibilityElementsHidden": { "alias": "accessibilityElementsHidden"; "required": false; }; "accessibilityIgnoresInvertColors": { "alias": "accessibilityIgnoresInvertColors"; "required": false; }; "accessibilityLanguage": { "alias": "accessibilityLanguage"; "required": false; }; "accessibilityRespondsToUserInteraction": { "alias": "accessibilityRespondsToUserInteraction"; "required": false; }; "accessibilityShowsLargeContentViewer": { "alias": "accessibilityShowsLargeContentViewer"; "required": false; }; "accessibilityLargeContentTitle": { "alias": "accessibilityLargeContentTitle"; "required": false; }; "onAccessibilityAction": { "alias": "onAccessibilityAction"; "required": false; }; "onAccessibilityTap": { "alias": "onAccessibilityTap"; "required": false; }; "onMagicTap": { "alias": "onMagicTap"; "required": false; }; "onAccessibilityEscape": { "alias": "onAccessibilityEscape"; "required": false; }; "role": { "alias": "role"; "required": false; }; "aria-label": { "alias": "aria-label"; "required": false; }; "aria-labelledby": { "alias": "aria-labelledby"; "required": false; }; "aria-live": { "alias": "aria-live"; "required": false; }; "aria-hidden": { "alias": "aria-hidden"; "required": false; }; "aria-busy": { "alias": "aria-busy"; "required": false; }; "aria-checked": { "alias": "aria-checked"; "required": false; }; "aria-disabled": { "alias": "aria-disabled"; "required": false; }; "aria-expanded": { "alias": "aria-expanded"; "required": false; }; "aria-selected": { "alias": "aria-selected"; "required": false; }; "aria-modal": { "alias": "aria-modal"; "required": false; }; "aria-valuemax": { "alias": "aria-valuemax"; "required": false; }; "aria-valuemin": { "alias": "aria-valuemin"; "required": false; }; "aria-valuenow": { "alias": "aria-valuenow"; "required": false; }; "aria-valuetext": { "alias": "aria-valuetext"; "required": false; }; "onStartShouldSetResponder": { "alias": "onStartShouldSetResponder"; "required": false; }; "onStartShouldSetResponderCapture": { "alias": "onStartShouldSetResponderCapture"; "required": false; }; "onMoveShouldSetResponder": { "alias": "onMoveShouldSetResponder"; "required": false; }; "onMoveShouldSetResponderCapture": { "alias": "onMoveShouldSetResponderCapture"; "required": false; }; "onResponderGrant": { "alias": "onResponderGrant"; "required": false; }; "onResponderReject": { "alias": "onResponderReject"; "required": false; }; "onResponderStart": { "alias": "onResponderStart"; "required": false; }; "onResponderMove": { "alias": "onResponderMove"; "required": false; }; "onResponderEnd": { "alias": "onResponderEnd"; "required": false; }; "onResponderRelease": { "alias": "onResponderRelease"; "required": false; }; "onResponderTerminate": { "alias": "onResponderTerminate"; "required": false; }; "onResponderTerminationRequest": { "alias": "onResponderTerminationRequest"; "required": false; }; "pointerEvents": { "alias": "pointerEvents"; "required": false; }; "hitSlop": { "alias": "hitSlop"; "required": false; }; "focusable": { "alias": "focusable"; "required": false; }; "collapsable": { "alias": "collapsable"; "required": false; }; "removeClippedSubviews": { "alias": "removeClippedSubviews"; "required": false; }; "renderToHardwareTextureAndroid": { "alias": "renderToHardwareTextureAndroid"; "required": false; }; "shouldRasterizeIOS": { "alias": "shouldRasterizeIOS"; "required": false; }; "needsOffscreenAlphaCompositing": { "alias": "needsOffscreenAlphaCompositing"; "required": false; }; "style": { "alias": "style"; "required": false; }; "class": { "alias": "class"; "required": false; }; "onPress": { "alias": "onPress"; "required": false; }; "onPressIn": { "alias": "onPressIn"; "required": false; }; "onPressOut": { "alias": "onPressOut"; "required": false; }; "onPressMove": { "alias": "onPressMove"; "required": false; }; "onLongPress": { "alias": "onLongPress"; "required": false; }; "onLayout": { "alias": "onLayout"; "required": false; }; "onFocus": { "alias": "onFocus"; "required": false; }; "onBlur": { "alias": "onBlur"; "required": false; }; }, {}, never, never, true, never>;
|
|
100
117
|
}
|
|
101
118
|
/**
|
|
102
119
|
* The base for a tag whose app callback an engine behavior READS BACK inside the same microtask
|
|
@@ -109,18 +126,22 @@ export declare abstract class SymbioteElement implements OnChanges {
|
|
|
109
126
|
* holding the binding, so it hands one to the renderer keyed on its own node.
|
|
110
127
|
*/
|
|
111
128
|
declare abstract class ReadBackElement extends SymbioteElement implements OnDestroy {
|
|
129
|
+
private readonly detector;
|
|
130
|
+
private readonly errorHandler;
|
|
112
131
|
constructor();
|
|
132
|
+
private flush;
|
|
113
133
|
ngOnDestroy(): void;
|
|
114
134
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadBackElement, never>;
|
|
115
135
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ReadBackElement, never, never, {}, {}, never, never, true, never>;
|
|
116
136
|
}
|
|
117
137
|
export declare class ViewElement extends SymbioteElement {
|
|
118
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewElement, never>;
|
|
119
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewElement, "view", never, {}, {}, never, never, true, never>;
|
|
139
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewElement, "view, symbiote-view", never, {}, {}, never, never, true, never>;
|
|
120
140
|
}
|
|
121
141
|
export declare class PressableElement extends SymbioteElement {
|
|
122
142
|
disabled?: IAngularPressableProps['disabled'];
|
|
123
143
|
cancelable?: IAngularPressableProps['cancelable'];
|
|
144
|
+
blockNativeResponder?: IAngularPressableProps['blockNativeResponder'];
|
|
124
145
|
delayLongPress?: IAngularPressableProps['delayLongPress'];
|
|
125
146
|
delayHoverIn?: IAngularPressableProps['delayHoverIn'];
|
|
126
147
|
delayHoverOut?: IAngularPressableProps['delayHoverOut'];
|
|
@@ -129,6 +150,7 @@ export declare class PressableElement extends SymbioteElement {
|
|
|
129
150
|
pressRetentionOffset?: IAngularPressableProps['pressRetentionOffset'];
|
|
130
151
|
unstable_pressDelay?: IAngularPressableProps['unstable_pressDelay'];
|
|
131
152
|
android_ripple?: IAngularPressableProps['android_ripple'];
|
|
153
|
+
testOnly_pressed?: IAngularPressableProps['testOnly_pressed'];
|
|
132
154
|
android_disableSound?: IAngularPressableProps['android_disableSound'];
|
|
133
155
|
hasTVPreferredFocus?: IAngularPressableProps['hasTVPreferredFocus'];
|
|
134
156
|
nextFocusDown?: IAngularPressableProps['nextFocusDown'];
|
|
@@ -137,7 +159,7 @@ export declare class PressableElement extends SymbioteElement {
|
|
|
137
159
|
nextFocusRight?: IAngularPressableProps['nextFocusRight'];
|
|
138
160
|
nextFocusUp?: IAngularPressableProps['nextFocusUp'];
|
|
139
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<PressableElement, never>;
|
|
140
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PressableElement, "pressable", never, { "disabled": { "alias": "disabled"; "required": false; }; "cancelable": { "alias": "cancelable"; "required": false; }; "delayLongPress": { "alias": "delayLongPress"; "required": false; }; "delayHoverIn": { "alias": "delayHoverIn"; "required": false; }; "delayHoverOut": { "alias": "delayHoverOut"; "required": false; }; "onHoverIn": { "alias": "onHoverIn"; "required": false; }; "onHoverOut": { "alias": "onHoverOut"; "required": false; }; "pressRetentionOffset": { "alias": "pressRetentionOffset"; "required": false; }; "unstable_pressDelay": { "alias": "unstable_pressDelay"; "required": false; }; "android_ripple": { "alias": "android_ripple"; "required": false; }; "android_disableSound": { "alias": "android_disableSound"; "required": false; }; "hasTVPreferredFocus": { "alias": "hasTVPreferredFocus"; "required": false; }; "nextFocusDown": { "alias": "nextFocusDown"; "required": false; }; "nextFocusForward": { "alias": "nextFocusForward"; "required": false; }; "nextFocusLeft": { "alias": "nextFocusLeft"; "required": false; }; "nextFocusRight": { "alias": "nextFocusRight"; "required": false; }; "nextFocusUp": { "alias": "nextFocusUp"; "required": false; }; }, {}, never, never, true, never>;
|
|
162
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PressableElement, "pressable, symbiote-pressable", never, { "disabled": { "alias": "disabled"; "required": false; }; "cancelable": { "alias": "cancelable"; "required": false; }; "blockNativeResponder": { "alias": "blockNativeResponder"; "required": false; }; "delayLongPress": { "alias": "delayLongPress"; "required": false; }; "delayHoverIn": { "alias": "delayHoverIn"; "required": false; }; "delayHoverOut": { "alias": "delayHoverOut"; "required": false; }; "onHoverIn": { "alias": "onHoverIn"; "required": false; }; "onHoverOut": { "alias": "onHoverOut"; "required": false; }; "pressRetentionOffset": { "alias": "pressRetentionOffset"; "required": false; }; "unstable_pressDelay": { "alias": "unstable_pressDelay"; "required": false; }; "android_ripple": { "alias": "android_ripple"; "required": false; }; "testOnly_pressed": { "alias": "testOnly_pressed"; "required": false; }; "android_disableSound": { "alias": "android_disableSound"; "required": false; }; "hasTVPreferredFocus": { "alias": "hasTVPreferredFocus"; "required": false; }; "nextFocusDown": { "alias": "nextFocusDown"; "required": false; }; "nextFocusForward": { "alias": "nextFocusForward"; "required": false; }; "nextFocusLeft": { "alias": "nextFocusLeft"; "required": false; }; "nextFocusRight": { "alias": "nextFocusRight"; "required": false; }; "nextFocusUp": { "alias": "nextFocusUp"; "required": false; }; }, {}, never, never, true, never>;
|
|
141
163
|
}
|
|
142
164
|
export declare class TouchableOpacityElement extends PressableElement {
|
|
143
165
|
activeOpacity?: number;
|
|
@@ -153,28 +175,31 @@ export declare class TouchableHighlightElement extends PressableElement {
|
|
|
153
175
|
delayPressIn?: number;
|
|
154
176
|
delayPressOut?: number;
|
|
155
177
|
minPressDuration?: number;
|
|
178
|
+
touchSoundDisabled?: boolean;
|
|
156
179
|
static ɵfac: i0.ɵɵFactoryDeclaration<TouchableHighlightElement, never>;
|
|
157
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableHighlightElement, "touchable-highlight", never, { "activeOpacity": { "alias": "activeOpacity"; "required": false; }; "underlayColor": { "alias": "underlayColor"; "required": false; }; "delayPressIn": { "alias": "delayPressIn"; "required": false; }; "delayPressOut": { "alias": "delayPressOut"; "required": false; }; "minPressDuration": { "alias": "minPressDuration"; "required": false; }; }, {}, never, never, true, never>;
|
|
180
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableHighlightElement, "touchable-highlight", never, { "activeOpacity": { "alias": "activeOpacity"; "required": false; }; "underlayColor": { "alias": "underlayColor"; "required": false; }; "delayPressIn": { "alias": "delayPressIn"; "required": false; }; "delayPressOut": { "alias": "delayPressOut"; "required": false; }; "minPressDuration": { "alias": "minPressDuration"; "required": false; }; "touchSoundDisabled": { "alias": "touchSoundDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
158
181
|
}
|
|
159
182
|
export declare class TouchableNativeFeedbackElement extends PressableElement {
|
|
160
183
|
background?: INativeFeedbackBackground;
|
|
161
184
|
useForeground?: boolean;
|
|
185
|
+
touchSoundDisabled?: boolean;
|
|
162
186
|
static ɵfac: i0.ɵɵFactoryDeclaration<TouchableNativeFeedbackElement, never>;
|
|
163
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableNativeFeedbackElement, "touchable-native-feedback", never, { "background": { "alias": "background"; "required": false; }; "useForeground": { "alias": "useForeground"; "required": false; }; }, {}, never, never, true, never>;
|
|
187
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableNativeFeedbackElement, "touchable-native-feedback", never, { "background": { "alias": "background"; "required": false; }; "useForeground": { "alias": "useForeground"; "required": false; }; "touchSoundDisabled": { "alias": "touchSoundDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
164
188
|
}
|
|
165
189
|
export declare class TouchableWithoutFeedbackElement extends PressableElement {
|
|
166
190
|
delayPressIn?: number;
|
|
167
191
|
delayPressOut?: number;
|
|
168
192
|
minPressDuration?: number;
|
|
193
|
+
touchSoundDisabled?: boolean;
|
|
169
194
|
static ɵfac: i0.ɵɵFactoryDeclaration<TouchableWithoutFeedbackElement, never>;
|
|
170
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableWithoutFeedbackElement, "touchable-without-feedback", never, { "delayPressIn": { "alias": "delayPressIn"; "required": false; }; "delayPressOut": { "alias": "delayPressOut"; "required": false; }; "minPressDuration": { "alias": "minPressDuration"; "required": false; }; }, {}, never, never, true, never>;
|
|
195
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TouchableWithoutFeedbackElement, "touchable-without-feedback", never, { "delayPressIn": { "alias": "delayPressIn"; "required": false; }; "delayPressOut": { "alias": "delayPressOut"; "required": false; }; "minPressDuration": { "alias": "minPressDuration"; "required": false; }; "touchSoundDisabled": { "alias": "touchSoundDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
171
196
|
}
|
|
172
197
|
export declare class ButtonElement extends TouchableOpacityElement {
|
|
173
198
|
title?: string;
|
|
174
199
|
color?: string;
|
|
175
200
|
touchSoundDisabled?: boolean;
|
|
176
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonElement, never>;
|
|
177
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonElement, "button", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "touchSoundDisabled": { "alias": "touchSoundDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
202
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonElement, "button, symbiote-button", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "touchSoundDisabled": { "alias": "touchSoundDisabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
178
203
|
}
|
|
179
204
|
export declare class TextElement extends SymbioteElement {
|
|
180
205
|
style?: ITextElementProps['style'];
|
|
@@ -188,7 +213,7 @@ export declare class TextElement extends SymbioteElement {
|
|
|
188
213
|
selectionColor?: ITextElementProps['selectionColor'];
|
|
189
214
|
disabled?: ITextElementProps['disabled'];
|
|
190
215
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextElement, never>;
|
|
191
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextElement, "text", never, { "style": { "alias": "style"; "required": false; }; "numberOfLines": { "alias": "numberOfLines"; "required": false; }; "ellipsizeMode": { "alias": "ellipsizeMode"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "adjustsFontSizeToFit": { "alias": "adjustsFontSizeToFit"; "required": false; }; "minimumFontScale": { "alias": "minimumFontScale"; "required": false; }; "allowFontScaling": { "alias": "allowFontScaling"; "required": false; }; "maxFontSizeMultiplier": { "alias": "maxFontSizeMultiplier"; "required": false; }; "selectionColor": { "alias": "selectionColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
216
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextElement, "text, symbiote-text", never, { "style": { "alias": "style"; "required": false; }; "numberOfLines": { "alias": "numberOfLines"; "required": false; }; "ellipsizeMode": { "alias": "ellipsizeMode"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "adjustsFontSizeToFit": { "alias": "adjustsFontSizeToFit"; "required": false; }; "minimumFontScale": { "alias": "minimumFontScale"; "required": false; }; "allowFontScaling": { "alias": "allowFontScaling"; "required": false; }; "maxFontSizeMultiplier": { "alias": "maxFontSizeMultiplier"; "required": false; }; "selectionColor": { "alias": "selectionColor"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
192
217
|
}
|
|
193
218
|
export declare class ImageElement extends SymbioteElement {
|
|
194
219
|
source?: IImageProps['source'];
|
|
@@ -215,7 +240,7 @@ export declare class ImageElement extends SymbioteElement {
|
|
|
215
240
|
onProgress?: IImageProps['onProgress'];
|
|
216
241
|
onPartialLoad?: IImageProps['onPartialLoad'];
|
|
217
242
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageElement, never>;
|
|
218
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageElement, "image", never, { "source": { "alias": "source"; "required": false; }; "src": { "alias": "src"; "required": false; }; "srcSet": { "alias": "srcSet"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "resizeMode": { "alias": "resizeMode"; "required": false; }; "resizeMethod": { "alias": "resizeMethod"; "required": false; }; "defaultSource": { "alias": "defaultSource"; "required": false; }; "loadingIndicatorSource": { "alias": "loadingIndicatorSource"; "required": false; }; "blurRadius": { "alias": "blurRadius"; "required": false; }; "capInsets": { "alias": "capInsets"; "required": false; }; "crossOrigin": { "alias": "crossOrigin"; "required": false; }; "referrerPolicy": { "alias": "referrerPolicy"; "required": false; }; "fadeDuration": { "alias": "fadeDuration"; "required": false; }; "progressiveRenderingEnabled": { "alias": "progressiveRenderingEnabled"; "required": false; }; "tintColor": { "alias": "tintColor"; "required": false; }; "onLoad": { "alias": "onLoad"; "required": false; }; "onLoadStart": { "alias": "onLoadStart"; "required": false; }; "onLoadEnd": { "alias": "onLoadEnd"; "required": false; }; "onError": { "alias": "onError"; "required": false; }; "onProgress": { "alias": "onProgress"; "required": false; }; "onPartialLoad": { "alias": "onPartialLoad"; "required": false; }; }, {}, never, never, true, never>;
|
|
243
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageElement, "image, symbiote-image", never, { "source": { "alias": "source"; "required": false; }; "src": { "alias": "src"; "required": false; }; "srcSet": { "alias": "srcSet"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "resizeMode": { "alias": "resizeMode"; "required": false; }; "resizeMethod": { "alias": "resizeMethod"; "required": false; }; "defaultSource": { "alias": "defaultSource"; "required": false; }; "loadingIndicatorSource": { "alias": "loadingIndicatorSource"; "required": false; }; "blurRadius": { "alias": "blurRadius"; "required": false; }; "capInsets": { "alias": "capInsets"; "required": false; }; "crossOrigin": { "alias": "crossOrigin"; "required": false; }; "referrerPolicy": { "alias": "referrerPolicy"; "required": false; }; "fadeDuration": { "alias": "fadeDuration"; "required": false; }; "progressiveRenderingEnabled": { "alias": "progressiveRenderingEnabled"; "required": false; }; "tintColor": { "alias": "tintColor"; "required": false; }; "onLoad": { "alias": "onLoad"; "required": false; }; "onLoadStart": { "alias": "onLoadStart"; "required": false; }; "onLoadEnd": { "alias": "onLoadEnd"; "required": false; }; "onError": { "alias": "onError"; "required": false; }; "onProgress": { "alias": "onProgress"; "required": false; }; "onPartialLoad": { "alias": "onPartialLoad"; "required": false; }; }, {}, never, never, true, never>;
|
|
219
244
|
}
|
|
220
245
|
export declare class ImageBackgroundElement extends SymbioteElement {
|
|
221
246
|
imageStyle?: IAngularImageBackgroundProps['imageStyle'];
|
|
@@ -320,7 +345,7 @@ export declare class HorizontalScrollContentElement extends SymbioteElement {
|
|
|
320
345
|
* obvious reading is wrong: the file header's "an `@Output` CONSUMES the binding" holds for a
|
|
321
346
|
* COMPONENT, and an element is the other case — Angular attaches the renderer listener for the
|
|
322
347
|
* event as well, so `Renderer2.listen` still runs and the engine still hears the change. Measured
|
|
323
|
-
* under JIT by deleting this whole hook: every case in `
|
|
348
|
+
* under JIT by deleting this whole hook: every case in `renderer/two-way-value.test.ts` stayed
|
|
324
349
|
* green, delivery included, and exactly ONCE (nothing double-fires when both paths exist).
|
|
325
350
|
*
|
|
326
351
|
* It is kept because the measurement is JIT-only and this adapter has a recorded case of JIT and
|
|
@@ -381,6 +406,7 @@ export declare class TextInputElement extends ValueChangeElement {
|
|
|
381
406
|
textContentType?: ITextInputProps['textContentType'];
|
|
382
407
|
underlineColorAndroid?: ITextInputProps['underlineColorAndroid'];
|
|
383
408
|
onValueChange?: ITextInputProps['onValueChange'];
|
|
409
|
+
onChangeText?: ITextInputProps['onChangeText'];
|
|
384
410
|
onContentSizeChange?: ITextInputProps['onContentSizeChange'];
|
|
385
411
|
onEndEditing?: ITextInputProps['onEndEditing'];
|
|
386
412
|
onKeyPress?: ITextInputProps['onKeyPress'];
|
|
@@ -390,20 +416,12 @@ export declare class TextInputElement extends ValueChangeElement {
|
|
|
390
416
|
protected hasValueSubscriber(): boolean;
|
|
391
417
|
protected emitValue(value: unknown): void;
|
|
392
418
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputElement, never>;
|
|
393
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TextInputElement, "text-input", never, { "value": { "alias": "value"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placeholderTextColor": { "alias": "placeholderTextColor"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "numberOfLines": { "alias": "numberOfLines"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "autoCorrect": { "alias": "autoCorrect"; "required": false; }; "blurOnSubmit": { "alias": "blurOnSubmit"; "required": false; }; "submitBehavior": { "alias": "submitBehavior"; "required": false; }; "cursorColor": { "alias": "cursorColor"; "required": false; }; "enterKeyHint": { "alias": "enterKeyHint"; "required": false; }; "returnKeyType": { "alias": "returnKeyType"; "required": false; }; "inputMode": { "alias": "inputMode"; "required": false; }; "keyboardType": { "alias": "keyboardType"; "required": false; }; "inputAccessoryViewID": { "alias": "inputAccessoryViewID"; "required": false; }; "scrollEnabled": { "alias": "scrollEnabled"; "required": false; }; "secureTextEntry": { "alias": "secureTextEntry"; "required": false; }; "selectTextOnFocus": { "alias": "selectTextOnFocus"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "selectionColor": { "alias": "selectionColor"; "required": false; }; "selectionHandleColor": { "alias": "selectionHandleColor"; "required": false; }; "showSoftInputOnFocus": { "alias": "showSoftInputOnFocus"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "textContentType": { "alias": "textContentType"; "required": false; }; "underlineColorAndroid": { "alias": "underlineColorAndroid"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; "onContentSizeChange": { "alias": "onContentSizeChange"; "required": false; }; "onEndEditing": { "alias": "onEndEditing"; "required": false; }; "onKeyPress": { "alias": "onKeyPress"; "required": false; }; "onSelectionChange": { "alias": "onSelectionChange"; "required": false; }; "onSubmitEditing": { "alias": "onSubmitEditing"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
419
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TextInputElement, "text-input", never, { "value": { "alias": "value"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "placeholderTextColor": { "alias": "placeholderTextColor"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "numberOfLines": { "alias": "numberOfLines"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "autoCorrect": { "alias": "autoCorrect"; "required": false; }; "blurOnSubmit": { "alias": "blurOnSubmit"; "required": false; }; "submitBehavior": { "alias": "submitBehavior"; "required": false; }; "cursorColor": { "alias": "cursorColor"; "required": false; }; "enterKeyHint": { "alias": "enterKeyHint"; "required": false; }; "returnKeyType": { "alias": "returnKeyType"; "required": false; }; "inputMode": { "alias": "inputMode"; "required": false; }; "keyboardType": { "alias": "keyboardType"; "required": false; }; "inputAccessoryViewID": { "alias": "inputAccessoryViewID"; "required": false; }; "scrollEnabled": { "alias": "scrollEnabled"; "required": false; }; "secureTextEntry": { "alias": "secureTextEntry"; "required": false; }; "selectTextOnFocus": { "alias": "selectTextOnFocus"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "selectionColor": { "alias": "selectionColor"; "required": false; }; "selectionHandleColor": { "alias": "selectionHandleColor"; "required": false; }; "showSoftInputOnFocus": { "alias": "showSoftInputOnFocus"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "textContentType": { "alias": "textContentType"; "required": false; }; "underlineColorAndroid": { "alias": "underlineColorAndroid"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; "onChangeText": { "alias": "onChangeText"; "required": false; }; "onContentSizeChange": { "alias": "onContentSizeChange"; "required": false; }; "onEndEditing": { "alias": "onEndEditing"; "required": false; }; "onKeyPress": { "alias": "onKeyPress"; "required": false; }; "onSelectionChange": { "alias": "onSelectionChange"; "required": false; }; "onSubmitEditing": { "alias": "onSubmitEditing"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
394
420
|
}
|
|
395
421
|
export declare class MultilineTextInputElement extends TextInputElement {
|
|
396
422
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultilineTextInputElement, never>;
|
|
397
423
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MultilineTextInputElement, "text-input-multiline", never, {}, {}, never, never, true, never>;
|
|
398
424
|
}
|
|
399
|
-
export declare class ManagedTextInputElement extends TextInputElement {
|
|
400
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ManagedTextInputElement, never>;
|
|
401
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ManagedTextInputElement, "text-input-managed", never, {}, {}, never, never, true, never>;
|
|
402
|
-
}
|
|
403
|
-
export declare class ManagedMultilineTextInputElement extends TextInputElement {
|
|
404
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ManagedMultilineTextInputElement, never>;
|
|
405
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ManagedMultilineTextInputElement, "text-input-multiline-managed", never, {}, {}, never, never, true, never>;
|
|
406
|
-
}
|
|
407
425
|
export declare class SwitchElement extends ValueChangeElement {
|
|
408
426
|
value?: ISwitchProps['value'];
|
|
409
427
|
disabled?: ISwitchProps['disabled'];
|
|
@@ -415,11 +433,7 @@ export declare class SwitchElement extends ValueChangeElement {
|
|
|
415
433
|
protected hasValueSubscriber(): boolean;
|
|
416
434
|
protected emitValue(value: unknown): void;
|
|
417
435
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchElement, never>;
|
|
418
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchElement, "switch", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "trackColor": { "alias": "trackColor"; "required": false; }; "thumbColor": { "alias": "thumbColor"; "required": false; }; "ios_backgroundColor": { "alias": "ios_backgroundColor"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
419
|
-
}
|
|
420
|
-
export declare class ManagedSwitchElement extends SwitchElement {
|
|
421
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ManagedSwitchElement, never>;
|
|
422
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ManagedSwitchElement, "switch-managed", never, {}, {}, never, never, true, never>;
|
|
436
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchElement, "switch, symbiote-switch", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "trackColor": { "alias": "trackColor"; "required": false; }; "thumbColor": { "alias": "thumbColor"; "required": false; }; "ios_backgroundColor": { "alias": "ios_backgroundColor"; "required": false; }; "onValueChange": { "alias": "onValueChange"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
423
437
|
}
|
|
424
438
|
/**
|
|
425
439
|
* `[(ngModel)]` / `formControlName` on a `<text-input>` or a `<switch>`.
|
|
@@ -456,7 +470,7 @@ export declare class TextInputValueAccessor extends SymbioteValueAccessor {
|
|
|
456
470
|
export declare class SwitchValueAccessor extends SymbioteValueAccessor {
|
|
457
471
|
protected writeDisabled(isDisabled: boolean): void;
|
|
458
472
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchValueAccessor, never>;
|
|
459
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchValueAccessor, "switch[ngModel], switch[formControl], switch[formControlName]
|
|
473
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SwitchValueAccessor, "switch[ngModel], switch[formControl], switch[formControlName]", never, {}, {}, never, never, true, never>;
|
|
460
474
|
}
|
|
461
475
|
export declare class ActivityIndicatorElement extends SymbioteElement {
|
|
462
476
|
animating?: IActivityIndicatorProps['animating'];
|
|
@@ -486,7 +500,7 @@ export declare class ModalElement extends SymbioteElement {
|
|
|
486
500
|
allowSwipeDismissal?: IModalViewProps['allowSwipeDismissal'];
|
|
487
501
|
backdropColor?: IModalViewProps['backdropColor'];
|
|
488
502
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalElement, never>;
|
|
489
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalElement, "modal", never, { "visible": { "alias": "visible"; "required": false; }; "transparent": { "alias": "transparent"; "required": false; }; "animationType": { "alias": "animationType"; "required": false; }; "presentationStyle": { "alias": "presentationStyle"; "required": false; }; "supportedOrientations": { "alias": "supportedOrientations"; "required": false; }; "hardwareAccelerated": { "alias": "hardwareAccelerated"; "required": false; }; "statusBarTranslucent": { "alias": "statusBarTranslucent"; "required": false; }; "navigationBarTranslucent": { "alias": "navigationBarTranslucent"; "required": false; }; "allowSwipeDismissal": { "alias": "allowSwipeDismissal"; "required": false; }; "backdropColor": { "alias": "backdropColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
503
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModalElement, "modal, symbiote-modal", never, { "visible": { "alias": "visible"; "required": false; }; "transparent": { "alias": "transparent"; "required": false; }; "animationType": { "alias": "animationType"; "required": false; }; "presentationStyle": { "alias": "presentationStyle"; "required": false; }; "supportedOrientations": { "alias": "supportedOrientations"; "required": false; }; "hardwareAccelerated": { "alias": "hardwareAccelerated"; "required": false; }; "statusBarTranslucent": { "alias": "statusBarTranslucent"; "required": false; }; "navigationBarTranslucent": { "alias": "navigationBarTranslucent"; "required": false; }; "allowSwipeDismissal": { "alias": "allowSwipeDismissal"; "required": false; }; "backdropColor": { "alias": "backdropColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
490
504
|
}
|
|
491
505
|
export declare class RefreshControlElement extends ReadBackElement {
|
|
492
506
|
refreshing?: IAngularRefreshControlProps['refreshing'];
|
|
@@ -524,5 +538,5 @@ export declare class InputAccessoryViewElement extends SymbioteElement {
|
|
|
524
538
|
* `elements.test.ts` asserts this covers every key of `COMPONENT_DESCRIPTORS`, derived from that
|
|
525
539
|
* table, so a future primitive joins by existing rather than by someone remembering.
|
|
526
540
|
*/
|
|
527
|
-
export declare const SYMBIOTE_ELEMENTS: readonly [typeof ViewElement, typeof PressableElement, typeof TouchableOpacityElement, typeof TouchableHighlightElement, typeof TouchableNativeFeedbackElement, typeof TouchableWithoutFeedbackElement, typeof ButtonElement, typeof TextElement, typeof ImageElement, typeof ImageBackgroundElement, typeof ScrollViewElement, typeof HorizontalScrollViewElement, typeof ScrollContentElement, typeof HorizontalScrollContentElement, typeof TextInputElement, typeof MultilineTextInputElement, typeof
|
|
541
|
+
export declare const SYMBIOTE_ELEMENTS: readonly [typeof ViewElement, typeof PressableElement, typeof TouchableOpacityElement, typeof TouchableHighlightElement, typeof TouchableNativeFeedbackElement, typeof TouchableWithoutFeedbackElement, typeof ButtonElement, typeof TextElement, typeof ImageElement, typeof ImageBackgroundElement, typeof ScrollViewElement, typeof HorizontalScrollViewElement, typeof ScrollContentElement, typeof HorizontalScrollContentElement, typeof TextInputElement, typeof MultilineTextInputElement, typeof SwitchElement, typeof ActivityIndicatorElement, typeof ActivityIndicatorSpinnerElement, typeof SafeAreaViewElement, typeof ModalElement, typeof RefreshControlElement, typeof StickyHeaderElement, typeof InputAccessoryViewElement, typeof TextInputValueAccessor, typeof SwitchValueAccessor, typeof SymbioteCallbackHost, typeof SymbioteStyleHost];
|
|
528
542
|
export {};
|