@nativescript-community/ui-collectionview-swipemenu 6.0.9 → 6.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.11](https://github.com/nativescript-community/ui-collectionview/compare/v6.0.10...v6.0.11) (2025-10-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ * vue3 build fix ([b2287cf](https://github.com/nativescript-community/ui-collectionview/commit/b2287cf70870706d8a58e3d38e1a5bee78be24e9))
11
+
12
+ ## [6.0.10](https://github.com/nativescript-community/ui-collectionview/compare/v6.0.9...v6.0.10) (2025-10-04)
13
+
14
+ **Note:** Version bump only for package @nativescript-community/ui-collectionview-swipemenu
15
+
6
16
  ## [6.0.9](https://github.com/nativescript-community/ui-collectionview/compare/v6.0.8...v6.0.9) (2025-10-03)
7
17
 
8
18
  **Note:** Version bump only for package @nativescript-community/ui-collectionview-swipemenu
@@ -218,11 +218,11 @@ class SwipeMenuModule {
218
218
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuModule, [{
219
219
  type: NgModule,
220
220
  args: [{
221
- declarations: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],
221
+ imports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],
222
222
  exports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES]
223
223
  }]
224
224
  }], null, null); })();
225
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(SwipeMenuModule, { declarations: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective], exports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective] }); })();
225
+ (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(SwipeMenuModule, { imports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective], exports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective] }); })();
226
226
 
227
227
  /**
228
228
  * Generated bundle index. Do not edit.
@@ -1 +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":"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"}
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(\n @Inject(ElementRef) public elementRef: ElementRef,\n @Inject(ViewContainerRef) private viewContainer: ViewContainerRef\n ) {\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 imports: [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;AAClB,MAAM,UAAU,GAAW,eAAe;AAC1C,MAAM,WAAW,GAAW,gBAAgB;AAC5C,MAAM,SAAS,GAAW,cAAc;AACxC,MAAM,YAAY,GAAW,iBAAiB;AAC9C,MAAM,WAAW,GAAW,aAAa;AAQzC;;;;AAIG;MAKU,kBAAkB,CAAA;AAQI,IAAA,UAAA;AACO,IAAA,aAAA;AAR/B,IAAA,SAAS;AACT,IAAA,YAAY;AACZ,IAAA,iBAAiB;AAEhB,IAAA,eAAe;IAEvB,WAAA,CAC+B,UAAsB,EACf,aAA+B,EAAA;QADtC,IAAA,CAAA,UAAU,GAAV,UAAU;QACH,IAAA,CAAA,aAAa,GAAb,aAAa;QAE/C,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,aAAa;IAClD;AAEA,IAAA,IAAW,aAAa,GAAA;QACpB,OAAO,IAAI,CAAC,SAAS;IACzB;IAEA,IAAI,cAAc,CAAC,KAAc,EAAA;AAC7B,QAAA,IAAI,CAAC,eAAe,GAAG,KAAK;QAC5B,IAAI,CAAC,oBAAoB,EAAE;IAC/B;IAEQ,oBAAoB,GAAA;QACxB,IAAI,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,eAAe;IACxD;4GAzBS,kBAAkB,EAAA,EAAA,CAAA,iBAAA,CAQf,UAAU,CAAA,EAAA,EAAA,CAAA,iBAAA,CACV,gBAAgB,CAAA,CAAA,CAAA,CAAA,CAAA;6DATnB,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,EAAA,IAAA,EAAA,GAAA,CAAA,EAAA;;YAFhB,EAAA,CAAA,YAAA,CAAA,CAAA,CAAyB;;;iFAE3B,kBAAkB,EAAA,CAAA;cAJ9B,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE,WAAW;AACrB,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBASQ,MAAM;uBAAC,UAAU;;sBACjB,MAAM;uBAAC,gBAAgB;;kFATnB,kBAAkB,EAAA,EAAA,SAAA,EAAA,oBAAA,EAAA,QAAA,EAAA,WAAA,EAAA,UAAA,EAAA,EAAA,EAAA,CAAA,CAAA,CAAA,CAAA,GAAA;AA4B/B;;AAEG;MAIU,sBAAsB,CAAA;AACS,IAAA,WAAA;AAAxC,IAAA,WAAA,CAAwC,WAAuB,EAAA;QAAvB,IAAA,CAAA,WAAW,GAAX,WAAW;QAC/C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,UAAU;IAClD;AAHS,IAAA,OAAA,IAAA,GAAA,SAAA,8BAAA,CAAA,iBAAA,EAAA,EAAA,OAAA,KAAA,iBAAA,IAAA,sBAAsB,uBACX,UAAU,CAAA,CAAA,CAAA,CAAA,CAAA;6DADrB,sBAAsB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,eAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA;;iFAAtB,sBAAsB,EAAA,CAAA;cAHlC,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBAEgB,MAAM;uBAAC,UAAU;;AAIlC;;AAEG;MAIU,uBAAuB,CAAA;AACQ,IAAA,WAAA;AAAxC,IAAA,WAAA,CAAwC,WAAuB,EAAA;QAAvB,IAAA,CAAA,WAAW,GAAX,WAAW;QAC/C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,WAAW;IACnD;AAHS,IAAA,OAAA,IAAA,GAAA,SAAA,+BAAA,CAAA,iBAAA,EAAA,EAAA,OAAA,KAAA,iBAAA,IAAA,uBAAuB,uBACZ,UAAU,CAAA,CAAA,CAAA,CAAA,CAAA;6DADrB,uBAAuB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,gBAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA;;iFAAvB,uBAAuB,EAAA,CAAA;cAHnC,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBAEgB,MAAM;uBAAC,UAAU;;AAKlC;;AAEG;MAIU,qBAAqB,CAAA;AACU,IAAA,WAAA;AAAxC,IAAA,WAAA,CAAwC,WAAuB,EAAA;QAAvB,IAAA,CAAA,WAAW,GAAX,WAAW;QAC/C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,SAAS;IACjD;AAHS,IAAA,OAAA,IAAA,GAAA,SAAA,6BAAA,CAAA,iBAAA,EAAA,EAAA,OAAA,KAAA,iBAAA,IAAA,qBAAqB,uBACV,UAAU,CAAA,CAAA,CAAA,CAAA,CAAA;6DADrB,qBAAqB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,cAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA;;iFAArB,qBAAqB,EAAA,CAAA;cAHjC,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBAEgB,MAAM;uBAAC,UAAU;;AAKlC;;AAEG;MAIU,wBAAwB,CAAA;AACO,IAAA,WAAA;AAAxC,IAAA,WAAA,CAAwC,WAAuB,EAAA;QAAvB,IAAA,CAAA,WAAW,GAAX,WAAW;QAC/C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,YAAY;IACpD;AAHS,IAAA,OAAA,IAAA,GAAA,SAAA,gCAAA,CAAA,iBAAA,EAAA,EAAA,OAAA,KAAA,iBAAA,IAAA,wBAAwB,uBACb,UAAU,CAAA,CAAA,CAAA,CAAA,CAAA;6DADrB,wBAAwB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,iBAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA;;iFAAxB,wBAAwB,EAAA,CAAA;cAHpC,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBAEgB,MAAM;uBAAC,UAAU;;AAKlC;;AAEG;MAIU,oBAAoB,CAAA;AACW,IAAA,WAAA;AAAxC,IAAA,WAAA,CAAwC,WAAuB,EAAA;QAAvB,IAAA,CAAA,WAAW,GAAX,WAAW;QAC/C,IAAI,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,GAAG,WAAW;IACnD;AAHS,IAAA,OAAA,IAAA,GAAA,SAAA,4BAAA,CAAA,iBAAA,EAAA,EAAA,OAAA,KAAA,iBAAA,IAAA,oBAAoB,uBACT,UAAU,CAAA,CAAA,CAAA,CAAA,CAAA;6DADrB,oBAAoB,EAAA,SAAA,EAAA,CAAA,CAAA,EAAA,EAAA,aAAA,EAAA,EAAA,CAAA,CAAA,EAAA,CAAA;;iFAApB,oBAAoB,EAAA,CAAA;cAHhC,SAAS;AAAC,QAAA,IAAA,EAAA,CAAA;AACP,gBAAA,QAAQ,EAAE;AACb,aAAA;;sBAEgB,MAAM;uBAAC,UAAU;;AAKlC,MAAM,iBAAiB,GAAkB;AACrC,IAAA,WAAW,EAAE,CAAC,MAAc,EAAE,KAAa,KAAI;QAC3C,MAAM,SAAS,GAAG,MAA0B;QAC5C,MAAM,SAAS,GAAG,KAAK;AAEvB,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,SAAS;QACrC;AAEA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,UAAU,EAAE;AAC7B,YAAA,SAAS,CAAC,UAAU,GAAG,SAAS;QACpC;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,SAAS;QACrC;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,SAAS,EAAE;AAC5B,YAAA,SAAS,CAAC,SAAS,GAAG,SAAS;QACnC;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,YAAY,EAAE;AAC/B,YAAA,SAAS,CAAC,YAAY,GAAG,SAAS;QACtC;IACJ,CAAC;AACD,IAAA,WAAW,EAAE,CAAC,MAAc,EAAE,KAAa,KAAI;QAC3C,MAAM,SAAS,GAAG,MAA0B;QAC5C,MAAM,SAAS,GAAG,KAAK;AAEvB,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,IAAI;QAChC;AAEA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,UAAU,EAAE;AAC7B,YAAA,SAAS,CAAC,UAAU,GAAG,IAAI;QAC/B;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,WAAW,EAAE;AAC9B,YAAA,SAAS,CAAC,WAAW,GAAG,IAAI;QAChC;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,SAAS,EAAE;AAC5B,YAAA,SAAS,CAAC,SAAS,GAAG,IAAI;QAC9B;AACA,QAAA,IAAI,SAAS,CAAC,EAAE,KAAK,YAAY,EAAE;AAC/B,YAAA,SAAS,CAAC,YAAY,GAAG,IAAI;QACjC;IACJ;CACH;AAED;;AAEG;AACI,MAAM,qBAAqB,GAAG,CAAC,sBAAsB,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,oBAAoB;AAE5J,eAAe,CAAC,WAAW,EAAE,MAAM,SAAS,EAAE,iBAAiB,CAAC;AAEhE;;AAEG;MAKU,eAAe,CAAA;yGAAf,eAAe,GAAA,CAAA,CAAA,CAAA;4DAAf,eAAe,EAAA,CAAA;;;iFAAf,eAAe,EAAA,CAAA;cAJ3B,QAAQ;AAAC,QAAA,IAAA,EAAA,CAAA;AACN,gBAAA,OAAO,EAAE,CAAC,kBAAkB,EAAE,qBAAqB,CAAC;AACpD,gBAAA,OAAO,EAAE,CAAC,kBAAkB,EAAE,qBAAqB;AACtD,aAAA;;wFACY,eAAe,EAAA,EAAA,OAAA,EAAA,CAlJf,kBAAkB,EAkClB,sBAAsB,EAWtB,uBAAuB,EAYvB,qBAAqB,EAYrB,wBAAwB,EAYxB,oBAAoB,CAAA,EAAA,OAAA,EAAA,CAjFpB,kBAAkB,EAkClB,sBAAsB,EAWtB,uBAAuB,EAYvB,qBAAqB,EAYrB,wBAAwB,EAYxB,oBAAoB,CAAA,EAAA,CAAA,CAAA,CAAA,CAAA,GAAA;;AC1GjC;;AAEG;;;;"}
@@ -1 +1,88 @@
1
- export * from './module';
1
+ import * as i0 from '@angular/core';
2
+ import { EmbeddedViewRef, ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
3
+ import { SwipeMenu } from '@nativescript-community/ui-collectionview-swipemenu';
4
+
5
+ interface ItemEventArgs {
6
+ object: any;
7
+ view: EmbeddedViewRef<any>;
8
+ returnValue?: boolean;
9
+ }
10
+ /**
11
+ * This is the SideSwipeMenu component. It separates your mobile app's screen
12
+ * into a main part and a menu part whereby the menu part is shown upon a swipe
13
+ * gesture using a transition effect.
14
+ */
15
+ declare class SwipeMenuComponent {
16
+ elementRef: ElementRef;
17
+ private viewContainer;
18
+ swipemenu: SwipeMenu;
19
+ mainTemplate: TemplateRef<ElementRef>;
20
+ swipemenuTemplate: TemplateRef<ElementRef>;
21
+ private _gestureEnabled;
22
+ constructor(elementRef: ElementRef, viewContainer: ViewContainerRef);
23
+ get nativeElement(): SwipeMenu;
24
+ set gestureEnabled(value: boolean);
25
+ private updateGestureEnabled;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwipeMenuComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwipeMenuComponent, "SwipeMenu", never, {}, {}, never, ["*"], true, never>;
28
+ }
29
+ /**
30
+ * Directive identifying the left swipemenu
31
+ */
32
+ declare class LeftSwipeMenuDirective {
33
+ private _elementRef;
34
+ constructor(_elementRef: ElementRef);
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<LeftSwipeMenuDirective, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LeftSwipeMenuDirective, "[leftSwipeMenu]", never, {}, {}, never, never, true, never>;
37
+ }
38
+ /**
39
+ * Directive identifying the right swipemenu
40
+ */
41
+ declare class RightSwipeMenuDirective {
42
+ private _elementRef;
43
+ constructor(_elementRef: ElementRef);
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<RightSwipeMenuDirective, never>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RightSwipeMenuDirective, "[rightSwipeMenu]", never, {}, {}, never, never, true, never>;
46
+ }
47
+ /**
48
+ * Directive identifying the right swipemenu
49
+ */
50
+ declare class TopSwipeMenuDirective {
51
+ private _elementRef;
52
+ constructor(_elementRef: ElementRef);
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<TopSwipeMenuDirective, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TopSwipeMenuDirective, "[topSwipeMenu]", never, {}, {}, never, never, true, never>;
55
+ }
56
+ /**
57
+ * Directive identifying the right swipemenu
58
+ */
59
+ declare class BottomSwipeMenuDirective {
60
+ private _elementRef;
61
+ constructor(_elementRef: ElementRef);
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomSwipeMenuDirective, never>;
63
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BottomSwipeMenuDirective, "[bottomSwipeMenu]", never, {}, {}, never, never, true, never>;
64
+ }
65
+ /**
66
+ * Directive identifying the main content.
67
+ */
68
+ declare class MainContentDirective {
69
+ private _elementRef;
70
+ constructor(_elementRef: ElementRef);
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<MainContentDirective, never>;
72
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MainContentDirective, "[mainContent]", never, {}, {}, never, never, true, never>;
73
+ }
74
+ /**
75
+ * Directives identifying the SwipeMenu.
76
+ */
77
+ declare const SIDEDRAWER_DIRECTIVES: (typeof LeftSwipeMenuDirective | typeof RightSwipeMenuDirective | typeof TopSwipeMenuDirective | typeof BottomSwipeMenuDirective | typeof MainContentDirective)[];
78
+ /**
79
+ * NgModule containing all of the RadSideSwipeMenu directives.
80
+ */
81
+ declare class SwipeMenuModule {
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwipeMenuModule, never>;
83
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SwipeMenuModule, never, [typeof SwipeMenuComponent, typeof LeftSwipeMenuDirective, typeof RightSwipeMenuDirective, typeof TopSwipeMenuDirective, typeof BottomSwipeMenuDirective, typeof MainContentDirective], [typeof SwipeMenuComponent, typeof LeftSwipeMenuDirective, typeof RightSwipeMenuDirective, typeof TopSwipeMenuDirective, typeof BottomSwipeMenuDirective, typeof MainContentDirective]>;
84
+ static ɵinj: i0.ɵɵInjectorDeclaration<SwipeMenuModule>;
85
+ }
86
+
87
+ export { BottomSwipeMenuDirective, LeftSwipeMenuDirective, MainContentDirective, RightSwipeMenuDirective, SIDEDRAWER_DIRECTIVES, SwipeMenuComponent, SwipeMenuModule, TopSwipeMenuDirective };
88
+ export type { ItemEventArgs };
@@ -9,8 +9,6 @@
9
9
  },
10
10
  ".": {
11
11
  "types": "./index.d.ts",
12
- "esm2022": "./esm2022/nativescript-community-ui-collectionview-swipemenu-angular.mjs",
13
- "esm": "./esm2022/nativescript-community-ui-collectionview-swipemenu-angular.mjs",
14
12
  "default": "./fesm2022/nativescript-community-ui-collectionview-swipemenu-angular.mjs"
15
13
  }
16
14
  },
@@ -19,6 +17,6 @@
19
17
  "tslib": "^2.3.0"
20
18
  },
21
19
  "scripts": {
22
- "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
20
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with partial compilation mode, before attempting to publish.\\n')\" && exit 1"
23
21
  }
24
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-collectionview-swipemenu",
3
- "version": "6.0.9",
3
+ "version": "6.0.11",
4
4
  "description": "A NativeScript CollectionView SwipeMenu Plugin.",
