@syncfusion/ej2-angular-layouts 24.2.4 → 25.1.35

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 (69) hide show
  1. package/esm2020/src/index.mjs +5 -1
  2. package/esm2020/src/timeline/items.directive.mjs +58 -0
  3. package/esm2020/src/timeline/timeline-all.module.mjs +23 -0
  4. package/esm2020/src/timeline/timeline.component.mjs +83 -0
  5. package/esm2020/src/timeline/timeline.module.mjs +34 -0
  6. package/fesm2015/syncfusion-ej2-angular-layouts.mjs +206 -28
  7. package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +1 -1
  8. package/fesm2020/syncfusion-ej2-angular-layouts.mjs +206 -28
  9. package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +1 -1
  10. package/package.json +12 -10
  11. package/schematics/utils/lib-details.d.ts +3 -3
  12. package/schematics/utils/lib-details.js +3 -3
  13. package/schematics/utils/lib-details.ts +3 -3
  14. package/src/index.d.ts +4 -0
  15. package/src/timeline/items.directive.d.ts +64 -0
  16. package/src/timeline/timeline-all.module.d.ts +11 -0
  17. package/src/timeline/timeline.component.d.ts +49 -0
  18. package/src/timeline/timeline.module.d.ts +12 -0
  19. package/styles/bootstrap-dark.scss +1 -0
  20. package/styles/bootstrap.scss +1 -0
  21. package/styles/bootstrap4.scss +1 -0
  22. package/styles/bootstrap5-dark.scss +1 -0
  23. package/styles/bootstrap5.scss +1 -0
  24. package/styles/fabric-dark.scss +1 -0
  25. package/styles/fabric.scss +1 -0
  26. package/styles/fluent-dark.scss +1 -0
  27. package/styles/fluent.scss +1 -0
  28. package/styles/highcontrast-light.scss +1 -0
  29. package/styles/highcontrast.scss +1 -0
  30. package/styles/material-dark.scss +1 -0
  31. package/styles/material.scss +1 -0
  32. package/styles/material3-dark.scss +1 -0
  33. package/styles/material3.scss +1 -0
  34. package/styles/tailwind-dark.scss +1 -0
  35. package/styles/tailwind.scss +1 -0
  36. package/styles/timeline/bootstrap-dark.css +1 -0
  37. package/styles/timeline/bootstrap-dark.scss +1 -0
  38. package/styles/timeline/bootstrap.css +1 -0
  39. package/styles/timeline/bootstrap.scss +1 -0
  40. package/styles/timeline/bootstrap4.css +1 -0
  41. package/styles/timeline/bootstrap4.scss +1 -0
  42. package/styles/timeline/bootstrap5-dark.css +1 -0
  43. package/styles/timeline/bootstrap5-dark.scss +1 -0
  44. package/styles/timeline/bootstrap5.css +1 -0
  45. package/styles/timeline/bootstrap5.scss +1 -0
  46. package/styles/timeline/fabric-dark.css +1 -0
  47. package/styles/timeline/fabric-dark.scss +1 -0
  48. package/styles/timeline/fabric.css +1 -0
  49. package/styles/timeline/fabric.scss +1 -0
  50. package/styles/timeline/fluent-dark.css +1 -0
  51. package/styles/timeline/fluent-dark.scss +1 -0
  52. package/styles/timeline/fluent.css +1 -0
  53. package/styles/timeline/fluent.scss +1 -0
  54. package/styles/timeline/highcontrast-light.css +1 -0
  55. package/styles/timeline/highcontrast-light.scss +1 -0
  56. package/styles/timeline/highcontrast.css +1 -0
  57. package/styles/timeline/highcontrast.scss +1 -0
  58. package/styles/timeline/material-dark.css +1 -0
  59. package/styles/timeline/material-dark.scss +1 -0
  60. package/styles/timeline/material.css +1 -0
  61. package/styles/timeline/material.scss +1 -0
  62. package/styles/timeline/material3-dark.css +1 -0
  63. package/styles/timeline/material3-dark.scss +2 -0
  64. package/styles/timeline/material3.css +1 -0
  65. package/styles/timeline/material3.scss +2 -0
  66. package/styles/timeline/tailwind-dark.css +1 -0
  67. package/styles/timeline/tailwind-dark.scss +1 -0
  68. package/styles/timeline/tailwind.css +1 -0
  69. package/styles/timeline/tailwind.scss +1 -0
