@syncfusion/ej2-angular-layouts 29.2.4 → 30.1.37-ngcc

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 (49) hide show
  1. package/@syncfusion/ej2-angular-layouts.es5.js +726 -0
  2. package/@syncfusion/ej2-angular-layouts.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-layouts.js +663 -0
  4. package/@syncfusion/ej2-angular-layouts.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-layouts.umd.js +763 -0
  7. package/dist/ej2-angular-layouts.umd.js.map +1 -0
  8. package/dist/ej2-angular-layouts.umd.min.js +11 -0
  9. package/dist/ej2-angular-layouts.umd.min.js.map +1 -0
  10. package/ej2-angular-layouts.d.ts +7 -0
  11. package/ej2-angular-layouts.metadata.json +1 -0
  12. package/package.json +17 -61
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +4 -4
  16. package/src/dashboard-layout/dashboardlayout-all.module.d.ts +5 -11
  17. package/src/dashboard-layout/dashboardlayout.component.d.ts +39 -42
  18. package/src/dashboard-layout/dashboardlayout.module.d.ts +5 -12
  19. package/src/dashboard-layout/panels.directive.d.ts +102 -107
  20. package/src/index.d.ts +13 -13
  21. package/src/splitter/panesettings.directive.d.ts +77 -82
  22. package/src/splitter/splitter-all.module.d.ts +5 -11
  23. package/src/splitter/splitter.component.d.ts +39 -42
  24. package/src/splitter/splitter.module.d.ts +5 -12
  25. package/src/timeline/items.directive.d.ts +59 -64
  26. package/src/timeline/timeline-all.module.d.ts +5 -11
  27. package/src/timeline/timeline.component.d.ts +46 -49
  28. package/src/timeline/timeline.module.d.ts +5 -12
  29. package/CHANGELOG.md +0 -628
  30. package/esm2020/public_api.mjs +0 -2
  31. package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +0 -23
  32. package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +0 -64
  33. package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +0 -34
  34. package/esm2020/src/dashboard-layout/panels.directive.mjs +0 -72
  35. package/esm2020/src/index.mjs +0 -14
  36. package/esm2020/src/splitter/panesettings.directive.mjs +0 -66
  37. package/esm2020/src/splitter/splitter-all.module.mjs +0 -23
  38. package/esm2020/src/splitter/splitter.component.mjs +0 -64
  39. package/esm2020/src/splitter/splitter.module.mjs +0 -34
  40. package/esm2020/src/timeline/items.directive.mjs +0 -58
  41. package/esm2020/src/timeline/timeline-all.module.mjs +0 -23
  42. package/esm2020/src/timeline/timeline.component.mjs +0 -83
  43. package/esm2020/src/timeline/timeline.module.mjs +0 -34
  44. package/esm2020/syncfusion-ej2-angular-layouts.mjs +0 -5
  45. package/fesm2015/syncfusion-ej2-angular-layouts.mjs +0 -530
  46. package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +0 -1
  47. package/fesm2020/syncfusion-ej2-angular-layouts.mjs +0 -530
  48. package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +0 -1
  49. package/syncfusion-ej2-angular-layouts.d.ts +0 -5
