@syncfusion/ej2-angular-layouts 30.1.37-ngcc → 30.1.37
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/CHANGELOG.md +606 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +23 -0
- package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +64 -0
- package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +34 -0
- package/esm2020/src/dashboard-layout/panels.directive.mjs +72 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/splitter/panesettings.directive.mjs +66 -0
- package/esm2020/src/splitter/splitter-all.module.mjs +23 -0
- package/esm2020/src/splitter/splitter.component.mjs +64 -0
- package/esm2020/src/splitter/splitter.module.mjs +34 -0
- package/esm2020/src/timeline/items.directive.mjs +58 -0
- package/esm2020/src/timeline/timeline-all.module.mjs +23 -0
- package/esm2020/src/timeline/timeline.component.mjs +83 -0
- package/esm2020/src/timeline/timeline.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-layouts.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs +530 -0
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs +530 -0
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +1 -0
- package/package.json +59 -15
- package/public_api.d.ts +1 -1
- package/src/dashboard-layout/dashboardlayout-all.module.d.ts +11 -5
- package/src/dashboard-layout/dashboardlayout.component.d.ts +42 -39
- package/src/dashboard-layout/dashboardlayout.module.d.ts +12 -5
- package/src/dashboard-layout/panels.directive.d.ts +107 -102
- package/src/index.d.ts +13 -13
- package/src/splitter/panesettings.directive.d.ts +82 -77
- package/src/splitter/splitter-all.module.d.ts +11 -5
- package/src/splitter/splitter.component.d.ts +42 -39
- package/src/splitter/splitter.module.d.ts +12 -5
- package/src/timeline/items.directive.d.ts +64 -59
- package/src/timeline/timeline-all.module.d.ts +11 -5
- package/src/timeline/timeline.component.d.ts +49 -46
- package/src/timeline/timeline.module.d.ts +12 -5
- package/syncfusion-ej2-angular-layouts.d.ts +5 -0
- package/@syncfusion/ej2-angular-layouts.es5.js +0 -726
- package/@syncfusion/ej2-angular-layouts.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-layouts.js +0 -663
- package/@syncfusion/ej2-angular-layouts.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-layouts.umd.js +0 -763
- package/dist/ej2-angular-layouts.umd.js.map +0 -1
- package/dist/ej2-angular-layouts.umd.min.js +0 -11
- package/dist/ej2-angular-layouts.umd.min.js.map +0 -1
- package/ej2-angular-layouts.d.ts +0 -7
- package/ej2-angular-layouts.metadata.json +0 -1
@@ -1,39 +1,42 @@
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import { Splitter } from '@syncfusion/ej2-layouts';
|
4
|
-
import { PanesDirective } from './panesettings.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
|
-
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
import { Splitter } from '@syncfusion/ej2-layouts';
|
4
|
+
import { PanesDirective } from './panesettings.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 Angular Splitter Component
|
11
|
+
* ```html
|
12
|
+
* <ejs-splitter></ejs-splitter>
|
13
|
+
* ```
|
14
|
+
*/
|
15
|
+
export declare class SplitterComponent extends Splitter implements IComponentBase {
|
16
|
+
private ngEle;
|
17
|
+
private srenderer;
|
18
|
+
private viewContainerRef;
|
19
|
+
private injector;
|
20
|
+
containerContext: any;
|
21
|
+
tagObjects: any;
|
22
|
+
beforeCollapse: any;
|
23
|
+
beforeExpand: any;
|
24
|
+
beforeSanitizeHtml: any;
|
25
|
+
collapsed: any;
|
26
|
+
created: any;
|
27
|
+
expanded: any;
|
28
|
+
resizeStart: any;
|
29
|
+
resizeStop: any;
|
30
|
+
resizing: any;
|
31
|
+
childPaneSettings: QueryList<PanesDirective>;
|
32
|
+
tags: string[];
|
33
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
34
|
+
ngOnInit(): void;
|
35
|
+
ngAfterViewInit(): void;
|
36
|
+
ngOnDestroy(): void;
|
37
|
+
ngAfterContentChecked(): void;
|
38
|
+
registerEvents: (eventList: string[]) => void;
|
39
|
+
addTwoWay: (propList: string[]) => void;
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, never>;
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "ejs-splitter", never, { "cssClass": "cssClass"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableReversePanes": "enableReversePanes"; "enableRtl": "enableRtl"; "enabled": "enabled"; "height": "height"; "locale": "locale"; "orientation": "orientation"; "paneSettings": "paneSettings"; "separatorSize": "separatorSize"; "width": "width"; }, { "beforeCollapse": "beforeCollapse"; "beforeExpand": "beforeExpand"; "beforeSanitizeHtml": "beforeSanitizeHtml"; "collapsed": "collapsed"; "created": "created"; "expanded": "expanded"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; }, ["childPaneSettings"], ["div"]>;
|
42
|
+
}
|
@@ -1,5 +1,12 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./splitter.component";
|
3
|
+
import * as i2 from "./panesettings.directive";
|
4
|
+
import * as i3 from "@angular/common";
|
5
|
+
/**
|
6
|
+
* NgModule definition for the Splitter component.
|
7
|
+
*/
|
8
|
+
export declare class SplitterModule {
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterModule, never>;
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitterModule, [typeof i1.SplitterComponent, typeof i2.PaneDirective, typeof i2.PanesDirective], [typeof i3.CommonModule], [typeof i1.SplitterComponent, typeof i2.PaneDirective, typeof i2.PanesDirective]>;
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SplitterModule>;
|
12
|
+
}
|
@@ -1,59 +1,64 @@
|
|
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
|
-
|
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,5 +1,11 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
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,46 +1,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
|
-
|
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
|
-
|
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,5 +1,12 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
|
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
|
+
}
|