5
5
  "main": "./index",
6
6
  "funding": "https://github.com/sponsors/farfromrefug",
@@ -15,7 +15,7 @@
15
15
  "build.all": "npm run build && npm run build.angular",
16
16
  "build.angular": "ng-packagr -p ../../src/swipemenu/angular/ng-package.json -c ../../src/swipemenu/angular/tsconfig.json && rm angular/.npmignore",
17
17
  "readme": "readme generate -c ../../tools/readme/blueprint.json",
18
- "tsc": "cpy '**/*.d.ts' '../../packages/swipemenu' --parents --cwd=../../src/swipemenu && tsc -skipLibCheck -d",
18
+ "tsc": "cpy '**/*.d.ts' '../../packages/swipemenu' --parents --cwd=../../src/swipemenu && tsc --build",
19
19
  "clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
20
20
  },
21
21
  "nativescript": {
@@ -41,8 +41,8 @@
41
41
  "homepage": "https://github.com/nativescript-community/ui-collectionview#readme",
42
42
  "dependencies": {
43
43
  "@nativescript-community/class-mixins": "^1.0.0",
44
- "@nativescript-community/ui-collectionview": "^6.0.9",
45
- "@nativescript-community/ui-drawer": "^0.1.27"
44
+ "@nativescript-community/ui-collectionview": "^6.0.11",
45
+ "@nativescript-community/ui-drawer": "^0.1.31"
46
46
  },
47
- "gitHead": "05a378e22b81c795c2915ca0eed4c96072dc6ef9"
47
+ "gitHead": "28dde239cb20e420b47618f147820745d51a155b"
48
48
  }