@@ -1,64 +1,59 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * 'e-timelineItem' directive represents a item of the Angular Timeline.
6
- * It must be contained in a Timeline component(`ejs-timeline`).
7
- * ```html
8
- * <ejs-timeline>
9
- * <e-items>
10
- * <e-item [dotCss]='e-icons e-folder' [content]='Item 1' />
11
- * <e-item [dotCss]='e-icons e-folder' [content]='Item 2' />
12
- * </e-items>
13
- * </ejs-timeline>
14
- * ```
15
- */
16
- export declare class ItemDirective extends ComplexBase<ItemDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Defines the text content or template for the Timeline item. The current itemIndex passed as context to build the content.
21
- * @default ''
22
- * @angulartype string | object
23
- * @reacttype string | function | JSX.Element
24
- * @vuetype string | function
25
- * @asptype string
26
- */
27
- content: any;
28
- /**
29
- * Defines the CSS class to customize the Timeline item appearance.
30
- * @default ''
31
- */
32
- cssClass: any;
33
- /**
34
- * Defines whether to enable or disable the timeline item.
35
- * @default false
36
- */
37
- disabled: any;
38
- /**
39
- * Defines one or more CSS classes to include an icon or image in the Timeline item.
40
- * @default ''
41
- */
42
- dotCss: any;
43
- /**
44
- * 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.
45
- * @default ''
46
- * @angulartype string | object
47
- * @reacttype string | function | JSX.Element
48
- * @vuetype string | function
49
- * @asptype string
50
- */
51
- oppositeContent: any;
52
- constructor(viewContainerRef: ViewContainerRef);
53
- static ɵfac: i0.ɵɵFactoryDeclaration<ItemDirective, never>;
54
- static ɵdir: i0.ɵɵDirectiveDeclaration<ItemDirective, "ejs-timeline>e-items>e-item", never, { "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "dotCss": "dotCss"; "oppositeContent": "oppositeContent"; }, {}, never>;
55
- }
56
- /**
57
- * Item Array Directive
58
- * @private
59
- */
60
- export declare class ItemsDirective extends ArrayBase<ItemsDirective> {
61
- constructor();
62
- static ɵfac: i0.ɵɵFactoryDeclaration<ItemsDirective, never>;
63
- static ɵdir: i0.ɵɵDirectiveDeclaration<ItemsDirective, "ejs-timeline>e-items", never, {}, {}, ["children"]>;
64
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * 'e-timelineItem' directive represents a item of the Angular Timeline.
5
+ * It must be contained in a Timeline component(`ejs-timeline`).
6
+ * ```html
7
+ * <ejs-timeline>
8
+ * <e-items>
9
+ * <e-item [dotCss]='e-icons e-folder' [content]='Item 1' />
10
+ * <e-item [dotCss]='e-icons e-folder' [content]='Item 2' />
11
+ * </e-items>
12
+ * </ejs-timeline>
13
+ * ```
14
+ */
15
+ export declare class ItemDirective extends ComplexBase<ItemDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Defines the text content or template for the Timeline item. The current itemIndex passed as context to build the content.
20
+ * @default ''
21
+ * @angulartype string | object
22
+ * @reacttype string | function | JSX.Element
23
+ * @vuetype string | function
24
+ * @asptype string
25
+ */
26
+ content: any;
27
+ /**
28
+ * Defines the CSS class to customize the Timeline item appearance.
29
+ * @default ''
30
+ */
31
+ cssClass: any;
32
+ /**
33
+ * Defines whether to enable or disable the timeline item.
34
+ * @default false
35
+ */
36
+ disabled: any;
37
+ /**
38
+ * Defines one or more CSS classes to include an icon or image in the Timeline item.
39
+ * @default ''
40
+ */
41
+ dotCss: any;
42
+ /**
43
+ * 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.
44
+ * @default ''
45
+ * @angulartype string | object
46
+ * @reacttype string | function | JSX.Element
47
+ * @vuetype string | function
48
+ * @asptype string
49
+ */
50
+ oppositeContent: any;
51
+ constructor(viewContainerRef: ViewContainerRef);
52
+ }
53
+ /**
54
+ * Item Array Directive
55
+ * @private
56
+ */
57
+ export declare class ItemsDirective extends ArrayBase<ItemsDirective> {
58
+ constructor();
59
+ }
@@ -1,11 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "./timeline.module";
4
- /**
5
- * NgModule definition for the Timeline component with providers.
6
- */
7
- export declare class TimelineAllModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<TimelineAllModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<TimelineAllModule, never, [typeof i1.CommonModule, typeof i2.TimelineModule], [typeof i2.TimelineModule]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<TimelineAllModule>;
11
- }
1
+ /**
2
+ * NgModule definition for the Timeline component with providers.
3
+ */
4
+ export declare class TimelineAllModule {
5
+ }
@@ -1,49 +1,46 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Timeline } from '@syncfusion/ej2-layouts';
4
- import { ItemsDirective } from './items.directive';
5
- import * as i0 from "@angular/core";
6
- export declare const inputs: string[];
7
- export declare const outputs: string[];
8
- export declare const twoWays: string[];
9
- /**
10
- * Represents the EJ2 Angular Timeline Component.
11
- * ```html
12
- * <div ejs-timeline [items]='timelineItems'></div>
13
- * ```
14
- */
15
- export declare class TimelineComponent extends Timeline implements IComponentBase {
16
- private ngEle;
17
- private srenderer;
18
- private viewContainerRef;
19
- private injector;
20
- containerContext: any;
21
- tagObjects: any;
22
- beforeItemRender: any;
23
- created: any;
24
- childItems: QueryList<ItemsDirective>;
25
- tags: string[];
26
- /**
27
- * Defines the template content for each timeline item. The template context will contain the item model.
28
- *
29
- * {% codeBlock src='timeline/template/index.md' %}{% endcodeBlock %}
30
- *
31
- * @default ''
32
- * @angulartype string | object
33
- * @reacttype string | function | JSX.Element
34
- * @vuetype string | function
35
- * @asptype string
36
- */
37
- template: any;
38
- content: any;
39
- oppositeContent: any;
40
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
41
- ngOnInit(): void;
42
- ngAfterViewInit(): void;
43
- ngOnDestroy(): void;
44
- ngAfterContentChecked(): void;
45
- registerEvents: (eventList: string[]) => void;
46
- addTwoWay: (propList: string[]) => void;
47
- static ɵfac: i0.ɵɵFactoryDeclaration<TimelineComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<TimelineComponent, "ejs-timeline", never, { "align": "align"; "cssClass": "cssClass"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "items": "items"; "locale": "locale"; "orientation": "orientation"; "reverse": "reverse"; "template": "template"; }, { "beforeItemRender": "beforeItemRender"; "created": "created"; }, ["template", "content", "oppositeContent", "childItems"], ["div"]>;
49
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Timeline } from '@syncfusion/ej2-layouts';
4
+ import { ItemsDirective } from './items.directive';
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular Timeline Component.
10
+ * ```html
11
+ * <div ejs-timeline [items]='timelineItems'></div>
12
+ * ```
13
+ */
14
+ export declare class TimelineComponent extends Timeline implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ containerContext: any;
20
+ tagObjects: any;
21
+ beforeItemRender: any;
22
+ created: any;
23
+ childItems: QueryList<ItemsDirective>;
24
+ tags: string[];
25
+ /**
26
+ * Defines the template content for each timeline item. The template context will contain the item model.
27
+ *
28
+ * {% codeBlock src='timeline/template/index.md' %}{% endcodeBlock %}
29
+ *
30
+ * @default ''
31
+ * @angulartype string | object
32
+ * @reacttype string | function | JSX.Element
33
+ * @vuetype string | function
34
+ * @asptype string
35
+ */
36
+ template: any;
37
+ content: any;
38
+ oppositeContent: any;
39
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
40
+ ngOnInit(): void;
41
+ ngAfterViewInit(): void;
42
+ ngOnDestroy(): void;
43
+ ngAfterContentChecked(): void;
44
+ registerEvents: (eventList: string[]) => void;
45
+ addTwoWay: (propList: string[]) => void;
46
+ }
@@ -1,12 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./timeline.component";
3
- import * as i2 from "./items.directive";
4
- import * as i3 from "@angular/common";
5
- /**
6
- * NgModule definition for the Timeline component.
7
- */
8
- export declare class TimelineModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<TimelineModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<TimelineModule, [typeof i1.TimelineComponent, typeof i2.ItemDirective, typeof i2.ItemsDirective], [typeof i3.CommonModule], [typeof i1.TimelineComponent, typeof i2.ItemDirective, typeof i2.ItemsDirective]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<TimelineModule>;
12
- }
1
+ /**
2
+ * NgModule definition for the Timeline component.
3
+ */
4
+ export declare class TimelineModule {
5
+ }