UNPKG

5.24 kBSource Map (JSON)View Raw
1{"version":3,"file":"angular-flex-layout.mjs","sources":["../../../../projects/libs/flex-layout/version.ts","../../../../projects/libs/flex-layout/module.ts","../../../../projects/libs/flex-layout/public-api.ts","../../../../projects/libs/flex-layout/angular-flex-layout.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of Angular Flex-Layout. */\nexport const VERSION = new Version('14.0.0-beta.40');\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport {Inject, ModuleWithProviders, NgModule, PLATFORM_ID} from '@angular/core';\nimport {isPlatformServer} from '@angular/common';\n\nimport {\n SERVER_TOKEN,\n LayoutConfigOptions,\n LAYOUT_CONFIG,\n DEFAULT_CONFIG,\n BreakPoint,\n BREAKPOINT,\n} from '@angular/flex-layout/core';\nimport {ExtendedModule} from '@angular/flex-layout/extended';\nimport {FlexModule} from '@angular/flex-layout/flex';\nimport {GridModule} from '@angular/flex-layout/grid';\n\n/**\n * FlexLayoutModule -- the main import for all utilities in the Angular Layout library\n * * Will automatically provide Flex, Grid, and Extended modules for use in the application\n * * Can be configured using the static withConfig method, options viewable on the Wiki's\n * Configuration page\n */\n@NgModule({\n imports: [FlexModule, ExtendedModule, GridModule],\n exports: [FlexModule, ExtendedModule, GridModule]\n})\nexport class FlexLayoutModule {\n\n /**\n * Initialize the FlexLayoutModule with a set of config options,\n * which sets the corresponding tokens accordingly\n */\n static withConfig(configOptions: LayoutConfigOptions,\n // tslint:disable-next-line:max-line-length\n breakpoints: BreakPoint|BreakPoint[] = []): ModuleWithProviders<FlexLayoutModule> {\n return {\n ngModule: FlexLayoutModule,\n providers: configOptions.serverLoaded ?\n [\n {provide: LAYOUT_CONFIG, useValue: {...DEFAULT_CONFIG, ...configOptions}},\n {provide: BREAKPOINT, useValue: breakpoints, multi: true},\n {provide: SERVER_TOKEN, useValue: true},\n ] : [\n {provide: LAYOUT_CONFIG, useValue: {...DEFAULT_CONFIG, ...configOptions}},\n {provide: BREAKPOINT, useValue: breakpoints, multi: true},\n ]\n };\n }\n\n constructor(@Inject(SERVER_TOKEN) serverModuleLoaded: boolean,\n @Inject(PLATFORM_ID) platformId: Object) {\n if (isPlatformServer(platformId) && !serverModuleLoaded) {\n console.warn('Warning: Flex Layout loaded on the server without FlexLayoutServerModule');\n }\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of Angular Flex-Layout.\n */\nexport * from './version';\n\nexport * from '@angular/flex-layout/core';\nexport * from '@angular/flex-layout/extended';\nexport * from '@angular/flex-layout/flex';\nexport * from '@angular/flex-layout/grid';\n\n// Flex-Layout Module\nexport * from './module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;;;AAAA;;;;;;AAMG;AAIH;MACa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;ACXtD;;;;;;AAMG;AAgBH;;;;;AAKG;MAKU,gBAAgB,CAAA;IAuB3B,WAAkC,CAAA,kBAA2B,EAC5B,UAAkB,EAAA;AACjD,QAAA,IAAI,gBAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,kBAAkB,EAAE;AACvD,YAAA,OAAO,CAAC,IAAI,CAAC,0EAA0E,CAAC,CAAC;AAC1F,SAAA;KACF;AA1BD;;;AAGG;IACH,OAAO,UAAU,CAAC,aAAkC;;AAElC,IAAA,WAAA,GAAuC,EAAE,EAAA;QACzD,OAAO;AACL,YAAA,QAAQ,EAAE,gBAAgB;AAC1B,YAAA,SAAS,EAAE,aAAa,CAAC,YAAY;AACnC,gBAAA;AACE,oBAAA,EAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,EAAC,GAAG,cAAc,EAAE,GAAG,aAAa,EAAC,EAAC;oBACzE,EAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,IAAI,EAAC;AACzD,oBAAA,EAAC,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAC;AACxC,iBAAA,GAAG;AACF,gBAAA,EAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,EAAC,GAAG,cAAc,EAAE,GAAG,aAAa,EAAC,EAAC;gBACzE,EAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,EAAE,KAAK,EAAE,IAAI,EAAC;AAC1D,aAAA;SACJ,CAAC;KACH;;6GArBU,gBAAgB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAuBP,YAAY,EAAA,EAAA,EAAA,KAAA,EACZ,WAAW,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;8GAxBpB,gBAAgB,EAAA,OAAA,EAAA,CAHjB,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,OAAA,EAAA,CACtC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,CAAA,CAAA;8GAErC,gBAAgB,EAAA,OAAA,EAAA,CAHjB,UAAU,EAAE,cAAc,EAAE,UAAU,EACtC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,CAAA,CAAA;2FAErC,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAJ5B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,CAAC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAC;AACjD,oBAAA,OAAO,EAAE,CAAC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAC;AAClD,iBAAA,CAAA;;0BAwBc,MAAM;2BAAC,YAAY,CAAA;8BACa,MAAM,EAAA,UAAA,EAAA,CAAA;0BAAtC,MAAM;2BAAC,WAAW,CAAA;;;ACxDjC;;;;;;AAMG;;ACNH;;AAEG;;;;"}
\No newline at end of file