@@ -1 +1 @@
1
- {"version":3,"file":"syncfusion-ej2-angular-layouts.mjs","sources":["../../src/splitter/panesettings.directive.ts","../../src/splitter/splitter.component.ts","../../src/splitter/splitter.module.ts","../../src/splitter/splitter-all.module.ts","../../src/dashboard-layout/panels.directive.ts","../../src/dashboard-layout/dashboardlayout.component.ts","../../src/dashboard-layout/dashboardlayout.module.ts","../../src/dashboard-layout/dashboardlayout-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-layouts.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 input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet 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 */\n@Directive({\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PaneDirective extends ComplexBase<PaneDirective> {\n public directivePropList: any;\n\t\n\n\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 */\n public 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 */\n public 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 */\n public 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 */\n public 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 */\n public 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 */\n public resizable: any;\n /** \n * Configures the properties for each pane.\n * @default ''\n */\n public 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 @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Pane Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n})\nexport class PanesDirective extends ArrayBase<PanesDirective> {\n constructor() {\n super('panesettings');\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 inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\n public containerContext : any;\n public 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;\n\tpublic resizing: any;\n public childPaneSettings: QueryList<PanesDirective>;\n public tags: string[] = ['paneSettings'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the Splitter component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n})\nexport class SplitterModule { }","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\n\n\n\n/**\n * NgModule definition for the Splitter component with providers.\n */\n@NgModule({\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n})\nexport class SplitterAllModule { }","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 input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet 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 */\n@Directive({\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PanelDirective extends ComplexBase<PanelDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Defines the column value where the panel to be placed.\n * @default 0\n * @asptype int\n */\n public col: any;\n /** \n * Defines the CSS class name that can be appended with each panel element.\n * @default ''\n */\n public cssClass: any;\n /** \n * Defines whether to the panel should be enabled or not.\n * @default true\n */\n public enabled: any;\n /** \n * Defines the id of the panel.\n * @default ''\n */\n public id: any;\n /** \n * Specifies the maximum width of the panel in cells count.\n * @default null\n * @asptype int\n */\n public maxSizeX: any;\n /** \n * Specifies the maximum height of the panel in cells count.\n * @default null\n * @asptype int\n\n */\n public maxSizeY: any;\n /** \n * Specifies the minimum width of the panel in cells count.\n * @default 1\n */\n public minSizeX: any;\n /** \n * Specifies the minimum height of the panel in cells count.\n * @default 1\n */\n public minSizeY: any;\n /** \n * Defines a row value where the panel should be placed.\n * @default 0\n * @asptype int\n */\n public row: any;\n /** \n * Specifies the width of the panel in the layout in cells count.\n * @default 1\n */\n public sizeX: any;\n /** \n * Specifies the height of the panel in the layout in cells count.\n * @default 1\n */\n public sizeY: any;\n /** \n * Specifies the z-index of the panel\n * @default 1000\n * @asptype double\n */\n public zIndex: any;\n /** \n * Defines the template value that should be displayed as the panel's header.\n * @asptype string\n */\n @ContentChild('header')\n @Template()\n public header: any;\n /** \n * Defines the template value that should be displayed as the panel's content.\n * @asptype string\n */\n @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Panel Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n})\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\n constructor() {\n super('panels');\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 inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\n public containerContext : any;\n public 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;\n\tpublic resizeStop: any;\n public childPanels: QueryList<PanelsDirective>;\n public tags: string[] = ['panels'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the DashboardLayout component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n})\nexport class DashboardLayoutModule { }","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\n\n\n\n/**\n * NgModule definition for the DashboardLayout component with providers.\n */\n@NgModule({\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n})\nexport class DashboardLayoutAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs","inputs","twoWays"],"mappings":"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"}
1
+ {"version":3,"file":"syncfusion-ej2-angular-layouts.mjs","sources":["../../src/splitter/panesettings.directive.ts","../../src/splitter/splitter.component.ts","../../src/splitter/splitter.module.ts","../../src/splitter/splitter-all.module.ts","../../src/dashboard-layout/panels.directive.ts","../../src/dashboard-layout/dashboardlayout.component.ts","../../src/dashboard-layout/dashboardlayout.module.ts","../../src/dashboard-layout/dashboardlayout-all.module.ts","../../src/timeline/items.directive.ts","../../src/timeline/timeline.component.ts","../../src/timeline/timeline.module.ts","../../src/timeline/timeline-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-layouts.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 input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet 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 */\n@Directive({\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PaneDirective extends ComplexBase<PaneDirective> {\n public directivePropList: any;\n\t\n\n\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 */\n public 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 */\n public 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 */\n public 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 */\n public 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 */\n public 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 */\n public resizable: any;\n /** \n * Configures the properties for each pane.\n * @default ''\n */\n public 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 @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Pane Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n})\nexport class PanesDirective extends ArrayBase<PanesDirective> {\n constructor() {\n super('panesettings');\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 inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\n public containerContext : any;\n public 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;\n\tpublic resizing: any;\n public childPaneSettings: QueryList<PanesDirective>;\n public tags: string[] = ['paneSettings'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the Splitter component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n})\nexport class SplitterModule { }","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\n\n\n\n/**\n * NgModule definition for the Splitter component with providers.\n */\n@NgModule({\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n})\nexport class SplitterAllModule { }","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 input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet 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 */\n@Directive({\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PanelDirective extends ComplexBase<PanelDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Defines the column value where the panel to be placed.\n * @default 0\n * @asptype int\n */\n public col: any;\n /** \n * Defines the CSS class name that can be appended with each panel element.\n * @default ''\n */\n public cssClass: any;\n /** \n * Defines whether to the panel should be enabled or not.\n * @default true\n */\n public enabled: any;\n /** \n * Defines the id of the panel.\n * @default ''\n */\n public id: any;\n /** \n * Specifies the maximum width of the panel in cells count.\n * @default null\n * @asptype int\n */\n public maxSizeX: any;\n /** \n * Specifies the maximum height of the panel in cells count.\n * @default null\n * @asptype int\n\n */\n public maxSizeY: any;\n /** \n * Specifies the minimum width of the panel in cells count.\n * @default 1\n */\n public minSizeX: any;\n /** \n * Specifies the minimum height of the panel in cells count.\n * @default 1\n */\n public minSizeY: any;\n /** \n * Defines a row value where the panel should be placed.\n * @default 0\n * @asptype int\n */\n public row: any;\n /** \n * Specifies the width of the panel in the layout in cells count.\n * @default 1\n */\n public sizeX: any;\n /** \n * Specifies the height of the panel in the layout in cells count.\n * @default 1\n */\n public sizeY: any;\n /** \n * Specifies the z-index of the panel\n * @default 1000\n * @asptype double\n */\n public zIndex: any;\n /** \n * Defines the template value that should be displayed as the panel's header.\n * @asptype string\n */\n @ContentChild('header')\n @Template()\n public header: any;\n /** \n * Defines the template value that should be displayed as the panel's content.\n * @asptype string\n */\n @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Panel Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n})\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\n constructor() {\n super('panels');\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 inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\n public containerContext : any;\n public 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;\n\tpublic resizeStop: any;\n public childPanels: QueryList<PanelsDirective>;\n public tags: string[] = ['panels'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the DashboardLayout component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n})\nexport class DashboardLayoutModule { }","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\n\n\n\n/**\n * NgModule definition for the DashboardLayout component with providers.\n */\n@NgModule({\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n})\nexport class DashboardLayoutAllModule { }","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['content', 'cssClass', 'disabled', 'dotCss', 'oppositeContent'];\nlet outputs: string[] = [];\n/**\n * 'e-timelineItem' directive represents a item of the Angular Timeline.\n * It must be contained in a Timeline component(`ejs-timeline`). \n * ```html\n * <ejs-timeline>\n * <e-items>\n * <e-item [dotCss]='e-icons e-folder' [content]='Item 1' />\n * <e-item [dotCss]='e-icons e-folder' [content]='Item 2' />\n * </e-items> \n * </ejs-timeline>\n * ```\n */\n@Directive({\n selector: 'ejs-timeline>e-items>e-item',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ItemDirective extends ComplexBase<ItemDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Defines the text content or template for the Timeline item. The current itemIndex passed as context to build the content.\n * @default ''\n * @angulartype string | object\n * @reacttype string | function | JSX.Element\n * @vuetype string | function\n * @asptype string\n */\n public content: any;\n /** \n * Defines the CSS class to customize the Timeline item appearance.\n * @default ''\n */\n public cssClass: any;\n /** \n * Defines whether to enable or disable the timeline item.\n * @default false\n */\n public disabled: any;\n /** \n * Defines one or more CSS classes to include an icon or image in the Timeline item.\n * @default ''\n */\n public dotCss: any;\n /** \n * Defines the additional text content or template to be displayed opposite side of the item. The current itemIndex passed as context to build the content.\n * @default ''\n * @angulartype string | object\n * @reacttype string | function | JSX.Element\n * @vuetype string | function\n * @asptype string\n */\n public oppositeContent: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Item Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-timeline>e-items',\n queries: {\n children: new ContentChildren(ItemDirective)\n },\n})\nexport class ItemsDirective extends ArrayBase<ItemsDirective> {\n constructor() {\n super('items');\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 { Timeline } from '@syncfusion/ej2-layouts';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ItemsDirective } from './items.directive';\n\nexport const inputs: string[] = ['align','cssClass','enablePersistence','enableRtl','items','locale','orientation','reverse','template'];\nexport const outputs: string[] = ['beforeItemRender','created'];\nexport const twoWays: string[] = [];\n\n/**\n * Represents the EJ2 Angular Timeline Component.\n * ```html\n * <div ejs-timeline [items]='timelineItems'></div>\n * ```\n */\n@Component({\n selector: 'ejs-timeline',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childItems: new ContentChild(ItemsDirective)\n }\n})\n@ComponentMixins([ComponentBase])\nexport class TimelineComponent extends Timeline implements IComponentBase {\n public containerContext : any;\n public tagObjects: any;\n\tbeforeItemRender: any;\n\tpublic created: any;\n public childItems: QueryList<ItemsDirective>;\n public tags: string[] = ['items'];\n /** \n * Defines the template content for each timeline item. The template context will contain the item model.\n * \n * {% codeBlock src='timeline/template/index.md' %}{% endcodeBlock %}\n * \n * @default ''\n * @angulartype string | object\n * @reacttype string | function | JSX.Element\n * @vuetype string | function\n * @asptype string\n */\n @ContentChild('template')\n @Template()\n public template: any;\n @ContentChild('content')\n @Template()\n public content: any;\n @ContentChild('oppositeContent')\n @Template()\n public oppositeContent: any;\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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 public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childItems;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ItemDirective, ItemsDirective } from './items.directive';\nimport { TimelineComponent } from './timeline.component';\n\n/**\n * NgModule definition for the Timeline component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n TimelineComponent,\n ItemDirective,\n ItemsDirective\n ],\n exports: [\n TimelineComponent,\n ItemDirective,\n ItemsDirective\n ]\n})\nexport class TimelineModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ItemDirective, ItemsDirective } from './items.directive';\nimport { TimelineComponent } from './timeline.component';\nimport { TimelineModule } from './timeline.module';\n\n\n\n\n\n/**\n * NgModule definition for the Timeline component with providers.\n */\n@NgModule({\n imports: [CommonModule, TimelineModule],\n exports: [\n TimelineModule\n ],\n providers:[\n \n ]\n})\nexport class TimelineAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs","inputs","twoWays"],"mappings":"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"}
@@ -2,12 +2,12 @@ import { __decorate } from 'tslib';
2
2
  import * as i0 from '@angular/core';
