@symbiote-native/angular 0.1.0 → 0.2.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.
@@ -1,109 +0,0 @@
1
- // DrawerLayoutAndroid: base / off-Android fallback (the Angular twin of the React/Vue adapter's
2
- // index.ts). AndroidDrawerLayout is Android-only, so everywhere except an Android host — where
3
- // Metro picks index.android.ts — we render the main content (the default <ng-content>) in a plain
4
- // container and DROP the navigation panel (RN's DrawerLayoutAndroidFallback shape). The imperative
5
- // open/close are silent no-ops; there is no drawer to drive. The filename is the selector; no
6
- // Platform.OS read. The Angular barrel imports './drawer-layout-android', which resolves here under
7
- // tsc/headless and to the .android file under Metro on Android. See ADR 0019.
8
- import { CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, Component } from '@angular/core';
9
- import { dlog } from '@symbiote/engine';
10
- import { DrawerLayoutAndroidBase } from './shared';
11
- import { ViewHost } from '../../primitives';
12
- import * as i0 from "@angular/core";
13
- export class DrawerLayoutAndroid extends DrawerLayoutAndroidBase {
14
- openDrawer() {
15
- dlog('Angular DrawerLayoutAndroid.openDrawer no-op: off Android');
16
- }
17
- closeDrawer() {
18
- dlog('Angular DrawerLayoutAndroid.closeDrawer no-op: off Android');
19
- }
20
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: DrawerLayoutAndroid, deps: null, target: i0.ɵɵFactoryTarget.Component });
21
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.4", type: DrawerLayoutAndroid, isStandalone: true, selector: "DrawerLayoutAndroid", inputs: { drawerWidth: "drawerWidth", drawerPosition: "drawerPosition", drawerLockMode: "drawerLockMode", keyboardDismissMode: "keyboardDismissMode", drawerBackgroundColor: "drawerBackgroundColor", statusBarBackgroundColor: "statusBarBackgroundColor", style: "style", nativeID: "nativeID", testID: "testID", accessible: "accessible", accessibilityLabel: "accessibilityLabel", accessibilityHint: "accessibilityHint", accessibilityRole: "accessibilityRole", accessibilityState: "accessibilityState", accessibilityValue: "accessibilityValue", accessibilityActions: "accessibilityActions", accessibilityLabelledBy: "accessibilityLabelledBy", importantForAccessibility: "importantForAccessibility", accessibilityLiveRegion: "accessibilityLiveRegion", screenReaderFocusable: "screenReaderFocusable", accessibilityElementsHidden: "accessibilityElementsHidden", accessibilityViewIsModal: "accessibilityViewIsModal", accessibilityIgnoresInvertColors: "accessibilityIgnoresInvertColors", accessibilityLanguage: "accessibilityLanguage", accessibilityRespondsToUserInteraction: "accessibilityRespondsToUserInteraction", accessibilityShowsLargeContentViewer: "accessibilityShowsLargeContentViewer", accessibilityLargeContentTitle: "accessibilityLargeContentTitle", role: "role", "aria-label": "aria-label", "aria-labelledby": "aria-labelledby", "aria-live": "aria-live", "aria-hidden": "aria-hidden", "aria-busy": "aria-busy", "aria-checked": "aria-checked", "aria-disabled": "aria-disabled", "aria-expanded": "aria-expanded", "aria-selected": "aria-selected", "aria-modal": "aria-modal", "aria-valuemax": "aria-valuemax", "aria-valuemin": "aria-valuemin", "aria-valuenow": "aria-valuenow", "aria-valuetext": "aria-valuetext" }, outputs: { drawerOpen: "drawerOpen", drawerClose: "drawerClose", drawerSlide: "drawerSlide", drawerStateChanged: "drawerStateChanged", accessibilityAction: "accessibilityAction", accessibilityTap: "accessibilityTap", magicTap: "magicTap", accessibilityEscape: "accessibilityEscape" }, usesInheritance: true, ngImport: i0, template: `
22
- <symbiote-view [style]="style">
23
- <ng-content></ng-content>
24
- </symbiote-view>
25
- <ng-template>
26
- <ng-content select="[drawerNavigationView]"></ng-content>
27
- </ng-template>
28
- `, isInline: true, dependencies: [{ kind: "component", type: ViewHost, selector: "symbiote-view, View" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: DrawerLayoutAndroid, decorators: [{
31
- type: Component,
32
- args: [{
33
- selector: 'DrawerLayoutAndroid',
34
- standalone: true,
35
- schemas: [CUSTOM_ELEMENTS_SCHEMA],
36
- imports: [ViewHost],
37
- changeDetection: ChangeDetectionStrategy.OnPush,
38
- inputs: [
39
- 'drawerWidth',
40
- 'drawerPosition',
41
- 'drawerLockMode',
42
- 'keyboardDismissMode',
43
- 'drawerBackgroundColor',
44
- 'statusBarBackgroundColor',
45
- 'style',
46
- 'nativeID',
47
- 'testID',
48
- 'accessible',
49
- 'accessibilityLabel',
50
- 'accessibilityHint',
51
- 'accessibilityRole',
52
- 'accessibilityState',
53
- 'accessibilityValue',
54
- 'accessibilityActions',
55
- 'accessibilityLabelledBy',
56
- 'importantForAccessibility',
57
- 'accessibilityLiveRegion',
58
- 'screenReaderFocusable',
59
- 'accessibilityElementsHidden',
60
- 'accessibilityViewIsModal',
61
- 'accessibilityIgnoresInvertColors',
62
- 'accessibilityLanguage',
63
- 'accessibilityRespondsToUserInteraction',
64
- 'accessibilityShowsLargeContentViewer',
65
- 'accessibilityLargeContentTitle',
66
- 'role',
67
- 'aria-label',
68
- 'aria-labelledby',
69
- 'aria-live',
70
- 'aria-hidden',
71
- 'aria-busy',
72
- 'aria-checked',
73
- 'aria-disabled',
74
- 'aria-expanded',
75
- 'aria-selected',
76
- 'aria-modal',
77
- 'aria-valuemax',
78
- 'aria-valuemin',
79
- 'aria-valuenow',
80
- 'aria-valuetext',
81
- ],
82
- // Declared for parity with the Android build (DrawerLayoutAndroidBase's @Output() fields need
83
- // their names re-declared on every concrete class that extends it, the Switch precedent) even
84
- // though this fallback never emits them — there is no real drawer here to fire the events.
85
- outputs: [
86
- 'drawerOpen',
87
- 'drawerClose',
88
- 'drawerSlide',
89
- 'drawerStateChanged',
90
- 'accessibilityAction',
91
- 'accessibilityTap',
92
- 'magicTap',
93
- 'accessibilityEscape',
94
- ],
95
- // The catch-all <ng-content> paints the main content. The `[drawerNavigationView]` slot is
96
- // declared inside a never-stamped <ng-template> purely so its projected nodes are claimed away
97
- // from the catch-all and DROPPED — the Angular pull-based equivalent of the Vue fallback never
98
- // invoking slots.navigationView. RN's off-Android fallback shows content only.
99
- template: `
100
- <symbiote-view [style]="style">
101
- <ng-content></ng-content>
102
- </symbiote-view>
103
- <ng-template>
104
- <ng-content select="[drawerNavigationView]"></ng-content>
105
- </ng-template>
106
- `,
107
- }]
108
- }] });
109
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/drawer-layout-android/index.ts"],"names":[],"mappings":"AAAA,gGAAgG;AAChG,+FAA+F;AAC/F,kGAAkG;AAClG,mGAAmG;AACnG,8FAA8F;AAC9F,oGAAoG;AACpG,8EAA8E;AAE9E,OAAO,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC3F,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAExC,OAAO,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;;AAwF5C,MAAM,OAAO,mBACX,SAAQ,uBAAuB;IAG/B,UAAU;QACR,IAAI,CAAC,2DAA2D,CAAC,CAAC;IACpE,CAAC;IAED,WAAW;QACT,IAAI,CAAC,4DAA4D,CAAC,CAAC;IACrE,CAAC;uGAVU,mBAAmB;2FAAnB,mBAAmB,ujEATpB;;;;;;;GAOT,4DAtES,QAAQ;;2FAwEP,mBAAmB;kBA5E/B,SAAS;mBAAC;oBACT,QAAQ,EAAE,qBAAqB;oBAC/B,UAAU,EAAE,IAAI;oBAChB,OAAO,EAAE,CAAC,sBAAsB,CAAC;oBACjC,OAAO,EAAE,CAAC,QAAQ,CAAC;oBACnB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,MAAM,EAAE;wBACN,aAAa;wBACb,gBAAgB;wBAChB,gBAAgB;wBAChB,qBAAqB;wBACrB,uBAAuB;wBACvB,0BAA0B;wBAC1B,OAAO;wBACP,UAAU;wBACV,QAAQ;wBACR,YAAY;wBACZ,oBAAoB;wBACpB,mBAAmB;wBACnB,mBAAmB;wBACnB,oBAAoB;wBACpB,oBAAoB;wBACpB,sBAAsB;wBACtB,yBAAyB;wBACzB,2BAA2B;wBAC3B,yBAAyB;wBACzB,uBAAuB;wBACvB,6BAA6B;wBAC7B,0BAA0B;wBAC1B,kCAAkC;wBAClC,uBAAuB;wBACvB,wCAAwC;wBACxC,sCAAsC;wBACtC,gCAAgC;wBAChC,MAAM;wBACN,YAAY;wBACZ,iBAAiB;wBACjB,WAAW;wBACX,aAAa;wBACb,WAAW;wBACX,cAAc;wBACd,eAAe;wBACf,eAAe;wBACf,eAAe;wBACf,YAAY;wBACZ,eAAe;wBACf,eAAe;wBACf,eAAe;wBACf,gBAAgB;qBACjB;oBACD,8FAA8F;oBAC9F,8FAA8F;oBAC9F,2FAA2F;oBAC3F,OAAO,EAAE;wBACP,YAAY;wBACZ,aAAa;wBACb,aAAa;wBACb,oBAAoB;wBACpB,qBAAqB;wBACrB,kBAAkB;wBAClB,UAAU;wBACV,qBAAqB;qBACtB;oBACD,2FAA2F;oBAC3F,+FAA+F;oBAC/F,+FAA+F;oBAC/F,+EAA+E;oBAC/E,QAAQ,EAAE;;;;;;;GAOT;iBACF"}
@@ -1,74 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import type { IStyleProp, ISymbioteEvent, IViewStyle } from '@symbiote/engine';
3
- import type { IAccessibilityProps, IAccessibilityStateValue, IAriaProps, IDrawerLockMode, IDrawerPosition, IDrawerSlideEvent, IDrawerState, IKeyboardDismissMode } from '@symbiote/components';
4
- import * as i0 from "@angular/core";
5
- export type { IDrawerPosition, IDrawerLockMode, IKeyboardDismissMode, IDrawerState, IDrawerSlideEvent, IDrawerLayoutAndroidHandle, } from '@symbiote/components';
6
- export interface IAngularDrawerLayoutAndroidProps extends IAccessibilityProps, IAriaProps {
7
- drawerWidth?: number;
8
- drawerPosition?: IDrawerPosition;
9
- drawerLockMode?: IDrawerLockMode;
10
- keyboardDismissMode?: IKeyboardDismissMode;
11
- drawerBackgroundColor?: string;
12
- statusBarBackgroundColor?: string;
13
- style?: IStyleProp<IViewStyle>;
14
- onDrawerOpen?: () => void;
15
- onDrawerClose?: () => void;
16
- onDrawerSlide?: (event: IDrawerSlideEvent) => void;
17
- onDrawerStateChanged?: (state: IDrawerState) => void;
18
- }
19
- export type IAngularDrawerLayoutAndroidInputs = Omit<IAngularDrawerLayoutAndroidProps, 'onDrawerOpen' | 'onDrawerClose' | 'onDrawerSlide' | 'onDrawerStateChanged' | 'onAccessibilityAction' | 'onAccessibilityTap' | 'onMagicTap' | 'onAccessibilityEscape'>;
20
- export declare abstract class DrawerLayoutAndroidBase implements IAngularDrawerLayoutAndroidInputs {
21
- readonly drawerOpen: EventEmitter<void>;
22
- readonly drawerClose: EventEmitter<void>;
23
- readonly drawerSlide: EventEmitter<IDrawerSlideEvent>;
24
- readonly drawerStateChanged: EventEmitter<IDrawerState>;
25
- readonly accessibilityAction: EventEmitter<ISymbioteEvent>;
26
- readonly accessibilityTap: EventEmitter<ISymbioteEvent>;
27
- readonly magicTap: EventEmitter<ISymbioteEvent>;
28
- readonly accessibilityEscape: EventEmitter<ISymbioteEvent>;
29
- drawerWidth?: number;
30
- drawerPosition?: IDrawerPosition;
31
- drawerLockMode?: IDrawerLockMode;
32
- keyboardDismissMode?: IKeyboardDismissMode;
33
- drawerBackgroundColor?: string;
34
- statusBarBackgroundColor?: string;
35
- style?: IStyleProp<IViewStyle>;
36
- nativeID?: string;
37
- testID?: string;
38
- accessible?: boolean;
39
- accessibilityLabel?: string;
40
- accessibilityHint?: string;
41
- accessibilityRole?: IAccessibilityProps['accessibilityRole'];
42
- accessibilityState?: IAccessibilityStateValue;
43
- accessibilityValue?: IAccessibilityProps['accessibilityValue'];
44
- accessibilityActions?: IAccessibilityProps['accessibilityActions'];
45
- accessibilityLabelledBy?: string | string[];
46
- importantForAccessibility?: IAccessibilityProps['importantForAccessibility'];
47
- accessibilityLiveRegion?: IAccessibilityProps['accessibilityLiveRegion'];
48
- screenReaderFocusable?: boolean;
49
- accessibilityElementsHidden?: boolean;
50
- accessibilityViewIsModal?: boolean;
51
- accessibilityIgnoresInvertColors?: boolean;
52
- accessibilityLanguage?: string;
53
- accessibilityRespondsToUserInteraction?: boolean;
54
- accessibilityShowsLargeContentViewer?: boolean;
55
- accessibilityLargeContentTitle?: string;
56
- role?: IAriaProps['role'];
57
- 'aria-label'?: string;
58
- 'aria-labelledby'?: string;
59
- 'aria-live'?: IAriaProps['aria-live'];
60
- 'aria-hidden'?: boolean;
61
- 'aria-busy'?: boolean;
62
- 'aria-checked'?: boolean | 'mixed';
63
- 'aria-disabled'?: boolean;
64
- 'aria-expanded'?: boolean;
65
- 'aria-selected'?: boolean;
66
- 'aria-modal'?: boolean;
67
- 'aria-valuemax'?: number;
68
- 'aria-valuemin'?: number;
69
- 'aria-valuenow'?: number;
70
- 'aria-valuetext'?: string;
71
- protected accessibilityInputs(): IAccessibilityProps & IAriaProps & Record<string, unknown>;
72
- static ɵfac: i0.ɵɵFactoryDeclaration<DrawerLayoutAndroidBase, never>;
73
- static ɵdir: i0.ɵɵDirectiveDeclaration<DrawerLayoutAndroidBase, never, never, {}, { "drawerOpen": "drawerOpen"; "drawerClose": "drawerClose"; "drawerSlide": "drawerSlide"; "drawerStateChanged": "drawerStateChanged"; "accessibilityAction": "accessibilityAction"; "accessibilityTap": "accessibilityTap"; "magicTap": "magicTap"; "accessibilityEscape": "accessibilityEscape"; }, never, never, true, never>;
74
- }
@@ -1,138 +0,0 @@
1
- // Shared types + the input-field base for the Angular DrawerLayoutAndroid: the Props/Handle
2
- // contract both the real Android build (index.android.ts) and the off-Android fallback (index.ts)
3
- // implement. The platform-agnostic enums + the imperative handle live in @symbiote/components
4
- // (shared verbatim with React/Vue, the single source of truth); this file adds only the
5
- // Angular-facing prop surface. Per ADR 0019 the filename selects the build; no Platform.OS read
6
- // anywhere. The Angular twin of the Vue folder's shared.ts, with the bulky @Input field block
7
- // pulled into a base class both builds extend (the Switch SwitchBase precedent), so the input
8
- // surface is declared once. The `inputs:` array itself stays an inline literal per @Component
9
- // (ngc AOT needs a static literal, so it cannot be hoisted into a shared const).
10
- import { Directive, EventEmitter, Output } from '@angular/core';
11
- import * as i0 from "@angular/core";
12
- // The shared @Input/@Output field block. The concrete @Component lists the matching `inputs:`
13
- // array (the SwitchBase pattern) for plain inputs, plus `outputs:` for the events below. Aria props
14
- // use their literal kebab names so a field directly satisfies the optional IAriaProps member and is
15
- // its own input name (no alias bookkeeping). accessibilityInputs() folds the whole bag for
16
- // resolveAccessibilityProps, the way Modal's does. @Directive() is required the moment this base
17
- // carries decorated members (@Output() here) — ngc's AOT build (NG2007) enforces it, mirroring
18
- // ScrollViewBase/SwitchBase.
19
- export class DrawerLayoutAndroidBase {
20
- // The drawer/accessibility lifecycle as real Angular events: `(drawerOpen)="onOpen()"`, not
21
- // `[onDrawerOpen]="onOpen"` — mirrors Pressable's press/hover @Output() conversion. The
22
- // concrete @Component lists these SAME names in its `outputs:` array (the Switch precedent
23
- // for a field declared on a shared base class rather than the concrete class itself).
24
- drawerOpen = new EventEmitter();
25
- drawerClose = new EventEmitter();
26
- drawerSlide = new EventEmitter();
27
- drawerStateChanged = new EventEmitter();
28
- accessibilityAction = new EventEmitter();
29
- accessibilityTap = new EventEmitter();
30
- magicTap = new EventEmitter();
31
- accessibilityEscape = new EventEmitter();
32
- drawerWidth;
33
- drawerPosition;
34
- drawerLockMode;
35
- keyboardDismissMode;
36
- drawerBackgroundColor;
37
- statusBarBackgroundColor;
38
- style;
39
- nativeID;
40
- testID;
41
- accessible;
42
- accessibilityLabel;
43
- accessibilityHint;
44
- accessibilityRole;
45
- accessibilityState;
46
- accessibilityValue;
47
- accessibilityActions;
48
- accessibilityLabelledBy;
49
- importantForAccessibility;
50
- accessibilityLiveRegion;
51
- screenReaderFocusable;
52
- accessibilityElementsHidden;
53
- accessibilityViewIsModal;
54
- accessibilityIgnoresInvertColors;
55
- accessibilityLanguage;
56
- accessibilityRespondsToUserInteraction;
57
- accessibilityShowsLargeContentViewer;
58
- accessibilityLargeContentTitle;
59
- role;
60
- 'aria-label';
61
- 'aria-labelledby';
62
- 'aria-live';
63
- 'aria-hidden';
64
- 'aria-busy';
65
- 'aria-checked';
66
- 'aria-disabled';
67
- 'aria-expanded';
68
- 'aria-selected';
69
- 'aria-modal';
70
- 'aria-valuemax';
71
- 'aria-valuemin';
72
- 'aria-valuenow';
73
- 'aria-valuetext';
74
- // Typed as the a11y intersection WITH the string index (the bag resolveAccessibilityProps folds
75
- // aria-*/role into the RN accessibility* names of), so its result stays assignable to the
76
- // resolveDrawerLayout passthrough.
77
- accessibilityInputs() {
78
- return {
79
- nativeID: this.nativeID,
80
- testID: this.testID,
81
- accessible: this.accessible,
82
- accessibilityLabel: this.accessibilityLabel,
83
- accessibilityHint: this.accessibilityHint,
84
- accessibilityRole: this.accessibilityRole,
85
- accessibilityState: this.accessibilityState,
86
- accessibilityValue: this.accessibilityValue,
87
- accessibilityActions: this.accessibilityActions,
88
- accessibilityLabelledBy: this.accessibilityLabelledBy,
89
- importantForAccessibility: this.importantForAccessibility,
90
- accessibilityLiveRegion: this.accessibilityLiveRegion,
91
- screenReaderFocusable: this.screenReaderFocusable,
92
- accessibilityElementsHidden: this.accessibilityElementsHidden,
93
- accessibilityViewIsModal: this.accessibilityViewIsModal,
94
- accessibilityIgnoresInvertColors: this.accessibilityIgnoresInvertColors,
95
- accessibilityLanguage: this.accessibilityLanguage,
96
- accessibilityRespondsToUserInteraction: this.accessibilityRespondsToUserInteraction,
97
- accessibilityShowsLargeContentViewer: this.accessibilityShowsLargeContentViewer,
98
- accessibilityLargeContentTitle: this.accessibilityLargeContentTitle,
99
- role: this.role,
100
- 'aria-label': this['aria-label'],
101
- 'aria-labelledby': this['aria-labelledby'],
102
- 'aria-live': this['aria-live'],
103
- 'aria-hidden': this['aria-hidden'],
104
- 'aria-busy': this['aria-busy'],
105
- 'aria-checked': this['aria-checked'],
106
- 'aria-disabled': this['aria-disabled'],
107
- 'aria-expanded': this['aria-expanded'],
108
- 'aria-selected': this['aria-selected'],
109
- 'aria-modal': this['aria-modal'],
110
- 'aria-valuemax': this['aria-valuemax'],
111
- 'aria-valuemin': this['aria-valuemin'],
112
- 'aria-valuenow': this['aria-valuenow'],
113
- 'aria-valuetext': this['aria-valuetext'],
114
- };
115
- }
116
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: DrawerLayoutAndroidBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
117
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.4", type: DrawerLayoutAndroidBase, isStandalone: true, outputs: { drawerOpen: "drawerOpen", drawerClose: "drawerClose", drawerSlide: "drawerSlide", drawerStateChanged: "drawerStateChanged", accessibilityAction: "accessibilityAction", accessibilityTap: "accessibilityTap", magicTap: "magicTap", accessibilityEscape: "accessibilityEscape" }, ngImport: i0 });
118
- }
119
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.4", ngImport: i0, type: DrawerLayoutAndroidBase, decorators: [{
120
- type: Directive
121
- }], propDecorators: { drawerOpen: [{
122
- type: Output
123
- }], drawerClose: [{
124
- type: Output
125
- }], drawerSlide: [{
126
- type: Output
127
- }], drawerStateChanged: [{
128
- type: Output
129
- }], accessibilityAction: [{
130
- type: Output
131
- }], accessibilityTap: [{
132
- type: Output
133
- }], magicTap: [{
134
- type: Output
135
- }], accessibilityEscape: [{
136
- type: Output
137
- }] } });
138
- //# sourceMappingURL=shared.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"shared.js","sourceRoot":"","sources":["../../../../src/components/drawer-layout-android/shared.ts"],"names":[],"mappings":"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"}
@@ -1,29 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { type IDrawerLayoutAndroidHandle } from '@symbiote/components';
3
- import { type ISymbioteEvent, type IViewStyle } from '@symbiote/engine';
4
- import { DrawerLayoutAndroidBase } from './shared';
5
- export type { IDrawerPosition, IDrawerLockMode, IKeyboardDismissMode, IDrawerState, IDrawerSlideEvent, IDrawerLayoutAndroidHandle, } from './shared';
6
- export type { IAngularDrawerLayoutAndroidProps } from './shared';
7
- export declare class AndroidDrawerLayoutHost {
8
- }
9
- export declare class DrawerLayoutAndroid extends DrawerLayoutAndroidBase implements IDrawerLayoutAndroidHandle {
10
- private hostElement?;
11
- private drawerOpened;
12
- private readonly changeDetector;
13
- private cachedResolved;
14
- private cachedResolvedKey;
15
- private get resolved();
16
- get hostProps(): Record<string, unknown>;
17
- get contentWrapperStyle(): Readonly<IViewStyle>;
18
- get navigationWrapperStyle(): IViewStyle;
19
- get navigationPointerEvents(): 'auto' | 'none';
20
- handleDrawerOpen(): void;
21
- handleDrawerClose(): void;
22
- handleDrawerSlide(event: unknown): void;
23
- handleDrawerStateChanged(event: unknown): void;
24
- emit(emitter: EventEmitter<ISymbioteEvent>, event: unknown): void;
25
- openDrawer(): void;
26
- closeDrawer(): void;
27
- private dispatchDrawer;
28
- private get hostNode();
29
- }