@nativescript-community/ui-collectionview-swipemenu 5.0.3

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.
@@ -0,0 +1,213 @@
1
+ import { Component, Directive, ElementRef, EmbeddedViewRef, Inject, NgModule, TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import { SwipeMenu, install as installSwipeMenu } from '@nativescript-community/ui-collectionview-swipemenu';
3
+ import { registerElement } from '@nativescript/angular';
4
+ import * as i0 from "@angular/core";
5
+ const _c0 = ["*"];
6
+ installSwipeMenu();
7
+ const LEFTDRAWER = 'LeftSwipeMenu';
8
+ const RIGHTDRAWER = 'RightSwipeMenu';
9
+ const TOPDRAWER = 'TopSwipeMenu';
10
+ const BOTTOMDRAWER = 'BottomSwipeMenu';
11
+ const MAINCONTENT = 'MainContent';
12
+ /**
13
+ * This is the SideSwipeMenu component. It separates your mobile app's screen
14
+ * into a main part and a menu part whereby the menu part is shown upon a swipe
15
+ * gesture using a transition effect.
16
+ */
17
+ export class SwipeMenuComponent {
18
+ constructor(elementRef, viewContainer) {
19
+ this.elementRef = elementRef;
20
+ this.viewContainer = viewContainer;
21
+ this.swipemenu = this.elementRef.nativeElement;
22
+ }
23
+ get nativeElement() {
24
+ return this.swipemenu;
25
+ }
26
+ set gestureEnabled(value) {
27
+ this._gestureEnabled = value;
28
+ this.updateGestureEnabled();
29
+ }
30
+ updateGestureEnabled() {
31
+ this.swipemenu.gestureEnabled = this._gestureEnabled;
32
+ }
33
+ }
34
+ SwipeMenuComponent.ɵfac = function SwipeMenuComponent_Factory(t) { return new (t || SwipeMenuComponent)(i0.ɵɵdirectiveInject(ElementRef), i0.ɵɵdirectiveInject(ViewContainerRef)); };
35
+ SwipeMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SwipeMenuComponent, selectors: [["SwipeMenu"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function SwipeMenuComponent_Template(rf, ctx) { if (rf & 1) {
36
+ i0.ɵɵprojectionDef();
37
+ i0.ɵɵprojection(0);
38
+ } }, encapsulation: 2 });
39
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuComponent, [{
40
+ type: Component,
41
+ args: [{
42
+ selector: 'SwipeMenu',
43
+ template: '<ng-content></ng-content>'
44
+ }]
45
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
46
+ type: Inject,
47
+ args: [ElementRef]
48
+ }] }, { type: i0.ViewContainerRef, decorators: [{
49
+ type: Inject,
50
+ args: [ViewContainerRef]
51
+ }] }]; }, null); })();
52
+ /**
53
+ * Directive identifying the left swipemenu
54
+ */
55
+ export class LeftSwipeMenuDirective {
56
+ constructor(_elementRef) {
57
+ this._elementRef = _elementRef;
58
+ this._elementRef.nativeElement.id = LEFTDRAWER;
59
+ }
60
+ }
61
+ LeftSwipeMenuDirective.ɵfac = function LeftSwipeMenuDirective_Factory(t) { return new (t || LeftSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
62
+ LeftSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: LeftSwipeMenuDirective, selectors: [["", "leftSwipeMenu", ""]] });
63
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LeftSwipeMenuDirective, [{
64
+ type: Directive,
65
+ args: [{
66
+ selector: '[leftSwipeMenu]'
67
+ }]
68
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
69
+ type: Inject,
70
+ args: [ElementRef]
71
+ }] }]; }, null); })();
72
+ /**
73
+ * Directive identifying the right swipemenu
74
+ */
75
+ export class RightSwipeMenuDirective {
76
+ constructor(_elementRef) {
77
+ this._elementRef = _elementRef;
78
+ this._elementRef.nativeElement.id = RIGHTDRAWER;
79
+ }
80
+ }
81
+ RightSwipeMenuDirective.ɵfac = function RightSwipeMenuDirective_Factory(t) { return new (t || RightSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
82
+ RightSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: RightSwipeMenuDirective, selectors: [["", "rightSwipeMenu", ""]] });
83
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RightSwipeMenuDirective, [{
84
+ type: Directive,
85
+ args: [{
86
+ selector: '[rightSwipeMenu]'
87
+ }]
88
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
89
+ type: Inject,
90
+ args: [ElementRef]
91
+ }] }]; }, null); })();
92
+ /**
93
+ * Directive identifying the right swipemenu
94
+ */
95
+ export class TopSwipeMenuDirective {
96
+ constructor(_elementRef) {
97
+ this._elementRef = _elementRef;
98
+ this._elementRef.nativeElement.id = TOPDRAWER;
99
+ }
100
+ }
101
+ TopSwipeMenuDirective.ɵfac = function TopSwipeMenuDirective_Factory(t) { return new (t || TopSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
102
+ TopSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: TopSwipeMenuDirective, selectors: [["", "topSwipeMenu", ""]] });
103
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TopSwipeMenuDirective, [{
104
+ type: Directive,
105
+ args: [{
106
+ selector: '[topSwipeMenu]'
107
+ }]
108
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
109
+ type: Inject,
110
+ args: [ElementRef]
111
+ }] }]; }, null); })();
112
+ /**
113
+ * Directive identifying the right swipemenu
114
+ */
115
+ export class BottomSwipeMenuDirective {
116
+ constructor(_elementRef) {
117
+ this._elementRef = _elementRef;
118
+ this._elementRef.nativeElement.id = BOTTOMDRAWER;
119
+ }
120
+ }
121
+ BottomSwipeMenuDirective.ɵfac = function BottomSwipeMenuDirective_Factory(t) { return new (t || BottomSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
122
+ BottomSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: BottomSwipeMenuDirective, selectors: [["", "bottomSwipeMenu", ""]] });
123
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BottomSwipeMenuDirective, [{
124
+ type: Directive,
125
+ args: [{
126
+ selector: '[bottomSwipeMenu]'
127
+ }]
128
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
129
+ type: Inject,
130
+ args: [ElementRef]
131
+ }] }]; }, null); })();
132
+ /**
133
+ * Directive identifying the main content.
134
+ */
135
+ export class MainContentDirective {
136
+ constructor(_elementRef) {
137
+ this._elementRef = _elementRef;
138
+ this._elementRef.nativeElement.id = MAINCONTENT;
139
+ }
140
+ }
141
+ MainContentDirective.ɵfac = function MainContentDirective_Factory(t) { return new (t || MainContentDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
142
+ MainContentDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: MainContentDirective, selectors: [["", "mainContent", ""]] });
143
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MainContentDirective, [{
144
+ type: Directive,
145
+ args: [{
146
+ selector: '[mainContent]'
147
+ }]
148
+ }], function () { return [{ type: i0.ElementRef, decorators: [{
149
+ type: Inject,
150
+ args: [ElementRef]
151
+ }] }]; }, null); })();
152
+ const sideSwipeMenuMeta = {
153
+ insertChild: (parent, child) => {
154
+ const swipemenu = parent;
155
+ const childView = child;
156
+ if (childView.id === MAINCONTENT) {
157
+ swipemenu.mainContent = childView;
158
+ }
159
+ if (childView.id === LEFTDRAWER) {
160
+ swipemenu.leftDrawer = childView;
161
+ }
162
+ if (childView.id === RIGHTDRAWER) {
163
+ swipemenu.rightDrawer = childView;
164
+ }
165
+ if (childView.id === TOPDRAWER) {
166
+ swipemenu.topDrawer = childView;
167
+ }
168
+ if (childView.id === BOTTOMDRAWER) {
169
+ swipemenu.bottomDrawer = childView;
170
+ }
171
+ },
172
+ removeChild: (parent, child) => {
173
+ const swipemenu = parent;
174
+ const childView = child;
175
+ if (childView.id === MAINCONTENT) {
176
+ swipemenu.mainContent = null;
177
+ }
178
+ if (childView.id === LEFTDRAWER) {
179
+ swipemenu.leftDrawer = null;
180
+ }
181
+ if (childView.id === RIGHTDRAWER) {
182
+ swipemenu.rightDrawer = null;
183
+ }
184
+ if (childView.id === TOPDRAWER) {
185
+ swipemenu.topDrawer = null;
186
+ }
187
+ if (childView.id === BOTTOMDRAWER) {
188
+ swipemenu.bottomDrawer = null;
189
+ }
190
+ }
191
+ };
192
+ /**
193
+ * Directives identifying the SwipeMenu.
194
+ */
195
+ export const SIDEDRAWER_DIRECTIVES = [LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective];
196
+ registerElement('SwipeMenu', () => SwipeMenu, sideSwipeMenuMeta);
197
+ /**
198
+ * NgModule containing all of the RadSideSwipeMenu directives.
199
+ */
200
+ export class SwipeMenuModule {
201
+ }
202
+ SwipeMenuModule.ɵfac = function SwipeMenuModule_Factory(t) { return new (t || SwipeMenuModule)(); };
203
+ SwipeMenuModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: SwipeMenuModule });
204
+ SwipeMenuModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
205
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuModule, [{
206
+ type: NgModule,
207
+ args: [{
208
+ declarations: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],
209
+ exports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES]
210
+ }]
211
+ }], null, null); })();
212
+ (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(SwipeMenuModule, { declarations: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective], exports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective] }); })();
213
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3N3aXBlbWVudS9hbmd1bGFyL21vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxRQUFRLEVBQUUsV0FBVyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ25JLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxJQUFJLGdCQUFnQixFQUFFLE1BQU0scURBQXFELENBQUM7QUFDN0csT0FBTyxFQUF5QixlQUFlLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7O0FBQy9FLGdCQUFnQixFQUFFLENBQUM7QUFDbkIsTUFBTSxVQUFVLEdBQVcsZUFBZSxDQUFDO0FBQzNDLE1BQU0sV0FBVyxHQUFXLGdCQUFnQixDQUFDO0FBQzdDLE1BQU0sU0FBUyxHQUFXLGNBQWMsQ0FBQztBQUN6QyxNQUFNLFlBQVksR0FBVyxpQkFBaUIsQ0FBQztBQUMvQyxNQUFNLFdBQVcsR0FBVyxhQUFhLENBQUM7QUFRMUM7Ozs7R0FJRztBQUtILE1BQU0sT0FBTyxrQkFBa0I7SUFPM0IsWUFBdUMsVUFBc0IsRUFBb0MsYUFBK0I7UUFBekYsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQUFvQyxrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDNUgsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQztJQUNuRCxDQUFDO0lBRUQsSUFBVyxhQUFhO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQztJQUMxQixDQUFDO0lBRUQsSUFBSSxjQUFjLENBQUMsS0FBYztRQUM3QixJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQztRQUM3QixJQUFJLENBQUMsb0JBQW9CLEVBQUUsQ0FBQztJQUNoQyxDQUFDO0lBRU8sb0JBQW9CO1FBQ3hC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QUFFRjs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFHLENBQUMsc0JBQXNCLEVBQUUsdUJBQXVCLEVBQUUscUJBQXFCLEVBQUUsd0JBQXdCLEVBQUUsb0JBQW9CLENBQUMsQ0FBQztBQUU5SixlQUFlLENBQUMsV0FBVyxFQUFFLEdBQUcsRUFBRSxDQUFDLFNBQVMsRUFBRSxpQkFBaUIsQ0FBQyxDQUFDO0FBRWpFOztHQUVHO0FBS0gsTUFBTSxPQUFPLGVBQWU7OzhFQUFmLGVBQWU7aUVBQWYsZUFBZTs7dUZBQWYsZUFBZTtjQUozQixRQUFRO2VBQUM7Z0JBQ04sWUFBWSxFQUFFLENBQUMsa0JBQWtCLEVBQUUscUJBQXFCLENBQUM7Z0JBQ3pELE9BQU8sRUFBRSxDQUFDLGtCQUFrQixFQUFFLHFCQUFxQixDQUFDO2FBQ3ZEOzt3RkFDWSxlQUFlLG1CQS9JZixrQkFBa0IsRUErQmxCLHNCQUFzQixFQVd0Qix1QkFBdUIsRUFZdkIscUJBQXFCLEVBWXJCLHdCQUF3QixFQVl4QixvQkFBb0IsYUE5RXBCLGtCQUFrQixFQStCbEIsc0JBQXNCLEVBV3RCLHVCQUF1QixFQVl2QixxQkFBcUIsRUFZckIsd0JBQXdCLEVBWXhCLG9CQUFvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBFbWJlZGRlZFZpZXdSZWYsIEluamVjdCwgTmdNb2R1bGUsIFRlbXBsYXRlUmVmLCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTd2lwZU1lbnUsIGluc3RhbGwgYXMgaW5zdGFsbFN3aXBlTWVudSB9IGZyb20gJ0BuYXRpdmVzY3JpcHQtY29tbXVuaXR5L3VpLWNvbGxlY3Rpb252aWV3LXN3aXBlbWVudSc7XG5pbXBvcnQgeyBOZ1ZpZXcsIFZpZXdDbGFzc01ldGEsIHJlZ2lzdGVyRWxlbWVudCB9IGZyb20gJ0BuYXRpdmVzY3JpcHQvYW5ndWxhcic7XG5pbnN0YWxsU3dpcGVNZW51KCk7XG5jb25zdCBMRUZURFJBV0VSOiBzdHJpbmcgPSAnTGVmdFN3aXBlTWVudSc7XG5jb25zdCBSSUdIVERSQVdFUjogc3RyaW5nID0gJ1JpZ2h0U3dpcGVNZW51JztcbmNvbnN0IFRPUERSQVdFUjogc3RyaW5nID0gJ1RvcFN3aXBlTWVudSc7XG5jb25zdCBCT1RUT01EUkFXRVI6IHN0cmluZyA9ICdCb3R0b21Td2lwZU1lbnUnO1xuY29uc3QgTUFJTkNPTlRFTlQ6IHN0cmluZyA9ICdNYWluQ29udGVudCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSXRlbUV2ZW50QXJncyB7XG4gICAgb2JqZWN0OiBhbnk7XG4gICAgdmlldzogRW1iZWRkZWRWaWV3UmVmPGFueT47XG4gICAgcmV0dXJuVmFsdWU/OiBib29sZWFuO1xufVxuXG4vKipcbiAqIFRoaXMgaXMgdGhlIFNpZGVTd2lwZU1lbnUgY29tcG9uZW50LiBJdCBzZXBhcmF0ZXMgeW91ciBtb2JpbGUgYXBwJ3Mgc2NyZWVuXG4gKiBpbnRvIGEgbWFpbiBwYXJ0IGFuZCBhIG1lbnUgcGFydCB3aGVyZWJ5IHRoZSBtZW51IHBhcnQgaXMgc2hvd24gdXBvbiBhIHN3aXBlXG4gKiBnZXN0dXJlIHVzaW5nIGEgdHJhbnNpdGlvbiBlZmZlY3QuXG4gKi9cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnU3dpcGVNZW51JyxcbiAgICB0ZW1wbGF0ZTogJzxuZy1jb250ZW50PjwvbmctY29udGVudD4nXG59KVxuZXhwb3J0IGNsYXNzIFN3aXBlTWVudUNvbXBvbmVudCB7XG4gICAgcHVibGljIHN3aXBlbWVudTogU3dpcGVNZW51O1xuICAgIHB1YmxpYyBtYWluVGVtcGxhdGU6IFRlbXBsYXRlUmVmPEVsZW1lbnRSZWY+O1xuICAgIHB1YmxpYyBzd2lwZW1lbnVUZW1wbGF0ZTogVGVtcGxhdGVSZWY8RWxlbWVudFJlZj47XG5cbiAgICBwcml2YXRlIF9nZXN0dXJlRW5hYmxlZDogYm9vbGVhbjtcblxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHVibGljIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsIEBJbmplY3QoVmlld0NvbnRhaW5lclJlZikgcHJpdmF0ZSB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmKSB7XG4gICAgICAgIHRoaXMuc3dpcGVtZW51ID0gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG4gICAgfVxuXG4gICAgcHVibGljIGdldCBuYXRpdmVFbGVtZW50KCk6IFN3aXBlTWVudSB7XG4gICAgICAgIHJldHVybiB0aGlzLnN3aXBlbWVudTtcbiAgICB9XG5cbiAgICBzZXQgZ2VzdHVyZUVuYWJsZWQodmFsdWU6IGJvb2xlYW4pIHtcbiAgICAgICAgdGhpcy5fZ2VzdHVyZUVuYWJsZWQgPSB2YWx1ZTtcbiAgICAgICAgdGhpcy51cGRhdGVHZXN0dXJlRW5hYmxlZCgpO1xuICAgIH1cblxuICAgIHByaXZhdGUgdXBkYXRlR2VzdHVyZUVuYWJsZWQoKSB7XG4gICAgICAgIHRoaXMuc3dpcGVtZW51Lmdlc3R1cmVFbmFibGVkID0gdGhpcy5fZ2VzdHVyZUVuYWJsZWQ7XG4gICAgfVxufVxuXG4vKipcbiAqIERpcmVjdGl2ZSBpZGVudGlmeWluZyB0aGUgbGVmdCBzd2lwZW1lbnVcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbbGVmdFN3aXBlTWVudV0nXG59KVxuZXhwb3J0IGNsYXNzIExlZnRTd2lwZU1lbnVEaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaWQgPSBMRUZURFJBV0VSO1xuICAgIH1cbn1cbi8qKlxuICogRGlyZWN0aXZlIGlkZW50aWZ5aW5nIHRoZSByaWdodCBzd2lwZW1lbnVcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbcmlnaHRTd2lwZU1lbnVdJ1xufSlcbmV4cG9ydCBjbGFzcyBSaWdodFN3aXBlTWVudURpcmVjdGl2ZSB7XG4gICAgY29uc3RydWN0b3IoQEluamVjdChFbGVtZW50UmVmKSBwcml2YXRlIF9lbGVtZW50UmVmOiBFbGVtZW50UmVmKSB7XG4gICAgICAgIHRoaXMuX2VsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5pZCA9IFJJR0hURFJBV0VSO1xuICAgIH1cbn1cblxuLyoqXG4gKiBEaXJlY3RpdmUgaWRlbnRpZnlpbmcgdGhlIHJpZ2h0IHN3aXBlbWVudVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1t0b3BTd2lwZU1lbnVdJ1xufSlcbmV4cG9ydCBjbGFzcyBUb3BTd2lwZU1lbnVEaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaWQgPSBUT1BEUkFXRVI7XG4gICAgfVxufVxuXG4vKipcbiAqIERpcmVjdGl2ZSBpZGVudGlmeWluZyB0aGUgcmlnaHQgc3dpcGVtZW51XG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW2JvdHRvbVN3aXBlTWVudV0nXG59KVxuZXhwb3J0IGNsYXNzIEJvdHRvbVN3aXBlTWVudURpcmVjdGl2ZSB7XG4gICAgY29uc3RydWN0b3IoQEluamVjdChFbGVtZW50UmVmKSBwcml2YXRlIF9lbGVtZW50UmVmOiBFbGVtZW50UmVmKSB7XG4gICAgICAgIHRoaXMuX2VsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5pZCA9IEJPVFRPTURSQVdFUjtcbiAgICB9XG59XG5cbi8qKlxuICogRGlyZWN0aXZlIGlkZW50aWZ5aW5nIHRoZSBtYWluIGNvbnRlbnQuXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW21haW5Db250ZW50XSdcbn0pXG5leHBvcnQgY2xhc3MgTWFpbkNvbnRlbnREaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaWQgPSBNQUlOQ09OVEVOVDtcbiAgICB9XG59XG5cbmNvbnN0IHNpZGVTd2lwZU1lbnVNZXRhOiBWaWV3Q2xhc3NNZXRhID0ge1xuICAgIGluc2VydENoaWxkOiAocGFyZW50OiBOZ1ZpZXcsIGNoaWxkOiBOZ1ZpZXcpID0+IHtcbiAgICAgICAgY29uc3Qgc3dpcGVtZW51ID0gcGFyZW50IGFzIGFueSBhcyBTd2lwZU1lbnU7XG4gICAgICAgIGNvbnN0IGNoaWxkVmlldyA9IGNoaWxkO1xuXG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IE1BSU5DT05URU5UKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUubWFpbkNvbnRlbnQgPSBjaGlsZFZpZXc7XG4gICAgICAgIH1cblxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBMRUZURFJBV0VSKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUubGVmdERyYXdlciA9IGNoaWxkVmlldztcbiAgICAgICAgfVxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBSSUdIVERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LnJpZ2h0RHJhd2VyID0gY2hpbGRWaWV3O1xuICAgICAgICB9XG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IFRPUERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LnRvcERyYXdlciA9IGNoaWxkVmlldztcbiAgICAgICAgfVxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBCT1RUT01EUkFXRVIpIHtcbiAgICAgICAgICAgIHN3aXBlbWVudS5ib3R0b21EcmF3ZXIgPSBjaGlsZFZpZXc7XG4gICAgICAgIH1cbiAgICB9LFxuICAgIHJlbW92ZUNoaWxkOiAocGFyZW50OiBOZ1ZpZXcsIGNoaWxkOiBOZ1ZpZXcpID0+IHtcbiAgICAgICAgY29uc3Qgc3dpcGVtZW51ID0gcGFyZW50IGFzIGFueSBhcyBTd2lwZU1lbnU7XG4gICAgICAgIGNvbnN0IGNoaWxkVmlldyA9IGNoaWxkO1xuXG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IE1BSU5DT05URU5UKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUubWFpbkNvbnRlbnQgPSBudWxsO1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGNoaWxkVmlldy5pZCA9PT0gTEVGVERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LmxlZnREcmF3ZXIgPSBudWxsO1xuICAgICAgICB9XG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IFJJR0hURFJBV0VSKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUucmlnaHREcmF3ZXIgPSBudWxsO1xuICAgICAgICB9XG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IFRPUERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LnRvcERyYXdlciA9IG51bGw7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKGNoaWxkVmlldy5pZCA9PT0gQk9UVE9NRFJBV0VSKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUuYm90dG9tRHJhd2VyID0gbnVsbDtcbiAgICAgICAgfVxuICAgIH1cbn07XG5cbi8qKlxuICogRGlyZWN0aXZlcyBpZGVudGlmeWluZyB0aGUgU3dpcGVNZW51LlxuICovXG5leHBvcnQgY29uc3QgU0lERURSQVdFUl9ESVJFQ1RJVkVTID0gW0xlZnRTd2lwZU1lbnVEaXJlY3RpdmUsIFJpZ2h0U3dpcGVNZW51RGlyZWN0aXZlLCBUb3BTd2lwZU1lbnVEaXJlY3RpdmUsIEJvdHRvbVN3aXBlTWVudURpcmVjdGl2ZSwgTWFpbkNvbnRlbnREaXJlY3RpdmVdO1xuXG5yZWdpc3RlckVsZW1lbnQoJ1N3aXBlTWVudScsICgpID0+IFN3aXBlTWVudSwgc2lkZVN3aXBlTWVudU1ldGEpO1xuXG4vKipcbiAqIE5nTW9kdWxlIGNvbnRhaW5pbmcgYWxsIG9mIHRoZSBSYWRTaWRlU3dpcGVNZW51IGRpcmVjdGl2ZXMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbU3dpcGVNZW51Q29tcG9uZW50LCBTSURFRFJBV0VSX0RJUkVDVElWRVNdLFxuICAgIGV4cG9ydHM6IFtTd2lwZU1lbnVDb21wb25lbnQsIFNJREVEUkFXRVJfRElSRUNUSVZFU11cbn0pXG5leHBvcnQgY2xhc3MgU3dpcGVNZW51TW9kdWxlIHt9XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF0aXZlc2NyaXB0LWNvbW11bml0eS11aS1jb2xsZWN0aW9udmlldy1zd2lwZW1lbnUtYW5ndWxhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9zd2lwZW1lbnUvYW5ndWxhci9uYXRpdmVzY3JpcHQtY29tbXVuaXR5LXVpLWNvbGxlY3Rpb252aWV3LXN3aXBlbWVudS1hbmd1bGFyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -0,0 +1,248 @@
1
+ import * as i0 from '@angular/core';
2
+ import { ElementRef, ViewContainerRef, Component, Inject, Directive, NgModule } from '@angular/core';
3
+ import { install, SwipeMenu } from '@nativescript-community/ui-collectionview-swipemenu';
4
+ import { registerElement } from '@nativescript/angular';
5
+
6
+ const _c0 = ["*"];
7
+ install();
8
+ const LEFTDRAWER = 'LeftSwipeMenu';
9
+ const RIGHTDRAWER = 'RightSwipeMenu';
10
+ const TOPDRAWER = 'TopSwipeMenu';
11
+ const BOTTOMDRAWER = 'BottomSwipeMenu';
12
+ const MAINCONTENT = 'MainContent';
13
+ /**
14
+ * This is the SideSwipeMenu component. It separates your mobile app's screen
15
+ * into a main part and a menu part whereby the menu part is shown upon a swipe
16
+ * gesture using a transition effect.
17
+ */
18
+ class SwipeMenuComponent {
19
+ constructor(elementRef, viewContainer) {
20
+ this.elementRef = elementRef;
21
+ this.viewContainer = viewContainer;
22
+ this.swipemenu = this.elementRef.nativeElement;
23
+ }
24
+ get nativeElement() {
25
+ return this.swipemenu;
26
+ }
27
+ set gestureEnabled(value) {
28
+ this._gestureEnabled = value;
29
+ this.updateGestureEnabled();
30
+ }
31
+ updateGestureEnabled() {
32
+ this.swipemenu.gestureEnabled = this._gestureEnabled;
33
+ }
34
+ }
35
+ SwipeMenuComponent.ɵfac = function SwipeMenuComponent_Factory(t) { return new (t || SwipeMenuComponent)(i0.ɵɵdirectiveInject(ElementRef), i0.ɵɵdirectiveInject(ViewContainerRef)); };
36
+ SwipeMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SwipeMenuComponent, selectors: [["SwipeMenu"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function SwipeMenuComponent_Template(rf, ctx) {
37
+ if (rf & 1) {
38
+ i0.ɵɵprojectionDef();
39
+ i0.ɵɵprojection(0);
40
+ }
41
+ }, encapsulation: 2 });
42
+ (function () {
43
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuComponent, [{
44
+ type: Component,
45
+ args: [{
46
+ selector: 'SwipeMenu',
47
+ template: '<ng-content></ng-content>'
48
+ }]
49
+ }], function () {
50
+ return [{ type: i0.ElementRef, decorators: [{
51
+ type: Inject,
52
+ args: [ElementRef]
53
+ }] }, { type: i0.ViewContainerRef, decorators: [{
54
+ type: Inject,
55
+ args: [ViewContainerRef]
56
+ }] }];
57
+ }, null);
58
+ })();
59
+ /**
60
+ * Directive identifying the left swipemenu
61
+ */
62
+ class LeftSwipeMenuDirective {
63
+ constructor(_elementRef) {
64
+ this._elementRef = _elementRef;
65
+ this._elementRef.nativeElement.id = LEFTDRAWER;
66
+ }
67
+ }
68
+ LeftSwipeMenuDirective.ɵfac = function LeftSwipeMenuDirective_Factory(t) { return new (t || LeftSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
69
+ LeftSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: LeftSwipeMenuDirective, selectors: [["", "leftSwipeMenu", ""]] });
70
+ (function () {
71
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LeftSwipeMenuDirective, [{
72
+ type: Directive,
73
+ args: [{
74
+ selector: '[leftSwipeMenu]'
75
+ }]
76
+ }], function () {
77
+ return [{ type: i0.ElementRef, decorators: [{
78
+ type: Inject,
79
+ args: [ElementRef]
80
+ }] }];
81
+ }, null);
82
+ })();
83
+ /**
84
+ * Directive identifying the right swipemenu
85
+ */
86
+ class RightSwipeMenuDirective {
87
+ constructor(_elementRef) {
88
+ this._elementRef = _elementRef;
89
+ this._elementRef.nativeElement.id = RIGHTDRAWER;
90
+ }
91
+ }
92
+ RightSwipeMenuDirective.ɵfac = function RightSwipeMenuDirective_Factory(t) { return new (t || RightSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
93
+ RightSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: RightSwipeMenuDirective, selectors: [["", "rightSwipeMenu", ""]] });
94
+ (function () {
95
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RightSwipeMenuDirective, [{
96
+ type: Directive,
97
+ args: [{
98
+ selector: '[rightSwipeMenu]'
99
+ }]
100
+ }], function () {
101
+ return [{ type: i0.ElementRef, decorators: [{
102
+ type: Inject,
103
+ args: [ElementRef]
104
+ }] }];
105
+ }, null);
106
+ })();
107
+ /**
108
+ * Directive identifying the right swipemenu
109
+ */
110
+ class TopSwipeMenuDirective {
111
+ constructor(_elementRef) {
112
+ this._elementRef = _elementRef;
113
+ this._elementRef.nativeElement.id = TOPDRAWER;
114
+ }
115
+ }
116
+ TopSwipeMenuDirective.ɵfac = function TopSwipeMenuDirective_Factory(t) { return new (t || TopSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
117
+ TopSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: TopSwipeMenuDirective, selectors: [["", "topSwipeMenu", ""]] });
118
+ (function () {
119
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TopSwipeMenuDirective, [{
120
+ type: Directive,
121
+ args: [{
122
+ selector: '[topSwipeMenu]'
123
+ }]
124
+ }], function () {
125
+ return [{ type: i0.ElementRef, decorators: [{
126
+ type: Inject,
127
+ args: [ElementRef]
128
+ }] }];
129
+ }, null);
130
+ })();
131
+ /**
132
+ * Directive identifying the right swipemenu
133
+ */
134
+ class BottomSwipeMenuDirective {
135
+ constructor(_elementRef) {
136
+ this._elementRef = _elementRef;
137
+ this._elementRef.nativeElement.id = BOTTOMDRAWER;
138
+ }
139
+ }
140
+ BottomSwipeMenuDirective.ɵfac = function BottomSwipeMenuDirective_Factory(t) { return new (t || BottomSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
141
+ BottomSwipeMenuDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: BottomSwipeMenuDirective, selectors: [["", "bottomSwipeMenu", ""]] });
142
+ (function () {
143
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BottomSwipeMenuDirective, [{
144
+ type: Directive,
145
+ args: [{
146
+ selector: '[bottomSwipeMenu]'
147
+ }]
148
+ }], function () {
149
+ return [{ type: i0.ElementRef, decorators: [{
150
+ type: Inject,
151
+ args: [ElementRef]
152
+ }] }];
153
+ }, null);
154
+ })();
155
+ /**
156
+ * Directive identifying the main content.
157
+ */
158
+ class MainContentDirective {
159
+ constructor(_elementRef) {
160
+ this._elementRef = _elementRef;
161
+ this._elementRef.nativeElement.id = MAINCONTENT;
162
+ }
163
+ }
164
+ MainContentDirective.ɵfac = function MainContentDirective_Factory(t) { return new (t || MainContentDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
165
+ MainContentDirective.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: MainContentDirective, selectors: [["", "mainContent", ""]] });
166
+ (function () {
167
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MainContentDirective, [{
168
+ type: Directive,
169
+ args: [{
170
+ selector: '[mainContent]'
171
+ }]
172
+ }], function () {
173
+ return [{ type: i0.ElementRef, decorators: [{
174
+ type: Inject,
175
+ args: [ElementRef]
176
+ }] }];
177
+ }, null);
178
+ })();
179
+ const sideSwipeMenuMeta = {
180
+ insertChild: (parent, child) => {
181
+ const swipemenu = parent;
182
+ const childView = child;
183
+ if (childView.id === MAINCONTENT) {
184
+ swipemenu.mainContent = childView;
185
+ }
186
+ if (childView.id === LEFTDRAWER) {
187
+ swipemenu.leftDrawer = childView;
188
+ }
189
+ if (childView.id === RIGHTDRAWER) {
190
+ swipemenu.rightDrawer = childView;
191
+ }
192
+ if (childView.id === TOPDRAWER) {
193
+ swipemenu.topDrawer = childView;
194
+ }
195
+ if (childView.id === BOTTOMDRAWER) {
196
+ swipemenu.bottomDrawer = childView;
197
+ }
198
+ },
199
+ removeChild: (parent, child) => {
200
+ const swipemenu = parent;
201
+ const childView = child;
202
+ if (childView.id === MAINCONTENT) {
203
+ swipemenu.mainContent = null;
204
+ }
205
+ if (childView.id === LEFTDRAWER) {
206
+ swipemenu.leftDrawer = null;
207
+ }
208
+ if (childView.id === RIGHTDRAWER) {
209
+ swipemenu.rightDrawer = null;
210
+ }
211
+ if (childView.id === TOPDRAWER) {
212
+ swipemenu.topDrawer = null;
213
+ }
214
+ if (childView.id === BOTTOMDRAWER) {
215
+ swipemenu.bottomDrawer = null;
216
+ }
217
+ }
218
+ };
219
+ /**
220
+ * Directives identifying the SwipeMenu.
221
+ */
222
+ const SIDEDRAWER_DIRECTIVES = [LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective];
223
+ registerElement('SwipeMenu', () => SwipeMenu, sideSwipeMenuMeta);
224
+ /**
225
+ * NgModule containing all of the RadSideSwipeMenu directives.
226
+ */
227
+ class SwipeMenuModule {
228
+ }
229
+ SwipeMenuModule.ɵfac = function SwipeMenuModule_Factory(t) { return new (t || SwipeMenuModule)(); };
230
+ SwipeMenuModule.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: SwipeMenuModule });
231
+ SwipeMenuModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
232
+ (function () {
233
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuModule, [{
234
+ type: NgModule,
235
+ args: [{
236
+ declarations: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],
237
+ exports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES]
238
+ }]
239
+ }], null, null);
240
+ })();
241
+ (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(SwipeMenuModule, { declarations: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective], exports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective] }); })();
242
+
243
+ /**
244
+ * Generated bundle index. Do not edit.
245
+ */
246
+
247
+ export { BottomSwipeMenuDirective, LeftSwipeMenuDirective, MainContentDirective, RightSwipeMenuDirective, SIDEDRAWER_DIRECTIVES, SwipeMenuComponent, SwipeMenuModule, TopSwipeMenuDirective };
248
+ //# sourceMappingURL=nativescript-community-ui-collectionview-swipemenu-angular.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nativescript-community-ui-collectionview-swipemenu-angular.mjs","sources":["../../../../src/swipemenu/angular/module.ts","../../../../src/swipemenu/angular/nativescript-community-ui-collectionview-swipemenu-angular.ts"],"sourcesContent":["import { Component, Directive, ElementRef, EmbeddedViewRef, Inject, NgModule, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { SwipeMenu, install as installSwipeMenu } from '@nativescript-community/ui-collectionview-swipemenu';\nimport { NgView, ViewClassMeta, registerElement } from '@nativescript/angular';\ninstallSwipeMenu();\nconst LEFTDRAWER: string = 'LeftSwipeMenu';\nconst RIGHTDRAWER: string = 'RightSwipeMenu';\nconst TOPDRAWER: string = 'TopSwipeMenu';\nconst BOTTOMDRAWER: string = 'BottomSwipeMenu';\nconst MAINCONTENT: string = 'MainContent';\n\nexport interface ItemEventArgs {\n object: any;\n view: EmbeddedViewRef<any>;\n returnValue?: boolean;\n}\n\n/**\n * This is the SideSwipeMenu component. It separates your mobile app's screen\n * into a main part and a menu part whereby the menu part is shown upon a swipe\n * gesture using a transition effect.\n */\n@Component({\n selector: 'SwipeMenu',\n template: '<ng-content></ng-content>'\n})\nexport class SwipeMenuComponent {\n public swipemenu: SwipeMenu;\n public mainTemplate: TemplateRef<ElementRef>;\n public swipemenuTemplate: TemplateRef<ElementRef>;\n\n private _gestureEnabled: boolean;\n\n constructor(@Inject(ElementRef) public elementRef: ElementRef, @Inject(ViewContainerRef) private viewContainer: ViewContainerRef) {\n this.swipemenu = this.elementRef.nativeElement;\n }\n\n public get nativeElement(): SwipeMenu {\n return this.swipemenu;\n }\n\n set gestureEnabled(value: boolean) {\n this._gestureEnabled = value;\n this.updateGestureEnabled();\n }\n\n private updateGestureEnabled() {\n this.swipemenu.gestureEnabled = this._gestureEnabled;\n }\n}\n\n/**\n * Directive identifying the left swipemenu\n */\n@Directive({\n selector: '[leftSwipeMenu]'\n})\nexport class LeftSwipeMenuDirective {\n constructor(@Inject(ElementRef) private _elementRef: ElementRef) {\n this._elementRef.nativeElement.id = LEFTDRAWER;\n }\n}\n/**\n * Directive identifying the right swipemenu\n */\n@Directive({\n selector: '[rightSwipeMenu]'\n})\nexport class RightSwipeMenuDirective {\n constructor(@Inject(ElementRef) private _elementRef: ElementRef) {\n this._elementRef.nativeElement.id = RIGHTDRAWER;\n }\n}\n\n/**\n * Directive identifying the right swipemenu\n */\n@Directive({\n selector: '[topSwipeMenu]'\n})\nexport class TopSwipeMenuDirective {\n constructor(@Inject(ElementRef) private _elementRef: ElementRef) {\n this._elementRef.nativeElement.id = TOPDRAWER;\n }\n}\n\n/**\n * Directive identifying the right swipemenu\n */\n@Directive({\n selector: '[bottomSwipeMenu]'\n})\nexport class BottomSwipeMenuDirective {\n constructor(@Inject(ElementRef) private _elementRef: ElementRef) {\n this._elementRef.nativeElement.id = BOTTOMDRAWER;\n }\n}\n\n/**\n * Directive identifying the main content.\n */\n@Directive({\n selector: '[mainContent]'\n})\nexport class MainContentDirective {\n constructor(@Inject(ElementRef) private _elementRef: ElementRef) {\n this._elementRef.nativeElement.id = MAINCONTENT;\n }\n}\n\nconst sideSwipeMenuMeta: ViewClassMeta = {\n insertChild: (parent: NgView, child: NgView) => {\n const swipemenu = parent as any as SwipeMenu;\n const childView = child;\n\n if (childView.id === MAINCONTENT) {\n swipemenu.mainContent = childView;\n }\n\n if (childView.id === LEFTDRAWER) {\n swipemenu.leftDrawer = childView;\n }\n if (childView.id === RIGHTDRAWER) {\n swipemenu.rightDrawer = childView;\n }\n if (childView.id === TOPDRAWER) {\n swipemenu.topDrawer = childView;\n }\n if (childView.id === BOTTOMDRAWER) {\n swipemenu.bottomDrawer = childView;\n }\n },\n removeChild: (parent: NgView, child: NgView) => {\n const swipemenu = parent as any as SwipeMenu;\n const childView = child;\n\n if (childView.id === MAINCONTENT) {\n swipemenu.mainContent = null;\n }\n\n if (childView.id === LEFTDRAWER) {\n swipemenu.leftDrawer = null;\n }\n if (childView.id === RIGHTDRAWER) {\n swipemenu.rightDrawer = null;\n }\n if (childView.id === TOPDRAWER) {\n swipemenu.topDrawer = null;\n }\n if (childView.id === BOTTOMDRAWER) {\n swipemenu.bottomDrawer = null;\n }\n }\n};\n\n/**\n * Directives identifying the SwipeMenu.\n */\nexport const SIDEDRAWER_DIRECTIVES = [LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective];\n\nregisterElement('SwipeMenu', () => SwipeMenu, sideSwipeMenuMeta);\n\n/**\n * NgModule containing all of the RadSideSwipeMenu directives.\n */\n@NgModule({\n declarations: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],\n exports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES]\n})\nexport class SwipeMenuModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["installSwipeMenu"],"mappings":";;;;;;AAGAA,OAAgB,EAAE,CAAC;AACnB,MAAM,UAAU,GAAW,eAAe,CAAC;AAC3C,MAAM,WAAW,GAAW,gBAAgB,CAAC;AAC7C,MAAM,SAAS,GAAW,cAAc,CAAC;AACzC,MAAM,YAAY,GAAW,iBAAiB,CAAC;AAC/C,MAAM,WAAW,GAAW,aAAa,CAAC;AAQ1C;;;;AAIG;MAKU,kBAAkB,CAAA;IAO3B,WAAuC,CAAA,UAAsB,EAAoC,aAA+B,EAAA;AAAzF,QAAA,IAAU,CAAA,UAAA,GAAV,UAAU,CAAY;AAAoC,QAAA,IAAa,CAAA,aAAA,GAAb,aAAa,CAAkB;QAC5H,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC;KAClD;AAED,IAAA,IAAW,aAAa,GAAA;QACpB,OAAO,IAAI,CAAC,SAAS,CAAC;KACzB;IAED,IAAI,cAAc,CAAC,KAAc,EAAA;AAC7B,QAAA,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QAC7B,IAAI,CAAC,oBAAoB,EAAE,CAAC;KAC/B;IAEO,oBAAoB,GAAA;QACxB,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,eAAe,CAAC;KACxD;;oFAtBQ,kBAAkB,EAAA,EAAA,CAAA,iBAAA,CAOP,UAAU,CAAA,EAAA,EAAA,CAAA,iBAAA,CAAyC,gBAAgB,CAAA,CAAA,CAAA,EAAA,CAAA;qEAP9E,kBAAkB,EAAA,SAAA,EAAA,CAAA,CAAA,WAAA,CAAA,CAAA,EAAA,kBAAA,EAAA,GAAA,EAAA,KAAA,EAAA,CAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,SAAA,2BAAA,CAAA,EAAA,EAAA,GAAA,EAAA;QAAA,IAAA,EAAA,GAAA,CAAA,EAAA;;AAFhB,YAAA,EAAyB,CAAA,YAAA,CAAA,CAAA,CAAA,CAAA;;;;4EAE3B,kBAAkB,EAAA,CAAA;kBAJ9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,WAAW;AACrB,oBAAA,QAAQ,EAAE,2BAA2B;iBACxC,CAAA;;;8BAQgB,MAAM;+BAAC,UAAU,CAAA;;8BAAkC,MAAM;+BAAC,gBAAgB,CAAA;;;;AAkB3F;;AAEG;MAIU,sBAAsB,CAAA;AAC/B,IAAA,WAAA,CAAwC,WAAuB,EAAA;AAAvB,QAAA,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;QAC3D,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,UAAU,CAAC;KAClD;;AAHQ,sBAAA,CAAA,IAAA,GAAA,SAAA,8BAAA,CAAA,CAAA,EAAA,EAAA,OAAA,KAAA,CAAA,IAAA,sBAAsB,uBACX,UAAU,CAAA,CAAA,CAAA,EAAA,CAAA;yEADrB,sBAAsB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,eAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA;;4EAAtB,sBAAsB,EAAA,CAAA;kBAHlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,iBAAiB;iBAC9B,CAAA;;;8BAEgB,MAAM;+BAAC,UAAU,CAAA;;;;AAIlC;;AAEG;MAIU,uBAAuB,CAAA;AAChC,IAAA,WAAA,CAAwC,WAAuB,EAAA;AAAvB,QAAA,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;QAC3D,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,WAAW,CAAC;KACnD;;AAHQ,uBAAA,CAAA,IAAA,GAAA,SAAA,+BAAA,CAAA,CAAA,EAAA,EAAA,OAAA,KAAA,CAAA,IAAA,uBAAuB,uBACZ,UAAU,CAAA,CAAA,CAAA,EAAA,CAAA;0EADrB,uBAAuB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,gBAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA;;4EAAvB,uBAAuB,EAAA,CAAA;kBAHnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,kBAAkB;iBAC/B,CAAA;;;8BAEgB,MAAM;+BAAC,UAAU,CAAA;;;;AAKlC;;AAEG;MAIU,qBAAqB,CAAA;AAC9B,IAAA,WAAA,CAAwC,WAAuB,EAAA;AAAvB,QAAA,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;QAC3D,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,SAAS,CAAC;KACjD;;AAHQ,qBAAA,CAAA,IAAA,GAAA,SAAA,6BAAA,CAAA,CAAA,EAAA,EAAA,OAAA,KAAA,CAAA,IAAA,qBAAqB,uBACV,UAAU,CAAA,CAAA,CAAA,EAAA,CAAA;wEADrB,qBAAqB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,cAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA;;4EAArB,qBAAqB,EAAA,CAAA;kBAHjC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,gBAAgB;iBAC7B,CAAA;;;8BAEgB,MAAM;+BAAC,UAAU,CAAA;;;;AAKlC;;AAEG;MAIU,wBAAwB,CAAA;AACjC,IAAA,WAAA,CAAwC,WAAuB,EAAA;AAAvB,QAAA,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;QAC3D,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,YAAY,CAAC;KACpD;;AAHQ,wBAAA,CAAA,IAAA,GAAA,SAAA,gCAAA,CAAA,CAAA,EAAA,EAAA,OAAA,KAAA,CAAA,IAAA,wBAAwB,uBACb,UAAU,CAAA,CAAA,CAAA,EAAA,CAAA;2EADrB,wBAAwB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,iBAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA;;4EAAxB,wBAAwB,EAAA,CAAA;kBAHpC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,mBAAmB;iBAChC,CAAA;;;8BAEgB,MAAM;+BAAC,UAAU,CAAA;;;;AAKlC;;AAEG;MAIU,oBAAoB,CAAA;AAC7B,IAAA,WAAA,CAAwC,WAAuB,EAAA;AAAvB,QAAA,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;QAC3D,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,WAAW,CAAC;KACnD;;AAHQ,oBAAA,CAAA,IAAA,GAAA,SAAA,4BAAA,CAAA,CAAA,EAAA,EAAA,OAAA,KAAA,CAAA,IAAA,oBAAoB,uBACT,UAAU,CAAA,CAAA,CAAA,EAAA,CAAA;uEADrB,oBAAoB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,aAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA;;4EAApB,oBAAoB,EAAA,CAAA;kBAHhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,eAAe;iBAC5B,CAAA;;;8BAEgB,MAAM;+BAAC,UAAU,CAAA;;;;AAKlC,MAAM,iBAAiB,GAAkB;AACrC,IAAA,WAAW,EAAE,CAAC,MAAc,EAAE,KAAa,KAAI;QAC3C,MAAM,SAAS,GAAG,MAA0B,CAAC;QAC7C,MAAM,SAAS,GAAG,KAAK,CAAC;AAExB,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;AACrC,SAAA;AAED,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,UAAU,EAAE;AAC7B,YAAA,SAAS,CAAC,UAAU,GAAG,SAAS,CAAC;AACpC,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,SAAS,CAAC;AACrC,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,SAAS,EAAE;AAC5B,YAAA,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;AACnC,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,YAAY,EAAE;AAC/B,YAAA,SAAS,CAAC,YAAY,GAAG,SAAS,CAAC;AACtC,SAAA;KACJ;AACD,IAAA,WAAW,EAAE,CAAC,MAAc,EAAE,KAAa,KAAI;QAC3C,MAAM,SAAS,GAAG,MAA0B,CAAC;QAC7C,MAAM,SAAS,GAAG,KAAK,CAAC;AAExB,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;AAChC,SAAA;AAED,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,UAAU,EAAE;AAC7B,YAAA,SAAS,CAAC,UAAU,GAAG,IAAI,CAAC;AAC/B,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC;AAChC,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,SAAS,EAAE;AAC5B,YAAA,SAAS,CAAC,SAAS,GAAG,IAAI,CAAC;AAC9B,SAAA;AACD,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,YAAY,EAAE;AAC/B,YAAA,SAAS,CAAC,YAAY,GAAG,IAAI,CAAC;AACjC,SAAA;KACJ;CACJ,CAAC;AAEF;;AAEG;AACI,MAAM,qBAAqB,GAAG,CAAC,sBAAsB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE;AAE9J,eAAe,CAAC,WAAW,EAAE,MAAM,SAAS,EAAE,iBAAiB,CAAC,CAAC;AAEjE;;AAEG;MAKU,eAAe,CAAA;;8EAAf,eAAe,GAAA,CAAA,EAAA,CAAA;iEAAf,eAAe,EAAA,CAAA,CAAA;;;4EAAf,eAAe,EAAA,CAAA;kBAJ3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACN,oBAAA,YAAY,EAAE,CAAC,kBAAkB,EAAE,qBAAqB,CAAC;AACzD,oBAAA,OAAO,EAAE,CAAC,kBAAkB,EAAE,qBAAqB,CAAC;iBACvD,CAAA;;;wFACY,eAAe,EAAA,EAAA,YAAA,EAAA,CA/If,kBAAkB,EA+BlB,sBAAsB,EAWtB,uBAAuB,EAYvB,qBAAqB,EAYrB,wBAAwB,EAYxB,oBAAoB,CA9EpB,EAAA,OAAA,EAAA,CAAA,kBAAkB,EA+BlB,sBAAsB,EAWtB,uBAAuB,EAYvB,qBAAqB,EAYrB,wBAAwB,EAYxB,oBAAoB,CAAA,EAAA,CAAA,CAAA,EAAA,GAAA;;ACvGjC;;AAEG;;;;"}