3
3
  import { Directive, ContentChild, ContentChildren, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
4
4
  import { ComplexBase, setValue, Template, ArrayBase, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
5
- import { Splitter, DashboardLayout } from '@syncfusion/ej2-layouts';
5
+ import { Splitter, DashboardLayout, Timeline } from '@syncfusion/ej2-layouts';
6
6
  export * from '@syncfusion/ej2-layouts';
7
7
  import { CommonModule } from '@angular/common';
8
8
 
9
- let input$1 = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];
10
- let outputs$3 = [];
9
+ let input$2 = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];
10
+ let outputs$5 = [];
11
11
  /**
12
12
  * 'e-panesettings' directive represent a panes of angular splitter
13
13
  * It must be contained in a Splitter component(`ejs-splitter`).
@@ -25,8 +25,8 @@ class PaneDirective extends ComplexBase {
25
25
  super();
26
26
  this.viewContainerRef = viewContainerRef;
27
27
  setValue('currentInstance', this, this.viewContainerRef);
28
- this.registerEvents(outputs$3);
29
- this.directivePropList = input$1;
28
+ this.registerEvents(outputs$5);
29
+ this.directivePropList = input$2;
30
30
  }
31
31
  }
32
32
  PaneDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PaneDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
@@ -38,8 +38,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
38
38
  type: Directive,
39
39
  args: [{
40
40
  selector: 'e-panes>e-pane',
41
- inputs: input$1,
42
- outputs: outputs$3,
41
+ inputs: input$2,
42
+ outputs: outputs$5,
43
43
  queries: {}
44
44
  }]
45
45
  }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
@@ -67,9 +67,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
67
67
  }]
68
68
  }], ctorParameters: function () { return []; } });
69
69
 
70
- const inputs$1 = ['cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width'];
71
- const outputs$2 = ['beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
72
- const twoWays$1 = [''];
70
+ const inputs$2 = ['cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width'];
71
+ const outputs$4 = ['beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
72
+ const twoWays$2 = [''];
73
73
  /**
74
74
  * Represents the Angular Splitter Component
75
75
  * ```html
@@ -86,8 +86,8 @@ let SplitterComponent = class SplitterComponent extends Splitter {
86
86
  this.tags = ['paneSettings'];
87
87
  this.element = this.ngEle.nativeElement;
88
88
  this.injectedModules = this.injectedModules || [];
89
- this.registerEvents(outputs$2);
90
- this.addTwoWay.call(this, twoWays$1);
89
+ this.registerEvents(outputs$4);
90
+ this.addTwoWay.call(this, twoWays$2);
91
91
  setValue('currentInstance', this, this.viewContainerRef);
92
92
  this.containerContext = new ComponentBase();
93
93
  }
@@ -114,8 +114,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
114
114
  type: Component,
115
115
  args: [{
116
116
  selector: 'ejs-splitter',
117
- inputs: inputs$1,
118
- outputs: outputs$2,
117
+ inputs: inputs$2,
118
+ outputs: outputs$4,
119
119
  template: `<ng-content select='div'></ng-content>`,
120
120
  changeDetection: ChangeDetectionStrategy.OnPush,
121
121
  queries: {
@@ -172,8 +172,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
172
172
  }]
173
173
  }] });
174
174
 
175
- let input = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];
176
- let outputs$1 = [];
175
+ let input$1 = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];
176
+ let outputs$3 = [];
177
177
  /**
178
178
  * 'e-panels' directive represent a panels of angular dashboardlayout
179
179
  * It must be contained in a dashboardlayout component(`ej-dashboardlayout`).
@@ -191,8 +191,8 @@ class PanelDirective extends ComplexBase {
191
191
  super();
192
192
  this.viewContainerRef = viewContainerRef;
193
193
  setValue('currentInstance', this, this.viewContainerRef);
194
- this.registerEvents(outputs$1);
195
- this.directivePropList = input;
194
+ this.registerEvents(outputs$3);
195
+ this.directivePropList = input$1;
196
196
  }
197
197
  }
198
198
  PanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanelDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
@@ -207,8 +207,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
207
207
  type: Directive,
208
208
  args: [{
209
209
  selector: 'e-panels>e-panel',
210
- inputs: input,
211
- outputs: outputs$1,
210
+ inputs: input$1,
211
+ outputs: outputs$3,
212
212
  queries: {}
213
213
  }]
214
214
  }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { header: [{
@@ -239,9 +239,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
239
239
  }]
240
240
  }], ctorParameters: function () { return []; } });
241
241
 
242
- const inputs = ['allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines'];
243
- const outputs = ['change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
244
- const twoWays = [''];
242
+ const inputs$1 = ['allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines'];
243
+ const outputs$2 = ['change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
244
+ const twoWays$1 = [''];
245
245
  /**
246
246
  * Represents the Essential JS 2 Angular DashboardLayout Component.
247
247
  * ```html
@@ -258,8 +258,8 @@ let DashboardLayoutComponent = class DashboardLayoutComponent extends DashboardL
258
258
  this.tags = ['panels'];
259
259
  this.element = this.ngEle.nativeElement;
260
260
  this.injectedModules = this.injectedModules || [];
261
- this.registerEvents(outputs);
262
- this.addTwoWay.call(this, twoWays);
261
+ this.registerEvents(outputs$2);
262
+ this.addTwoWay.call(this, twoWays$1);
263
263
  setValue('currentInstance', this, this.viewContainerRef);
264
264
  this.containerContext = new ComponentBase();
265
265
  }
@@ -286,8 +286,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
286
286
  type: Component,
287
287
  args: [{
288
288
  selector: 'ejs-dashboardlayout',
289
- inputs: inputs,
290
- outputs: outputs,
289
+ inputs: inputs$1,
290
+ outputs: outputs$2,
291
291
  template: `<ng-content select='div'></ng-content>`,
292
292
  changeDetection: ChangeDetectionStrategy.OnPush,
293
293
  queries: {
@@ -344,11 +344,189 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
344
344
  }]
345
345
  }] });
346
346
 
347
+ let input = ['content', 'cssClass', 'disabled', 'dotCss', 'oppositeContent'];
348
+ let outputs$1 = [];
349
+ /**
350
+ * 'e-timelineItem' directive represents a item of the Angular Timeline.
351
+ * It must be contained in a Timeline component(`ejs-timeline`).
352
+ * ```html
353
+ * <ejs-timeline>
354
+ * <e-items>
355
+ * <e-item [dotCss]='e-icons e-folder' [content]='Item 1' />
356
+ * <e-item [dotCss]='e-icons e-folder' [content]='Item 2' />
357
+ * </e-items>
358
+ * </ejs-timeline>
359
+ * ```
360
+ */
361
+ class ItemDirective extends ComplexBase {
362
+ constructor(viewContainerRef) {
363
+ super();
364
+ this.viewContainerRef = viewContainerRef;
365
+ setValue('currentInstance', this, this.viewContainerRef);
366
+ this.registerEvents(outputs$1);
367
+ this.directivePropList = input;
368
+ }
369
+ }
370
+ ItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ItemDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
371
+ ItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ItemDirective, selector: "ejs-timeline>e-items>e-item", inputs: { content: "content", cssClass: "cssClass", disabled: "disabled", dotCss: "dotCss", oppositeContent: "oppositeContent" }, usesInheritance: true, ngImport: i0 });
372
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ItemDirective, decorators: [{
373
+ type: Directive,
374
+ args: [{
375
+ selector: 'ejs-timeline>e-items>e-item',
376
+ inputs: input,
377
+ outputs: outputs$1,
378
+ queries: {}
379
+ }]
380
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
381
+ /**
382
+ * Item Array Directive
383
+ * @private
384
+ */
385
+ class ItemsDirective extends ArrayBase {
386
+ constructor() {
387
+ super('items');
388
+ }
389
+ }
390
+ ItemsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ItemsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
391
+ ItemsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ItemsDirective, selector: "ejs-timeline>e-items", queries: [{ propertyName: "children", predicate: ItemDirective }], usesInheritance: true, ngImport: i0 });
392
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ItemsDirective, decorators: [{
393
+ type: Directive,
394
+ args: [{
395
+ selector: 'ejs-timeline>e-items',
396
+ queries: {
397
+ children: new ContentChildren(ItemDirective)
398
+ },
399
+ }]
400
+ }], ctorParameters: function () { return []; } });
401
+
402
+ const inputs = ['align', 'cssClass', 'enablePersistence', 'enableRtl', 'items', 'locale', 'orientation', 'reverse', 'template'];
403
+ const outputs = ['beforeItemRender', 'created'];
404
+ const twoWays = [];
405
+ /**
406
+ * Represents the EJ2 Angular Timeline Component.
407
+ * ```html
408
+ * <div ejs-timeline [items]='timelineItems'></div>
409
+ * ```
410
+ */
411
+ let TimelineComponent = class TimelineComponent extends Timeline {
412
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
413
+ super();
414
+ this.ngEle = ngEle;
415
+ this.srenderer = srenderer;
416
+ this.viewContainerRef = viewContainerRef;
417
+ this.injector = injector;
418
+ this.tags = ['items'];
419
+ this.element = this.ngEle.nativeElement;
420
+ this.injectedModules = this.injectedModules || [];
421
+ this.registerEvents(outputs);
422
+ this.addTwoWay.call(this, twoWays);
423
+ setValue('currentInstance', this, this.viewContainerRef);
424
+ this.containerContext = new ComponentBase();
425
+ }
426
+ ngOnInit() {
427
+ this.containerContext.ngOnInit(this);
428
+ }
429
+ ngAfterViewInit() {
430
+ this.containerContext.ngAfterViewInit(this);
431
+ }
432
+ ngOnDestroy() {
433
+ this.containerContext.ngOnDestroy(this);
434
+ }
435
+ ngAfterContentChecked() {
436
+ this.tagObjects[0].instance = this.childItems;
437
+ this.containerContext.ngAfterContentChecked(this);
438
+ }
439
+ };
440
+ TimelineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
441
+ TimelineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TimelineComponent, selector: "ejs-timeline", inputs: { align: "align", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", items: "items", locale: "locale", orientation: "orientation", reverse: "reverse", template: "template" }, outputs: { beforeItemRender: "beforeItemRender", created: "created" }, queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "content", first: true, predicate: ["content"], descendants: true }, { propertyName: "oppositeContent", first: true, predicate: ["oppositeContent"], descendants: true }, { propertyName: "childItems", first: true, predicate: ItemsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `<ng-content select='div'></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
442
+ __decorate([
443
+ Template()
444
+ ], TimelineComponent.prototype, "template", void 0);
445
+ __decorate([
446
+ Template()
447
+ ], TimelineComponent.prototype, "content", void 0);
448
+ __decorate([
449
+ Template()
450
+ ], TimelineComponent.prototype, "oppositeContent", void 0);
451
+ TimelineComponent = __decorate([
452
+ ComponentMixins([ComponentBase])
453
+ ], TimelineComponent);
454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineComponent, decorators: [{
455
+ type: Component,
456
+ args: [{
457
+ selector: 'ejs-timeline',
458
+ inputs: inputs,
459
+ outputs: outputs,
460
+ template: `<ng-content select='div'></ng-content>`,
461
+ changeDetection: ChangeDetectionStrategy.OnPush,
462
+ queries: {
463
+ childItems: new ContentChild(ItemsDirective)
464
+ }
465
+ }]
466
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { template: [{
467
+ type: ContentChild,
468
+ args: ['template']
469
+ }], content: [{
470
+ type: ContentChild,
471
+ args: ['content']
472
+ }], oppositeContent: [{
473
+ type: ContentChild,
474
+ args: ['oppositeContent']
475
+ }] } });
476
+
477
+ /**
478
+ * NgModule definition for the Timeline component.
479
+ */
480
+ class TimelineModule {
481
+ }
482
+ TimelineModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
483
+ TimelineModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineModule, declarations: [TimelineComponent,
484
+ ItemDirective,
485
+ ItemsDirective], imports: [CommonModule], exports: [TimelineComponent,
486
+ ItemDirective,
487
+ ItemsDirective] });
488
+ TimelineModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineModule, imports: [[CommonModule]] });
489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineModule, decorators: [{
490
+ type: NgModule,
491
+ args: [{
492
+ imports: [CommonModule],
493
+ declarations: [
494
+ TimelineComponent,
495
+ ItemDirective,
496
+ ItemsDirective
497
+ ],
498
+ exports: [
499
+ TimelineComponent,
500
+ ItemDirective,
501
+ ItemsDirective
502
+ ]
503
+ }]
504
+ }] });
505
+
506
+ /**
507
+ * NgModule definition for the Timeline component with providers.
508
+ */
509
+ class TimelineAllModule {
510
+ }
511
+ TimelineAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
512
+ TimelineAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineAllModule, imports: [CommonModule, TimelineModule], exports: [TimelineModule] });
513
+ TimelineAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineAllModule, providers: [], imports: [[CommonModule, TimelineModule], TimelineModule] });
514
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TimelineAllModule, decorators: [{
515
+ type: NgModule,
516
+ args: [{
517
+ imports: [CommonModule, TimelineModule],
518
+ exports: [
519
+ TimelineModule
520
+ ],
521
+ providers: []
522
+ }]
523
+ }] });
524
+
347
525
  // Mapping root file for package generation
348
526
 
349
527
  /**
350
528
  * Generated bundle index. Do not edit.
351
529
  */
352
530
 
353
- export { DashboardLayoutAllModule, DashboardLayoutComponent, DashboardLayoutModule, PaneDirective, PanelDirective, PanelsDirective, PanesDirective, SplitterAllModule, SplitterComponent, SplitterModule };
531
+ export { DashboardLayoutAllModule, DashboardLayoutComponent, DashboardLayoutModule, ItemDirective, ItemsDirective, PaneDirective, PanelDirective, PanelsDirective, PanesDirective, SplitterAllModule, SplitterComponent, SplitterModule, TimelineAllModule, TimelineComponent, TimelineModule };
354
532
  //# sourceMappingURL=syncfusion-ej2-angular-layouts.mjs.map