@syncfusion/ej2-angular-layouts 19.2.55 → 19.3.48

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.
Files changed (61) hide show
  1. package/@syncfusion/ej2-angular-layouts.es5.js.map +1 -1
  2. package/@syncfusion/ej2-angular-layouts.js.map +1 -1
  3. package/CHANGELOG.md +10 -0
  4. package/dist/ej2-angular-layouts.umd.js +1 -1
  5. package/dist/ej2-angular-layouts.umd.js.map +1 -1
  6. package/dist/ej2-angular-layouts.umd.min.js +1 -1
  7. package/dist/ej2-angular-layouts.umd.min.js.map +1 -1
  8. package/package.json +8 -8
  9. package/schematics/utils/lib-details.d.ts +2 -2
  10. package/schematics/utils/lib-details.js +2 -2
  11. package/schematics/utils/lib-details.ts +2 -2
  12. package/src/dashboard-layout/dashboardlayout.component.d.ts +9 -0
  13. package/src/splitter/splitter.component.d.ts +9 -0
  14. package/styles/avatar/bootstrap5-dark.css +61 -0
  15. package/styles/avatar/bootstrap5-dark.scss +1 -0
  16. package/styles/avatar/bootstrap5.css +61 -0
  17. package/styles/avatar/bootstrap5.scss +1 -0
  18. package/styles/bootstrap-dark.css +8 -0
  19. package/styles/bootstrap.css +8 -0
  20. package/styles/bootstrap4.css +8 -0
  21. package/styles/bootstrap5-dark.css +1618 -0
  22. package/styles/bootstrap5-dark.scss +4 -0
  23. package/styles/bootstrap5.css +1618 -0
  24. package/styles/bootstrap5.scss +4 -0
  25. package/styles/card/bootstrap5-dark.css +593 -0
  26. package/styles/card/bootstrap5-dark.scss +1 -0
  27. package/styles/card/bootstrap5.css +593 -0
  28. package/styles/card/bootstrap5.scss +1 -0
  29. package/styles/card/fabric-dark.css +12 -12
  30. package/styles/card/tailwind-dark.css +2 -3
  31. package/styles/card/tailwind.css +0 -1
  32. package/styles/dashboard-layout/bootstrap5-dark.css +393 -0
  33. package/styles/dashboard-layout/bootstrap5-dark.scss +1 -0
  34. package/styles/dashboard-layout/bootstrap5.css +393 -0
  35. package/styles/dashboard-layout/bootstrap5.scss +1 -0
  36. package/styles/dashboard-layout/material-dark.css +3 -3
  37. package/styles/dashboard-layout/tailwind-dark.css +10 -8
  38. package/styles/dashboard-layout/tailwind.css +5 -3
  39. package/styles/fabric-dark.css +20 -12
  40. package/styles/fabric.css +8 -0
  41. package/styles/highcontrast-light.css +8 -0
  42. package/styles/highcontrast.css +8 -0
  43. package/styles/material-dark.css +19 -11
  44. package/styles/material.css +8 -0
  45. package/styles/splitter/bootstrap-dark.css +8 -0
  46. package/styles/splitter/bootstrap.css +8 -0
  47. package/styles/splitter/bootstrap4.css +8 -0
  48. package/styles/splitter/bootstrap5-dark.css +568 -0
  49. package/styles/splitter/bootstrap5-dark.scss +1 -0
  50. package/styles/splitter/bootstrap5.css +568 -0
  51. package/styles/splitter/bootstrap5.scss +1 -0
  52. package/styles/splitter/fabric-dark.css +8 -0
  53. package/styles/splitter/fabric.css +8 -0
  54. package/styles/splitter/highcontrast-light.css +8 -0
  55. package/styles/splitter/highcontrast.css +8 -0
  56. package/styles/splitter/material-dark.css +16 -8
  57. package/styles/splitter/material.css +8 -0
  58. package/styles/splitter/tailwind-dark.css +14 -7
  59. package/styles/splitter/tailwind.css +8 -1
  60. package/styles/tailwind-dark.css +26 -18
  61. package/styles/tailwind.css +13 -5
