@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.
- package/@syncfusion/ej2-angular-layouts.es5.js +726 -0
- package/@syncfusion/ej2-angular-layouts.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-layouts.js +663 -0
- package/@syncfusion/ej2-angular-layouts.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-layouts.umd.js +763 -0
- package/dist/ej2-angular-layouts.umd.js.map +1 -0
- package/dist/ej2-angular-layouts.umd.min.js +11 -0
- package/dist/ej2-angular-layouts.umd.min.js.map +1 -0
- package/ej2-angular-layouts.d.ts +7 -0
- package/ej2-angular-layouts.metadata.json +1 -0
- package/package.json +17 -61
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/dashboard-layout/dashboardlayout-all.module.d.ts +5 -11
- package/src/dashboard-layout/dashboardlayout.component.d.ts +39 -42
- package/src/dashboard-layout/dashboardlayout.module.d.ts +5 -12
- package/src/dashboard-layout/panels.directive.d.ts +102 -107
- package/src/index.d.ts +13 -13
- package/src/splitter/panesettings.directive.d.ts +77 -82
- package/src/splitter/splitter-all.module.d.ts +5 -11
- package/src/splitter/splitter.component.d.ts +39 -42
- package/src/splitter/splitter.module.d.ts +5 -12
- package/src/timeline/items.directive.d.ts +59 -64
- package/src/timeline/timeline-all.module.d.ts +5 -11
- package/src/timeline/timeline.component.d.ts +46 -49
- package/src/timeline/timeline.module.d.ts +5 -12
- package/CHANGELOG.md +0 -628
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +0 -23
- package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +0 -64
- package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +0 -34
- package/esm2020/src/dashboard-layout/panels.directive.mjs +0 -72
- package/esm2020/src/index.mjs +0 -14
- package/esm2020/src/splitter/panesettings.directive.mjs +0 -66
- package/esm2020/src/splitter/splitter-all.module.mjs +0 -23
- package/esm2020/src/splitter/splitter.component.mjs +0 -64
- package/esm2020/src/splitter/splitter.module.mjs +0 -34
- package/esm2020/src/timeline/items.directive.mjs +0 -58
- package/esm2020/src/timeline/timeline-all.module.mjs +0 -23
- package/esm2020/src/timeline/timeline.component.mjs +0 -83
- package/esm2020/src/timeline/timeline.module.mjs +0 -34
- package/esm2020/syncfusion-ej2-angular-layouts.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs +0 -530
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs +0 -530
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +0 -1
- 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
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
* <e-item [dotCss]='e-icons e-folder' [content]='Item
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
*
|
21
|
-
* @
|
22
|
-
* @
|
23
|
-
* @
|
24
|
-
* @
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
*
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
*
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
*
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
*
|
45
|
-
* @
|
46
|
-
* @
|
47
|
-
* @
|
48
|
-
* @
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
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
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
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
|
-
|
6
|
-
export declare const
|
7
|
-
export declare const
|
8
|
-
|
9
|
-
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
private
|
17
|
-
private
|
18
|
-
private
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
*
|
28
|
-
*
|
29
|
-
*
|
30
|
-
*
|
31
|
-
* @
|
32
|
-
* @
|
33
|
-
* @
|
34
|
-
* @
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
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
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
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
|
+
}
|