@nativescript-community/ui-material-bottomsheet 7.2.77 → 7.2.79
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 +1441 -0
- package/angular/fesm2022/nativescript-community-ui-material-bottomsheet-angular.mjs.map +1 -1
- package/angular/package.json +0 -2
- package/package.json +7 -6
- package/svelte/index.d.ts +2 -2
- package/svelte/index.js +1 -1
- package/svelte/index.js.map +1 -1
- package/tsconfig.tsbuildinfo +1 -0
- package/tsconfig.vue3.json +14 -0
- package/tsconfig.vue3.tsbuildinfo +1 -0
- package/angular/esm2022/bottomsheet.module.mjs +0 -27
- package/angular/esm2022/bottomsheet.service.mjs +0 -118
- package/angular/esm2022/index.mjs +0 -3
- package/angular/esm2022/nativescript-community-ui-material-bottomsheet-angular.mjs +0 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nativescript-community-ui-material-bottomsheet-angular.mjs","sources":["../../../../src/bottomsheet/angular/bottomsheet.service.ts","../../../../src/bottomsheet/angular/bottomsheet.module.ts","../../../../src/bottomsheet/angular/nativescript-community-ui-material-bottomsheet-angular.ts"],"sourcesContent":["import { ComponentFactoryResolver, ComponentRef, Injectable, Injector, Type, ViewContainerRef } from '@angular/core';\nimport type { BottomSheetOptions as MaterialBottomSheetOptions } from '@nativescript-community/ui-material-bottomsheet';\nimport { AppHostView, DetachedLoader, once } from '@nativescript/angular';\nimport { LayoutBase, ProxyViewContainer, View } from '@nativescript/core';\nimport { Observable, Subject } from 'rxjs';\n\nexport type BaseShowBottomSheetOptions = Omit<MaterialBottomSheetOptions, 'closeCallback' | 'view'>;\n\nexport interface BottomSheetOptions extends BaseShowBottomSheetOptions {\n viewContainerRef?: ViewContainerRef;\n}\n\nexport class BottomSheetParams {\n public constructor(public readonly context: any, public readonly closeCallback: (...args) => void) {}\n}\n\ntype ViewWithDialogRoot = View & { _ngDialogRoot?: View };\n\ninterface SheetRef<TResult = unknown> {\n detachedLoader?: ComponentRef<DetachedLoader>;\n componentView?: View;\n result: Subject<TResult>;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BottomSheetService {\n public show<TResult = any>(type: Type<any>, options: BottomSheetOptions): Observable<TResult> {\n return this.showWithCloseCallback(type, options).observable;\n }\n\n public showWithCloseCallback<TResult = any>(type: Type<any>, options: BottomSheetOptions): { observable: Observable<TResult>; closeCallback: () => void } {\n if (!options.viewContainerRef) {\n throw new Error('No viewContainerRef: Make sure you pass viewContainerRef in BottomSheetOptions.');\n }\n\n const sheetRef: SheetRef<TResult> = {\n result: new Subject()\n };\n\n const parentView = this.getParentView(options.viewContainerRef);\n const factoryResolver = this.getFactoryResolver(options.viewContainerRef);\n const bottomSheetParams = this.getBottomSheetParams(options.context, sheetRef);\n\n sheetRef.detachedLoader = this.createDetachedLoader(factoryResolver, bottomSheetParams, options.viewContainerRef);\n\n this.loadComponent(type, sheetRef).then((componentView) => {\n parentView.showBottomSheet({\n ...options,\n ...bottomSheetParams,\n view: componentView\n });\n });\n\n return {\n observable: sheetRef.result,\n closeCallback: bottomSheetParams.closeCallback\n };\n }\n\n private getParentView(viewContainerRef: ViewContainerRef): View {\n let parentView = viewContainerRef.element.nativeElement as View;\n\n if (parentView instanceof AppHostView && parentView.ngAppRoot) {\n parentView = parentView.ngAppRoot;\n }\n\n // _ngDialogRoot is the first child of the previously detached proxy.\n // It should have 'viewController' (iOS) or '_dialogFragment' (Android) available for\n // presenting future bottomSheets views.\n if ((parentView as ViewWithDialogRoot)._ngDialogRoot) {\n parentView = (parentView as ViewWithDialogRoot)._ngDialogRoot;\n }\n\n return parentView;\n }\n\n private getFactoryResolver(componentContainer: ViewContainerRef): ComponentFactoryResolver {\n // resolve from particular module (moduleRef)\n // or from same module as parentView (viewContainerRef)\n return componentContainer.injector.get(ComponentFactoryResolver);\n }\n\n private createChildInjector(bottomSheetParams: BottomSheetParams, containerRef: ViewContainerRef): Injector {\n return Injector.create({\n providers: [\n {\n provide: BottomSheetParams,\n useValue: bottomSheetParams\n }\n ],\n parent: containerRef.injector\n });\n }\n\n private getBottomSheetParams(context: any, sheetRef: SheetRef): BottomSheetParams {\n const closeCallback = once((args) => {\n const { result, componentView, detachedLoader } = sheetRef;\n\n result.next(args);\n result.complete();\n\n if (componentView) {\n componentView.closeBottomSheet();\n }\n\n if (detachedLoader) {\n detachedLoader.instance.detectChanges();\n detachedLoader.destroy();\n }\n });\n\n return new BottomSheetParams(context, closeCallback);\n }\n\n private createDetachedLoader(factoryResolver: ComponentFactoryResolver, bottomSheetParams: BottomSheetParams, viewContainerRef: ViewContainerRef): ComponentRef<DetachedLoader> {\n const detachedLoaderFactory = factoryResolver.resolveComponentFactory(DetachedLoader);\n const childInjector = this.createChildInjector(bottomSheetParams, viewContainerRef);\n\n return viewContainerRef.createComponent(detachedLoaderFactory, 0, childInjector);\n }\n\n private async loadComponent(type: Type<any>, sheetRef: SheetRef): Promise<View> {\n try {\n const componentRef = await sheetRef.detachedLoader.instance.loadComponent(type);\n const detachedProxy = componentRef.location.nativeElement as ProxyViewContainer;\n\n if (detachedProxy.getChildrenCount() > 1) {\n throw new Error('BottomSheet content has more than one root view.');\n }\n\n sheetRef.componentView = detachedProxy.getChildAt(0);\n\n if (sheetRef.componentView.parent instanceof LayoutBase) {\n (sheetRef.componentView.parent as ViewWithDialogRoot)._ngDialogRoot = sheetRef.componentView;\n sheetRef.componentView.parent.removeChild(sheetRef.componentView);\n }\n\n return sheetRef.componentView;\n } catch (err) {\n console.error(err);\n\n return null;\n }\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { BottomSheetService } from './bottomsheet.service';\nimport { install } from '@nativescript-community/ui-material-bottomsheet';\n\n@NgModule()\nexport class NativeScriptMaterialBottomSheetModule {\n // This flag help us to avoid problems when using the new development workflow\n private static initialized = false;\n\n static forRoot(): ModuleWithProviders<NativeScriptMaterialBottomSheetModule> {\n return {\n ngModule: NativeScriptMaterialBottomSheetModule,\n providers: [BottomSheetService],\n };\n }\n\n public constructor() {\n if (!NativeScriptMaterialBottomSheetModule.initialized) {\n install();\n NativeScriptMaterialBottomSheetModule.initialized = true;\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"nativescript-community-ui-material-bottomsheet-angular.mjs","sources":["../../../../src/bottomsheet/angular/bottomsheet.service.ts","../../../../src/bottomsheet/angular/bottomsheet.module.ts","../../../../src/bottomsheet/angular/nativescript-community-ui-material-bottomsheet-angular.ts"],"sourcesContent":["import { ComponentFactoryResolver, ComponentRef, Injectable, Injector, Type, ViewContainerRef } from '@angular/core';\nimport type { BottomSheetOptions as MaterialBottomSheetOptions } from '@nativescript-community/ui-material-bottomsheet';\nimport { AppHostView, DetachedLoader, once } from '@nativescript/angular';\nimport { LayoutBase, ProxyViewContainer, View } from '@nativescript/core';\nimport { Observable, Subject } from 'rxjs';\n\nexport type BaseShowBottomSheetOptions = Omit<MaterialBottomSheetOptions, 'closeCallback' | 'view'>;\n\nexport interface BottomSheetOptions extends BaseShowBottomSheetOptions {\n viewContainerRef?: ViewContainerRef;\n}\n\nexport class BottomSheetParams {\n public constructor(public readonly context: any, public readonly closeCallback: (...args) => void) {}\n}\n\ntype ViewWithDialogRoot = View & { _ngDialogRoot?: View };\n\ninterface SheetRef<TResult = unknown> {\n detachedLoader?: ComponentRef<DetachedLoader>;\n componentView?: View;\n result: Subject<TResult>;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BottomSheetService {\n public show<TResult = any>(type: Type<any>, options: BottomSheetOptions): Observable<TResult> {\n return this.showWithCloseCallback(type, options).observable;\n }\n\n public showWithCloseCallback<TResult = any>(type: Type<any>, options: BottomSheetOptions): { observable: Observable<TResult>; closeCallback: () => void } {\n if (!options.viewContainerRef) {\n throw new Error('No viewContainerRef: Make sure you pass viewContainerRef in BottomSheetOptions.');\n }\n\n const sheetRef: SheetRef<TResult> = {\n result: new Subject()\n };\n\n const parentView = this.getParentView(options.viewContainerRef);\n const factoryResolver = this.getFactoryResolver(options.viewContainerRef);\n const bottomSheetParams = this.getBottomSheetParams(options.context, sheetRef);\n\n sheetRef.detachedLoader = this.createDetachedLoader(factoryResolver, bottomSheetParams, options.viewContainerRef);\n\n this.loadComponent(type, sheetRef).then((componentView) => {\n parentView.showBottomSheet({\n ...options,\n ...bottomSheetParams,\n view: componentView\n });\n });\n\n return {\n observable: sheetRef.result,\n closeCallback: bottomSheetParams.closeCallback\n };\n }\n\n private getParentView(viewContainerRef: ViewContainerRef): View {\n let parentView = viewContainerRef.element.nativeElement as View;\n\n if (parentView instanceof AppHostView && parentView.ngAppRoot) {\n parentView = parentView.ngAppRoot;\n }\n\n // _ngDialogRoot is the first child of the previously detached proxy.\n // It should have 'viewController' (iOS) or '_dialogFragment' (Android) available for\n // presenting future bottomSheets views.\n if ((parentView as ViewWithDialogRoot)._ngDialogRoot) {\n parentView = (parentView as ViewWithDialogRoot)._ngDialogRoot;\n }\n\n return parentView;\n }\n\n private getFactoryResolver(componentContainer: ViewContainerRef): ComponentFactoryResolver {\n // resolve from particular module (moduleRef)\n // or from same module as parentView (viewContainerRef)\n return componentContainer.injector.get(ComponentFactoryResolver);\n }\n\n private createChildInjector(bottomSheetParams: BottomSheetParams, containerRef: ViewContainerRef): Injector {\n return Injector.create({\n providers: [\n {\n provide: BottomSheetParams,\n useValue: bottomSheetParams\n }\n ],\n parent: containerRef.injector\n });\n }\n\n private getBottomSheetParams(context: any, sheetRef: SheetRef): BottomSheetParams {\n const closeCallback = once((args) => {\n const { result, componentView, detachedLoader } = sheetRef;\n\n result.next(args);\n result.complete();\n\n if (componentView) {\n componentView.closeBottomSheet();\n }\n\n if (detachedLoader) {\n detachedLoader.instance.detectChanges();\n detachedLoader.destroy();\n }\n });\n\n return new BottomSheetParams(context, closeCallback);\n }\n\n private createDetachedLoader(factoryResolver: ComponentFactoryResolver, bottomSheetParams: BottomSheetParams, viewContainerRef: ViewContainerRef): ComponentRef<DetachedLoader> {\n const detachedLoaderFactory = factoryResolver.resolveComponentFactory(DetachedLoader);\n const childInjector = this.createChildInjector(bottomSheetParams, viewContainerRef);\n\n return viewContainerRef.createComponent(detachedLoaderFactory, 0, childInjector);\n }\n\n private async loadComponent(type: Type<any>, sheetRef: SheetRef): Promise<View> {\n try {\n const componentRef = await sheetRef.detachedLoader.instance.loadComponent(type);\n const detachedProxy = componentRef.location.nativeElement as ProxyViewContainer;\n\n if (detachedProxy.getChildrenCount() > 1) {\n throw new Error('BottomSheet content has more than one root view.');\n }\n\n sheetRef.componentView = detachedProxy.getChildAt(0);\n\n if (sheetRef.componentView.parent instanceof LayoutBase) {\n (sheetRef.componentView.parent as ViewWithDialogRoot)._ngDialogRoot = sheetRef.componentView;\n sheetRef.componentView.parent.removeChild(sheetRef.componentView);\n }\n\n return sheetRef.componentView;\n } catch (err) {\n console.error(err);\n\n return null;\n }\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\n\nimport { BottomSheetService } from './bottomsheet.service';\nimport { install } from '@nativescript-community/ui-material-bottomsheet';\n\n@NgModule()\nexport class NativeScriptMaterialBottomSheetModule {\n // This flag help us to avoid problems when using the new development workflow\n private static initialized = false;\n\n static forRoot(): ModuleWithProviders<NativeScriptMaterialBottomSheetModule> {\n return {\n ngModule: NativeScriptMaterialBottomSheetModule,\n providers: [BottomSheetService],\n };\n }\n\n public constructor() {\n if (!NativeScriptMaterialBottomSheetModule.initialized) {\n install();\n NativeScriptMaterialBottomSheetModule.initialized = true;\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/angular/package.json
CHANGED
|
@@ -9,8 +9,6 @@
|
|
|
9
9
|
},
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./index.d.ts",
|
|
12
|
-
"esm2022": "./esm2022/nativescript-community-ui-material-bottomsheet-angular.mjs",
|
|
13
|
-
"esm": "./esm2022/nativescript-community-ui-material-bottomsheet-angular.mjs",
|
|
14
12
|
"default": "./fesm2022/nativescript-community-ui-material-bottomsheet-angular.mjs"
|
|
15
13
|
}
|
|
16
14
|
},
|
package/package.json
CHANGED
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript-community/ui-material-bottomsheet",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.79",
|
|
4
4
|
"description": "Material Design Bottom Sheets slide up from the bottom of the screen to reveal more content. Bottom sheets integrate with the app to display supporting content or present deep-linked content from other apps.",
|
|
5
5
|
"main": "./bottomsheet",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"typings": "./bottomsheet.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"tsc": "cpy ../../
|
|
9
|
+
"tsc": "cpy '**/*.d.ts' '../../packages/bottomsheet' --parents --cwd=../../src/bottomsheet && tsc --build",
|
|
10
10
|
"tsc-win": "cpy ..\\..\\src\\bottomsheet\\bottomsheet.d.ts .\\ && tsc -d",
|
|
11
|
-
"build": "npm run tsc",
|
|
11
|
+
"build": "npm run tsc && npm run readme",
|
|
12
12
|
"build.watch": "npm run tsc -- -w",
|
|
13
13
|
"build.win": "npm run tsc-win",
|
|
14
14
|
"build.all": "npm run build && npm run build.angular",
|
|
15
15
|
"build.all.win": "npm run build.win && npm run build.angular.win",
|
|
16
16
|
"build.angular": "ng-packagr -p ../../src/bottomsheet/angular/ng-package.json -c ../../src/bottomsheet/angular/tsconfig.json && rm angular/.npmignore",
|
|
17
17
|
"build.angular.win": "ng-packagr -p ..\\..\\src\\bottomsheet\\angular\\package.json -c ..\\..\\src\\bottomsheet\\angular\\tsconfig.json",
|
|
18
|
-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
|
|
18
|
+
"clean": "bin/rimraf ./*.d.ts ./*.js ./*.js.map ./*.tsbuildinfo ./*.mjs ./*.mjs.map ./angular ./svelte ./vue* ./react",
|
|
19
|
+
"readme": "readme generate -c ../../tools/readme/blueprint.json"
|
|
19
20
|
},
|
|
20
21
|
"nativescript": {
|
|
21
22
|
"platforms": {
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
},
|
|
47
48
|
"readmeFilename": "README.md",
|
|
48
49
|
"dependencies": {
|
|
49
|
-
"@nativescript-community/ui-material-core": "^7.2.
|
|
50
|
+
"@nativescript-community/ui-material-core": "^7.2.79"
|
|
50
51
|
},
|
|
51
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "76863e134350ec63fe5ed64272e7345aa60eb042"
|
|
52
53
|
}
|
package/svelte/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BottomSheetOptions } from '../bottomsheet';
|
|
2
2
|
import { View } from '@nativescript/core';
|
|
3
|
-
import { NativeViewElementNode } from 'svelte-native/dom';
|
|
4
|
-
import { PageSpec } from 'svelte-native/dom/navigation';
|
|
3
|
+
import { NativeViewElementNode } from '@nativescript-community/svelte-native/dom';
|
|
4
|
+
import { PageSpec } from '@nativescript-community/svelte-native/dom/navigation';
|
|
5
5
|
declare module '@nativescript/core/ui/core/view' {
|
|
6
6
|
interface View {
|
|
7
7
|
closeBottomSheet(...args: any): void;
|
package/svelte/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Frame, View } from '@nativescript/core';
|
|
2
|
-
import { createElement } from 'svelte-native/dom';
|
|
2
|
+
import { createElement } from '@nativescript-community/svelte-native/dom';
|
|
3
3
|
const modalStack = [];
|
|
4
4
|
export function resolveComponentElement(viewSpec, props) {
|
|
5
5
|
const dummy = createElement('fragment', window.document);
|
package/svelte/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bottomsheet/svelte/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAyB,aAAa,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bottomsheet/svelte/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAyB,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAoBjG,MAAM,UAAU,GAA4B,EAAE,CAAC;AAE/C,MAAM,UAAU,uBAAuB,CAAI,QAAmC,EAAE,KAAW;IACvF,MAAM,KAAK,GAAG,aAAa,CAAC,UAAU,EAAE,MAAM,CAAC,QAAe,CAAC,CAAC;IAChE,MAAM,YAAY,GAAG,IAAI,QAAQ,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC;IAC5D,MAAM,OAAO,GAAG,KAAK,CAAC,YAAY,EAAiC,CAAC;IACpE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,CAAC;AACrC,CAAC;AAED,MAAM,UAAU,eAAe,CAAmB,YAA6C;IAC3F,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,OAAO,EAAE,GAAG,YAAY,CAAC;IAC9D,0EAA0E;IAC1E,MAAM,aAAa,GAAS,CAAC,MAAM,IAAI,CAAC,MAAM,YAAY,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC;IAE7H,MAAM,qBAAqB,GAAG,uBAAuB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;IACnE,IAAI,SAAS,GAAS,qBAAqB,CAAC,OAAO,CAAC,UAAU,CAAC;IAE/D,OAAO,IAAI,OAAO,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE;QACzC,IAAI,QAAQ,GAAG,KAAK,CAAC;QACrB,MAAM,aAAa,GAAG,CAAC,MAAS,EAAE,EAAE;YAChC,IAAI,QAAQ;gBAAE,OAAO;YACrB,QAAQ,GAAG,IAAI,CAAC;YAChB,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;gBACxB,OAAO,CAAC,aAAa,CAAC,MAAM,EAAC,qBAAqB,CAAC,YAAY,CAAC,CAAC;YACrE,CAAC;YACD,UAAU,CAAC,GAAG,EAAE,CAAC;YACjB,OAAO,CAAC,MAAM,CAAC,CAAC;YAChB,SAAS,CAAC,WAAW,EAAE,CAAC;YACxB,qBAAqB,CAAC,YAAY,CAAC,QAAQ,EAAE,CAAC,CAAC,8DAA8D;QACjH,CAAC,CAAC;QACF,IAAI,CAAC;YACD,aAAa,CAAC,eAAe,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE,aAAa,EAAE,CAAC,CAAC;YAC3F,UAAU,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;QAC3C,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACX,MAAM,CAAC,GAAG,CAAC,CAAC;QAChB,CAAC;IACL,CAAC,CAAC,CAAC;AACP,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,MAAY;IACzC,MAAM,qBAAqB,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IAChE,IAAI,qBAAqB,EAAE,CAAC;QACvB,qBAAqB,CAAC,OAAO,CAAC,UAAkB,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAC/E,CAAC;AACL,CAAC;AACD,MAAM,UAAU,mBAAmB;IAC/B,OAAO,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC;AACjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../../src/bottomsheet/bottomsheet-common.ts","../../src/bottomsheet/bottomsheet.android.ts","../../src/bottomsheet/bottomsheet.d.ts","../../src/bottomsheet/bottomsheet.ios.ts","../../src/bottomsheet/svelte/index.ts","../../src/bottomsheet/vue/index.ts","../../src/bottomsheet/vue3/index.ts","../../references.d.ts","../../tools/references.d.ts","../../src/references.d.ts"],"version":"5.8.3"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tools/tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
"rootDir": "../../src/bottomsheet",
|
|
6
|
+
"outDir": "./",
|
|
7
|
+
"paths": {
|
|
8
|
+
"nativescript-vue": ["./node_modules/nativescript-vue3"]
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"include": [
|
|
12
|
+
"../../src/bottomsheet/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.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/nativescript-vue3/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/nativescript-vue3/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/nativescript-vue3/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/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","../../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/bottomsheet/bottomsheet-common.ts","../../src/bottomsheet/bottomsheet.d.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","../../src/bottomsheet/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/crypto.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/buffer/index.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/web-globals/streams.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/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/@nativescript-community/svelte-native/ambient.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/ViewNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/ElementNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/CommentNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/TextNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/PropertyNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/DocumentNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/Logger.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/element-registry.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/basicdom/index.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/svelte/SvelteNativeDocument.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/svelte/HeadElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/svelte/TemplateElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/svelte/StyleElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/NativeElementNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/NativeViewElementNode.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/FrameElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/PageElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ListViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/TabViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ActionBarElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/LabelElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/DatePickerElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/AbsoluteLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ActivityIndicatorElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ButtonElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/DockLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/GridLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/HtmlViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ImageElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ListPickerElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ContentViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/FlexboxLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/FormattedStringElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/PlaceholderElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ProgressElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ProxyViewContainerElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/RootLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/ScrollViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/SearchBarElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/SegmentedBarElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/SliderElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/StackLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/SwitchElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/TextFieldElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/TextViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/TimePickerElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/WebViewElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/native/WrapLayoutElement.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/nativescript-elements.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/navigation.d.ts","../../node_modules/@nativescript-community/svelte-native/dom/index.d.ts","../../node_modules/@nativescript-community/svelte-native/jsx/svelte-native-jsx-nativescript-core.d.ts","../../node_modules/@nativescript-community/svelte-native/jsx/shims.d.ts","../../node_modules/@nativescript-community/svelte-native/index.d.ts"],"fileIdsList":[[256,311,328,329,368],[256,311,328,329,391],[256,311,328,329,390,391,392,393,394],[256,311,328,329,390],[256,311,328,329],[256,311,328,329,390,391],[256,311,328,329,395],[256,311,328,329,391,398],[256,311,328,329,390,391,392,393,394,395,396,397],[256,311,328,329,398,399,400,401,402,403,404,438,439],[238,256,311,328,329,404],[238,256,311,328,329,398,404],[238,256,311,328,329,389,398,401,404],[238,256,311,328,329,390,398,403],[256,311,328,329,405,406,407,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],[238,256,311,328,329,404,405,406],[256,311,328,329,398],[256,311,328,329,389,440,441,442],[101,103,120,121,127,210,216,238,256,311,328,329],[123,140,249,256,311,328,329],[91,256,311,328,329],[92,123,140,147,148,249,256,311,328,329],[118,140,141,145,249,256,311,328,329],[91,140,142,249,256,311,328,329],[143,256,311,328,329],[141,142,256,311,328,329],[143,144,256,311,328,329],[87,256,311,328,329],[88,256,311,328,329],[94,256,311,328,329],[93,256,311,328,329],[90,256,311,328,329],[91,152,256,311,328,329],[126,136,256,311,328,329],[154,256,311,328,329],[155,161,256,311,328,329],[93,108,156,160,256,311,328,329],[86,87,89,91,93,95,145,146,149,150,151,152,153,155,156,161,162,164,168,170,171,227,236,237,256,311,328,329],[163,256,311,328,329],[165,166,167,256,311,328,329],[169,256,311,328,329],[91,136,140,249,256,311,328,329],[140,249,256,311,328,329],[93,95,140,249,256,311,328,329],[93,95,96,140,249,256,311,328,329],[120,123,140,249,256,311,328,329],[91,181,256,311,328,329],[91,136,256,311,328,329],[105,114,136,256,311,328,329],[91,95,114,115,123,124,125,127,135,136,137,256,311,328,329],[91,92,93,95,97,100,101,103,136,137,138,139,256,311,328,329],[91,92,93,95,97,100,101,103,115,136,137,138,140,249,256,311,328,329],[137,140,249,256,311,328,329],[93,123,256,311,328,329],[186,256,311,328,329],[93,95,114,137,179,181,256,311,328,329],[95,256,311,328,329],[118,123,137,140,249,256,311,328,329],[91,117,123,140,249,256,311,328,329],[91,117,118,119,123,140,249,256,311,328,329],[91,98,100,140,249,256,311,328,329],[98,99,140,249,256,311,328,329],[94,97,140,249,256,311,328,329],[93,137,140,249,256,311,328,329],[91,161,256,311,328,329],[93,95,114,137,140,156,158,159,161,249,256,311,328,329],[91,93,95,114,137,140,156,158,160,161,249,256,311,328,329],[157,256,311,328,329],[97,100,101,108,112,114,116,117,120,121,123,124,125,134,135,136,137,140,159,172,173,174,177,178,179,180,181,182,183,184,185,187,188,189,190,191,192,199,201,202,204,205,206,207,208,209,210,212,213,214,215,216,217,219,220,221,222,223,224,225,226,249,256,311,328,329],[181,256,311,328,329],[95,104,137,140,180,249,256,311,328,329],[95,104,137,140,249,256,311,328,329],[104,105,114,137,140,249,256,311,328,329],[104,137,140,249,256,311,328,329],[104,115,193,194,195,196,197,198,256,311,328,329],[95,137,140,249,256,311,328,329],[140,195,249,256,311,328,329],[95,104,137,256,311,328,329],[95,104,137,180,256,311,328,329],[137,140,200,249,256,311,328,329],[91,93,95,114,137,140,180,249,256,311,328,329],[91,93,96,114,120,121,122,137,256,311,328,329],[91,93,96,114,116,120,121,123,137,140,249,256,311,328,329],[91,140,203,249,256,311,328,329],[104,140,249,256,311,328,329],[104,137,140,152,249,256,311,328,329],[91,95,116,137,256,311,328,329],[91,93,137,140,249,256,311,328,329],[91,93,114,136,137,140,249,256,311,328,329],[91,137,140,211,249,256,311,328,329],[137,140,149,212,249,256,311,328,329],[93,95,103,109,110,256,311,328,329],[93,102,103,109,110,111,140,249,256,311,328,329],[96,256,311,328,329],[128,132,133,256,311,328,329],[93,95,256,311,328,329],[106,108,256,311,328,329],[105,256,311,328,329],[106,107,256,311,328,329],[93,95,102,256,311,328,329],[93,95,103,108,109,112,114,137,256,311,328,329],[96,128,134,136,256,311,328,329],[91,92,93,95,101,103,108,109,112,113,114,115,136,256,311,328,329],[91,93,95,114,136,137,140,249,256,311,328,329],[93,95,108,136,152,178,256,311,328,329],[95,101,106,113,114,137,140,179,180,249,256,311,328,329],[93,95,108,136,179,256,311,328,329],[137,188,256,311,328,329],[137,188,218,256,311,328,329],[137,188,219,256,311,328,329],[117,256,311,328,329],[120,140,249,256,311,328,329],[117,224,256,311,328,329],[91,100,117,136,140,249,256,311,328,329],[91,137,140,249,256,311,328,329],[175,176,256,311,328,329],[175,176,177,228,229,230,231,234,235,256,311,328,329],[232,233,256,311,328,329],[256,308,309,311,328,329],[256,310,311,328,329],[311,328,329],[256,311,316,328,329,346],[256,311,312,317,322,328,329,331,343,354],[256,311,312,313,322,328,329,331],[256,311,314,328,329,355],[256,311,315,316,323,328,329,332],[256,311,316,328,329,343,351],[256,311,317,319,322,328,329,331],[256,310,311,318,328,329],[256,311,319,320,328,329],[256,311,321,322,328,329],[256,310,311,322,328,329],[256,311,322,323,324,328,329,343,354],[256,311,322,323,324,328,329,338,343,346],[256,303,311,319,322,325,328,329,331,343,354],[256,311,322,323,325,326,328,329,331,343,351,354],[256,311,325,327,328,329,343,351,354],[254,255,256,257,258,259,260,261,304,305,306,307,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],[256,311,322,328,329],[256,311,328,329,330,354],[256,311,319,322,328,329,331,343],[256,269,272,275,276,311,328,329,354],[256,272,311,328,329,343,354],[256,272,276,311,328,329,354],[256,311,328,329,343],[256,266,311,328,329],[256,270,311,328,329],[256,268,269,272,311,328,329,354],[256,311,328,329,331,351],[256,311,328,329,361],[256,266,311,328,329,361],[256,268,272,311,328,329,331,354],[256,263,264,265,267,271,311,322,328,329,343,354],[256,272,280,288,311,328,329],[256,264,270,311,328,329],[256,272,297,298,311,328,329],[256,264,267,272,311,328,329,346,354,361],[256,272,311,328,329],[256,268,272,311,328,329,354],[256,263,311,328,329],[256,266,267,268,270,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,298,299,300,301,302,311,328,329],[256,272,290,293,311,319,328,329],[256,272,280,281,282,311,328,329],[256,270,272,281,283,311,328,329],[256,271,311,328,329],[256,264,266,272,311,328,329],[256,272,276,281,283,311,328,329],[256,276,311,328,329],[256,270,272,275,311,328,329,354],[256,264,268,272,280,311,328,329],[256,272,290,311,328,329],[256,283,311,328,329],[256,266,272,297,311,328,329,346,359,361],[256,311,328,329,332],[256,311,328,329,333],[256,310,311,328,329,334],[256,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],[256,311,328,329,336],[256,311,328,329,337],[256,311,322,328,329,338,339],[256,311,328,329,338,340,355,357],[256,311,322,328,329,343,344,346],[256,311,328,329,345,346],[256,311,328,329,343,344],[256,311,328,329,346],[256,311,328,329,347],[256,308,311,328,329,343,348],[256,311,322,328,329,349,350],[256,311,328,329,349,350],[256,311,316,328,329,331,343,351],[256,311,328,329,352],[256,311,328,329,331,353],[256,311,325,328,329,337,354],[256,311,316,328,329,355],[256,311,328,329,343,356],[256,311,328,329,330,357],[256,311,328,329,358],[256,311,316,328,329],[256,303,311,328,329],[256,311,328,329,359],[256,303,311,322,324,328,329,334,343,346,354,356,357,359],[256,311,328,329,343,360],[250,256,311,328,329],[250,251,252,253,256,311,328,329],[129,130,131,256,311,328,329],[129,256,311,328,329],[82,244,245,247,256,311,328,329],[82,238,244,245,247,256,311,328,329],[82,85,238,239,244,245,247,256,311,328,329],[82,84,244,245,247,256,311,328,329],[83,256,311,328,329],[82,83,84,240,241,242,243,244,245,246,247,256,311,328,329],[82,84,238,242,244,245,247,256,311,328,329],[84,256,311,328,329],[82,84,238,244,245,247,256,311,328,329],[80,256,311,328,329],[80,81,82,244,245,247,256,311,328,329],[256,311,328,329,362,364],[256,311,328,329,362,365,366],[256,311,328,329,362],[256,311,328,329,362,363,367,368],[256,311,328,329,379],[256,311,328,329,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387],[256,311,328,329,369,377],[256,311,328,329,371,373,375,377,379,380,383],[256,311,328,329,383],[256,311,328,329,381,388],[256,311,328,329,372,373,374,376,377,381,383],[256,311,328,329,372],[256,311,328,329,371,372,373,375,383],[256,311,328,329,381],[256,311,328,329,372,373,374,375,376,378],[256,311,328,329,377],[256,311,328,329,373,383],[256,311,328,329,372,377,383],[256,311,328,329,373,374],[256,311,328,329,370,371,376,381,383],[256,311,328,329,371,375,376,377,379,380,381,382],[238,256,311,328,329],[140,238,248,256,311,328,329],[238,247,249,252,253,256,311,328,329]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","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":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"de5abbc02627403ac5796572520dc2b42df54f1257e7218a9ef37509d9b56972","impliedFormat":1},{"version":"bc41b74f965a6bf0a038e32753c6920aad2f2fed97cd32a105e9677070ed50e5","affectsGlobalScope":true,"impliedFormat":1},{"version":"c1f9c868d4675b558cca2e796b907e6c260ba7e097d4f87f7ae70d08dae5973e","impliedFormat":1},{"version":"b212e69283f3a5c7a93b2ed65b670269064e5f8c72700a393358d32c65c41303","impliedFormat":1},{"version":"a50e3c16e1492772c86e03a546db7db4e1b4291edd59bb135357be069ee2dcc7","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},{"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":"2a6a7f9071cea0a011e4caadcf0fc9e5b5f12e5e717f226571664760b2f676f8","signature":"04f93109d5a08a7cbb27dd4f9083ffd1332d3beae889a6cf9364e6c844ad5a95"},"657d7868ee23920f051c7d37795df8dbf27d41824571fe24d2dd1a5f6de88594",{"version":"f468b74459f1ad4473b36a36d49f2b255f3c6b5d536c81239c2b2971df089eaf","impliedFormat":1},{"version":"c0d079ee61d0e1c301038fc97965734a8e861759dd5a0016f4e8a974746f6fed","impliedFormat":1},{"version":"6a4b3300d44e138529693c8855072efd7627532b0e6bbe3dcaf6db557dcf24bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e3bebca89d64d450d52cf23cdb4649f127cd9f36baaa6fbe861e9eb3a7e9b96","signature":"1de3967c9ece1988c5e72de998a3bbfc98bb01c06d87e7a0fae82148688bf23a"},{"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":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","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":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"18f8cfbb14ba9405e67d30968ae67b8d19133867d13ebc49c8ed37ec64ce9bdb","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","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":"beb77fcd86c8cee62c32b2fb82753f5bc0e171d938e20af3cb0b8925db78d60b","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":"0121911fcc364eb821d058cf4c3b9339f197eccbe298098a4c6be0396b607d90","impliedFormat":1},{"version":"c6176c7b9f3769ba7f076c7a791588562c653cc0ba08fb2184f87bf78db2a87c","impliedFormat":1},{"version":"6def204d0b267101d3a42300a7363f53406c5d86b932e76e2365bf89689a85c4","impliedFormat":1},{"version":"4f766affd1281935fe5f7fd5d7af693a7c26d81adef7c1aefb84b9cd573a9cbb","impliedFormat":1},{"version":"165a0c1f95bc939c72f18a280fc707fba6f2f349539246b050cfc09eb1d9f446","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","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":"b827f8800f42858f0a751a605c003b7ab571ff7af184436f36cef9bdfebae808","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","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":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"2be2227c3810dfd84e46674fd33b8d09a4a28ad9cb633ed536effd411665ea1e","impliedFormat":1},{"version":"d8e062c357df76b711f92e07446c99714390a79b9ab008facfb18b457aa436b4","impliedFormat":99},{"version":"94894f6fb4c3d669472c373e07d291a3fe14c19f3f195fb1e6338e7df0a25154","impliedFormat":99},{"version":"e344cc4394fa9b1f42058282fd262657a90f7b121677e99d527dd393cadd4226","impliedFormat":99},{"version":"bf8f7578124e832be0956030b8d6cd38cc81cafb973dc6f7154265a1ca1545e9","impliedFormat":99},{"version":"f3f060b72e0750b840b771e88e4adf7018569498cf247f9ccb1c79e1d933ea70","impliedFormat":99},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","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":[253],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"checkJs":true,"composite":true,"declaration":true,"emitDecoratorMetadata":false,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noEmitHelpers":true,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":false,"noImplicitUseStrict":false,"outDir":"./","removeComments":false,"rootDir":"../../src/bottomsheet","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"target":7},"referencedMap":[[389,1],[392,2],[395,3],[391,4],[396,5],[394,6],[393,4],[390,7],[397,8],[398,9],[440,10],[412,11],[409,12],[413,11],[414,11],[420,11],[411,11],[415,11],[421,11],[422,11],[405,12],[416,11],[417,11],[418,11],[410,11],[419,11],[407,13],[403,8],[404,14],[406,11],[423,11],[424,11],[425,11],[426,11],[427,11],[428,11],[429,11],[430,11],[431,11],[432,11],[408,12],[433,11],[434,11],[435,11],[436,11],[437,11],[438,15],[439,16],[400,17],[402,17],[399,17],[401,17],[443,18],[442,5],[441,19],[147,20],[92,21],[148,5],[149,22],[146,5],[142,23],[141,24],[144,25],[143,26],[145,27],[93,5],[88,28],[89,29],[150,5],[95,30],[102,31],[128,5],[151,5],[152,21],[91,32],[153,33],[126,5],[127,34],[154,5],[155,35],[86,5],[133,21],[162,36],[156,21],[161,37],[238,38],[164,39],[163,5],[165,5],[166,5],[168,40],[167,5],[87,5],[170,41],[169,5],[228,5],[171,5],[121,42],[172,43],[94,44],[97,45],[96,44],[174,43],[173,46],[182,47],[116,43],[124,48],[183,5],[137,49],[136,50],[140,51],[139,52],[138,43],[184,21],[185,53],[186,54],[187,55],[188,56],[189,43],[105,57],[119,58],[118,59],[120,60],[99,61],[100,62],[98,63],[190,64],[191,65],[160,66],[159,67],[157,5],[158,68],[227,69],[192,70],[193,71],[194,72],[115,73],[195,74],[199,75],[104,76],[196,77],[197,78],[198,79],[201,80],[200,53],[202,81],[123,82],[122,83],[204,84],[203,21],[205,53],[206,85],[207,86],[208,87],[209,88],[210,89],[212,90],[211,91],[111,92],[112,93],[110,31],[109,5],[213,5],[214,94],[134,95],[101,96],[113,96],[107,97],[106,98],[108,99],[103,100],[180,101],[135,102],[114,103],[215,64],[216,104],[179,105],[181,106],[178,107],[217,108],[219,109],[218,110],[220,53],[222,111],[117,112],[125,111],[221,111],[225,113],[224,114],[223,111],[226,115],[232,5],[177,116],[229,5],[230,5],[236,117],[233,5],[231,57],[176,5],[175,5],[234,118],[235,5],[90,5],[237,5],[362,5],[308,119],[309,119],[310,120],[256,121],[311,122],[312,123],[313,124],[254,5],[314,125],[315,126],[316,127],[317,128],[318,129],[319,130],[320,130],[321,131],[322,132],[323,133],[324,134],[257,5],[255,5],[325,135],[326,136],[327,137],[361,138],[328,139],[329,5],[330,140],[331,141],[280,142],[292,143],[278,144],[293,145],[302,146],[269,147],[270,148],[268,149],[301,150],[296,151],[300,152],[272,153],[289,154],[271,155],[299,156],[266,157],[267,151],[273,158],[274,5],[279,159],[277,158],[264,160],[303,161],[294,162],[283,163],[282,158],[284,164],[287,165],[281,166],[285,167],[297,150],[275,168],[276,169],[288,170],[265,145],[291,171],[290,158],[286,172],[295,5],[263,5],[298,173],[332,174],[333,175],[334,176],[335,177],[336,178],[337,179],[338,180],[339,180],[340,181],[341,5],[342,5],[343,182],[345,183],[344,184],[346,185],[347,186],[348,187],[349,188],[350,189],[351,190],[352,191],[353,192],[354,193],[355,194],[356,195],[357,196],[358,197],[258,5],[259,198],[260,5],[261,5],[304,199],[305,200],[306,5],[307,185],[359,201],[360,202],[251,203],[252,204],[250,5],[262,5],[132,205],[130,206],[131,206],[129,5],[369,5],[363,5],[85,207],[239,208],[240,209],[243,210],[84,211],[247,212],[244,213],[245,213],[83,214],[241,207],[246,5],[242,215],[81,216],[82,217],[80,5],[366,218],[367,219],[365,218],[364,220],[368,221],[78,5],[79,5],[13,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[24,5],[25,5],[4,5],[26,5],[30,5],[27,5],[28,5],[29,5],[31,5],[32,5],[33,5],[5,5],[34,5],[35,5],[36,5],[37,5],[6,5],[41,5],[38,5],[39,5],[40,5],[42,5],[7,5],[43,5],[48,5],[49,5],[44,5],[45,5],[46,5],[47,5],[8,5],[53,5],[50,5],[51,5],[52,5],[54,5],[9,5],[55,5],[56,5],[57,5],[59,5],[58,5],[60,5],[61,5],[10,5],[62,5],[63,5],[64,5],[11,5],[65,5],[66,5],[67,5],[68,5],[69,5],[1,5],[70,5],[71,5],[12,5],[75,5],[73,5],[77,5],[72,5],[76,5],[74,5],[387,222],[372,5],[388,223],[370,224],[381,225],[382,226],[378,227],[375,228],[374,229],[376,230],[386,231],[379,232],[380,233],[371,5],[384,234],[373,235],[385,236],[377,237],[383,238],[248,239],[249,240],[253,241]],"latestChangedDtsFile":"./vue3/index.d.ts","version":"5.8.3"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { BottomSheetService } from './bottomsheet.service';
|
|
3
|
-
import { install } from '@nativescript-community/ui-material-bottomsheet';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class NativeScriptMaterialBottomSheetModule {
|
|
6
|
-
// This flag help us to avoid problems when using the new development workflow
|
|
7
|
-
static initialized = false;
|
|
8
|
-
static forRoot() {
|
|
9
|
-
return {
|
|
10
|
-
ngModule: NativeScriptMaterialBottomSheetModule,
|
|
11
|
-
providers: [BottomSheetService],
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
constructor() {
|
|
15
|
-
if (!NativeScriptMaterialBottomSheetModule.initialized) {
|
|
16
|
-
install();
|
|
17
|
-
NativeScriptMaterialBottomSheetModule.initialized = true;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
static ɵfac = function NativeScriptMaterialBottomSheetModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeScriptMaterialBottomSheetModule)(); };
|
|
21
|
-
static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: NativeScriptMaterialBottomSheetModule });
|
|
22
|
-
static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({});
|
|
23
|
-
}
|
|
24
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeScriptMaterialBottomSheetModule, [{
|
|
25
|
-
type: NgModule
|
|
26
|
-
}], () => [], null); })();
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm90dG9tc2hlZXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2JvdHRvbXNoZWV0L2FuZ3VsYXIvYm90dG9tc2hlZXQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBdUIsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTlELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzNELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxpREFBaUQsQ0FBQzs7QUFHMUUsTUFBTSxPQUFPLHFDQUFxQztJQUM5Qyw4RUFBOEU7SUFDdEUsTUFBTSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7SUFFbkMsTUFBTSxDQUFDLE9BQU87UUFDVixPQUFPO1lBQ0gsUUFBUSxFQUFFLHFDQUFxQztZQUMvQyxTQUFTLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQztTQUNsQyxDQUFDO0lBQ04sQ0FBQztJQUVEO1FBQ0ksSUFBSSxDQUFDLHFDQUFxQyxDQUFDLFdBQVcsRUFBRSxDQUFDO1lBQ3JELE9BQU8sRUFBRSxDQUFDO1lBQ1YscUNBQXFDLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztRQUM3RCxDQUFDO0lBQ0wsQ0FBQzsrSEFoQlEscUNBQXFDOzREQUFyQyxxQ0FBcUM7OztpRkFBckMscUNBQXFDO2NBRGpELFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBNb2R1bGVXaXRoUHJvdmlkZXJzLCBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBCb3R0b21TaGVldFNlcnZpY2UgfSBmcm9tICcuL2JvdHRvbXNoZWV0LnNlcnZpY2UnO1xuaW1wb3J0IHsgaW5zdGFsbCB9IGZyb20gJ0BuYXRpdmVzY3JpcHQtY29tbXVuaXR5L3VpLW1hdGVyaWFsLWJvdHRvbXNoZWV0JztcblxuQE5nTW9kdWxlKClcbmV4cG9ydCBjbGFzcyBOYXRpdmVTY3JpcHRNYXRlcmlhbEJvdHRvbVNoZWV0TW9kdWxlIHtcbiAgICAvLyBUaGlzIGZsYWcgaGVscCB1cyB0byBhdm9pZCBwcm9ibGVtcyB3aGVuIHVzaW5nIHRoZSBuZXcgZGV2ZWxvcG1lbnQgd29ya2Zsb3dcbiAgICBwcml2YXRlIHN0YXRpYyBpbml0aWFsaXplZCA9IGZhbHNlO1xuXG4gICAgc3RhdGljIGZvclJvb3QoKTogTW9kdWxlV2l0aFByb3ZpZGVyczxOYXRpdmVTY3JpcHRNYXRlcmlhbEJvdHRvbVNoZWV0TW9kdWxlPiB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBuZ01vZHVsZTogTmF0aXZlU2NyaXB0TWF0ZXJpYWxCb3R0b21TaGVldE1vZHVsZSxcbiAgICAgICAgICAgIHByb3ZpZGVyczogW0JvdHRvbVNoZWV0U2VydmljZV0sXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHVibGljIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBpZiAoIU5hdGl2ZVNjcmlwdE1hdGVyaWFsQm90dG9tU2hlZXRNb2R1bGUuaW5pdGlhbGl6ZWQpIHtcbiAgICAgICAgICAgIGluc3RhbGwoKTtcbiAgICAgICAgICAgIE5hdGl2ZVNjcmlwdE1hdGVyaWFsQm90dG9tU2hlZXRNb2R1bGUuaW5pdGlhbGl6ZWQgPSB0cnVlO1xuICAgICAgICB9XG4gICAgfVxufVxuIl19
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { ComponentFactoryResolver, Injectable, Injector } from '@angular/core';
|
|
2
|
-
import { AppHostView, DetachedLoader, once } from '@nativescript/angular';
|
|
3
|
-
import { LayoutBase } from '@nativescript/core';
|
|
4
|
-
import { Subject } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class BottomSheetParams {
|
|
7
|
-
context;
|
|
8
|
-
closeCallback;
|
|
9
|
-
constructor(context, closeCallback) {
|
|
10
|
-
this.context = context;
|
|
11
|
-
this.closeCallback = closeCallback;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class BottomSheetService {
|
|
15
|
-
show(type, options) {
|
|
16
|
-
return this.showWithCloseCallback(type, options).observable;
|
|
17
|
-
}
|
|
18
|
-
showWithCloseCallback(type, options) {
|
|
19
|
-
if (!options.viewContainerRef) {
|
|
20
|
-
throw new Error('No viewContainerRef: Make sure you pass viewContainerRef in BottomSheetOptions.');
|
|
21
|
-
}
|
|
22
|
-
const sheetRef = {
|
|
23
|
-
result: new Subject()
|
|
24
|
-
};
|
|
25
|
-
const parentView = this.getParentView(options.viewContainerRef);
|
|
26
|
-
const factoryResolver = this.getFactoryResolver(options.viewContainerRef);
|
|
27
|
-
const bottomSheetParams = this.getBottomSheetParams(options.context, sheetRef);
|
|
28
|
-
sheetRef.detachedLoader = this.createDetachedLoader(factoryResolver, bottomSheetParams, options.viewContainerRef);
|
|
29
|
-
this.loadComponent(type, sheetRef).then((componentView) => {
|
|
30
|
-
parentView.showBottomSheet({
|
|
31
|
-
...options,
|
|
32
|
-
...bottomSheetParams,
|
|
33
|
-
view: componentView
|
|
34
|
-
});
|
|
35
|
-
});
|
|
36
|
-
return {
|
|
37
|
-
observable: sheetRef.result,
|
|
38
|
-
closeCallback: bottomSheetParams.closeCallback
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
getParentView(viewContainerRef) {
|
|
42
|
-
let parentView = viewContainerRef.element.nativeElement;
|
|
43
|
-
if (parentView instanceof AppHostView && parentView.ngAppRoot) {
|
|
44
|
-
parentView = parentView.ngAppRoot;
|
|
45
|
-
}
|
|
46
|
-
// _ngDialogRoot is the first child of the previously detached proxy.
|
|
47
|
-
// It should have 'viewController' (iOS) or '_dialogFragment' (Android) available for
|
|
48
|
-
// presenting future bottomSheets views.
|
|
49
|
-
if (parentView._ngDialogRoot) {
|
|
50
|
-
parentView = parentView._ngDialogRoot;
|
|
51
|
-
}
|
|
52
|
-
return parentView;
|
|
53
|
-
}
|
|
54
|
-
getFactoryResolver(componentContainer) {
|
|
55
|
-
// resolve from particular module (moduleRef)
|
|
56
|
-
// or from same module as parentView (viewContainerRef)
|
|
57
|
-
return componentContainer.injector.get(ComponentFactoryResolver);
|
|
58
|
-
}
|
|
59
|
-
createChildInjector(bottomSheetParams, containerRef) {
|
|
60
|
-
return Injector.create({
|
|
61
|
-
providers: [
|
|
62
|
-
{
|
|
63
|
-
provide: BottomSheetParams,
|
|
64
|
-
useValue: bottomSheetParams
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
parent: containerRef.injector
|
|
68
|
-
});
|
|
69
|
-
}
|
|
70
|
-
getBottomSheetParams(context, sheetRef) {
|
|
71
|
-
const closeCallback = once((args) => {
|
|
72
|
-
const { result, componentView, detachedLoader } = sheetRef;
|
|
73
|
-
result.next(args);
|
|
74
|
-
result.complete();
|
|
75
|
-
if (componentView) {
|
|
76
|
-
componentView.closeBottomSheet();
|
|
77
|
-
}
|
|
78
|
-
if (detachedLoader) {
|
|
79
|
-
detachedLoader.instance.detectChanges();
|
|
80
|
-
detachedLoader.destroy();
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
return new BottomSheetParams(context, closeCallback);
|
|
84
|
-
}
|
|
85
|
-
createDetachedLoader(factoryResolver, bottomSheetParams, viewContainerRef) {
|
|
86
|
-
const detachedLoaderFactory = factoryResolver.resolveComponentFactory(DetachedLoader);
|
|
87
|
-
const childInjector = this.createChildInjector(bottomSheetParams, viewContainerRef);
|
|
88
|
-
return viewContainerRef.createComponent(detachedLoaderFactory, 0, childInjector);
|
|
89
|
-
}
|
|
90
|
-
async loadComponent(type, sheetRef) {
|
|
91
|
-
try {
|
|
92
|
-
const componentRef = await sheetRef.detachedLoader.instance.loadComponent(type);
|
|
93
|
-
const detachedProxy = componentRef.location.nativeElement;
|
|
94
|
-
if (detachedProxy.getChildrenCount() > 1) {
|
|
95
|
-
throw new Error('BottomSheet content has more than one root view.');
|
|
96
|
-
}
|
|
97
|
-
sheetRef.componentView = detachedProxy.getChildAt(0);
|
|
98
|
-
if (sheetRef.componentView.parent instanceof LayoutBase) {
|
|
99
|
-
sheetRef.componentView.parent._ngDialogRoot = sheetRef.componentView;
|
|
100
|
-
sheetRef.componentView.parent.removeChild(sheetRef.componentView);
|
|
101
|
-
}
|
|
102
|
-
return sheetRef.componentView;
|
|
103
|
-
}
|
|
104
|
-
catch (err) {
|
|
105
|
-
console.error(err);
|
|
106
|
-
return null;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
static ɵfac = function BottomSheetService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BottomSheetService)(); };
|
|
110
|
-
static ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BottomSheetService, factory: BottomSheetService.ɵfac, providedIn: 'root' });
|
|
111
|
-
}
|
|
112
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BottomSheetService, [{
|
|
113
|
-
type: Injectable,
|
|
114
|
-
args: [{
|
|
115
|
-
providedIn: 'root'
|
|
116
|
-
}]
|
|
117
|
-
}], null, null); })();
|
|
118
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm90dG9tc2hlZXQuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9ib3R0b21zaGVldC9hbmd1bGFyL2JvdHRvbXNoZWV0LnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHdCQUF3QixFQUFnQixVQUFVLEVBQUUsUUFBUSxFQUEwQixNQUFNLGVBQWUsQ0FBQztBQUVySCxPQUFPLEVBQUUsV0FBVyxFQUFFLGNBQWMsRUFBRSxJQUFJLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMxRSxPQUFPLEVBQUUsVUFBVSxFQUE0QixNQUFNLG9CQUFvQixDQUFDO0FBQzFFLE9BQU8sRUFBYyxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBUTNDLE1BQU0sT0FBTyxpQkFBaUI7SUFDUztJQUE4QjtJQUFqRSxZQUFtQyxPQUFZLEVBQWtCLGFBQWdDO1FBQTlELFlBQU8sR0FBUCxPQUFPLENBQUs7UUFBa0Isa0JBQWEsR0FBYixhQUFhLENBQW1CO0lBQUcsQ0FBQztDQUN4RztBQWFELE1BQU0sT0FBTyxrQkFBa0I7SUFDcEIsSUFBSSxDQUFnQixJQUFlLEVBQUUsT0FBMkI7UUFDbkUsT0FBTyxJQUFJLENBQUMscUJBQXFCLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDLFVBQVUsQ0FBQztJQUNoRSxDQUFDO0lBRU0scUJBQXFCLENBQWdCLElBQWUsRUFBRSxPQUEyQjtRQUNwRixJQUFJLENBQUMsT0FBTyxDQUFDLGdCQUFnQixFQUFFLENBQUM7WUFDNUIsTUFBTSxJQUFJLEtBQUssQ0FBQyxpRkFBaUYsQ0FBQyxDQUFDO1FBQ3ZHLENBQUM7UUFFRCxNQUFNLFFBQVEsR0FBc0I7WUFDaEMsTUFBTSxFQUFFLElBQUksT0FBTyxFQUFFO1NBQ3hCLENBQUM7UUFFRixNQUFNLFVBQVUsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FB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OztpRkFFVCxrQkFBa0I7Y0FIOUIsVUFBVTtlQUFDO2dCQUNSLFVBQVUsRUFBRSxNQUFNO2FBQ3JCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBDb21wb25lbnRSZWYsIEluamVjdGFibGUsIEluamVjdG9yLCBUeXBlLCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgdHlwZSB7IEJvdHRvbVNoZWV0T3B0aW9ucyBhcyBNYXRlcmlhbEJvdHRvbVNoZWV0T3B0aW9ucyB9IGZyb20gJ0BuYXRpdmVzY3JpcHQtY29tbXVuaXR5L3VpLW1hdGVyaWFsLWJvdHRvbXNoZWV0JztcbmltcG9ydCB7IEFwcEhvc3RWaWV3LCBEZXRhY2hlZExvYWRlciwgb25jZSB9IGZyb20gJ0BuYXRpdmVzY3JpcHQvYW5ndWxhcic7XG5pbXBvcnQgeyBMYXlvdXRCYXNlLCBQcm94eVZpZXdDb250YWluZXIsIFZpZXcgfSBmcm9tICdAbmF0aXZlc2NyaXB0L2NvcmUnO1xuaW1wb3J0IHsgT2JzZXJ2YWJsZSwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuXG5leHBvcnQgdHlwZSBCYXNlU2hvd0JvdHRvbVNoZWV0T3B0aW9ucyA9IE9taXQ8TWF0ZXJpYWxCb3R0b21TaGVldE9wdGlvbnMsICdjbG9zZUNhbGxiYWNrJyB8ICd2aWV3Jz47XG5cbmV4cG9ydCBpbnRlcmZhY2UgQm90dG9tU2hlZXRPcHRpb25zIGV4dGVuZHMgQmFzZVNob3dCb3R0b21TaGVldE9wdGlvbnMge1xuICAgIHZpZXdDb250YWluZXJSZWY/OiBWaWV3Q29udGFpbmVyUmVmO1xufVxuXG5leHBvcnQgY2xhc3MgQm90dG9tU2hlZXRQYXJhbXMge1xuICAgIHB1YmxpYyBjb25zdHJ1Y3RvcihwdWJsaWMgcmVhZG9ubHkgY29udGV4dDogYW55LCBwdWJsaWMgcmVhZG9ubHkgY2xvc2VDYWxsYmFjazogKC4uLmFyZ3MpID0+IHZvaWQpIHt9XG59XG5cbnR5cGUgVmlld1dpdGhEaWFsb2dSb290ID0gVmlldyAmIHsgX25nRGlhbG9nUm9vdD86IFZpZXcgfTtcblxuaW50ZXJmYWNlIFNoZWV0UmVmPFRSZXN1bHQgPSB1bmtub3duPiB7XG4gICAgZGV0YWNoZWRMb2FkZXI/OiBDb21wb25lbnRSZWY8RGV0YWNoZWRMb2FkZXI+O1xuICAgIGNvbXBvbmVudFZpZXc/OiBWaWV3O1xuICAgIHJlc3VsdDogU3ViamVjdDxUUmVzdWx0Pjtcbn1cblxuQEluamVjdGFibGUoe1xuICAgIHByb3ZpZGVkSW46ICdyb290J1xufSlcbmV4cG9ydCBjbGFzcyBCb3R0b21TaGVldFNlcnZpY2Uge1xuICAgIHB1YmxpYyBzaG93PFRSZXN1bHQgPSBhbnk+KHR5cGU6IFR5cGU8YW55Piwgb3B0aW9uczogQm90dG9tU2hlZXRPcHRpb25zKTogT2JzZXJ2YWJsZTxUUmVzdWx0PiB7XG4gICAgICAgIHJldHVybiB0aGlzLnNob3dXaXRoQ2xvc2VDYWxsYmFjayh0eXBlLCBvcHRpb25zKS5vYnNlcnZhYmxlO1xuICAgIH1cblxuICAgIHB1YmxpYyBzaG93V2l0aENsb3NlQ2FsbGJhY2s8VFJlc3VsdCA9IGFueT4odHlwZTogVHlwZTxhbnk+LCBvcHRpb25zOiBCb3R0b21TaGVldE9wdGlvbnMpOiB7IG9ic2VydmFibGU6IE9ic2VydmFibGU8VFJlc3VsdD47IGNsb3NlQ2FsbGJhY2s6ICgpID0+IHZvaWQgfSB7XG4gICAgICAgIGlmICghb3B0aW9ucy52aWV3Q29udGFpbmVyUmVmKSB7XG4gICAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoJ05vIHZpZXdDb250YWluZXJSZWY6IE1ha2Ugc3VyZSB5b3UgcGFzcyB2aWV3Q29udGFpbmVyUmVmIGluIEJvdHRvbVNoZWV0T3B0aW9ucy4nKTtcbiAgICAgICAgfVxuXG4gICAgICAgIGNvbnN0IHNoZWV0UmVmOiBTaGVldFJlZjxUUmVzdWx0PiA9IHtcbiAgICAgICAgICAgIHJlc3VsdDogbmV3IFN1YmplY3QoKVxuICAgICAgICB9O1xuXG4gICAgICAgIGNvbnN0IHBhcmVudFZpZXcgPSB0aGlzLmdldFBhcmVudFZpZXcob3B0aW9ucy52aWV3Q29udGFpbmVyUmVmKTtcbiAgICAgICAgY29uc3QgZmFjdG9yeVJlc29sdmVyID0gdGhpcy5nZXRGYWN0b3J5UmVzb2x2ZXIob3B0aW9ucy52aWV3Q29udGFpbmVyUmVmKTtcbiAgICAgICAgY29uc3QgYm90dG9tU2hlZXRQYXJhbXMgPSB0aGlzLmdldEJvdHRvbVNoZWV0UGFyYW1zKG9wdGlvbnMuY29udGV4dCwgc2hlZXRSZWYpO1xuXG4gICAgICAgIHNoZWV0UmVmLmRldGFjaGVkTG9hZGVyID0gdGhpcy5jcmVhdGVEZXRhY2hlZExvYWRlcihmYWN0b3J5UmVzb2x2ZXIsIGJvdHRvbVNoZWV0UGFyYW1zLCBvcHRpb25zLnZpZXdDb250YWluZXJSZWYpO1xuXG4gICAgICAgIHRoaXMubG9hZENvbXBvbmVudCh0eXBlLCBzaGVldFJlZikudGhlbigoY29tcG9uZW50VmlldykgPT4ge1xuICAgICAgICAgICAgcGFyZW50Vmlldy5zaG93Qm90dG9tU2hlZXQoe1xuICAgICAgICAgICAgICAgIC4uLm9wdGlvbnMsXG4gICAgICAgICAgICAgICAgLi4uYm90dG9tU2hlZXRQYXJhbXMsXG4gICAgICAgICAgICAgICAgdmlldzogY29tcG9uZW50Vmlld1xuICAgICAgICAgICAgfSk7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBvYnNlcnZhYmxlOiBzaGVldFJlZi5yZXN1bHQsXG4gICAgICAgICAgICBjbG9zZUNhbGxiYWNrOiBib3R0b21TaGVldFBhcmFtcy5jbG9zZUNhbGxiYWNrXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBnZXRQYXJlbnRWaWV3KHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYpOiBWaWV3IHtcbiAgICAgICAgbGV0IHBhcmVudFZpZXcgPSB2aWV3Q29udGFpbmVyUmVmLmVsZW1lbnQubmF0aXZlRWxlbWVudCBhcyBWaWV3O1xuXG4gICAgICAgIGlmIChwYXJlbnRWaWV3IGluc3RhbmNlb2YgQXBwSG9zdFZpZXcgJiYgcGFyZW50Vmlldy5uZ0FwcFJvb3QpIHtcbiAgICAgICAgICAgIHBhcmVudFZpZXcgPSBwYXJlbnRWaWV3Lm5nQXBwUm9vdDtcbiAgICAgICAgfVxuXG4gICAgICAgIC8vIF9uZ0RpYWxvZ1Jvb3QgaXMgdGhlIGZpcnN0IGNoaWxkIG9mIHRoZSBwcmV2aW91c2x5IGRldGFjaGVkIHByb3h5LlxuICAgICAgICAvLyBJdCBzaG91bGQgaGF2ZSAndmlld0NvbnRyb2xsZXInIChpT1MpIG9yICdfZGlhbG9nRnJhZ21lbnQnIChBbmRyb2lkKSBhdmFpbGFibGUgZm9yXG4gICAgICAgIC8vIHByZXNlbnRpbmcgZnV0dXJlIGJvdHRvbVNoZWV0cyB2aWV3cy5cbiAgICAgICAgaWYgKChwYXJlbnRWaWV3IGFzIFZpZXdXaXRoRGlhbG9nUm9vdCkuX25nRGlhbG9nUm9vdCkge1xuICAgICAgICAgICAgcGFyZW50VmlldyA9IChwYXJlbnRWaWV3IGFzIFZpZXdXaXRoRGlhbG9nUm9vdCkuX25nRGlhbG9nUm9vdDtcbiAgICAgICAgfVxuXG4gICAgICAgIHJldHVybiBwYXJlbnRWaWV3O1xuICAgIH1cblxuICAgIHByaXZhdGUgZ2V0RmFjdG9yeVJlc29sdmVyKGNvbXBvbmVudENvbnRhaW5lcjogVmlld0NvbnRhaW5lclJlZik6IENvbXBvbmVudEZhY3RvcnlSZXNvbHZlciB7XG4gICAgICAgIC8vIHJlc29sdmUgZnJvbSBwYXJ0aWN1bGFyIG1vZHVsZSAobW9kdWxlUmVmKVxuICAgICAgICAvLyBvciBmcm9tIHNhbWUgbW9kdWxlIGFzIHBhcmVudFZpZXcgKHZpZXdDb250YWluZXJSZWYpXG4gICAgICAgIHJldHVybiBjb21wb25lbnRDb250YWluZXIuaW5qZWN0b3IuZ2V0KENvbXBvbmVudEZhY3RvcnlSZXNvbHZlcik7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBjcmVhdGVDaGlsZEluamVjdG9yKGJvdHRvbVNoZWV0UGFyYW1zOiBCb3R0b21TaGVldFBhcmFtcywgY29udGFpbmVyUmVmOiBWaWV3Q29udGFpbmVyUmVmKTogSW5qZWN0b3Ige1xuICAgICAgICByZXR1cm4gSW5qZWN0b3IuY3JlYXRlKHtcbiAgICAgICAgICAgIHByb3ZpZGVyczogW1xuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgcHJvdmlkZTogQm90dG9tU2hlZXRQYXJhbXMsXG4gICAgICAgICAgICAgICAgICAgIHVzZVZhbHVlOiBib3R0b21TaGVldFBhcmFtc1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICBwYXJlbnQ6IGNvbnRhaW5lclJlZi5pbmplY3RvclxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGdldEJvdHRvbVNoZWV0UGFyYW1zKGNvbnRleHQ6IGFueSwgc2hlZXRSZWY6IFNoZWV0UmVmKTogQm90dG9tU2hlZXRQYXJhbXMge1xuICAgICAgICBjb25zdCBjbG9zZUNhbGxiYWNrID0gb25jZSgoYXJncykgPT4ge1xuICAgICAgICAgICAgY29uc3QgeyByZXN1bHQsIGNvbXBvbmVudFZpZXcsIGRldGFjaGVkTG9hZGVyIH0gPSBzaGVldFJlZjtcblxuICAgICAgICAgICAgcmVzdWx0Lm5leHQoYXJncyk7XG4gICAgICAgICAgICByZXN1bHQuY29tcGxldGUoKTtcblxuICAgICAgICAgICAgaWYgKGNvbXBvbmVudFZpZXcpIHtcbiAgICAgICAgICAgICAgICBjb21wb25lbnRWaWV3LmNsb3NlQm90dG9tU2hlZXQoKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgaWYgKGRldGFjaGVkTG9hZGVyKSB7XG4gICAgICAgICAgICAgICAgZGV0YWNoZWRMb2FkZXIuaW5zdGFuY2UuZGV0ZWN0Q2hhbmdlcygpO1xuICAgICAgICAgICAgICAgIGRldGFjaGVkTG9hZGVyLmRlc3Ryb3koKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSk7XG5cbiAgICAgICAgcmV0dXJuIG5ldyBCb3R0b21TaGVldFBhcmFtcyhjb250ZXh0LCBjbG9zZUNhbGxiYWNrKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIGNyZWF0ZURldGFjaGVkTG9hZGVyKGZhY3RvcnlSZXNvbHZlcjogQ29tcG9uZW50RmFjdG9yeVJlc29sdmVyLCBib3R0b21TaGVldFBhcmFtczogQm90dG9tU2hlZXRQYXJhbXMsIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYpOiBDb21wb25lbnRSZWY8RGV0YWNoZWRMb2FkZXI+IHtcbiAgICAgICAgY29uc3QgZGV0YWNoZWRMb2FkZXJGYWN0b3J5ID0gZmFjdG9yeVJlc29sdmVyLnJlc29sdmVDb21wb25lbnRGYWN0b3J5KERldGFjaGVkTG9hZGVyKTtcbiAgICAgICAgY29uc3QgY2hpbGRJbmplY3RvciA9IHRoaXMuY3JlYXRlQ2hpbGRJbmplY3Rvcihib3R0b21TaGVldFBhcmFtcywgdmlld0NvbnRhaW5lclJlZik7XG5cbiAgICAgICAgcmV0dXJuIHZpZXdDb250YWluZXJSZWYuY3JlYXRlQ29tcG9uZW50KGRldGFjaGVkTG9hZGVyRmFjdG9yeSwgMCwgY2hpbGRJbmplY3Rvcik7XG4gICAgfVxuXG4gICAgcHJpdmF0ZSBhc3luYyBsb2FkQ29tcG9uZW50KHR5cGU6IFR5cGU8YW55Piwgc2hlZXRSZWY6IFNoZWV0UmVmKTogUHJvbWlzZTxWaWV3PiB7XG4gICAgICAgIHRyeSB7XG4gICAgICAgICAgICBjb25zdCBjb21wb25lbnRSZWYgPSBhd2FpdCBzaGVldFJlZi5kZXRhY2hlZExvYWRlci5pbnN0YW5jZS5sb2FkQ29tcG9uZW50KHR5cGUpO1xuICAgICAgICAgICAgY29uc3QgZGV0YWNoZWRQcm94eSA9IGNvbXBvbmVudFJlZi5sb2NhdGlvbi5uYXRpdmVFbGVtZW50IGFzIFByb3h5Vmlld0NvbnRhaW5lcjtcblxuICAgICAgICAgICAgaWYgKGRldGFjaGVkUHJveHkuZ2V0Q2hpbGRyZW5Db3VudCgpID4gMSkge1xuICAgICAgICAgICAgICAgIHRocm93IG5ldyBFcnJvcignQm90dG9tU2hlZXQgY29udGVudCBoYXMgbW9yZSB0aGFuIG9uZSByb290IHZpZXcuJyk7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIHNoZWV0UmVmLmNvbXBvbmVudFZpZXcgPSBkZXRhY2hlZFByb3h5LmdldENoaWxkQXQoMCk7XG5cbiAgICAgICAgICAgIGlmIChzaGVldFJlZi5jb21wb25lbnRWaWV3LnBhcmVudCBpbnN0YW5jZW9mIExheW91dEJhc2UpIHtcbiAgICAgICAgICAgICAgICAoc2hlZXRSZWYuY29tcG9uZW50Vmlldy5wYXJlbnQgYXMgVmlld1dpdGhEaWFsb2dSb290KS5fbmdEaWFsb2dSb290ID0gc2hlZXRSZWYuY29tcG9uZW50VmlldztcbiAgICAgICAgICAgICAgICBzaGVldFJlZi5jb21wb25lbnRWaWV3LnBhcmVudC5yZW1vdmVDaGlsZChzaGVldFJlZi5jb21wb25lbnRWaWV3KTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcmV0dXJuIHNoZWV0UmVmLmNvbXBvbmVudFZpZXc7XG4gICAgICAgIH0gY2F0Y2ggKGVycikge1xuICAgICAgICAgICAgY29uc29sZS5lcnJvcihlcnIpO1xuXG4gICAgICAgICAgICByZXR1cm4gbnVsbDtcbiAgICAgICAgfVxuICAgIH1cbn1cbiJdfQ==
|