@@ -1 +1 @@
1
- {"version":3,"file":"ej2-angular-layouts.umd.min.js","sources":["~/@syncfusion/ej2-angular-layouts/src/splitter/panesettings.directive.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.component.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.module.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter-all.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/panels.directive.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.component.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * 'e-panesettings' directive represent a panes of angular splitter \n * It must be contained in a Splitter component(`ejs-splitter`). \n * ```html\n * <ejs-splitter id='splitter' > \n * <e-panes>\n * <e-pane size ='150px'></e-pane>\n * <e-pane size = '20%'></e-pane>\n * </e-panes>\n * </ejs-splitter>\n * ```\n */\nexport class PaneDirective extends ComplexBase<PaneDirective> {\npublic directivePropList: any;\n/**\n * Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.\n * \n * {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n */\npublic collapsed: any;\n/**\n * Specifies whether a pane is collapsible or not collapsible.\n * \n * {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n */\npublic collapsible: any;\n/**\n * Specifies the CSS class names that defines specific user-defined \n * styles and themes to be appended on corresponding pane of the Splitter. \n * It is used to customize the Splitter control panes. \n * One or more custom CSS classes can be specified to the Splitter panes.\n * \\@default ''\n */\npublic cssClass: any;\n/**\n * Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.\n * \\@default null\n */\npublic max: any;\n/**\n * Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.\n * \\@default null\n */\npublic min: any;\n/**\n * Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes. \n * You can disable this for any specific panes using this property.\n * \\@default true\n */\npublic resizable: any;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n */\npublic size: any;\n/**\n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * \\@default ''\n * \\@blazortype string\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PaneDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPaneDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPaneDirective.ctorParameters;\n/** @type {?} */\nPaneDirective.propDecorators;\n/** @type {?} */\nPaneDirective.prototype.directivePropList;\n/**\n * Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.\n * \n * {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n * @type {?}\n */\nPaneDirective.prototype.collapsed;\n/**\n * Specifies whether a pane is collapsible or not collapsible.\n * \n * {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n * @type {?}\n */\nPaneDirective.prototype.collapsible;\n/**\n * Specifies the CSS class names that defines specific user-defined \n * styles and themes to be appended on corresponding pane of the Splitter. \n * It is used to customize the Splitter control panes. \n * One or more custom CSS classes can be specified to the Splitter panes.\n * \\@default ''\n * @type {?}\n */\nPaneDirective.prototype.cssClass;\n/**\n * Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.\n * \\@default null\n * @type {?}\n */\nPaneDirective.prototype.max;\n/**\n * Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.\n * \\@default null\n * @type {?}\n */\nPaneDirective.prototype.min;\n/**\n * Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes. \n * You can disable this for any specific panes using this property.\n * \\@default true\n * @type {?}\n */\nPaneDirective.prototype.resizable;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n * @type {?}\n */\nPaneDirective.prototype.size;\n/**\n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * \\@default ''\n * \\@blazortype string\n * @type {?}\n */\nPaneDirective.prototype.content;\n/** @type {?} */\nPaneDirective.prototype.viewContainerRef;\n}\n\n/**\n * Pane Array Directive\n */\nexport class PanesDirective extends ArrayBase<PanesDirective> {\nconstructor() {\n super('panesettings');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Splitter } from '@syncfusion/ej2-layouts';\n\nimport { PanesDirective } from './panesettings.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\npublic childPaneSettings: QueryList<PanesDirective>;\npublic tags: string[] = ['paneSettings'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-splitter',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPaneSettings: new ContentChild(PanesDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction SplitterComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterComponent.ctorParameters;\n/** @type {?} */\nSplitterComponent.prototype.containerContext;\n/** @type {?} */\nSplitterComponent.prototype.tagObjects;\n/** @type {?} */\nSplitterComponent.prototype.childPaneSettings;\n/** @type {?} */\nSplitterComponent.prototype.tags;\n/** @type {?} */\nSplitterComponent.prototype.registerEvents;\n/** @type {?} */\nSplitterComponent.prototype.addTwoWay;\n/** @type {?} */\nSplitterComponent.prototype.ngEle;\n/** @type {?} */\nSplitterComponent.prototype.srenderer;\n/** @type {?} */\nSplitterComponent.prototype.viewContainerRef;\n/** @type {?} */\nSplitterComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\n/**\n * NgModule definition for the Splitter component.\n */\nexport class SplitterModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\nimport { SplitterModule } from './splitter.module';\n/**\n * NgModule definition for the Splitter component with providers.\n */\nexport class SplitterAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * 'e-panels' directive represent a panels of angular dashboardlayout \n * It must be contained in a dashboardlayout component(`ej-dashboardlayout`). \n * ```html\n * <ejs-dashboardlayout> \n * <e-panels>\n * <e-panel></e-panel>\n * <e-panel></e-panel>\n * </e-panels>\n * </ejs-dashboardlayout>\n * ```\n */\nexport class PanelDirective extends ComplexBase<PanelDirective> {\npublic directivePropList: any;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic col: any;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n */\npublic cssClass: any;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n */\npublic enabled: any;\n/**\n * Defines the id of the panel.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeX: any;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeY: any;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n */\npublic minSizeX: any;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n */\npublic minSizeY: any;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic row: any;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeX: any;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeY: any;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n */\npublic zIndex: any;\n/**\n * Defines the template value that should be displayed as the panel's header.\n */\n@Template()\n public header: any;\n/**\n * Defines the template value that should be displayed as the panel's content.\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'header': [{ type: ContentChild, args: ['header', ] },],\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PanelDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelDirective.ctorParameters;\n/** @type {?} */\nPanelDirective.propDecorators;\n/** @type {?} */\nPanelDirective.prototype.directivePropList;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.col;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.cssClass;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n * @type {?}\n */\nPanelDirective.prototype.enabled;\n/**\n * Defines the id of the panel.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.id;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeX;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeY;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeX;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeY;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.row;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeX;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeY;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n * @type {?}\n */\nPanelDirective.prototype.zIndex;\n/**\n * Defines the template value that should be displayed as the panel's header.\n * @type {?}\n */\nPanelDirective.prototype.header;\n/**\n * Defines the template value that should be displayed as the panel's content.\n * @type {?}\n */\nPanelDirective.prototype.content;\n/** @type {?} */\nPanelDirective.prototype.viewContainerRef;\n}\n\n/**\n * Panel Array Directive\n */\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\nconstructor() {\n super('panels');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanelsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DashboardLayout } from '@syncfusion/ej2-layouts';\n\nimport { PanelsDirective } from './panels.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const /** @type {?} */ outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\npublic childPanels: QueryList<PanelsDirective>;\npublic tags: string[] = ['panels'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-dashboardlayout',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPanels: new ContentChild(PanelsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DashboardLayoutComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutComponent.ctorParameters;\n/** @type {?} */\nDashboardLayoutComponent.prototype.containerContext;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tagObjects;\n/** @type {?} */\nDashboardLayoutComponent.prototype.childPanels;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tags;\n/** @type {?} */\nDashboardLayoutComponent.prototype.registerEvents;\n/** @type {?} */\nDashboardLayoutComponent.prototype.addTwoWay;\n/** @type {?} */\nDashboardLayoutComponent.prototype.ngEle;\n/** @type {?} */\nDashboardLayoutComponent.prototype.srenderer;\n/** @type {?} */\nDashboardLayoutComponent.prototype.viewContainerRef;\n/** @type {?} */\nDashboardLayoutComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\n/**\n * NgModule definition for the DashboardLayout component.\n */\nexport class DashboardLayoutModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\nimport { DashboardLayoutModule } from './dashboardlayout.module';\n/**\n * NgModule definition for the DashboardLayout component with providers.\n */\nexport class DashboardLayoutAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","PaneDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","content","ContentChild","__decorate","Template","prototype","PanesDirective","ArrayBase","children","ContentChildren","twoWays","exports","SplitterComponent","ngEle","srenderer","injector","tags","element","nativeElement","injectedModules","addTwoWay","containerContext","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childPaneSettings","Splitter","Component","template","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","ComponentMixins","__metadata","SplitterModule","NgModule","imports","CommonModule","declarations","SplitterAllModule","providers","PanelDirective","header","PanelsDirective","DashboardLayoutComponent","childPanels","DashboardLayout","DashboardLayoutModule","DashboardLayoutAllModule"],"mappings":"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"}
1
+ {"version":3,"file":"ej2-angular-layouts.umd.min.js","sources":["~/@syncfusion/ej2-angular-layouts/src/splitter/panesettings.directive.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.component.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.module.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter-all.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/panels.directive.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.component.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * 'e-panesettings' directive represent a panes of angular splitter \n * It must be contained in a Splitter component(`ejs-splitter`). \n * ```html\n * <ejs-splitter id='splitter' > \n * <e-panes>\n * <e-pane size ='150px'></e-pane>\n * <e-pane size = '20%'></e-pane>\n * </e-panes>\n * </ejs-splitter>\n * ```\n */\nexport class PaneDirective extends ComplexBase<PaneDirective> {\npublic directivePropList: any;\n/**\n * Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.\n * \n * {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n */\npublic collapsed: any;\n/**\n * Specifies whether a pane is collapsible or not collapsible.\n * \n * {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n */\npublic collapsible: any;\n/**\n * Specifies the CSS class names that defines specific user-defined \n * styles and themes to be appended on corresponding pane of the Splitter. \n * It is used to customize the Splitter control panes. \n * One or more custom CSS classes can be specified to the Splitter panes.\n * \\@default ''\n */\npublic cssClass: any;\n/**\n * Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.\n * \\@default null\n */\npublic max: any;\n/**\n * Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.\n * \\@default null\n */\npublic min: any;\n/**\n * Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes. \n * You can disable this for any specific panes using this property.\n * \\@default true\n */\npublic resizable: any;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n */\npublic size: any;\n/**\n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * \\@default ''\n * \\@blazortype string\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PaneDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPaneDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPaneDirective.ctorParameters;\n/** @type {?} */\nPaneDirective.propDecorators;\n/** @type {?} */\nPaneDirective.prototype.directivePropList;\n/**\n * Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.\n * \n * {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n * @type {?}\n */\nPaneDirective.prototype.collapsed;\n/**\n * Specifies whether a pane is collapsible or not collapsible.\n * \n * {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}\n * \n * \\@default false\n * @type {?}\n */\nPaneDirective.prototype.collapsible;\n/**\n * Specifies the CSS class names that defines specific user-defined \n * styles and themes to be appended on corresponding pane of the Splitter. \n * It is used to customize the Splitter control panes. \n * One or more custom CSS classes can be specified to the Splitter panes.\n * \\@default ''\n * @type {?}\n */\nPaneDirective.prototype.cssClass;\n/**\n * Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.\n * \\@default null\n * @type {?}\n */\nPaneDirective.prototype.max;\n/**\n * Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.\n * \\@default null\n * @type {?}\n */\nPaneDirective.prototype.min;\n/**\n * Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes. \n * You can disable this for any specific panes using this property.\n * \\@default true\n * @type {?}\n */\nPaneDirective.prototype.resizable;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n * @type {?}\n */\nPaneDirective.prototype.size;\n/**\n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * \\@default ''\n * \\@blazortype string\n * @type {?}\n */\nPaneDirective.prototype.content;\n/** @type {?} */\nPaneDirective.prototype.viewContainerRef;\n}\n\n/**\n * Pane Array Directive\n */\nexport class PanesDirective extends ArrayBase<PanesDirective> {\nconstructor() {\n super('panesettings');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Splitter } from '@syncfusion/ej2-layouts';\n\nimport { PanesDirective } from './panesettings.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\n\tbeforeCollapse: any;\n\tbeforeExpand: any;\n\tbeforeSanitizeHtml: any;\n\tcollapsed: any;\n\tcreated: any;\n\texpanded: any;\n\tresizeStart: any;\n\tresizeStop: any;\npublic resizing: any;\npublic childPaneSettings: QueryList<PanesDirective>;\npublic tags: string[] = ['paneSettings'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-splitter',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPaneSettings: new ContentChild(PanesDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction SplitterComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterComponent.ctorParameters;\n/** @type {?} */\nSplitterComponent.prototype.containerContext;\n/** @type {?} */\nSplitterComponent.prototype.tagObjects;\n/** @type {?} */\nSplitterComponent.prototype.beforeCollapse;\n/** @type {?} */\nSplitterComponent.prototype.beforeExpand;\n/** @type {?} */\nSplitterComponent.prototype.beforeSanitizeHtml;\n/** @type {?} */\nSplitterComponent.prototype.collapsed;\n/** @type {?} */\nSplitterComponent.prototype.created;\n/** @type {?} */\nSplitterComponent.prototype.expanded;\n/** @type {?} */\nSplitterComponent.prototype.resizeStart;\n/** @type {?} */\nSplitterComponent.prototype.resizeStop;\n/** @type {?} */\nSplitterComponent.prototype.resizing;\n/** @type {?} */\nSplitterComponent.prototype.childPaneSettings;\n/** @type {?} */\nSplitterComponent.prototype.tags;\n/** @type {?} */\nSplitterComponent.prototype.registerEvents;\n/** @type {?} */\nSplitterComponent.prototype.addTwoWay;\n/** @type {?} */\nSplitterComponent.prototype.ngEle;\n/** @type {?} */\nSplitterComponent.prototype.srenderer;\n/** @type {?} */\nSplitterComponent.prototype.viewContainerRef;\n/** @type {?} */\nSplitterComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\n/**\n * NgModule definition for the Splitter component.\n */\nexport class SplitterModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\nimport { SplitterModule } from './splitter.module';\n/**\n * NgModule definition for the Splitter component with providers.\n */\nexport class SplitterAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * 'e-panels' directive represent a panels of angular dashboardlayout \n * It must be contained in a dashboardlayout component(`ej-dashboardlayout`). \n * ```html\n * <ejs-dashboardlayout> \n * <e-panels>\n * <e-panel></e-panel>\n * <e-panel></e-panel>\n * </e-panels>\n * </ejs-dashboardlayout>\n * ```\n */\nexport class PanelDirective extends ComplexBase<PanelDirective> {\npublic directivePropList: any;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic col: any;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n */\npublic cssClass: any;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n */\npublic enabled: any;\n/**\n * Defines the id of the panel.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeX: any;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeY: any;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n */\npublic minSizeX: any;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n */\npublic minSizeY: any;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic row: any;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeX: any;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeY: any;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n */\npublic zIndex: any;\n/**\n * Defines the template value that should be displayed as the panel's header.\n */\n@Template()\n public header: any;\n/**\n * Defines the template value that should be displayed as the panel's content.\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'header': [{ type: ContentChild, args: ['header', ] },],\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PanelDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelDirective.ctorParameters;\n/** @type {?} */\nPanelDirective.propDecorators;\n/** @type {?} */\nPanelDirective.prototype.directivePropList;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.col;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.cssClass;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n * @type {?}\n */\nPanelDirective.prototype.enabled;\n/**\n * Defines the id of the panel.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.id;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeX;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeY;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeX;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeY;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.row;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeX;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeY;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n * @type {?}\n */\nPanelDirective.prototype.zIndex;\n/**\n * Defines the template value that should be displayed as the panel's header.\n * @type {?}\n */\nPanelDirective.prototype.header;\n/**\n * Defines the template value that should be displayed as the panel's content.\n * @type {?}\n */\nPanelDirective.prototype.content;\n/** @type {?} */\nPanelDirective.prototype.viewContainerRef;\n}\n\n/**\n * Panel Array Directive\n */\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\nconstructor() {\n super('panels');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanelsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DashboardLayout } from '@syncfusion/ej2-layouts';\n\nimport { PanelsDirective } from './panels.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const /** @type {?} */ outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\n\tchange: any;\n\tcreated: any;\n\tdestroyed: any;\n\tdrag: any;\n\tdragStart: any;\n\tdragStop: any;\n\tresize: any;\n\tresizeStart: any;\npublic resizeStop: any;\npublic childPanels: QueryList<PanelsDirective>;\npublic tags: string[] = ['panels'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-dashboardlayout',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPanels: new ContentChild(PanelsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DashboardLayoutComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutComponent.ctorParameters;\n/** @type {?} */\nDashboardLayoutComponent.prototype.containerContext;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tagObjects;\n/** @type {?} */\nDashboardLayoutComponent.prototype.change;\n/** @type {?} */\nDashboardLayoutComponent.prototype.created;\n/** @type {?} */\nDashboardLayoutComponent.prototype.destroyed;\n/** @type {?} */\nDashboardLayoutComponent.prototype.drag;\n/** @type {?} */\nDashboardLayoutComponent.prototype.dragStart;\n/** @type {?} */\nDashboardLayoutComponent.prototype.dragStop;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resize;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resizeStart;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resizeStop;\n/** @type {?} */\nDashboardLayoutComponent.prototype.childPanels;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tags;\n/** @type {?} */\nDashboardLayoutComponent.prototype.registerEvents;\n/** @type {?} */\nDashboardLayoutComponent.prototype.addTwoWay;\n/** @type {?} */\nDashboardLayoutComponent.prototype.ngEle;\n/** @type {?} */\nDashboardLayoutComponent.prototype.srenderer;\n/** @type {?} */\nDashboardLayoutComponent.prototype.viewContainerRef;\n/** @type {?} */\nDashboardLayoutComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\n/**\n * NgModule definition for the DashboardLayout component.\n */\nexport class DashboardLayoutModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\nimport { DashboardLayoutModule } from './dashboardlayout.module';\n/**\n * NgModule definition for the DashboardLayout component with providers.\n */\nexport class DashboardLayoutAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","PaneDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","content","ContentChild","__decorate","Template","prototype","PanesDirective","ArrayBase","children","ContentChildren","twoWays","exports","SplitterComponent","ngEle","srenderer","injector","tags","element","nativeElement","injectedModules","addTwoWay","containerContext","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childPaneSettings","Splitter","Component","template","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","ComponentMixins","__metadata","SplitterModule","NgModule","imports","CommonModule","declarations","SplitterAllModule","providers","PanelDirective","header","PanelsDirective","DashboardLayoutComponent","childPanels","DashboardLayout","DashboardLayoutModule","DashboardLayoutAllModule"],"mappings":"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"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-layouts@*",
3
- "_id": "@syncfusion/ej2-angular-layouts@19.2.48",
3
+ "_id": "@syncfusion/ej2-angular-layouts@19.3.44",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-eK1HU+llqxIAJ6u+DVg7l108CSE+D9NWywqiR9tkfQnLVCoJC7/mKim5sCfdcbtOTtgzWBFAmmHS+HRdaV00YQ==",
5
+ "_integrity": "sha512-6BkkgTV7kcyviSBMWeiJUyfUjXWjmLQGY9A6jyO5tP+9JqIwSCr1ABYoK8ySS+jfBR0ssGD+6QhZalvT3++sdw==",
6
6
  "_location": "/@syncfusion/ej2-angular-layouts",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-angular-layouts/-/ej2-angular-layouts-19.2.48.tgz",
23
- "_shasum": "a55df0c398c2f83b2483eab0ae9dc78b70614109",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-angular-layouts/-/ej2-angular-layouts-19.3.44.tgz",
23
+ "_shasum": "5ae3f8eeb18a1e324e83ea7fb8ca23a8047fc63c",
24
24
  "_spec": "@syncfusion/ej2-angular-layouts@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~19.2.55",
35
- "@syncfusion/ej2-base": "~19.2.55",
36
- "@syncfusion/ej2-layouts": "19.2.55"
34
+ "@syncfusion/ej2-angular-base": "~19.3.47",
35
+ "@syncfusion/ej2-base": "~19.3.47",
36
+ "@syncfusion/ej2-layouts": "19.3.48"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Angular",
@@ -71,5 +71,5 @@
71
71
  "schematics": "./schematics/collection.json",
72
72
  "sideEffects": false,
73
73
  "typings": "ej2-angular-layouts.d.ts",
74
- "version": "19.2.55"
74
+ "version": "19.3.48"
75
75
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-layouts";
2
- export declare const pkgVer = "^19.2.48";
2
+ export declare const pkgVer = "^19.3.44";
3
3
  export declare const moduleName = "SplitterModule, DashboardLayoutModule";
4
- export declare const themeVer = "~19.2.48";
4
+ export declare const themeVer = "~19.3.44";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-layouts';
4
- exports.pkgVer = '^19.2.48';
4
+ exports.pkgVer = '^19.3.44';
5
5
  exports.moduleName = 'SplitterModule, DashboardLayoutModule';
6
- exports.themeVer = '~19.2.48';
6
+ exports.themeVer = '~19.3.44';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-layouts';
2
- export const pkgVer = '^19.2.48';
2
+ export const pkgVer = '^19.3.44';
3
3
  export const moduleName = 'SplitterModule, DashboardLayoutModule';
4
- export const themeVer = '~19.2.48';
4
+ export const themeVer = '~19.3.44';
@@ -18,6 +18,15 @@ export declare class DashboardLayoutComponent extends DashboardLayout implements
18
18
  private injector;
19
19
  containerContext: any;
20
20
  tagObjects: any;
21
+ change: any;
22
+ created: any;
23
+ destroyed: any;
24
+ drag: any;
25
+ dragStart: any;
26
+ dragStop: any;
27
+ resize: any;
28
+ resizeStart: any;
29
+ resizeStop: any;
21
30
  childPanels: QueryList<PanelsDirective>;
22
31
  tags: string[];
23
32
  constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
@@ -18,6 +18,15 @@ export declare class SplitterComponent extends Splitter implements IComponentBas
18
18
  private injector;
19
19
  containerContext: any;
20
20
  tagObjects: any;
21
+ beforeCollapse: any;
22
+ beforeExpand: any;
23
+ beforeSanitizeHtml: any;
24
+ collapsed: any;
25
+ created: any;
26
+ expanded: any;
27
+ resizeStart: any;
28
+ resizeStop: any;
29
+ resizing: any;
21
30
  childPaneSettings: QueryList<PanesDirective>;
22
31
  tags: string[];
23
32
  constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
@@ -0,0 +1,61 @@
1
+ .e-avatar {
2
+ -ms-flex-line-pack: center;
3
+ align-content: center;
4
+ -ms-flex-align: center;
5
+ align-items: center;
6
+ background-color: #495057;
7
+ background-position: center;
8
+ background-repeat: no-repeat;
9
+ background-size: cover;
10
+ border-radius: 2px;
11
+ color: #adb5bd;
12
+ display: -ms-inline-flexbox;
13
+ display: inline-flex;
14
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
15
+ font-size: 14px;
16
+ font-weight: 500;
17
+ height: 40px;
18
+ -ms-flex-pack: center;
19
+ justify-content: center;
20
+ overflow: hidden;
21
+ position: relative;
22
+ width: 40px;
23
+ line-height: 22px;
24
+ }
25
+
26
+ .e-avatar img {
27
+ height: 100%;
28
+ width: auto;
29
+ }
30
+
31
+ .e-avatar.e-avatar-circle {
32
+ border-radius: 50%;
33
+ }
34
+
35
+ .e-avatar.e-avatar-xsmall {
36
+ font-size: 10px;
37
+ height: 24px;
38
+ line-height: 16px;
39
+ width: 24px;
40
+ }
41
+
42
+ .e-avatar.e-avatar-small {
43
+ font-size: 12px;
44
+ height: 32px;
45
+ line-height: 18px;
46
+ width: 32px;
47
+ }
48
+
49
+ .e-avatar.e-avatar-large {
50
+ font-size: 18px;
51
+ height: 48px;
52
+ line-height: 28px;
53
+ width: 48px;
54
+ }
55
+
56
+ .e-avatar.e-avatar-xlarge {
57
+ font-size: 20px;
58
+ height: 56px;
59
+ line-height: 28px;
60
+ width: 56px;
61
+ }
@@ -0,0 +1 @@
1
+ @import 'ej2-layouts/styles/avatar/bootstrap5-dark.scss';
@@ -0,0 +1,61 @@
1
+ .e-avatar {
2
+ -ms-flex-line-pack: center;
3
+ align-content: center;
4
+ -ms-flex-align: center;
5
+ align-items: center;
6
+ background-color: #dee2e6;
7
+ background-position: center;
8
+ background-repeat: no-repeat;
9
+ background-size: cover;
10
+ border-radius: 2px;
11
+ color: #6c757d;
12
+ display: -ms-inline-flexbox;
13
+ display: inline-flex;
14
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
15
+ font-size: 14px;
16
+ font-weight: 500;
17
+ height: 40px;
18
+ -ms-flex-pack: center;
19
+ justify-content: center;
20
+ overflow: hidden;
21
+ position: relative;
22
+ width: 40px;
23
+ line-height: 22px;
24
+ }
25
+
26
+ .e-avatar img {
27
+ height: 100%;
28
+ width: auto;
29
+ }
30
+
31
+ .e-avatar.e-avatar-circle {
32
+ border-radius: 50%;
33
+ }
34
+
35
+ .e-avatar.e-avatar-xsmall {
36
+ font-size: 10px;
37
+ height: 24px;
38
+ line-height: 16px;
39
+ width: 24px;
40
+ }
41
+
42
+ .e-avatar.e-avatar-small {
43
+ font-size: 12px;
44
+ height: 32px;
45
+ line-height: 18px;
46
+ width: 32px;
47
+ }
48
+
49
+ .e-avatar.e-avatar-large {
50
+ font-size: 18px;
51
+ height: 48px;
52
+ line-height: 28px;
53
+ width: 48px;
54
+ }
55
+
56
+ .e-avatar.e-avatar-xlarge {
57
+ font-size: 20px;
58
+ height: 56px;
59
+ line-height: 28px;
60
+ width: 56px;
61
+ }
@@ -0,0 +1 @@
1
+ @import 'ej2-layouts/styles/avatar/bootstrap5.scss';
@@ -649,6 +649,10 @@
649
649
  font-size: 14px;
650
650
  }
