{"version":3,"file":"ngx-flexible-layout.mjs","sources":["../../../../projects/libs/flex-layout/module.ts","../../../../projects/libs/flex-layout/version.ts","../../../../projects/libs/flex-layout/public-api.ts","../../../../projects/libs/flex-layout/ngx-flexible-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 */\nimport { isPlatformServer } from '@angular/common';\nimport { Inject, ModuleWithProviders, NgModule, PLATFORM_ID } from '@angular/core';\n\nimport {\n    BreakPoint,\n    BREAKPOINT, DEFAULT_CONFIG, LayoutConfigOptions,\n    LAYOUT_CONFIG, SERVER_TOKEN\n} from 'ngx-flexible-layout/core';\nimport { ExtendedModule } from 'ngx-flexible-layout/extended';\nimport { FlexModule } from 'ngx-flexible-layout/flex';\nimport { GridModule } from 'ngx-flexible-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\nimport {Version} from '@angular/core';\n\n/** Current version of Angular Flex-Layout. */\nexport const VERSION = new Version('21.0.1');\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 'ngx-flexible-layout/core';\nexport * from 'ngx-flexible-layout/extended';\nexport * from 'ngx-flexible-layout/flex';\nexport * from 'ngx-flexible-layout/grid';\n// Flex-Layout Module\nexport * from './module';\nexport * from './version';\n\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;;;AAAA;;;;;;AAMG;AAaH;;;;;AAKG;MAKU,gBAAgB,CAAA;AAE3B;;;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;SACJ;IACH;IAEA,WAAA,CAAkC,kBAA2B,EAC5B,UAAkB,EAAA;QACjD,IAAI,gBAAgB,CAAC,UAAU,CAAC,IAAI,CAAC,kBAAkB,EAAE;AACvD,YAAA,OAAO,CAAC,IAAI,CAAC,0EAA0E,CAAC;QAC1F;IACF;uGA5BW,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;wGAxBpB,gBAAgB,EAAA,OAAA,EAAA,CAHjB,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,OAAA,EAAA,CACtC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,CAAA;wGAErC,gBAAgB,EAAA,OAAA,EAAA,CAHjB,UAAU,EAAE,cAAc,EAAE,UAAU,EACtC,UAAU,EAAE,cAAc,EAAE,UAAU,CAAA,EAAA,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;AACjD,iBAAA;;0BAwBc,MAAM;2BAAC,YAAY;;0BACnB,MAAM;2BAAC,WAAW;;;ACrDjC;;;;;;AAMG;AAIH;MACa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;ACXtD;;;;;;AAMG;AAEH;;;;AAIG;;ACZH;;AAEG;;;;"}