@@ -0,0 +1 @@
1
+ {"root":["../../src/swipemenu/index.ts","../../src/swipemenu/svelte/index.ts","../../src/swipemenu/vue/component.ts","../../src/swipemenu/vue/index.ts","../../src/swipemenu/vue3/component.ts","../../src/swipemenu/vue3/index.ts","../../references.d.ts","../../tools/references.d.ts"],"version":"5.9.3"}
@@ -0,0 +1,14 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "composite": true,
5
+ "paths": {
6
+ "@nativescript-community/ui-collectionview-swipemenu": ["src/swipemenu"],
7
+ "nativescript-vue": ["./node_modules/nativescript-vue3"]
8
+ }
9
+ },
10
+ "include": [
11
+ "../../src/swipemenu/index.ts",
12
+ "../../src/swipemenu/vue3/**/*"
13
+ ]
14
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@nativescript/core/global-types.d.ts","../../node_modules/@nativescript/core/profiling/index.d.ts","../../node_modules/@nativescript/core/config/config.interface.d.ts","../../node_modules/@nativescript/core/config/index.d.ts","../../node_modules/@nativescript/core/utils/typescript-utils.d.ts","../../node_modules/@nativescript/core/data/observable/index.d.ts","../../node_modules/@nativescript/core/accessibility/accessibility-types.d.ts","../../node_modules/@nativescript/core/color/index.d.ts","../../node_modules/@nativescript/core/ui/animation/animation-interfaces.d.ts","../../node_modules/@nativescript/core/core-types/index.d.ts","../../node_modules/@nativescript/core/ui/animation/keyframe-animation.d.ts","../../node_modules/@nativescript/core/ui/animation/index.d.ts","../../node_modules/@nativescript/core/ui/gestures/touch-manager.d.ts","../../node_modules/@nativescript/core/ui/gestures/gestures-common.d.ts","../../node_modules/@nativescript/core/ui/gestures/index.d.ts","../../node_modules/@nativescript/core/ui/styling/css-shadow.d.ts","../../node_modules/@nativescript/core/css/parser.d.ts","../../node_modules/@nativescript/core/ui/styling/linear-gradient.d.ts","../../node_modules/@nativescript/core/ui/layouts/layout-base.d.ts","../../node_modules/@nativescript/core/ui/enums/index.d.ts","../../node_modules/@nativescript/core/ui/styling/font-interfaces.d.ts","../../node_modules/@nativescript/core/ui/styling/font-common.d.ts","../../node_modules/@nativescript/core/ui/styling/font.d.ts","../../node_modules/@nativescript/core/ui/styling/clip-path-function.d.ts","../../node_modules/@nativescript/core/ui/styling/box-shadow.d.ts","../../node_modules/@nativescript/core/ui/styling/background-common.d.ts","../../node_modules/@nativescript/core/ui/styling/background.d.ts","../../node_modules/@nativescript/core/ui/styling/css-stroke.d.ts","../../node_modules/@nativescript/core/ui/styling/style/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/flexbox-layout/index.d.ts","../../node_modules/@nativescript/core/ui/content-view/index.d.ts","../../node_modules/@nativescript/core/ui/transition/index.d.ts","../../node_modules/@nativescript/core/ui/frame/frame-interfaces.d.ts","../../node_modules/@nativescript/core/ui/frame/frame-common.d.ts","../../node_modules/@nativescript/core/ui/frame/index.d.ts","../../node_modules/@nativescript/core/ui/action-bar/index.d.ts","../../node_modules/@nativescript/core/ui/page/page-common.d.ts","../../node_modules/@nativescript/core/ui/page/index.d.ts","../../node_modules/@nativescript/core/ui/core/bindable/index.d.ts","../../node_modules/@nativescript/core/ui/transition/modal-transition.d.ts","../../node_modules/@nativescript/core/debugger/css-agent.d.ts","../../node_modules/@nativescript/core/debugger/dom-node.d.ts","../../node_modules/@nativescript/core/css/reworkcss.d.ts","../../node_modules/css-what/lib/es/types.d.ts","../../node_modules/css-what/lib/es/parse.d.ts","../../node_modules/css-what/lib/es/stringify.d.ts","../../node_modules/css-what/lib/es/index.d.ts","../../node_modules/@nativescript/core/globals/index.d.ts","../../node_modules/@nativescript/core/ui/styling/css-selector.d.ts","../../node_modules/@nativescript/core/ui/styling/style-scope.d.ts","../../node_modules/@nativescript/core/ui/core/view-base/index.d.ts","../../node_modules/@nativescript/core/ui/core/properties/index.d.ts","../../node_modules/@nativescript/core/ui/core/view/view-helper/index.d.ts","../../node_modules/@nativescript/core/ui/core/view/view-common.d.ts","../../node_modules/@nativescript/core/ui/core/view/index.d.ts","../../node_modules/@nativescript/core/application/application-interfaces.d.ts","../../node_modules/@nativescript/core/application/application-common.d.ts","../../node_modules/@nativescript/core/application/application.d.ts","../../node_modules/@nativescript/core/application/application-shims.d.ts","../../node_modules/@nativescript/core/application/index.d.ts","../../node_modules/@nativescript/core/application-settings/index.d.ts","../../node_modules/@nativescript/core/accessibility/accessibility-common.d.ts","../../node_modules/@nativescript/core/accessibility/font-scale.d.ts","../../node_modules/@nativescript/core/accessibility/index.d.ts","../../node_modules/@nativescript/core/connectivity/index.d.ts","../../node_modules/@nativescript/core/css/system-classes.d.ts","../../node_modules/@nativescript/core/data/observable-array/index.d.ts","../../node_modules/@nativescript/core/data/virtual-array/index.d.ts","../../node_modules/@nativescript/core/file-system/file-system-access.d.ts","../../node_modules/@nativescript/core/file-system/index.d.ts","../../node_modules/@nativescript/core/image-asset/index.d.ts","../../node_modules/@nativescript/core/ui/image/symbol-effects-common.d.ts","../../node_modules/@nativescript/core/ui/image/symbol-effects.d.ts","../../node_modules/@nativescript/core/ui/image/index.d.ts","../../node_modules/@nativescript/core/ui/image/image-common.d.ts","../../node_modules/@nativescript/core/image-source/index.d.ts","../../node_modules/@nativescript/core/http/index.d.ts","../../node_modules/@nativescript/core/module-name-resolver/qualifier-matcher/index.d.ts","../../node_modules/@nativescript/core/module-name-resolver/index.d.ts","../../node_modules/@nativescript/core/platform/common.d.ts","../../node_modules/@nativescript/core/platform/device/index.d.ts","../../node_modules/@nativescript/core/platform/screen/index.d.ts","../../node_modules/@nativescript/core/platform/index.d.ts","../../node_modules/@nativescript/core/text/text-common.d.ts","../../node_modules/@nativescript/core/text/index.d.ts","../../node_modules/@nativescript/core/trace/index.d.ts","../../node_modules/@nativescript/core/ui/activity-indicator/index.d.ts","../../node_modules/@nativescript/core/ui/builder/index.d.ts","../../node_modules/@nativescript/core/ui/builder/component-builder/index.d.ts","../../node_modules/@nativescript/core/utils/mainthread-helper.d.ts","../../node_modules/@nativescript/core/utils/macrotask-scheduler.d.ts","../../node_modules/@nativescript/core/utils/common.d.ts","../../node_modules/@nativescript/core/ui/text-base/span.d.ts","../../node_modules/@nativescript/core/ui/text-base/formatted-string.d.ts","../../node_modules/@nativescript/core/ui/styling/style-properties.d.ts","../../node_modules/@nativescript/core/ui/text-base/index.d.ts","../../node_modules/@nativescript/core/ui/button/index.d.ts","../../node_modules/@nativescript/core/ui/core/control-state-change/index.d.ts","../../node_modules/@nativescript/core/ui/core/weak-event-listener/index.d.ts","../../node_modules/@nativescript/core/ui/date-picker/index.d.ts","../../node_modules/@nativescript/core/ui/dialogs/dialogs-common.d.ts","../../node_modules/@nativescript/core/ui/dialogs/index.d.ts","../../node_modules/@nativescript/core/ui/editable-text-base/index.d.ts","../../node_modules/@nativescript/core/ui/embedding/index.d.ts","../../node_modules/@nativescript/core/ui/html-view/index.d.ts","../../node_modules/@nativescript/core/ui/image-cache/index.d.ts","../../node_modules/@nativescript/core/ui/label/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/absolute-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/dock-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/grid-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/root-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/stack-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/wrap-layout/index.d.ts","../../node_modules/@nativescript/core/ui/layouts/index.d.ts","../../node_modules/@nativescript/core/ui/list-picker/list-picker-common.d.ts","../../node_modules/@nativescript/core/ui/list-picker/index.d.ts","../../node_modules/@nativescript/core/ui/list-view/index.d.ts","../../node_modules/@nativescript/core/ui/placeholder/placeholder-common.d.ts","../../node_modules/@nativescript/core/ui/placeholder/index.d.ts","../../node_modules/@nativescript/core/ui/progress/index.d.ts","../../node_modules/@nativescript/core/ui/proxy-view-container/index.d.ts","../../node_modules/@nativescript/core/ui/repeater/index.d.ts","../../node_modules/@nativescript/core/ui/scroll-view/index.d.ts","../../node_modules/@nativescript/core/ui/search-bar/index.d.ts","../../node_modules/@nativescript/core/ui/segmented-bar/index.d.ts","../../node_modules/@nativescript/core/ui/slider/slider-common.d.ts","../../node_modules/@nativescript/core/ui/slider/index.d.ts","../../node_modules/@nativescript/core/ui/styling/converters.d.ts","../../node_modules/@nativescript/core/ui/styling/css-animation-parser.d.ts","../../node_modules/@nativescript/core/ui/switch/index.d.ts","../../node_modules/@nativescript/core/ui/tab-view/index.d.ts","../../node_modules/@nativescript/core/ui/text-field/index.d.ts","../../node_modules/@nativescript/core/ui/text-view/text-view-common.d.ts","../../node_modules/@nativescript/core/ui/text-view/index.d.ts","../../node_modules/@nativescript/core/ui/time-picker/index.d.ts","../../node_modules/@nativescript/core/ui/transition/page-transition.d.ts","../../node_modules/@nativescript/core/ui/transition/fade-transition.d.ts","../../node_modules/@nativescript/core/ui/transition/slide-transition.d.ts","../../node_modules/@nativescript/core/ui/transition/shared-transition.d.ts","../../node_modules/@nativescript/core/ui/transition/shared-transition-helper.d.ts","../../node_modules/@nativescript/core/ui/web-view/index.d.ts","../../node_modules/@nativescript/core/ui/index.d.ts","../../node_modules/@nativescript/core/timer/index.d.ts","../../node_modules/@nativescript/core/utils/constants.d.ts","../../node_modules/@nativescript/core/utils/debug.d.ts","../../node_modules/@nativescript/core/utils/layout-helper/index.d.ts","../../node_modules/@nativescript/core/utils/android/index.d.ts","../../node_modules/@nativescript/core/utils/ios/index.d.ts","../../node_modules/@nativescript/core/utils/native-helper.d.ts","../../node_modules/@nativescript/core/utils/types.d.ts","../../node_modules/@nativescript/core/utils/index.d.ts","../../node_modules/@nativescript/core/xml/index.d.ts","../../node_modules/@nativescript/core/index.d.ts","../collectionview/index-common.d.ts","../collectionview/index.d.ts","../../node_modules/@nativescript-community/observable/observablearray.d.ts","../../node_modules/@nativescript-community/observable/observable.d.ts","../../node_modules/@nativescript-community/gesturehandler/gesturehandler.common.d.ts","../../node_modules/@nativescript-community/gesturehandler/gesturehandler.d.ts","../../node_modules/@nativescript-community/ui-drawer/index.d.ts","../../src/swipemenu/index.ts","../../node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/nativescript-vue3/dist/registry/index.d.ts","../../node_modules/nativescript-vue3/dist/dom/index.d.ts","../../node_modules/nativescript-vue3/dist/components/ActionBar.d.ts","../../node_modules/nativescript-vue3/dist/components/ListView.d.ts","../../node_modules/nativescript-vue3/dist/components/index.d.ts","../../node_modules/nativescript-vue3/dist/renderer/index.d.ts","../../node_modules/nativescript-vue3/dist/runtimeHelpers.d.ts","../../node_modules/nativescript-vue3/dist/directives/vShow.d.ts","../../node_modules/nativescript-vue3/dist/plugins/modals.d.ts","../../node_modules/nativescript-vue3/dist/plugins/navigation.d.ts","../../node_modules/nativescript-vue3/dist/renderer/runtimeDomOverrides.d.ts","../../node_modules/nativescript-vue3/dist/index.d.ts","../../src/swipemenu/vue3/component.ts","../../src/swipemenu/vue3/index.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/@types/node/node_modules/undici-types/utility.d.ts","../../node_modules/@types/node/node_modules/undici-types/header.d.ts","../../node_modules/@types/node/node_modules/undici-types/readable.d.ts","../../node_modules/@types/node/node_modules/undici-types/fetch.d.ts","../../node_modules/@types/node/node_modules/undici-types/formdata.d.ts","../../node_modules/@types/node/node_modules/undici-types/connector.d.ts","../../node_modules/@types/node/node_modules/undici-types/client-stats.d.ts","../../node_modules/@types/node/node_modules/undici-types/client.d.ts","../../node_modules/@types/node/node_modules/undici-types/errors.d.ts","../../node_modules/@types/node/node_modules/undici-types/dispatcher.d.ts","../../node_modules/@types/node/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/@types/node/node_modules/undici-types/global-origin.d.ts","../../node_modules/@types/node/node_modules/undici-types/pool-stats.d.ts","../../node_modules/@types/node/node_modules/undici-types/pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/handlers.d.ts","../../node_modules/@types/node/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/h2c-client.d.ts","../../node_modules/@types/node/node_modules/undici-types/agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-call-history.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-client.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-pool.d.ts","../../node_modules/@types/node/node_modules/undici-types/snapshot-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/mock-errors.d.ts","../../node_modules/@types/node/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/retry-handler.d.ts","../../node_modules/@types/node/node_modules/undici-types/retry-agent.d.ts","../../node_modules/@types/node/node_modules/undici-types/api.d.ts","../../node_modules/@types/node/node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/@types/node/node_modules/undici-types/interceptors.d.ts","../../node_modules/@types/node/node_modules/undici-types/util.d.ts","../../node_modules/@types/node/node_modules/undici-types/cookies.d.ts","../../node_modules/@types/node/node_modules/undici-types/patch.d.ts","../../node_modules/@types/node/node_modules/undici-types/websocket.d.ts","../../node_modules/@types/node/node_modules/undici-types/eventsource.d.ts","../../node_modules/@types/node/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/@types/node/node_modules/undici-types/content-type.d.ts","../../node_modules/@types/node/node_modules/undici-types/cache.d.ts","../../node_modules/@types/node/node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/sqlite.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/svelte/node_modules/magic-string/dist/magic-string.cjs.d.ts","../../node_modules/svelte/node_modules/estree-walker/types/walker.d.ts","../../node_modules/svelte/node_modules/estree-walker/types/sync.d.ts","../../node_modules/svelte/node_modules/estree-walker/types/async.d.ts","../../node_modules/svelte/node_modules/estree-walker/types/index.d.ts","../../node_modules/svelte/types/index.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/vue/types/jsx.d.ts","../../node_modules/vue/types/v3-generated.d.ts","../../node_modules/vue/types/common.d.ts","../../node_modules/vue/types/v3-setup-context.d.ts","../../node_modules/vue/types/v3-component-props.d.ts","../../node_modules/vue/types/v3-component-options.d.ts","../../node_modules/vue/types/v3-component-public-instance.d.ts","../../node_modules/vue/types/vnode.d.ts","../../node_modules/vue/types/umd.d.ts","../../node_modules/vue/types/v3-define-component.d.ts","../../node_modules/vue/types/v3-directive.d.ts","../../node_modules/vue/types/options.d.ts","../../node_modules/vue/types/plugin.d.ts","../../node_modules/vue/types/vue.d.ts","../../node_modules/vue/types/v3-manual-apis.d.ts","../../node_modules/vue/types/v3-setup-helpers.d.ts","../../node_modules/vue/types/v3-define-async-component.d.ts","../../node_modules/vue/types/built-in-components.d.ts","../../node_modules/vue/types/index.d.ts","../../node_modules/svelte-native/ambient.d.ts","../../node_modules/svelte-native/dom/basicdom/ViewNode.d.ts","../../node_modules/svelte-native/dom/basicdom/ElementNode.d.ts","../../node_modules/svelte-native/dom/basicdom/CommentNode.d.ts","../../node_modules/svelte-native/dom/basicdom/TextNode.d.ts","../../node_modules/svelte-native/dom/basicdom/PropertyNode.d.ts","../../node_modules/svelte-native/dom/basicdom/DocumentNode.d.ts","../../node_modules/svelte-native/dom/basicdom/Logger.d.ts","../../node_modules/svelte-native/dom/basicdom/element-registry.d.ts","../../node_modules/svelte-native/dom/basicdom/index.d.ts","../../node_modules/svelte-native/dom/svelte/SvelteNativeDocument.d.ts","../../node_modules/svelte-native/dom/svelte/HeadElement.d.ts","../../node_modules/svelte-native/dom/svelte/TemplateElement.d.ts","../../node_modules/svelte-native/dom/svelte/StyleElement.d.ts","../../node_modules/svelte-native/dom/native/NativeElementNode.d.ts","../../node_modules/svelte-native/dom/native/NativeViewElementNode.d.ts","../../node_modules/svelte-native/dom/native/FrameElement.d.ts","../../node_modules/svelte-native/dom/native/PageElement.d.ts","../../node_modules/svelte-native/dom/native/ListViewElement.d.ts","../../node_modules/svelte-native/dom/native/TabViewElement.d.ts","../../node_modules/svelte-native/dom/native/ActionBarElement.d.ts","../../node_modules/svelte-native/dom/native/LabelElement.d.ts","../../node_modules/svelte-native/dom/native/DatePickerElement.d.ts","../../node_modules/svelte-native/dom/native/AbsoluteLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/ActivityIndicatorElement.d.ts","../../node_modules/svelte-native/dom/native/ButtonElement.d.ts","../../node_modules/svelte-native/dom/native/DockLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/GridLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/HtmlViewElement.d.ts","../../node_modules/svelte-native/dom/native/ImageElement.d.ts","../../node_modules/svelte-native/dom/native/ListPickerElement.d.ts","../../node_modules/svelte-native/dom/native/ContentViewElement.d.ts","../../node_modules/svelte-native/dom/native/FlexboxLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/FormattedStringElement.d.ts","../../node_modules/svelte-native/dom/native/PlaceholderElement.d.ts","../../node_modules/svelte-native/dom/native/ProgressElement.d.ts","../../node_modules/svelte-native/dom/native/ProxyViewContainerElement.d.ts","../../node_modules/svelte-native/dom/native/RootLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/ScrollViewElement.d.ts","../../node_modules/svelte-native/dom/native/SearchBarElement.d.ts","../../node_modules/svelte-native/dom/native/SegmentedBarElement.d.ts","../../node_modules/svelte-native/dom/native/SliderElement.d.ts","../../node_modules/svelte-native/dom/native/StackLayoutElement.d.ts","../../node_modules/svelte-native/dom/native/SwitchElement.d.ts","../../node_modules/svelte-native/dom/native/TextFieldElement.d.ts","../../node_modules/svelte-native/dom/native/TextViewElement.d.ts","../../node_modules/svelte-native/dom/native/TimePickerElement.d.ts","../../node_modules/svelte-native/dom/native/WebViewElement.d.ts","../../node_modules/svelte-native/dom/native/WrapLayoutElement.d.ts","../../node_modules/svelte-native/dom/nativescript-elements.d.ts","../../node_modules/svelte-native/dom/navigation.d.ts","../../node_modules/svelte-native/dom/index.d.ts","../../node_modules/svelte-native/jsx/svelte-native-jsx-nativescript-core.d.ts","../../node_modules/svelte-native/jsx/shims.d.ts","../../node_modules/svelte-native/index.d.ts"],"fileIdsList":[[223,234,238,240,262,314,331,332],[234,238,239,262,314,331,332],[87,237,238,262,314,331,332],[87,238,262,314,331,332],[234,240,262,314,331,332],[119,136,262,314,331,332],[262,314,331,332],[88,119,136,143,144,262,314,331,332],[114,136,137,141,262,314,331,332],[87,136,138,238,262,314,331,332],[139,262,314,331,332],[137,138,262,314,331,332],[139,140,262,314,331,332],[83,262,314,331,332],[84,262,314,331,332],[90,262,314,331,332],[89,262,314,331,332],[86,262,314,331,332],[87,148,238,262,314,331,332],[122,132,262,314,331,332],[150,262,314,331,332],[151,157,262,314,331,332],[89,104,152,156,262,314,331,332],[82,83,85,87,89,91,141,142,145,146,147,148,149,151,152,157,158,160,164,166,167,223,232,233,238,262,314,331,332],[159,262,314,331,332],[161,162,163,262,314,331,332],[165,262,314,331,332],[87,132,136,238,262,314,331,332],[136,262,314,331,332],[89,91,136,262,314,331,332],[89,91,92,136,262,314,331,332],[116,119,136,262,314,331,332],[87,177,238,262,314,331,332],[87,132,238,262,314,331,332],[101,110,132,262,314,331,332],[87,91,110,111,119,120,121,123,131,132,133,238,262,314,331,332],[87,88,89,91,93,96,97,99,132,133,134,135,238,262,314,331,332],[87,88,89,91,93,96,97,99,111,132,133,134,136,238,262,314,331,332],[133,136,262,314,331,332],[89,119,262,314,331,332],[182,262,314,331,332],[89,91,110,133,175,177,262,314,331,332],[91,262,314,331,332],[114,119,133,136,262,314,331,332],[87,113,119,136,238,262,314,331,332],[87,113,114,115,119,136,238,262,314,331,332],[87,94,96,136,238,262,314,331,332],[94,95,136,262,314,331,332],[90,93,136,262,314,331,332],[89,133,136,262,314,331,332],[87,157,238,262,314,331,332],[89,91,110,133,136,152,154,155,157,262,314,331,332],[87,89,91,110,133,136,152,154,156,157,238,262,314,331,332],[153,262,314,331,332],[93,96,97,104,108,110,112,113,116,117,119,120,121,130,131,132,133,136,155,168,169,170,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,195,197,198,200,201,202,203,204,205,206,208,209,210,211,212,213,215,216,217,218,219,220,221,222,262,314,331,332],[177,262,314,331,332],[91,100,133,136,176,262,314,331,332],[91,100,133,136,262,314,331,332],[100,101,110,133,136,262,314,331,332],[100,133,136,262,314,331,332],[100,111,189,190,191,192,193,194,262,314,331,332],[91,133,136,262,314,331,332],[136,191,262,314,331,332],[91,100,133,262,314,331,332],[91,100,133,176,262,314,331,332],[133,136,196,262,314,331,332],[87,89,91,110,133,136,176,238,262,314,331,332],[87,89,92,110,116,117,118,133,238,262,314,331,332],[87,89,92,110,112,116,117,119,133,136,238,262,314,331,332],[87,136,199,238,262,314,331,332],[100,136,262,314,331,332],[100,133,136,148,262,314,331,332],[87,91,112,133,238,262,314,331,332],[87,89,133,136,238,262,314,331,332],[87,89,110,132,133,136,238,262,314,331,332],[87,133,136,207,238,262,314,331,332],[133,136,145,208,262,314,331,332],[89,91,99,105,106,262,314,331,332],[89,98,99,105,106,107,136,262,314,331,332],[92,262,314,331,332],[124,128,129,262,314,331,332],[89,91,262,314,331,332],[102,104,262,314,331,332],[101,262,314,331,332],[102,103,262,314,331,332],[89,91,98,262,314,331,332],[89,91,99,104,105,108,110,133,262,314,331,332],[92,124,130,132,262,314,331,332],[87,88,89,91,97,99,104,105,108,109,110,111,132,238,262,314,331,332],[87,89,91,110,132,133,136,238,262,314,331,332],[89,91,104,132,148,174,262,314,331,332],[91,97,102,109,110,133,136,175,176,262,314,331,332],[89,91,104,132,175,262,314,331,332],[133,184,262,314,331,332],[133,184,214,262,314,331,332],[133,184,215,262,314,331,332],[113,262,314,331,332],[116,136,262,314,331,332],[113,220,262,314,331,332],[87,96,113,132,136,238,262,314,331,332],[87,133,136,238,262,314,331,332],[171,172,262,314,331,332],[171,172,173,224,225,226,227,230,231,262,314,331,332],[228,229,262,314,331,332],[262,311,312,314,331,332],[262,313,314,331,332],[314,331,332],[262,314,319,331,332,349],[262,314,315,320,325,331,332,334,346,357],[262,314,315,316,325,331,332,334],[262,314,317,331,332,358],[262,314,318,319,326,331,332,335],[262,314,319,331,332,346,354],[262,314,320,322,325,331,332,334],[262,313,314,321,331,332],[262,314,322,323,331,332],[262,314,324,325,331,332],[262,313,314,325,331,332],[262,314,325,326,327,331,332,346,357],[262,314,325,326,327,331,332,341,346,349],[262,307,314,322,325,328,331,332,334,346,357],[262,314,325,326,328,329,331,332,334,346,354,357],[262,314,328,330,331,332,346,354,357],[260,261,262,263,264,265,266,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363],[262,314,325,331,332],[262,314,331,332,333,357],[262,314,322,325,331,332,334,346],[262,273,276,279,280,314,331,332,357],[262,276,314,331,332,346,357],[262,276,280,314,331,332,357],[262,314,331,332,346],[262,270,314,331,332],[262,274,314,331,332],[262,272,273,276,314,331,332,357],[262,314,331,332,334,354],[262,314,331,332,364],[262,270,314,331,332,364],[262,272,276,314,331,332,334,357],[262,267,268,269,271,275,314,325,331,332,346,357],[262,276,284,292,314,331,332],[262,268,274,314,331,332],[262,276,301,302,314,331,332],[262,268,271,276,314,331,332,349,357,364],[262,276,314,331,332],[262,272,276,314,331,332,357],[262,267,314,331,332],[262,270,271,272,274,275,276,277,278,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,302,303,304,305,306,314,331,332],[262,276,294,297,314,322,331,332],[262,276,284,285,286,314,331,332],[262,274,276,285,287,314,331,332],[262,275,314,331,332],[262,268,270,276,314,331,332],[262,276,280,285,287,314,331,332],[262,280,314,331,332],[262,274,276,279,314,331,332,357],[262,268,272,276,284,314,331,332],[262,276,294,314,331,332],[262,287,314,331,332],[262,270,276,301,314,331,332,349,362,364],[262,314,331,332,335],[262,314,331,332,336],[262,313,314,331,332,337],[262,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363],[262,314,331,332,339],[262,314,331,332,340],[262,314,325,331,332,341,342],[262,314,331,332,341,343,358,360],[262,314,325,331,332,346,347,349],[262,314,331,332,348,349],[262,314,331,332,346,347],[262,314,331,332,349],[262,314,331,332,350],[262,311,314,331,332,346,351],[262,314,325,331,332,352,353],[262,314,331,332,352,353],[262,314,319,331,332,334,346,354],[262,314,331,332,355],[262,314,331,332,334,356],[262,314,328,331,332,340,357],[262,314,319,331,332,358],[262,314,331,332,346,359],[262,314,331,332,333,360],[262,314,331,332,361],[262,307,314,331,332],[262,314,331,332,362],[262,307,314,325,327,331,332,337,346,349,357,359,360,362],[262,314,331,332,346,363],[243,262,314,331,332],[243,244,245,254,255,257,262,314,331,332],[125,126,127,262,314,331,332],[125,262,314,331,332],[245,254,255,257,262,314,331,332],[234,245,254,255,257,262,314,331,332],[234,245,248,249,254,255,257,262,314,331,332],[245,247,254,255,257,262,314,331,332],[246,262,314,331,332],[245,246,247,250,251,252,253,254,255,256,257,262,314,331,332],[234,245,247,252,254,255,257,262,314,331,332],[247,262,314,331,332],[234,245,247,254,255,257,262,314,331,332],[262,314,331,332,371],[262,314,331,332,394],[262,314,331,332,393,394,395,396,397],[262,314,331,332,393],[262,314,331,332,393,394],[262,314,331,332,398],[262,314,331,332,394,401],[262,314,331,332,393,394,395,396,397,398,399,400],[262,314,331,332,401,402,403,404,405,406,407,441,442],[234,262,314,331,332,407],[234,262,314,331,332,401,407],[234,262,314,331,332,392,401,404,407],[234,262,314,331,332,393,401,406],[262,314,331,332,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440],[234,262,314,331,332,407,408,409],[262,314,331,332,401],[262,314,331,332,392,443,444,445],[97,99,116,117,123,206,212,234,262,314,331,332],[262,314,331,332,365,367],[262,314,331,332,365,368,369],[262,314,331,332,365],[262,314,331,332,365,366,370,371],[262,314,331,332,382],[262,314,331,332,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390],[262,314,331,332,372,380],[262,314,331,332,374,376,378,380,382,383,386],[262,314,331,332,386],[262,314,331,332,384,391],[262,314,331,332,375,376,377,379,380,384,386],[262,314,331,332,375],[262,314,331,332,374,375,376,378,386],[262,314,331,332,384],[262,314,331,332,375,376,377,378,379,381],[262,314,331,332,380],[262,314,331,332,376,386],[262,314,331,332,375,380,386],[262,314,331,332,376,377],[262,314,331,332,373,374,379,384,386],[262,314,331,332,374,378,379,380,382,383,384,385],[234,236,242,262,314,331,332],[96,234,235,262,314,331,332],[234,236,241,242,262,314,331,332],[257,262,314,331,332],[242,262,314,331,332]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1743252dec24570957e34d25725b93df244a5a576fca3c038d265377b805a4c3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c37d1a3f973e21c7870a07f6bfa8840c236e60ec1f884862c93214b560498b5","impliedFormat":1},{"version":"6dd22d0da5c10de8dcd0af4ed69b81675e599c589aebc1e936f00be32f78cbb9","impliedFormat":1},{"version":"1e75a4847d77f463bc7564121224b5e84bb41a8e6b1a0d6b68fadc9eb79a2c77","impliedFormat":1},{"version":"fb1784ea6059c10a2d07cd6cc18ac03178ad8f8d80f0fbea2fd1b7a1d73270a3","impliedFormat":1},{"version":"10cbacc27e8ed0c747fe197a61c2c3d093f9ba5c3f95243498fc57d87bd0881a","impliedFormat":1},{"version":"1c112a2980b38a6c4e74a9eb0cf4d60bedb0c135599ee1d8c4897a7ad57efd48","impliedFormat":1},{"version":"716a6a2cc71bd3a5f9aa4655318d70f8f6d9928ad3911bca40da5a637b0687ab","impliedFormat":1},{"version":"204af73bf60dc47cd6458f4b2358cfddc8ba36574b7aa49d2eb68096627cb0fc","impliedFormat":1},{"version":"be9fa1e20c5c057388708781b32e9fb932a6a68b8037bcfc1c584f03988669b8","impliedFormat":1},{"version":"eaea1290215abffebe3481a9697cada4a6e9eade3a939a05f88601419d6ae8f9","impliedFormat":1},{"version":"bfa641fcb14953a149eebaca0baf7a2a93a47c37e0e2415d5ba119ec9b82454d","impliedFormat":1},{"version":"ab978a4f94a7b220e0c1d7719d9fe26b1b816df5e2d4e6428a90a375ba6f811f","impliedFormat":1},{"version":"c0f6c2a9b6fccc2f9edffbd4ce4e29488a55d6020b52e065b980db057c446685","impliedFormat":1},{"version":"104e851142fc7f4dac18b1e0198f7f22418bd6464b270d53289e0f419a9370e3","impliedFormat":1},{"version":"c04177b66a998e64acd5838cc2a697142672577b34a9130f5d89176e30fd6c8d","impliedFormat":1},{"version":"58f93abecbc3848ad37c7555761f630ebf7a05ae93986feaafa87cfdf74adba0","impliedFormat":1},{"version":"0d38077756eb8a870839121afb1da8f919a525d5d4ff131e1a6e1630a0a2bd15","impliedFormat":1},{"version":"4fe2955e0c038801a4fa3cb2106c46d650f1e8a877b8367ed935d66ececc3323","impliedFormat":1},{"version":"446daf6f757089b02980e4ddf94bd26def4f769b309da37961f86b08ebcde10c","impliedFormat":1},{"version":"7b660ae61971beb5454a7352ca142b380cc5441f3d77b1a5233cde84f543d436","impliedFormat":1},{"version":"41d7e54ef6c3351ca18fada62f3b4329541730e44e3bff21015ac23844db727e","impliedFormat":1},{"version":"1ac2d57be5615b7eac402045de283a2fcda8295e77e3784a6ca00807ddb18a8c","impliedFormat":1},{"version":"01f658e316b7239a12e2a6ee11850ec87f18a7e2581a5e9e7cae0e7e3ec50585","impliedFormat":1},{"version":"473a4b85ccb5e20e9bcecf0e5e01072dcff24a773f50e8a99f81f003443a332d","impliedFormat":1},{"version":"0f525f1945882a649ab095ceb3a4e600c777df509f19782ce1ad6cd5de79b608","impliedFormat":1},{"version":"51d91d26cf4928b959b3eae92af85d447fdb9f53faabe59df73a66d510a50a6a","impliedFormat":1},{"version":"3bbcda6df3409458f6f19ddeb5c7b60316ad1b3c6a130773668dd03d22d92fd8","impliedFormat":1},{"version":"7c349e5a9e0fd767b16231d1d01fcf435a106d329e7a708da2fdd461f1b32200","impliedFormat":1},{"version":"b0c2dcd3e3cf3c90481ea3a693e66c81a52b54804aa28ed87c2b21d1c3e32260","impliedFormat":1},{"version":"f3bc0ebb4ea5a71ec75d5adfcaed009a9cff49bf561c0639adb946133347ffe9","impliedFormat":1},{"version":"7e619401aa74928f63343317d17cdb52a2d2df3748524cd1a3f380a834d0ad3c","impliedFormat":1},{"version":"75c74c21e0af630f58ebc3c7490c966c2d740204093ba936856b77ad59d83eaa","impliedFormat":1},{"version":"dba75817cf73b08fa45e5e7bd453b8a2c53bca525de31035d22cd06aa14e438a","impliedFormat":1},{"version":"d8f7e501cfbd8245a37eaf523fc7cc1f3c461f9c257895a36d3d43e2e8c1e7ca","impliedFormat":1},{"version":"6d8ebdf92873668470114222c75da338ffd515623dc4edb261850a9a16fefe68","impliedFormat":1},{"version":"3d427b344019622975a09d594f863858efe5e90c08d5dd4266f74549c98e1b7b","impliedFormat":1},{"version":"ce125864e3bc11ca6626bcef03e8230e09db1f896cb74d511c54e53c1ecfd215","impliedFormat":1},{"version":"5dfd5195db42dde783c0716c82dd87acf798323bfcba089e99ffbcfa1714825a","impliedFormat":1},{"version":"e3322e76612afc434a7246d1ddaef9e25984f4a0de55acaea0c3393b25f9e683","impliedFormat":1},{"version":"19e59207c1dc7299f70c50222506f76290cbb0595c1724ab044a43414c4e6bfb","impliedFormat":1},{"version":"31c3b5c123205dc010b98f6aa3f6d1afb43928655bf396e40dde440af52786d2","impliedFormat":1},{"version":"cc1e409da4c3ac8ca6e66301869226501c4b1493e508f90022f9fb70eab17f6c","impliedFormat":1},{"version":"ed9ce8e6dd5b2d00ab95efc44e4ad9d0eba77362e01619cb21dedfdedbad51b8","impliedFormat":1},{"version":"5520611f997f2b8e62a6e191da45b07813ac2e758304690606604a64ac0ca976","impliedFormat":1},{"version":"00b469cba48c9d772a4555216d21ba41cdb5a732af797ccb57267344f4fc6c3d","impliedFormat":1},{"version":"2766bf77766c85c25ec31586823fefb48344e64556faad7e75a3363e517814f6","impliedFormat":1},{"version":"fe5073c680445ae0b434f3d121a6e6013dd4e4008d93528048332949d177f626","impliedFormat":1},{"version":"a44c1a6368385716f4507b4288436aa9f9527f09724dbc557106586bed0d4839","impliedFormat":1},{"version":"3e9a82fdcee170c57daf01ef1cbbdf27dcd8188bd7933ae800f5c5cdc0309c4d","impliedFormat":1},{"version":"d88b7f53e1c42fee506869558caf85cae7eaf2b31f1b33c932168cad0e6095a9","impliedFormat":1},{"version":"0e5384eddcb3b2e471f8dd7ed1c5e4e4322e297ba1877629e1f020c0e38d4a5b","impliedFormat":1},{"version":"0833598c19a3b3a3415a166f711172e1fa191be14b97b168242ce2f57dc69056","impliedFormat":1},{"version":"8c4817db1349178db99b745e3af0a3543820380d816a99f56bcb1634ff1ad5f8","impliedFormat":1},{"version":"b8f9ccada9b908df8f9786e2087a02ef69a1ba8a157be82720ec3e7e3c8e39e5","impliedFormat":1},{"version":"f9200a1ae3505c15dfd26ecafa9dcaded938e7103e90332043af145aab306c27","impliedFormat":1},{"version":"761e565ebfcdcabf5852a5ac1f7c05d6ba657c5228a71848b7d2b488229800a4","impliedFormat":1},{"version":"8533702e92c8c003996686967473e4bca4a95ab4e0bb8de5713e2320cf3cd519","impliedFormat":1},{"version":"44a5302c628b1b33a0be0ca41db96969bb7684cfda65e650f0b87d97514543f2","impliedFormat":1},{"version":"7610752dfe55e79c4beaa952498b830b5bae50dfb435c4d6ee295f7b915d4712","impliedFormat":1},{"version":"3e12de83d41f11ab9b42570fa350e89f2744465fca08daa8541d37ab830d3254","impliedFormat":1},{"version":"098a0a3e66fcfd7b3f03b88819c2e591f06ddee3d853bca44512812359b49e13","impliedFormat":1},{"version":"0f894b26dea4032e666d73b572c2f8ec78b08cd4d15a571b94fbaec5e4e4f7b6","impliedFormat":1},{"version":"ef09201c4f484f8482e60afd81538a7239b31fcdf3dcf567bdab26dd09f3e056","impliedFormat":1},{"version":"ad334bb1b16abac3fee63fb33caca4b67bca2f6bd16f7961b24db2562743ba87","impliedFormat":1},{"version":"b8e227441ad0436bf0a55699ee4c537c4fb5d5ee0cfe28805f245843e53cb6f2","impliedFormat":1},{"version":"490367105d4be1d2902fd94cdfa6c08aa6314552b835075d3b020e532b189797","impliedFormat":1},{"version":"3a4200e2c5d3c84d3c78587b13d552597ed516ee378d2efb72810e16e74b1989","impliedFormat":1},{"version":"efb7afba23c26802338b1cd418369ee5f7e78722f516f04bc915365a08737e4d","impliedFormat":1},{"version":"48808007280a44db60aadc672cdb29e099eb403b2505016c29783fa40633c195","impliedFormat":1},{"version":"b3c45b185700eb5bd7b96f5c880ecaeab579613e32ac44df63b80cdec2cb6558","impliedFormat":1},{"version":"6fac91e3983fb1537a151334b0eb282e000319b074e0a6e2a0600bccb1bd6ce6","impliedFormat":1},{"version":"2ba2a1df2c2acd428da313329fe4db438d3d33e53b3e1508aaca5948f6e61dc8","impliedFormat":1},{"version":"8bbad4e79314ad0b127741a823fbec08610e4168aff71f8aedca521ae299e709","impliedFormat":1},{"version":"fc5ca85152fa596b2ce6c94cbd302b38f587ae917eb5b08dac24c74c344dde50","impliedFormat":1},{"version":"6bc3ff458cebf9638ad92b4e40a02ae610b5db5be870d93f742bb91da96bcf99","impliedFormat":1},{"version":"7e310a813b1ddc6479b37b791ddcc5b35e43fe39fc543d0a629d265ffb79cdc5","impliedFormat":1},{"version":"91b95506848ecbedabd2af8e96eae28cb5446ca2e8a717cd4ec979ee0cb666e9","impliedFormat":1},{"version":"8b5179b055bbf6f65f59f68855308fa90aa449725cf9506299e96f806035a571","impliedFormat":1},{"version":"1972326ced91cae431e6276662c81aa17c45e0bdafdfb3b0512c7c683fd88b02","impliedFormat":1},{"version":"d588da006c5965fe6e80abf175bb360ac7f754a1dd8cf2fd70604e25baddcc2a","impliedFormat":1},{"version":"cf082442b313ec1422a842eecdadd8b8d66ada0e9efc6e5cb343ded5710ba5db","impliedFormat":1},{"version":"a8671be8893d32db5ddb6a7f9165d31323c6377932e77a227c51b2275b0fbe51","impliedFormat":1},{"version":"916ddb86c8cb84d5c85ad085bda72fa2465f3740c7cdc9c00d086e29e24dd130","impliedFormat":1},{"version":"0e03da285515f992c3ec3d90de22a5501e57a732b9614ea4f7d3d28314175c44","impliedFormat":1},{"version":"a81f24aba47a855c7a7c540d8a366606fcf5afbf276af32d4b304429933319f9","impliedFormat":1},{"version":"3644436f3cad9940d8ebc0fbc13cc6d1c5b61e9b5b72f06d14b802e2dfa10a76","impliedFormat":1},{"version":"e8391002a07a238fedf7ed4c373b1f541c86cccec94b9539dea2ec95aacf99b8","impliedFormat":1},{"version":"92da0c3c2bb8ef14fc095959ebbe07518289d04752f51b580dd42e23873a83ec","impliedFormat":1},{"version":"ba760fe2f35bb2b729471ae6a0064477232bee6ce330ce99dd06bee1540bcb14","impliedFormat":1},{"version":"c47d49796280f668c0c335b0911de8b187cd7495dc43de35ba96f38bb750d7ee","impliedFormat":1},{"version":"e49009025c4d6ee4cbdae8f01317596c8e305cac06188e6e17b49d56cce0b786","impliedFormat":1},{"version":"0073c3c19d2003aabe82185776a52db61361a92344debdc8ff2558afe55305b4","impliedFormat":1},{"version":"1dedad2c07cf00796a26d66fa6be909c631620e76660000b165e5f0ce665ee1e","impliedFormat":1},{"version":"a6ad096ce83bdb6f4f25d3f14b7b4b215d0c6f8bc524998c1380631d140c92aa","impliedFormat":1},{"version":"4c2a88e76dde66a92247f1ffaf082da94c3540681128a68399ed7a914e312acd","impliedFormat":1},{"version":"af80b25b83eb82e600344ffb20d40b35b1d7c170f52937ab58fff1683383f9a7","impliedFormat":1},{"version":"278c6d114f22e5b73da512bf0f0ce273dab793fd1156e772fe9b3347e1679d6d","impliedFormat":1},{"version":"822599f68c46745e6ddbda090158e9190b1158ab1a1a7d0ac3838aa221909cca","impliedFormat":1},{"version":"c09fc7218c9063a0027eeeb4d5d570c52a1c93a2261af4b02a6b798616cfa9a6","impliedFormat":1},{"version":"b452aba343bb52f14c2e1b45eff94b91e6eee7118619eb279dbf9267e66a047e","impliedFormat":1},{"version":"2732f07231a3a0d4b5972456c6353d75d1f72bac715a4b87a339df24144b2dc8","impliedFormat":1},{"version":"a2bdfb39a9fcd473bd4e1242726d3ccbd54763e46ec454350b4d2e29f8950bfc","impliedFormat":1},{"version":"19cfd7375f54ff9bdebf95bcafa3faf5b04d668c8a7c9dfc3291a03938e1f394","impliedFormat":1},{"version":"d47e2900a3dbf8ae48acf4567ca06c3af73bd971857cf13fb5c11be37e7ff6b2","impliedFormat":1},{"version":"638514bef74dd7930222c04b0c7ac56ac8720e7b00e7ccd02f12cd1ec6c53854","impliedFormat":1},{"version":"d907a383dcc9219d8479116e4bc52c82acd056430933cf11db54e98ba2984cdf","impliedFormat":1},{"version":"06d376ad969b18dbb77d0f36df9472442a05447e834725e754b1c37afe1ba1ba","impliedFormat":1},{"version":"9776d64b1ec3db783af6c9c5e9c1538a89a46a04bd6d3110687285a369d6547f","impliedFormat":1},{"version":"cc837bf97d5d751721aef81ae14a39b12ef91eebba58c9b5e3ebfb90ad3fdd97","impliedFormat":1},{"version":"12449da79b60e45829ede251e5488e5c2186814bddd0a182f198e0037113460e","impliedFormat":1},{"version":"144d18faf183e08a14c341d3919c6f44dff386ebe9d030ece032e06a156c16a9","impliedFormat":1},{"version":"92ea7699b5d4d9839112bc3f2f6628f189cb77cd8ae7f0dc50e7247e5f99e063","impliedFormat":1},{"version":"ae55d8d6a03f6341530f01f5bfcb96cd49aa38b38d8b0558591704c8a4e65302","impliedFormat":1},{"version":"76accea4558c53eb279b75e094c61b1b72fd1b37446a07072ed6f33b1a27c69b","impliedFormat":1},{"version":"345baa519f56b51b5466e4f3506246cedaaf8b00343c631f5621ba41e49ec748","impliedFormat":1},{"version":"2a4b1e3d7488cf7154c1769295f7bfcc96273528a19056dc576fe9e7faf3cbbd","impliedFormat":1},{"version":"9304a61ad6e31528d9546037ff73f1ce5a46d2e6918c5ec4b11b6cd7e47f94b6","impliedFormat":1},{"version":"5160b26ab47c0667b7c82b14cebfc4d6b1c63180d9aa3f47464fe641a454ab08","impliedFormat":1},{"version":"f73151520a4e620d90244d391f55058a50e8b3b9c764ba4b972490a0fd81799c","impliedFormat":1},{"version":"114a61654dc9cce835252a8d37ec56034f23fb2b492625771c022241fa2e7177","impliedFormat":1},{"version":"c93c232154d096700acacbeafa5202bb9b857b51b375f1845faca2201bba1e67","impliedFormat":1},{"version":"ddfa373cc8043950841932183d82cb6d548fe13f76d3345e0b4640d9ee29577a","impliedFormat":1},{"version":"a6ca478464ab79b57d58df0218ed60f56579ceb756d7a1a710d64a482684b191","impliedFormat":1},{"version":"2f0aa1d89b578a27bccc9e9f868b5a6a93241d73716bf1d9cb37075438c9d056","impliedFormat":1},{"version":"fe6c78f6894ca2295f5becbce54483b29a52324c122e6d991956946d1c66c5ed","impliedFormat":1},{"version":"4995f57374453ee550a75f69a36b8d096af8f5dca2bce81b54b92e4b4b34ba86","impliedFormat":1},{"version":"1c455985f3e6d6f72bdc48d2aea091ed187cfe7fbc9135f2dbf9ddbe9c2b36ea","impliedFormat":1},{"version":"acd1e550faa27205ac9c3b170523cde4c8d0e093f39b2e71c9a255cf173128c2","impliedFormat":1},{"version":"eb61f9b35bb8d692295f8041260932cc0a55437f55e9cb662285ecaaf392ffc4","impliedFormat":1},{"version":"0b3d94543e490344d11195f6511a2cd9eb21b08b48959dcdaaab24a4281bd666","impliedFormat":1},{"version":"b1dc2a3c5624ad55b7fafd73e4f75b7c1f4be50a7586d5a7bb1e07b0d8d6223a","impliedFormat":1},{"version":"b06147ff6890f8669b4e1facd63e62fa384d391039d2f4c57aa3e0f5ba2bd4cf","impliedFormat":1},{"version":"f16970adbb9016457a2601c9fe73d4690d5683726fcd940ea1e9576024af2637","impliedFormat":1},{"version":"21c7ef1b48db9dfe683830744a5e3f6181117541945182c49ac99d01bd0ccc0c","impliedFormat":1},{"version":"c8a52f685d77417b2a058c8c64e746f44986143571e73f5828ece4f7b34c3922","impliedFormat":1},{"version":"cc750ffe18ed03095f305f236f17ae837ed47bf2bdae50ea58924810a99344a0","impliedFormat":1},{"version":"d4c282cd70d15049070a044071740da646e6609ebc1ac01b2f9a5eea98ac4ebb","impliedFormat":1},{"version":"d618c5d45315d4256ad8e2d7d61721acd8644b7d6482603704a416d9f231cae4","impliedFormat":1},{"version":"3abf5240fb92e651aa819db41b6c8041da3908e217de3d906ff4c94bb4503c99","impliedFormat":1},{"version":"d25344560ae432f20425cb93cb3d45d9015495f27194ab2662ac605f5fd3d1d8","impliedFormat":1},{"version":"14b452945ec4b5884036d9f97977a349d596ce33968572cc237494896ae714c8","impliedFormat":1},{"version":"81c4ced262e9e36f631cadd210a713abe25dfa0f555de056b9922987a11c8363","impliedFormat":1},{"version":"f9a01be358939845084f36223b42a4ac5cb6e680b8dbb36a527cfff07579aac9","impliedFormat":1},{"version":"409a29b559b95cdf1f48c0ce4066482239d0218d9362fa45e24b347e0748e285","impliedFormat":1},{"version":"38c53015f2b37431993bde045c65c80e62b5494353c77253d84988e69c3210b6","impliedFormat":1},{"version":"f7df3e71d6a6201fcf5f4657377167109efb683ae7eab3f04a66d89affd9c7ab","impliedFormat":1},{"version":"d3d39d6186a58953b640d88bf03c84921b36256864e6c5c5b2bb1a37185885f1","impliedFormat":1},{"version":"6c44b0be75477a7d8fa2498a48a96cda764479a6f68d12d636d005fa92a84641","impliedFormat":1},{"version":"76f1c44382cc785dd2349f8b2dbcc3970c161f2dca5dd89b85346f55faabfca4","impliedFormat":1},{"version":"01a87ccf71ce3000b2800f77bbf96ad1de3af8aec25fc1215b2eb8533ccb2030","impliedFormat":1},{"version":"b6e35319705d4ee72fb9499783ea151cda4d8a90f234f46cc24ff02182727860","impliedFormat":1},{"version":"7aaeba86def2219fd458f978828bc4dac230d716087b4f8b81eae7f7f23112e1","impliedFormat":1},"306508448fc65f011dc68fda2de4b5e48d1cce8f9064158b44d75c7c1fbd4b67","abfa67fb3ec41585eee84f8c0e52128c9eb022da1b6bb201fc73649ff6afb5c7",{"version":"f4231a21f5751a63b6339546d1c563c18a66c6096e781116c18bf7fd264d409e","impliedFormat":1},{"version":"856c6258108e9b821a94a74839c31cd4efbaadf2702c2dc09a434835271509a8","impliedFormat":1},{"version":"0fc88ae5c1788007cab9f160f2e6f990dbd0b5686e23a7b50163ba8069013d08","impliedFormat":1},{"version":"3f0a6a0755c5055c59aa9e75915d47630ccf0f8dba0485103bebd89834872101","impliedFormat":1},{"version":"b4600989673968b055013c36b03a93e9d5b39ddccfff455c85e68950df724dfe","impliedFormat":1},{"version":"d238e3457c6975da320ec3129b6d053d7f32d4bc4a57ed73daf61a78386c534c","signature":"44bfae61872dea780922a23b4c5d1bb9bb3fedfc404314e2db720abb8d02685d"},{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"c0d079ee61d0e1c301038fc97965734a8e861759dd5a0016f4e8a974746f6fed","impliedFormat":1},{"version":"6a4b3300d44e138529693c8855072efd7627532b0e6bbe3dcaf6db557dcf24bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"c1f9c868d4675b558cca2e796b907e6c260ba7e097d4f87f7ae70d08dae5973e","impliedFormat":1},{"version":"b212e69283f3a5c7a93b2ed65b670269064e5f8c72700a393358d32c65c41303","impliedFormat":1},{"version":"a50e3c16e1492772c86e03a546db7db4e1b4291edd59bb135357be069ee2dcc7","impliedFormat":1},{"version":"2c4a51c205e147e94ab459d9e2919d1dc991a8e29c0304597887c1d01dfc06e4","impliedFormat":1},{"version":"13950c2e5ef065bec676283dd83a4678f2afeb1731243ce3e20e7db95deef87f","impliedFormat":1},{"version":"54dee5c5789a6f33a5cf7b05269848a9a6a119049849252fc35a1a0d0907151a","impliedFormat":1},{"version":"2771f7c3f93d9297e38858c8e9c61e677dd02030b3632789465ac454edf5f58b","impliedFormat":1},{"version":"f316a02979a93d416c07fa301692ced2821230a223f39851f78140fdc0261969","impliedFormat":1},{"version":"07540d74cc7b6cf74bc68a7d1d83f8d5196b5a9d0540aab2eb98c1e68fb65ff9","impliedFormat":1},{"version":"cc6796fc96e7b80ab182fc1c6187c6a7fc008cb1d2c3547104439c33d2584816","impliedFormat":1},{"version":"f68d767aa7002ece8fdbceed56d1f19e6bde5a530f7696d61c3b5987d3e0793a","impliedFormat":1},{"version":"43a5dca61cbafdc663ac1037ba7e87622d357ffe70e84a43911e4e61bfcc8e16","impliedFormat":1},{"version":"2d05b24629cfd6b7f2d7b8fe275d466f690f3dfe8fa853153383c5a39dc5de84","signature":"71bff3623c7a2506b64adef67b94a4985884f412a2e9ed190c34604d0296319e"},{"version":"52ee0765a6a4a7c54912e76dc652863157a3d80b29f8800b34c73148121a7796","signature":"e6655aa0cc7ff373352cb2ca26e2593854765aba64b2713e9a9b496dd5c8ec16"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa83e100f0c74a06c9d24f40a096c9e9cc3c02704250d01541e22c0ae9264eda","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"00b21ef538da5a2bbe419e2144f3be50661768e1e039ef2b57bb89f96aff9b18","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"e843e840f484f7e59b2ef9488501a301e3300a8e3e56aa84a02ddf915c7ce07d","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"0040f0c70a793bdc76e4eace5de03485d76f667009656c5fc8d4da4eaf0aa2da","impliedFormat":1},{"version":"18f8cfbb14ba9405e67d30968ae67b8d19133867d13ebc49c8ed37ec64ce9bdb","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"ae9c204c20fe877c7c5dbd14d8fe4e2388c7efaa3a14f27f426b4ec00ea15409","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"f68328826a275104d92bd576c796c570f66365f25ea8bbaaa208727bce132d5f","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"18334defc3d0a0e1966f5f3c23c7c83b62c77811e51045c5a7ff3883b446f81f","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b17fcd63aa13734bf1d01419f4d6031b1c6a5fb2cbdb45e9839fb1762bdf0df","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"c0bf47885da24434ac54d80ff6a67f4eca258101e3eeb942d0a8155ed4140591","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"aa9224557befad144262c85b463c0a7ba8a3a0ad2a7c907349f8bb8bc3fe4abc","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"8d86c8d8c43e04cc3dde9953e571656812c8964a3651203af7b3a1df832a34df","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ab1d75ed28e7634498b148c5b8b382c365126e9f5b704f34dbbd67729fc1a5","impliedFormat":1},{"version":"c6176c7b9f3769ba7f076c7a791588562c653cc0ba08fb2184f87bf78db2a87c","impliedFormat":1},{"version":"d734d2a1a1e8d61a89a0559dde9467d0d0a45055449eb3d14c23ac87aba54b96","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"165a0c1f95bc939c72f18a280fc707fba6f2f349539246b050cfc09eb1d9f446","impliedFormat":1},{"version":"ca0f30343ce1a43181684c02af2ac708ba26d00f689be5e96e7301c374d64c7e","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7baae9bf5b50e572e7742c886c73c6f8fa50b34190bc5f0fd20dd7e706fda832","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"29c83cc89ddbdd5ffae8c00f4e6fab6f8f0e8076f87a866b132e8751e88cb848","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"236d4b810716fd59323d83064da9fc68d5284529ab3abc9a01170934d5e3763a","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"3af7d02e5d6ecbf363e61fb842ee55d3518a140fd226bdfb24a3bca6768c58df","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"7dfa742c23851808a77ec27062fbbd381c8c36bb3cfdff46cb8af6c6c233bfc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb078cfcd14dc0b1700a48272958f803f30f13f99111c5978c75c3a0aa07e40e","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"420fdd37c51263be9db3fcac35ffd836216c71e6000e6a9740bb950fb0540654","impliedFormat":1},{"version":"73b0bff83ee76e3a9320e93c7fc15596e858b33c687c39a57567e75c43f2a324","impliedFormat":1},{"version":"3c947600f6f5664cca690c07fcf8567ca58d029872b52c31c2f51d06fbdb581b","affectsGlobalScope":true,"impliedFormat":1},{"version":"493c64d062139b1849b0e9c4c3a6465e1227d2b42be9e26ec577ca728984c041","impliedFormat":1},{"version":"7ac7756e2b43f021fa3d3b562a7ea8bf579543521a18b5682935d015361e6a35","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"088479b9419acfca7556583ccd5a8b5c486e507b6f2af03e45d38253669e2d84","impliedFormat":1},{"version":"d8e062c357df76b711f92e07446c99714390a79b9ab008facfb18b457aa436b4","impliedFormat":99},{"version":"94894f6fb4c3d669472c373e07d291a3fe14c19f3f195fb1e6338e7df0a25154","impliedFormat":99},{"version":"e344cc4394fa9b1f42058282fd262657a90f7b121677e99d527dd393cadd4226","impliedFormat":99},{"version":"bf8f7578124e832be0956030b8d6cd38cc81cafb973dc6f7154265a1ca1545e9","impliedFormat":99},{"version":"f3f060b72e0750b840b771e88e4adf7018569498cf247f9ccb1c79e1d933ea70","impliedFormat":99},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"14d04f6ab1fe2a1241e758eb703a2020407ace64bb9b23e34e9aa0069200c717","affectsGlobalScope":true,"impliedFormat":1},{"version":"a946d43895482291ec5cb34a07c1c65ee601263ff5e26053263c0b171057c7fc","impliedFormat":1},{"version":"c1efe4cefe90bdbaa0c13ae3057eba1a93b448bfb756dcae281f51173f846441","impliedFormat":1},{"version":"03fe1289f9b1ffcf0950aa06a370badc11b3e6a793308d2bee811955fe79df12","impliedFormat":1},{"version":"b18bfef15925c4bc28ac3cce02be4299f52fd6bb055c075058f9fc046bf8f1c6","impliedFormat":1},{"version":"2f8da698a709bcc06341c377d17337abd3c26d86b67ae3c2ab145a34fa84b03d","impliedFormat":1},{"version":"e6fa5b1b2b33cb3daaaafe685fef14e651a5b7f77cbbacc110dc92782a76ba0a","impliedFormat":1},{"version":"41a04f7afd58b9696cafd248a775524fa633aa47424c13c08922e029bd8fb03c","impliedFormat":1},{"version":"d15ea5ae6484cb2607ccfc95e8e139f8cc3cb78c55d31bcd03860836fe93ecfd","impliedFormat":1},{"version":"52721fd135133263fa5b0ae1e0b5e79ea65cf66ab51d5cd59299fb6f6860e9ec","impliedFormat":1},{"version":"680a3007565a1d785ba3a7711dda7eda3f3a6c82bc79c04ea6005b57fd5d68e5","impliedFormat":1},{"version":"a8637991d21aa14213322a322fcab2e424ed46add8aefc98dc7226f71b6b7f75","impliedFormat":1},{"version":"445f10b292e86af14a775a962ddc617907126510e2e19ea42c57020320f1873c","impliedFormat":1},{"version":"f0e647e9f289a4acff1b3b4212ecc2ed2182df93bc2fdbc09f9ecc0c55b28804","impliedFormat":1},{"version":"47e03a25122f95a5d9af9461b521b079ad48acfab4ddd979071eb013f6ceb32c","impliedFormat":1},{"version":"a3970021befe3a68b5f0b076e6887db8b84ae0fa5332781cd8e35d8d3ef917a0","affectsGlobalScope":true,"impliedFormat":1},{"version":"91718454bd0acb488efc4eb5f29d61a023b23839b70834550c80798988e801f2","impliedFormat":1},{"version":"bf8ed7fb09b8ad5cc244877d0cb0355a3e2a712034af061d89a6d20df4dd817c","impliedFormat":1},{"version":"bf8a5c34df856da374c0ba21c56827a2a05bab0cd557bd208ef6404493498573","impliedFormat":1},{"version":"5c93e8b20a87b86f80c1e9443ec72f364f8580165ce35d78815e3af09c050119","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d71568f19ea6351be9c9728cc4d807cf1a4fe4ae2b87c55c0c3ee43b082fd1","impliedFormat":1},{"version":"03bf021db53fc4f5be36bd37b857c9264e73d4dc417936d263a4e82fd9c53a36","impliedFormat":1},{"version":"f64d90593d59e2b0daaee0eea2c38126ea9672131c6e889493d833f4495f1a51","impliedFormat":1},{"version":"cce6e78e6bb9dfaf40b8c0f39a16048cc5be9fe82191ca05e41dec3558ea8477","impliedFormat":1},{"version":"2f2499b2eed60ded139587007b819d900cce6d5ee146da60a6801b12b67e02d5","impliedFormat":1},{"version":"61f117582a6fe1cfd5747c0e4f2c3e8b7f89bfae4631b140efb3fd163a2a2ecb","impliedFormat":1},{"version":"54b00fc3f78a77fbe7ed29397f89f17647434c32378bc2d5290fa2a29d438fbe","impliedFormat":1},{"version":"5287c1ff8ee7cd3d3725da338cd793ac4cc788f0cdfd87ba5717f2a597634c39","impliedFormat":1},{"version":"ff9c888b4ceba711437f99f3101375c938ec348caed070d047a9aa6769355134","impliedFormat":1},{"version":"4c31e1482a09e7ceb1f2e60aaa2e09550d7bb27b81ed055c6040b9ee92fbd732","impliedFormat":1},{"version":"6cede507730236d43090153f5f8001f42725f46fad9f17e305ecb198e9e24f19","impliedFormat":1},{"version":"74d6d65b135851f45751dccede1d01ef956fa2b9ee81ec667977a3d69e2ace6e","impliedFormat":1},{"version":"a8e9ab63f57f8601a2d26159d4941ad7a5de369c5b927d31649f9053592c1461","impliedFormat":1},{"version":"7455abd8076ab721529f6ce40513a4c9896d33e95f02e79e3d5d97cf87cc5b64","impliedFormat":1},{"version":"9d6ebc25819d62098d85243d79c3bf463466089d9d3326c1c979332ef82feab4","impliedFormat":1},{"version":"42f0f1b239a451cd502d1d5905b12fe2847e913b2973bc382eef468d01754546","impliedFormat":1},{"version":"66332cfbc59a07723baeb5df906e3ea9c8177bb8dbb42dc54d9632a70d97ef56","impliedFormat":1},{"version":"ba5ae180f6a42ce92d4a25174a643ee8547c5fb30db539de1422e49867ca1238","impliedFormat":1},{"version":"49f2dea355e6c25ac53162f1f2321f9ebda0e0b6733e72b757554859af61cf59","impliedFormat":1},{"version":"70300b5914f7fb2cd83851a1691d3a8377a4fd84fb82cf1e1b6c80d70273172e","impliedFormat":1},{"version":"976057807d7328a576cb3270f1f86a533205c7cbc4351fd23cce739aa3f68e70","impliedFormat":1},{"version":"4fde090faeed1757c28b821a69979d3de44c6785c2ad14f33e812e789d67a77b","impliedFormat":1},{"version":"f7299d375187b13ae2745a57abd828f9de2a43855dfcaed5909364c18b1a96b7","impliedFormat":1},{"version":"62c0a01ebe6d687814936b2353a08be3428fcb525b5d0da7fa933767f08eff4d","impliedFormat":1},{"version":"026877e848c93f9944fb50b4c88236f6ba934471dae95911b72cc753d6c4ab3d","impliedFormat":1},{"version":"8446552129d7f89838a18e42c0ea758bde7a99dbf031d0ca8ffb30d00a9b74d3","impliedFormat":1},{"version":"5ede970af011fc3a0966a164572b4be4b2fde8adaa42352b0f568b4036bcd64f","impliedFormat":1},{"version":"8f0d2a136c0869507b59bba6f65032a3e0ac07a1158e531335b34deb1c0a11c3","impliedFormat":1},{"version":"6fb81970366320a81974e88d8e9ab34384ef4509092763d11fec703ade9ee3b6","impliedFormat":1},{"version":"b029efb9ecf4a3ebb1dfd60b0f7ead0547a26827558935bfe74bd3232feea906","impliedFormat":1},{"version":"738808a4ea5766f13fccb849ac4a68f63311d06b81ceb6be50aec6a7aad4a1fc","impliedFormat":1},{"version":"2830dcb0c2a0ca4795431983ec236ab488830072ce6e815b01973e770055902f","impliedFormat":1},{"version":"d0ee23a314c2810f60c4524359c4cb2772ece9ec325131ced7bc91bede7026b5","impliedFormat":1},{"version":"5c8f1de50bafc0cb7a374317efaecf0b47430613aee87231f54f107969a08aab","impliedFormat":1},{"version":"a69d7e8571f6f7ce2b3edb44fff1cd85f6e31660a6f8b95116bba58533c1c01d","impliedFormat":1},{"version":"5a721cf464713ee6c618ffca9a701a0421263d84601a4f6f20cca03c8de6886a","impliedFormat":1},{"version":"dacb413f2bc7032ebc03c5baf7a11f22467ad28a90c66d51d4ff7539524b5d00","impliedFormat":1},{"version":"1463676c3f96de198c950a57937daff479319da2cf510e51c99bfd87ac70a2f0","impliedFormat":1},{"version":"c78155fa4611163ecae994d7961d639cd0f52e70d0dde40d75be7aafacd69dd1","impliedFormat":1},{"version":"e7808f304ede8941876e5b6dc7cef4244c378feb565a97053937cee9415c8da5","impliedFormat":1},{"version":"d47badf5669ef22fe18531cf79ae86bb2e61933b20c38483dac935af34998ad1","impliedFormat":1},{"version":"af2859c617337690df6ac8af597ed1e66f0aab652e9bece47ebf610f8860a0c4","impliedFormat":1},{"version":"d10244194a98d178644014361112f639889dc8122b0d9511cd9d1fa6ce2e49c3","impliedFormat":1},{"version":"a3bab21a76ac1e87befce564c905059d3019d1cc5e67bde6b987e2ff415736b7","impliedFormat":1},{"version":"32a95e15d6894de65438a4f1dd3b1c25a635b282a3af471470d93a178fb26f5b","impliedFormat":1},{"version":"b5199c8c06ea6a3774bd950c7741a887a58761bd38978913793e2a77d45fb5f0","impliedFormat":1},{"version":"eb5999e931e21d2b092bfab3d930b9cd9cadbc7a4e50bfb0ddfd38e4c19d1c2f","impliedFormat":1},{"version":"2f4346679ae0d47e435e242acc6e0446f9507ca493e5c70c6e325b15c42d8ae8","impliedFormat":1},{"version":"a4ea3c38ff9b98c2eb4d6189f8988b2f77b5db9d9fb18b29dda23f607a172e96","impliedFormat":1},{"version":"c202ae021a955c8fc6b3fdc7dfa4a7f6492793c747ab5f9e9139adea4b489dc0","impliedFormat":1},{"version":"2e9176df85fb56998f9652bd98b7a375ae2080a7276f580552e747e648657da9","impliedFormat":1},{"version":"6d5bfefbcff6e2474b0b0d423c86964e4dc8925c77936cab33027583ae473686","affectsGlobalScope":true,"impliedFormat":1},{"version":"5bcd69e3fde80e3fe3732efb8dbe4fafcbe4bf86c4139f2ad12426f124ace597","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed77614b84d56a4269463c071900962344148a025be02a2a5f70ce86632d4eca","impliedFormat":1}],"root":[242,258,259],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"emitDecoratorMetadata":false,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noEmitHelpers":true,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"outDir":"./","removeComments":false,"rootDir":"../../src/swipemenu","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"target":7},"referencedMap":[[239,1],[240,2],[238,3],[237,4],[241,5],[143,6],[88,4],[144,7],[145,8],[142,7],[138,9],[137,10],[140,11],[139,12],[141,13],[89,7],[84,14],[85,15],[146,7],[91,16],[98,17],[124,7],[147,7],[148,4],[87,18],[149,19],[122,7],[123,20],[150,7],[151,21],[82,7],[129,4],[158,22],[152,4],[157,23],[234,24],[160,25],[159,7],[161,7],[162,7],[164,26],[163,7],[83,7],[166,27],[165,7],[224,7],[167,7],[117,28],[168,29],[90,30],[93,31],[92,30],[170,29],[169,32],[178,33],[112,29],[120,34],[179,7],[133,35],[132,36],[136,37],[135,38],[134,29],[180,4],[181,39],[182,40],[183,41],[184,42],[185,29],[101,43],[115,44],[114,45],[116,46],[95,47],[96,48],[94,49],[186,50],[187,51],[156,52],[155,53],[153,7],[154,54],[223,55],[188,56],[189,57],[190,58],[111,59],[191,60],[195,61],[100,62],[192,63],[193,64],[194,65],[197,66],[196,39],[198,67],[119,68],[118,69],[200,70],[199,4],[201,39],[202,71],[203,72],[204,73],[205,74],[206,75],[208,76],[207,77],[107,78],[108,79],[106,17],[105,7],[209,7],[210,80],[130,81],[97,82],[109,82],[103,83],[102,84],[104,85],[99,86],[176,87],[131,88],[110,89],[211,50],[212,90],[175,91],[177,92],[174,93],[213,94],[215,95],[214,96],[216,39],[218,97],[113,98],[121,97],[217,97],[221,99],[220,100],[219,97],[222,101],[228,7],[173,102],[225,7],[226,7],[232,103],[229,7],[227,43],[172,7],[171,7],[230,104],[231,7],[86,7],[233,7],[365,7],[311,105],[312,105],[313,106],[262,107],[314,108],[315,109],[316,110],[260,7],[317,111],[318,112],[319,113],[320,114],[321,115],[322,116],[323,116],[324,117],[325,118],[326,119],[327,120],[263,7],[261,7],[328,121],[329,122],[330,123],[364,124],[331,125],[332,7],[333,126],[334,127],[284,128],[296,129],[282,130],[297,131],[306,132],[273,133],[274,134],[272,135],[305,136],[300,137],[304,138],[276,139],[293,140],[275,141],[303,142],[270,143],[271,137],[277,144],[278,7],[283,145],[281,144],[268,146],[307,147],[298,148],[287,149],[286,144],[288,150],[291,151],[285,152],[289,153],[301,136],[279,154],[280,155],[292,156],[269,131],[295,157],[294,144],[290,158],[299,7],[267,7],[302,159],[335,160],[336,161],[337,162],[338,163],[339,164],[340,165],[341,166],[342,166],[343,167],[344,7],[345,7],[346,168],[348,169],[347,170],[349,171],[350,172],[351,173],[352,174],[353,175],[354,176],[355,177],[356,178],[357,179],[358,180],[359,181],[360,182],[361,183],[264,7],[265,7],[266,7],[308,184],[309,185],[310,7],[362,186],[363,187],[244,188],[245,189],[243,7],[128,190],[126,191],[127,191],[125,7],[372,7],[248,192],[249,193],[250,194],[253,195],[247,196],[257,197],[254,198],[255,198],[246,199],[251,192],[256,7],[252,200],[392,201],[395,202],[398,203],[394,204],[399,7],[397,205],[396,204],[393,206],[400,207],[401,208],[443,209],[415,210],[412,211],[416,210],[417,210],[423,210],[414,210],[418,210],[424,210],[425,210],[408,211],[419,210],[420,210],[421,210],[413,210],[422,210],[410,212],[406,207],[407,213],[409,210],[426,210],[427,210],[428,210],[429,210],[430,210],[431,210],[432,210],[433,210],[434,210],[435,210],[411,211],[436,210],[437,210],[438,210],[439,210],[440,210],[441,214],[442,215],[403,216],[405,216],[402,216],[404,216],[446,217],[445,7],[444,218],[369,219],[370,220],[368,219],[367,221],[366,7],[371,222],[80,7],[81,7],[13,7],[15,7],[14,7],[2,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[23,7],[3,7],[24,7],[25,7],[4,7],[26,7],[30,7],[27,7],[28,7],[29,7],[31,7],[32,7],[33,7],[5,7],[34,7],[35,7],[36,7],[37,7],[6,7],[41,7],[38,7],[39,7],[40,7],[42,7],[7,7],[43,7],[48,7],[49,7],[44,7],[45,7],[46,7],[47,7],[8,7],[53,7],[50,7],[51,7],[52,7],[54,7],[9,7],[55,7],[56,7],[57,7],[59,7],[58,7],[60,7],[61,7],[10,7],[62,7],[63,7],[64,7],[11,7],[65,7],[66,7],[67,7],[68,7],[69,7],[1,7],[70,7],[71,7],[12,7],[75,7],[73,7],[78,7],[77,7],[72,7],[76,7],[74,7],[79,7],[390,223],[375,7],[391,224],[373,225],[384,226],[385,227],[381,228],[378,229],[377,230],[379,231],[389,232],[382,233],[383,234],[374,7],[387,235],[376,236],[388,237],[380,238],[386,239],[235,240],[236,241],[242,242],[258,243],[259,244]],"latestChangedDtsFile":"./vue3/index.d.ts","version":"5.9.3"}
package/vue3/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { install } from '..';
1
+ import { install } from '@nativescript-community/ui-collectionview-swipemenu';
2
2
  const SwipeMenuPlugin = {
3
3
  install(app) {
4
4
  install();
package/vue3/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/swipemenu/vue3/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,IAAI,CAAC;AAE7B,MAAM,eAAe,GAAG;IACpB,OAAO,CAAC,GAAQ;QACZ,OAAO,EAAE,CAAC;QACV,GAAG,CAAC,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,SAAS,EAAE;YAClE,iBAAiB,EAAE,IAAI;YACvB,OAAO,EAAE;gBACL,MAAM,CAAC,KAAK,EAAE,MAAM;oBAChB,IAAI,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE,CAAC;wBAC1C,MAAM,CAAC,UAAU,CAAC,WAAW,GAAG,KAAK,CAAC,UAAU,CAAC;oBACrD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,KAAK,EAAE,EAAE,CAAC;wBAChD,MAAM,CAAC,UAAU,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;oBACpD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE,CAAC;wBACjD,MAAM,CAAC,UAAU,CAAC,WAAW,GAAG,KAAK,CAAC,UAAU,CAAC;oBACrD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,YAAY,CAAC,KAAK,EAAE,EAAE,CAAC;wBAC/C,MAAM,CAAC,UAAU,CAAC,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC;oBACnD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,EAAE,EAAE,CAAC;wBAClD,MAAM,CAAC,UAAU,CAAC,YAAY,GAAG,KAAK,CAAC,UAAU,CAAC;oBACtD,CAAC;gBACL,CAAC;aACJ;SACJ,CAAC,CAAC;QACH,mDAAmD;QACnD,4CAA4C;IAChD,CAAC;CACJ,CAAC;AAEF,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/swipemenu/vue3/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,qDAAqD,CAAC;AAE9E,MAAM,eAAe,GAAG;IACpB,OAAO,CAAC,GAAQ;QACZ,OAAO,EAAE,CAAC;QACV,GAAG,CAAC,eAAe,CAAC,WAAW,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,SAAS,EAAE;YAClE,iBAAiB,EAAE,IAAI;YACvB,OAAO,EAAE;gBACL,MAAM,CAAC,KAAK,EAAE,MAAM;oBAChB,IAAI,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE,CAAC;wBAC1C,MAAM,CAAC,UAAU,CAAC,WAAW,GAAG,KAAK,CAAC,UAAU,CAAC;oBACrD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,KAAK,EAAE,EAAE,CAAC;wBAChD,MAAM,CAAC,UAAU,CAAC,UAAU,GAAG,KAAK,CAAC,UAAU,CAAC;oBACpD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE,CAAC;wBACjD,MAAM,CAAC,UAAU,CAAC,WAAW,GAAG,KAAK,CAAC,UAAU,CAAC;oBACrD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,YAAY,CAAC,KAAK,EAAE,EAAE,CAAC;wBAC/C,MAAM,CAAC,UAAU,CAAC,SAAS,GAAG,KAAK,CAAC,UAAU,CAAC;oBACnD,CAAC;yBAAM,IAAI,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,KAAK,EAAE,EAAE,CAAC;wBAClD,MAAM,CAAC,UAAU,CAAC,YAAY,GAAG,KAAK,CAAC,UAAU,CAAC;oBACtD,CAAC;gBACL,CAAC;aACJ;SACJ,CAAC,CAAC;QACH,mDAAmD;QACnD,4CAA4C;IAChD,CAAC;CACJ,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './module';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvc3dpcGVtZW51L2FuZ3VsYXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxVQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL21vZHVsZSc7XG4iXX0=
@@ -1,225 +0,0 @@
1
- import { Component, Directive, ElementRef, Inject, NgModule, 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
- elementRef;
19
- viewContainer;
20
- swipemenu;
21
- mainTemplate;
22
- swipemenuTemplate;
23
- _gestureEnabled;
24
- constructor(elementRef, viewContainer) {
25
- this.elementRef = elementRef;
26
- this.viewContainer = viewContainer;
27
- this.swipemenu = this.elementRef.nativeElement;
28
- }
29
- get nativeElement() {
30
- return this.swipemenu;
31
- }
32
- set gestureEnabled(value) {
33
- this._gestureEnabled = value;
34
- this.updateGestureEnabled();
35
- }
36
- updateGestureEnabled() {
37
- this.swipemenu.gestureEnabled = this._gestureEnabled;
38
- }
39
- static ɵfac = function SwipeMenuComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SwipeMenuComponent)(i0.ɵɵdirectiveInject(ElementRef), i0.ɵɵdirectiveInject(ViewContainerRef)); };
40
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SwipeMenuComponent, selectors: [["SwipeMenu"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function SwipeMenuComponent_Template(rf, ctx) { if (rf & 1) {
41
- i0.ɵɵprojectionDef();
42
- i0.ɵɵprojection(0);
43
- } }, encapsulation: 2 });
44
- }
45
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuComponent, [{
46
- type: Component,
47
- args: [{
48
- selector: 'SwipeMenu',
49
- template: '<ng-content></ng-content>'
50
- }]
51
- }], () => [{ type: i0.ElementRef, decorators: [{
52
- type: Inject,
53
- args: [ElementRef]
54
- }] }, { type: i0.ViewContainerRef, decorators: [{
55
- type: Inject,
56
- args: [ViewContainerRef]
57
- }] }], null); })();
58
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SwipeMenuComponent, { className: "SwipeMenuComponent", filePath: "module.ts", lineNumber: 26 }); })();
59
- /**
60
- * Directive identifying the left swipemenu
61
- */
62
- export class LeftSwipeMenuDirective {
63
- _elementRef;
64
- constructor(_elementRef) {
65
- this._elementRef = _elementRef;
66
- this._elementRef.nativeElement.id = LEFTDRAWER;
67
- }
68
- static ɵfac = function LeftSwipeMenuDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LeftSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
69
- static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: LeftSwipeMenuDirective, selectors: [["", "leftSwipeMenu", ""]] });
70
- }
71
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LeftSwipeMenuDirective, [{
72
- type: Directive,
73
- args: [{
74
- selector: '[leftSwipeMenu]'
75
- }]
76
- }], () => [{ type: i0.ElementRef, decorators: [{
77
- type: Inject,
78
- args: [ElementRef]
79
- }] }], null); })();
80
- /**
81
- * Directive identifying the right swipemenu
82
- */
83
- export class RightSwipeMenuDirective {
84
- _elementRef;
85
- constructor(_elementRef) {
86
- this._elementRef = _elementRef;
87
- this._elementRef.nativeElement.id = RIGHTDRAWER;
88
- }
89
- static ɵfac = function RightSwipeMenuDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RightSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
90
- static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: RightSwipeMenuDirective, selectors: [["", "rightSwipeMenu", ""]] });
91
- }
92
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RightSwipeMenuDirective, [{
93
- type: Directive,
94
- args: [{
95
- selector: '[rightSwipeMenu]'
96
- }]
97
- }], () => [{ type: i0.ElementRef, decorators: [{
98
- type: Inject,
99
- args: [ElementRef]
100
- }] }], null); })();
101
- /**
102
- * Directive identifying the right swipemenu
103
- */
104
- export class TopSwipeMenuDirective {
105
- _elementRef;
106
- constructor(_elementRef) {
107
- this._elementRef = _elementRef;
108
- this._elementRef.nativeElement.id = TOPDRAWER;
109
- }
110
- static ɵfac = function TopSwipeMenuDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TopSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
111
- static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: TopSwipeMenuDirective, selectors: [["", "topSwipeMenu", ""]] });
112
- }
113
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TopSwipeMenuDirective, [{
114
- type: Directive,
115
- args: [{
116
- selector: '[topSwipeMenu]'
117
- }]
118
- }], () => [{ type: i0.ElementRef, decorators: [{
119
- type: Inject,
120
- args: [ElementRef]
121
- }] }], null); })();
122
- /**
123
- * Directive identifying the right swipemenu
124
- */
125
- export class BottomSwipeMenuDirective {
126
- _elementRef;
127
- constructor(_elementRef) {
128
- this._elementRef = _elementRef;
129
- this._elementRef.nativeElement.id = BOTTOMDRAWER;
130
- }
131
- static ɵfac = function BottomSwipeMenuDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BottomSwipeMenuDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
132
- static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: BottomSwipeMenuDirective, selectors: [["", "bottomSwipeMenu", ""]] });
133
- }
134
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BottomSwipeMenuDirective, [{
135
- type: Directive,
136
- args: [{
137
- selector: '[bottomSwipeMenu]'
138
- }]
139
- }], () => [{ type: i0.ElementRef, decorators: [{
140
- type: Inject,
141
- args: [ElementRef]
142
- }] }], null); })();
143
- /**
144
- * Directive identifying the main content.
145
- */
146
- export class MainContentDirective {
147
- _elementRef;
148
- constructor(_elementRef) {
149
- this._elementRef = _elementRef;
150
- this._elementRef.nativeElement.id = MAINCONTENT;
151
- }
152
- static ɵfac = function MainContentDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MainContentDirective)(i0.ɵɵdirectiveInject(ElementRef)); };
153
- static ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: MainContentDirective, selectors: [["", "mainContent", ""]] });
154
- }
155
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MainContentDirective, [{
156
- type: Directive,
157
- args: [{
158
- selector: '[mainContent]'
159
- }]
160
- }], () => [{ type: i0.ElementRef, decorators: [{
161
- type: Inject,
162
- args: [ElementRef]
163
- }] }], null); })();
164
- const sideSwipeMenuMeta = {
165
- insertChild: (parent, child) => {
166
- const swipemenu = parent;
167
- const childView = child;
168
- if (childView.id === MAINCONTENT) {
169
- swipemenu.mainContent = childView;
170
- }
171
- if (childView.id === LEFTDRAWER) {
172
- swipemenu.leftDrawer = childView;
173
- }
174
- if (childView.id === RIGHTDRAWER) {
175
- swipemenu.rightDrawer = childView;
176
- }
177
- if (childView.id === TOPDRAWER) {
178
- swipemenu.topDrawer = childView;
179
- }
180
- if (childView.id === BOTTOMDRAWER) {
181
- swipemenu.bottomDrawer = childView;
182
- }
183
- },
184
- removeChild: (parent, child) => {
185
- const swipemenu = parent;
186
- const childView = child;
187
- if (childView.id === MAINCONTENT) {
188
- swipemenu.mainContent = null;
189
- }
190
- if (childView.id === LEFTDRAWER) {
191
- swipemenu.leftDrawer = null;
192
- }
193
- if (childView.id === RIGHTDRAWER) {
194
- swipemenu.rightDrawer = null;
195
- }
196
- if (childView.id === TOPDRAWER) {
197
- swipemenu.topDrawer = null;
198
- }
199
- if (childView.id === BOTTOMDRAWER) {
200
- swipemenu.bottomDrawer = null;
201
- }
202
- }
203
- };
204
- /**
205
- * Directives identifying the SwipeMenu.
206
- */
207
- export const SIDEDRAWER_DIRECTIVES = [LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective];
208
- registerElement('SwipeMenu', () => SwipeMenu, sideSwipeMenuMeta);
209
- /**
210
- * NgModule containing all of the RadSideSwipeMenu directives.
211
- */
212
- export class SwipeMenuModule {
213
- static ɵfac = function SwipeMenuModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SwipeMenuModule)(); };
214
- static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: SwipeMenuModule });
215
- static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
216
- }
217
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwipeMenuModule, [{
218
- type: NgModule,
219
- args: [{
220
- declarations: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES],
221
- exports: [SwipeMenuComponent, SIDEDRAWER_DIRECTIVES]
222
- }]
223
- }], null, null); })();
224
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(SwipeMenuModule, { declarations: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective], exports: [SwipeMenuComponent, LeftSwipeMenuDirective, RightSwipeMenuDirective, TopSwipeMenuDirective, BottomSwipeMenuDirective, MainContentDirective] }); })();
225
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3N3aXBlbWVudS9hbmd1bGFyL21vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQW1CLE1BQU0sRUFBRSxRQUFRLEVBQWUsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkksT0FBTyxFQUFFLFNBQVMsRUFBRSxPQUFPLElBQUksZ0JBQWdCLEVBQUUsTUFBTSxxREFBcUQsQ0FBQztBQUM3RyxPQUFPLEVBQXlCLGVBQWUsRUFBRSxNQUFNLHVCQUF1QixDQUFDOzs7QUFDL0UsZ0JBQWdCLEVBQUUsQ0FBQztBQUNuQixNQUFNLFVBQVUsR0FBVyxlQUFlLENBQUM7QUFDM0MsTUFBTSxXQUFXLEdBQVcsZ0JBQWdCLENBQUM7QUFDN0MsTUFBTSxTQUFTLEdBQVcsY0FBYyxDQUFDO0FBQ3pDLE1BQU0sWUFBWSxHQUFXLGlCQUFpQixDQUFDO0FBQy9DLE1BQU0sV0FBVyxHQUFXLGFBQWEsQ0FBQztBQVExQzs7OztHQUlHO0FBS0gsTUFBTSxPQUFPLGtCQUFrQjtJQU9ZO0lBQTBEO0lBTjFGLFNBQVMsQ0FBWTtJQUNyQixZQUFZLENBQTBCO0lBQ3RDLGlCQUFpQixDQUEwQjtJQUUxQyxlQUFlLENBQVU7SUFFakMsWUFBdUMsVUFBc0IsRUFBb0MsYUFBK0I7UUFBekYsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQUFvQyxrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDNUgsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQztJQUNuRCxDQUFDO0lBRUQsSUFBVyxhQUFhO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLFNBQVMsQ0FBQztJQUMxQixDQUFDO0lBRUQsSUFBSSxjQUFjLENBQUMsS0FBYztRQUM3QixJQUFJLENBQUMsZUFBZSxHQUFHLEtBQUssQ0FBQztRQUM3QixJQUFJLENBQUMsb0JBQW9CLEVBQUUsQ0FBQztJQUNoQyxDQUFDO0lBRU8sb0JBQW9CO1FBQ3hCLElBQUksQ0FBQyxTQUFTLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUM7SUFDekQsQ0FBQzs0R0F0QlEsa0JBQWtCLHVCQU9QLFVBQVUsd0JBQXlDLGdCQUFnQjs2REFQOUUsa0JBQWtCOztZQUZoQixrQkFBeUI7OztpRkFFM0Isa0JBQWtCO2NBSjlCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUUsV0FBVztnQkFDckIsUUFBUSxFQUFFLDJCQUEyQjthQUN4Qzs7c0JBUWdCLE1BQU07dUJBQUMsVUFBVTs7c0JBQWtDLE1BQU07dUJBQUMsZ0JBQWdCOztrRkFQOUUsa0JBQWtCO0FBeUIvQjs7R0FFRztBQUlILE1BQU0sT0FBTyxzQkFBc0I7SUFDUztJQUF4QyxZQUF3QyxXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtRQUMzRCxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsQ0FBQyxFQUFFLEdBQUcsVUFBVSxDQUFDO0lBQ25ELENBQUM7Z0hBSFEsc0JBQXNCLHVCQUNYLFVBQVU7NkRBRHJCLHNCQUFzQjs7aUZBQXRCLHNCQUFzQjtjQUhsQyxTQUFTO2VBQUM7Z0JBQ1AsUUFBUSxFQUFFLGlCQUFpQjthQUM5Qjs7c0JBRWdCLE1BQU07dUJBQUMsVUFBVTs7QUFJbEM7O0dBRUc7QUFJSCxNQUFNLE9BQU8sdUJBQXVCO0lBQ1E7SUFBeEMsWUFBd0MsV0FBdUI7UUFBdkIsZ0JBQVcsR0FBWCxXQUFXLENBQVk7UUFDM0QsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsRUFBRSxHQUFHLFdBQVcsQ0FBQztJQUNwRCxDQUFDO2lIQUhRLHVCQUF1Qix1QkFDWixVQUFVOzZEQURyQix1QkFBdUI7O2lGQUF2Qix1QkFBdUI7Y0FIbkMsU0FBUztlQUFDO2dCQUNQLFFBQVEsRUFBRSxrQkFBa0I7YUFDL0I7O3NCQUVnQixNQUFNO3VCQUFDLFVBQVU7O0FBS2xDOztHQUVHO0FBSUgsTUFBTSxPQUFPLHFCQUFxQjtJQUNVO0lBQXhDLFlBQXdDLFdBQXVCO1FBQXZCLGdCQUFXLEdBQVgsV0FBVyxDQUFZO1FBQzNELElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUFDLEVBQUUsR0FBRyxTQUFTLENBQUM7SUFDbEQsQ0FBQzsrR0FIUSxxQkFBcUIsdUJBQ1YsVUFBVTs2REFEckIscUJBQXFCOztpRkFBckIscUJBQXFCO2NBSGpDLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUUsZ0JBQWdCO2FBQzdCOztzQkFFZ0IsTUFBTTt1QkFBQyxVQUFVOztBQUtsQzs7R0FFRztBQUlILE1BQU0sT0FBTyx3QkFBd0I7SUFDTztJQUF4QyxZQUF3QyxXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtRQUMzRCxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsQ0FBQyxFQUFFLEdBQUcsWUFBWSxDQUFDO0lBQ3JELENBQUM7a0hBSFEsd0JBQXdCLHVCQUNiLFVBQVU7NkRBRHJCLHdCQUF3Qjs7aUZBQXhCLHdCQUF3QjtjQUhwQyxTQUFTO2VBQUM7Z0JBQ1AsUUFBUSxFQUFFLG1CQUFtQjthQUNoQzs7c0JBRWdCLE1BQU07dUJBQUMsVUFBVTs7QUFLbEM7O0dBRUc7QUFJSCxNQUFNLE9BQU8sb0JBQW9CO0lBQ1c7SUFBeEMsWUFBd0MsV0FBdUI7UUFBdkIsZ0JBQVcsR0FBWCxXQUFXLENBQVk7UUFDM0QsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsRUFBRSxHQUFHLFdBQVcsQ0FBQztJQUNwRCxDQUFDOzhHQUhRLG9CQUFvQix1QkFDVCxVQUFVOzZEQURyQixvQkFBb0I7O2lGQUFwQixvQkFBb0I7Y0FIaEMsU0FBUztlQUFDO2dCQUNQLFFBQVEsRUFBRSxlQUFlO2FBQzVCOztzQkFFZ0IsTUFBTTt1QkFBQyxVQUFVOztBQUtsQyxNQUFNLGlCQUFpQixHQUFrQjtJQUNyQyxXQUFXLEVBQUUsQ0FBQyxNQUFjLEVBQUUsS0FBYSxFQUFFLEVBQUU7UUFDM0MsTUFBTSxTQUFTLEdBQUcsTUFBMEIsQ0FBQztRQUM3QyxNQUFNLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFFeEIsSUFBSSxTQUFTLENBQUMsRUFBRSxLQUFLLFdBQVcsRUFBRSxDQUFDO1lBQy9CLFNBQVMsQ0FBQyxXQUFXLEdBQUcsU0FBUyxDQUFDO1FBQ3RDLENBQUM7UUFFRCxJQUFJLFNBQVMsQ0FBQyxFQUFFLEtBQUssVUFBVSxFQUFFLENBQUM7WUFDOUIsU0FBUyxDQUFDLFVBQVUsR0FBRyxTQUFTLENBQUM7UUFDckMsQ0FBQztRQUNELElBQUksU0FBUyxDQUFDLEVBQUUsS0FBSyxXQUFXLEVBQUUsQ0FBQztZQUMvQixTQUFTLENBQUMsV0FBVyxHQUFHLFNBQVMsQ0FBQztRQUN0QyxDQUFDO1FBQ0QsSUFBSSxTQUFTLENBQUMsRUFBRSxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQzdCLFNBQVMsQ0FBQyxTQUFTLEdBQUcsU0FBUyxDQUFDO1FBQ3BDLENBQUM7UUFDRCxJQUFJLFNBQVMsQ0FBQyxFQUFFLEtBQUssWUFBWSxFQUFFLENBQUM7WUFDaEMsU0FBUyxDQUFDLFlBQVksR0FBRyxTQUFTLENBQUM7UUFDdkMsQ0FBQztJQUNMLENBQUM7SUFDRCxXQUFXLEVBQUUsQ0FBQyxNQUFjLEVBQUUsS0FBYSxFQUFFLEVBQUU7UUFDM0MsTUFBTSxTQUFTLEdBQUcsTUFBMEIsQ0FBQztRQUM3QyxNQUFNLFNBQVMsR0FBRyxLQUFLLENBQUM7UUFFeEIsSUFBSSxTQUFTLENBQUMsRUFBRSxLQUFLLFdBQVcsRUFBRSxDQUFDO1lBQy9CLFNBQVMsQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDO1FBQ2pDLENBQUM7UUFFRCxJQUFJLFNBQVMsQ0FBQyxFQUFFLEtBQUssVUFBVSxFQUFFLENBQUM7WUFDOUIsU0FBUyxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUM7UUFDaEMsQ0FBQztRQUNELElBQUksU0FBUyxDQUFDLEVBQUUsS0FBSyxXQUFXLEVBQUUsQ0FBQztZQUMvQixTQUFTLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUNqQyxDQUFDO1FBQ0QsSUFBSSxTQUFTLENBQUMsRUFBRSxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQzdCLFNBQVMsQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDO1FBQy9CLENBQUM7UUFDRCxJQUFJLFNBQVMsQ0FBQyxFQUFFLEtBQUssWUFBWSxFQUFFLENBQUM7WUFDaEMsU0FBUyxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUM7UUFDbEMsQ0FBQztJQUNMLENBQUM7Q0FDSixDQUFDO0FBRUY7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxxQkFBcUIsR0FBRyxDQUFDLHNCQUFzQixFQUFFLHVCQUF1QixFQUFFLHFCQUFxQixFQUFFLHdCQUF3QixFQUFFLG9CQUFvQixDQUFDLENBQUM7QUFFOUosZUFBZSxDQUFDLFdBQVcsRUFBRSxHQUFHLEVBQUUsQ0FBQyxTQUFTLEVBQUUsaUJBQWlCLENBQUMsQ0FBQztBQUVqRTs7R0FFRztBQUtILE1BQU0sT0FBTyxlQUFlO3lHQUFmLGVBQWU7NERBQWYsZUFBZTs7O2lGQUFmLGVBQWU7Y0FKM0IsUUFBUTtlQUFDO2dCQUNOLFlBQVksRUFBRSxDQUFDLGtCQUFrQixFQUFFLHFCQUFxQixDQUFDO2dCQUN6RCxPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsRUFBRSxxQkFBcUIsQ0FBQzthQUN2RDs7d0ZBQ1ksZUFBZSxtQkEvSWYsa0JBQWtCLEVBK0JsQixzQkFBc0IsRUFXdEIsdUJBQXVCLEVBWXZCLHFCQUFxQixFQVlyQix3QkFBd0IsRUFZeEIsb0JBQW9CLGFBOUVwQixrQkFBa0IsRUErQmxCLHNCQUFzQixFQVd0Qix1QkFBdUIsRUFZdkIscUJBQXFCLEVBWXJCLHdCQUF3QixFQVl4QixvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgRW1iZWRkZWRWaWV3UmVmLCBJbmplY3QsIE5nTW9kdWxlLCBUZW1wbGF0ZVJlZiwgVmlld0NvbnRhaW5lclJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3dpcGVNZW51LCBpbnN0YWxsIGFzIGluc3RhbGxTd2lwZU1lbnUgfSBmcm9tICdAbmF0aXZlc2NyaXB0LWNvbW11bml0eS91aS1jb2xsZWN0aW9udmlldy1zd2lwZW1lbnUnO1xuaW1wb3J0IHsgTmdWaWV3LCBWaWV3Q2xhc3NNZXRhLCByZWdpc3RlckVsZW1lbnQgfSBmcm9tICdAbmF0aXZlc2NyaXB0L2FuZ3VsYXInO1xuaW5zdGFsbFN3aXBlTWVudSgpO1xuY29uc3QgTEVGVERSQVdFUjogc3RyaW5nID0gJ0xlZnRTd2lwZU1lbnUnO1xuY29uc3QgUklHSFREUkFXRVI6IHN0cmluZyA9ICdSaWdodFN3aXBlTWVudSc7XG5jb25zdCBUT1BEUkFXRVI6IHN0cmluZyA9ICdUb3BTd2lwZU1lbnUnO1xuY29uc3QgQk9UVE9NRFJBV0VSOiBzdHJpbmcgPSAnQm90dG9tU3dpcGVNZW51JztcbmNvbnN0IE1BSU5DT05URU5UOiBzdHJpbmcgPSAnTWFpbkNvbnRlbnQnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEl0ZW1FdmVudEFyZ3Mge1xuICAgIG9iamVjdDogYW55O1xuICAgIHZpZXc6IEVtYmVkZGVkVmlld1JlZjxhbnk+O1xuICAgIHJldHVyblZhbHVlPzogYm9vbGVhbjtcbn1cblxuLyoqXG4gKiBUaGlzIGlzIHRoZSBTaWRlU3dpcGVNZW51IGNvbXBvbmVudC4gSXQgc2VwYXJhdGVzIHlvdXIgbW9iaWxlIGFwcCdzIHNjcmVlblxuICogaW50byBhIG1haW4gcGFydCBhbmQgYSBtZW51IHBhcnQgd2hlcmVieSB0aGUgbWVudSBwYXJ0IGlzIHNob3duIHVwb24gYSBzd2lwZVxuICogZ2VzdHVyZSB1c2luZyBhIHRyYW5zaXRpb24gZWZmZWN0LlxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ1N3aXBlTWVudScsXG4gICAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+J1xufSlcbmV4cG9ydCBjbGFzcyBTd2lwZU1lbnVDb21wb25lbnQge1xuICAgIHB1YmxpYyBzd2lwZW1lbnU6IFN3aXBlTWVudTtcbiAgICBwdWJsaWMgbWFpblRlbXBsYXRlOiBUZW1wbGF0ZVJlZjxFbGVtZW50UmVmPjtcbiAgICBwdWJsaWMgc3dpcGVtZW51VGVtcGxhdGU6IFRlbXBsYXRlUmVmPEVsZW1lbnRSZWY+O1xuXG4gICAgcHJpdmF0ZSBfZ2VzdHVyZUVuYWJsZWQ6IGJvb2xlYW47XG5cbiAgICBjb25zdHJ1Y3RvcihASW5qZWN0KEVsZW1lbnRSZWYpIHB1YmxpYyBlbGVtZW50UmVmOiBFbGVtZW50UmVmLCBASW5qZWN0KFZpZXdDb250YWluZXJSZWYpIHByaXZhdGUgdmlld0NvbnRhaW5lcjogVmlld0NvbnRhaW5lclJlZikge1xuICAgICAgICB0aGlzLnN3aXBlbWVudSA9IHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50O1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgbmF0aXZlRWxlbWVudCgpOiBTd2lwZU1lbnUge1xuICAgICAgICByZXR1cm4gdGhpcy5zd2lwZW1lbnU7XG4gICAgfVxuXG4gICAgc2V0IGdlc3R1cmVFbmFibGVkKHZhbHVlOiBib29sZWFuKSB7XG4gICAgICAgIHRoaXMuX2dlc3R1cmVFbmFibGVkID0gdmFsdWU7XG4gICAgICAgIHRoaXMudXBkYXRlR2VzdHVyZUVuYWJsZWQoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHVwZGF0ZUdlc3R1cmVFbmFibGVkKCkge1xuICAgICAgICB0aGlzLnN3aXBlbWVudS5nZXN0dXJlRW5hYmxlZCA9IHRoaXMuX2dlc3R1cmVFbmFibGVkO1xuICAgIH1cbn1cblxuLyoqXG4gKiBEaXJlY3RpdmUgaWRlbnRpZnlpbmcgdGhlIGxlZnQgc3dpcGVtZW51XG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW2xlZnRTd2lwZU1lbnVdJ1xufSlcbmV4cG9ydCBjbGFzcyBMZWZ0U3dpcGVNZW51RGlyZWN0aXZlIHtcbiAgICBjb25zdHJ1Y3RvcihASW5qZWN0KEVsZW1lbnRSZWYpIHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHtcbiAgICAgICAgdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmlkID0gTEVGVERSQVdFUjtcbiAgICB9XG59XG4vKipcbiAqIERpcmVjdGl2ZSBpZGVudGlmeWluZyB0aGUgcmlnaHQgc3dpcGVtZW51XG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnW3JpZ2h0U3dpcGVNZW51XSdcbn0pXG5leHBvcnQgY2xhc3MgUmlnaHRTd2lwZU1lbnVEaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaWQgPSBSSUdIVERSQVdFUjtcbiAgICB9XG59XG5cbi8qKlxuICogRGlyZWN0aXZlIGlkZW50aWZ5aW5nIHRoZSByaWdodCBzd2lwZW1lbnVcbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdG9wU3dpcGVNZW51XSdcbn0pXG5leHBvcnQgY2xhc3MgVG9wU3dpcGVNZW51RGlyZWN0aXZlIHtcbiAgICBjb25zdHJ1Y3RvcihASW5qZWN0KEVsZW1lbnRSZWYpIHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHtcbiAgICAgICAgdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmlkID0gVE9QRFJBV0VSO1xuICAgIH1cbn1cblxuLyoqXG4gKiBEaXJlY3RpdmUgaWRlbnRpZnlpbmcgdGhlIHJpZ2h0IHN3aXBlbWVudVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1tib3R0b21Td2lwZU1lbnVdJ1xufSlcbmV4cG9ydCBjbGFzcyBCb3R0b21Td2lwZU1lbnVEaXJlY3RpdmUge1xuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRWxlbWVudFJlZikgcHJpdmF0ZSBfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xuICAgICAgICB0aGlzLl9lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuaWQgPSBCT1RUT01EUkFXRVI7XG4gICAgfVxufVxuXG4vKipcbiAqIERpcmVjdGl2ZSBpZGVudGlmeWluZyB0aGUgbWFpbiBjb250ZW50LlxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1ttYWluQ29udGVudF0nXG59KVxuZXhwb3J0IGNsYXNzIE1haW5Db250ZW50RGlyZWN0aXZlIHtcbiAgICBjb25zdHJ1Y3RvcihASW5qZWN0KEVsZW1lbnRSZWYpIHByaXZhdGUgX2VsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHtcbiAgICAgICAgdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmlkID0gTUFJTkNPTlRFTlQ7XG4gICAgfVxufVxuXG5jb25zdCBzaWRlU3dpcGVNZW51TWV0YTogVmlld0NsYXNzTWV0YSA9IHtcbiAgICBpbnNlcnRDaGlsZDogKHBhcmVudDogTmdWaWV3LCBjaGlsZDogTmdWaWV3KSA9PiB7XG4gICAgICAgIGNvbnN0IHN3aXBlbWVudSA9IHBhcmVudCBhcyBhbnkgYXMgU3dpcGVNZW51O1xuICAgICAgICBjb25zdCBjaGlsZFZpZXcgPSBjaGlsZDtcblxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBNQUlOQ09OVEVOVCkge1xuICAgICAgICAgICAgc3dpcGVtZW51Lm1haW5Db250ZW50ID0gY2hpbGRWaWV3O1xuICAgICAgICB9XG5cbiAgICAgICAgaWYgKGNoaWxkVmlldy5pZCA9PT0gTEVGVERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LmxlZnREcmF3ZXIgPSBjaGlsZFZpZXc7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKGNoaWxkVmlldy5pZCA9PT0gUklHSFREUkFXRVIpIHtcbiAgICAgICAgICAgIHN3aXBlbWVudS5yaWdodERyYXdlciA9IGNoaWxkVmlldztcbiAgICAgICAgfVxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBUT1BEUkFXRVIpIHtcbiAgICAgICAgICAgIHN3aXBlbWVudS50b3BEcmF3ZXIgPSBjaGlsZFZpZXc7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKGNoaWxkVmlldy5pZCA9PT0gQk9UVE9NRFJBV0VSKSB7XG4gICAgICAgICAgICBzd2lwZW1lbnUuYm90dG9tRHJhd2VyID0gY2hpbGRWaWV3O1xuICAgICAgICB9XG4gICAgfSxcbiAgICByZW1vdmVDaGlsZDogKHBhcmVudDogTmdWaWV3LCBjaGlsZDogTmdWaWV3KSA9PiB7XG4gICAgICAgIGNvbnN0IHN3aXBlbWVudSA9IHBhcmVudCBhcyBhbnkgYXMgU3dpcGVNZW51O1xuICAgICAgICBjb25zdCBjaGlsZFZpZXcgPSBjaGlsZDtcblxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBNQUlOQ09OVEVOVCkge1xuICAgICAgICAgICAgc3dpcGVtZW51Lm1haW5Db250ZW50ID0gbnVsbDtcbiAgICAgICAgfVxuXG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IExFRlREUkFXRVIpIHtcbiAgICAgICAgICAgIHN3aXBlbWVudS5sZWZ0RHJhd2VyID0gbnVsbDtcbiAgICAgICAgfVxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBSSUdIVERSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LnJpZ2h0RHJhd2VyID0gbnVsbDtcbiAgICAgICAgfVxuICAgICAgICBpZiAoY2hpbGRWaWV3LmlkID09PSBUT1BEUkFXRVIpIHtcbiAgICAgICAgICAgIHN3aXBlbWVudS50b3BEcmF3ZXIgPSBudWxsO1xuICAgICAgICB9XG4gICAgICAgIGlmIChjaGlsZFZpZXcuaWQgPT09IEJPVFRPTURSQVdFUikge1xuICAgICAgICAgICAgc3dpcGVtZW51LmJvdHRvbURyYXdlciA9IG51bGw7XG4gICAgICAgIH1cbiAgICB9XG59O1xuXG4vKipcbiAqIERpcmVjdGl2ZXMgaWRlbnRpZnlpbmcgdGhlIFN3aXBlTWVudS5cbiAqL1xuZXhwb3J0IGNvbnN0IFNJREVEUkFXRVJfRElSRUNUSVZFUyA9IFtMZWZ0U3dpcGVNZW51RGlyZWN0aXZlLCBSaWdodFN3aXBlTWVudURpcmVjdGl2ZSwgVG9wU3dpcGVNZW51RGlyZWN0aXZlLCBCb3R0b21Td2lwZU1lbnVEaXJlY3RpdmUsIE1haW5Db250ZW50RGlyZWN0aXZlXTtcblxucmVnaXN0ZXJFbGVtZW50KCdTd2lwZU1lbnUnLCAoKSA9PiBTd2lwZU1lbnUsIHNpZGVTd2lwZU1lbnVNZXRhKTtcblxuLyoqXG4gKiBOZ01vZHVsZSBjb250YWluaW5nIGFsbCBvZiB0aGUgUmFkU2lkZVN3aXBlTWVudSBkaXJlY3RpdmVzLlxuICovXG5ATmdNb2R1bGUoe1xuICAgIGRlY2xhcmF0aW9uczogW1N3aXBlTWVudUNvbXBvbmVudCwgU0lERURSQVdFUl9ESVJFQ1RJVkVTXSxcbiAgICBleHBvcnRzOiBbU3dpcGVNZW51Q29tcG9uZW50LCBTSURFRFJBV0VSX0RJUkVDVElWRVNdXG59KVxuZXhwb3J0IGNsYXNzIFN3aXBlTWVudU1vZHVsZSB7fVxuIl19
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './index';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF0aXZlc2NyaXB0LWNvbW11bml0eS11aS1jb2xsZWN0aW9udmlldy1zd2lwZW1lbnUtYW5ndWxhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9zd2lwZW1lbnUvYW5ndWxhci9uYXRpdmVzY3JpcHQtY29tbXVuaXR5LXVpLWNvbGxlY3Rpb252aWV3LXN3aXBlbWVudS1hbmd1bGFyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -1,84 +0,0 @@
1
- import { ElementRef, EmbeddedViewRef, TemplateRef, ViewContainerRef } from '@angular/core';
2
- import { SwipeMenu } from '@nativescript-community/ui-collectionview-swipemenu';
3
- import * as i0 from "@angular/core";
4
- export interface ItemEventArgs {
5
- object: any;
6
- view: EmbeddedViewRef<any>;
7
- returnValue?: boolean;
8
- }
9
- /**
10
- * This is the SideSwipeMenu component. It separates your mobile app's screen
11
- * into a main part and a menu part whereby the menu part is shown upon a swipe
12
- * gesture using a transition effect.
13
- */
14
- export declare class SwipeMenuComponent {
15
- elementRef: ElementRef;
16
- private viewContainer;
17
- swipemenu: SwipeMenu;
18
- mainTemplate: TemplateRef<ElementRef>;
19
- swipemenuTemplate: TemplateRef<ElementRef>;
20
- private _gestureEnabled;
21
- constructor(elementRef: ElementRef, viewContainer: ViewContainerRef);
22
- get nativeElement(): SwipeMenu;
23
- set gestureEnabled(value: boolean);
24
- private updateGestureEnabled;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<SwipeMenuComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<SwipeMenuComponent, "SwipeMenu", never, {}, {}, never, ["*"], false, never>;
27
- }
28
- /**
29
- * Directive identifying the left swipemenu
30
- */
31
- export declare class LeftSwipeMenuDirective {
32
- private _elementRef;
33
- constructor(_elementRef: ElementRef);
34
- static ɵfac: i0.ɵɵFactoryDeclaration<LeftSwipeMenuDirective, never>;
35
- static ɵdir: i0.ɵɵDirectiveDeclaration<LeftSwipeMenuDirective, "[leftSwipeMenu]", never, {}, {}, never, never, false, never>;
36
- }
37
- /**
38
- * Directive identifying the right swipemenu
39
- */
40
- export declare class RightSwipeMenuDirective {
41
- private _elementRef;
42
- constructor(_elementRef: ElementRef);
43
- static ɵfac: i0.ɵɵFactoryDeclaration<RightSwipeMenuDirective, never>;
44
- static ɵdir: i0.ɵɵDirectiveDeclaration<RightSwipeMenuDirective, "[rightSwipeMenu]", never, {}, {}, never, never, false, never>;
45
- }
46
- /**
47
- * Directive identifying the right swipemenu
48
- */
49
- export declare class TopSwipeMenuDirective {
50
- private _elementRef;
51
- constructor(_elementRef: ElementRef);
52
- static ɵfac: i0.ɵɵFactoryDeclaration<TopSwipeMenuDirective, never>;
53
- static ɵdir: i0.ɵɵDirectiveDeclaration<TopSwipeMenuDirective, "[topSwipeMenu]", never, {}, {}, never, never, false, never>;
54
- }
55
- /**
56
- * Directive identifying the right swipemenu
57
- */
58
- export declare class BottomSwipeMenuDirective {
59
- private _elementRef;
60
- constructor(_elementRef: ElementRef);
61
- static ɵfac: i0.ɵɵFactoryDeclaration<BottomSwipeMenuDirective, never>;
62
- static ɵdir: i0.ɵɵDirectiveDeclaration<BottomSwipeMenuDirective, "[bottomSwipeMenu]", never, {}, {}, never, never, false, never>;
63
- }
64
- /**
65
- * Directive identifying the main content.
66
- */
67
- export declare class MainContentDirective {
68
- private _elementRef;
69
- constructor(_elementRef: ElementRef);
70
- static ɵfac: i0.ɵɵFactoryDeclaration<MainContentDirective, never>;
71
- static ɵdir: i0.ɵɵDirectiveDeclaration<MainContentDirective, "[mainContent]", never, {}, {}, never, never, false, never>;
72
- }
73
- /**
74
- * Directives identifying the SwipeMenu.
75
- */
76
- export declare const SIDEDRAWER_DIRECTIVES: (typeof LeftSwipeMenuDirective | typeof RightSwipeMenuDirective | typeof TopSwipeMenuDirective | typeof BottomSwipeMenuDirective | typeof MainContentDirective)[];
77
- /**
78
- * NgModule containing all of the RadSideSwipeMenu directives.
79
- */
80
- export declare class SwipeMenuModule {
81
- static ɵfac: i0.ɵɵFactoryDeclaration<SwipeMenuModule, never>;
82
- static ɵmod: i0.ɵɵNgModuleDeclaration<SwipeMenuModule, [typeof SwipeMenuComponent, typeof LeftSwipeMenuDirective, typeof RightSwipeMenuDirective, typeof TopSwipeMenuDirective, typeof BottomSwipeMenuDirective, typeof MainContentDirective], never, [typeof SwipeMenuComponent, typeof LeftSwipeMenuDirective, typeof RightSwipeMenuDirective, typeof TopSwipeMenuDirective, typeof BottomSwipeMenuDirective, typeof MainContentDirective]>;
83
- static ɵinj: i0.ɵɵInjectorDeclaration<SwipeMenuModule>;
84
- }
package/svelte/index.d.ts DELETED
@@ -1,11 +0,0 @@
1
- import { NativeViewElementNode } from 'svelte-native/dom';
2
- import { Side, SwipeMenu } from '../';
3
- export default class DrawerElement extends NativeViewElementNode<SwipeMenu> {
4
- constructor();
5
- private get _drawer();
6
- close(side?: Side): void;
7
- isOpened(side?: Side): boolean;
8
- open(side?: Side): void;
9
- toggle(side?: Side): void;
10
- static register(): void;
11
- }
@@ -1,11 +0,0 @@
1
- declare const _default: {
2
- props: {};
3
- template: string;
4
- methods: {
5
- open(side: any): any;
6
- close(side: any): any;
7
- isOpened(side: any): any;
8
- toggle(side: any): any;
9
- };
10
- };
11
- export default _default;
package/vue/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- declare const SwipeMenuPlugin: {
2
- install(Vue: any): void;
3
- };
4
- export default SwipeMenuPlugin;