651
651
 
652
+ .e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before {
653
+ content: '';
654
+ }
655
+
652
656
  .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before {
653
657
  content: '\e984';
654
658
  font-family: 'e-icons';
@@ -656,6 +660,10 @@
656
660
  transform: rotate(90deg);
657
661
  }
658
662
 
663
+ .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
664
+ content: '';
665
+ }
666
+
659
667
  .e-bigger .e-splitter .e-split-bar .e-resize-handler::before {
660
668
  font-size: 16px;
661
669
  }
@@ -650,6 +650,10 @@
650
650
  font-size: 14px;
651
651
  }
652
652
 
653
+ .e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before {
654
+ content: '';
655
+ }
656
+
653
657
  .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before {
654
658
  content: '\e984';
655
659
  font-family: 'e-icons';
@@ -657,6 +661,10 @@
657
661
  transform: rotate(90deg);
658
662
  }
659
663
 
664
+ .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
665
+ content: '';
666
+ }
667
+
660
668
  .e-bigger .e-splitter .e-split-bar .e-resize-handler::before {
661
669
  font-size: 16px;
662
670
  }
@@ -657,12 +657,20 @@
657
657
  font-size: 14px;
658
658
  }
659
659
 
660
+ .e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler.e-template-resize-handler::before {
661
+ content: '';
662
+ }
663
+
660
664
  .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler::before {
661
665
  content: '\e71b';
662
666
  font-family: 'e-icons';
663
667
  font-size: 14px;
664
668
  }
665
669
 
670
+ .e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
671
+ content: '';
672
+ }
673
+
666
674
  .e-bigger .e-splitter .e-split-bar .e-resize-handler::before {
667
675
  font-size: 16px;
668
676
  }