@syncfusion/ej2-angular-layouts 29.2.4-ngcc → 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 +725 -725
- package/@syncfusion/ej2-angular-layouts.js +629 -629
- package/{license → LICENSE} +10 -10
- package/dist/ej2-angular-layouts.umd.js +716 -716
- package/dist/ej2-angular-layouts.umd.min.js +1 -1
- package/ej2-angular-layouts.d.ts +7 -7
- package/package.json +15 -46
- 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 -5
- package/src/dashboard-layout/dashboardlayout.component.d.ts +39 -39
- package/src/dashboard-layout/dashboardlayout.module.d.ts +5 -5
- package/src/dashboard-layout/panels.directive.d.ts +102 -102
- package/src/index.d.ts +13 -13
- package/src/splitter/panesettings.directive.d.ts +77 -77
- package/src/splitter/splitter-all.module.d.ts +5 -5
- package/src/splitter/splitter.component.d.ts +39 -39
- package/src/splitter/splitter.module.d.ts +5 -5
- package/src/timeline/items.directive.d.ts +59 -59
- package/src/timeline/timeline-all.module.d.ts +5 -5
- package/src/timeline/timeline.component.d.ts +46 -46
- package/src/timeline/timeline.module.d.ts +5 -5
@@ -1,39 +1,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
|
-
export declare const inputs: string[];
|
6
|
-
export declare const outputs: string[];
|
7
|
-
export declare const twoWays: string[];
|
8
|
-
/**
|
9
|
-
* Represents the Angular Splitter Component
|
10
|
-
* ```html
|
11
|
-
* <ejs-splitter></ejs-splitter>
|
12
|
-
* ```
|
13
|
-
*/
|
14
|
-
export declare class SplitterComponent extends Splitter implements IComponentBase {
|
15
|
-
private ngEle;
|
16
|
-
private srenderer;
|
17
|
-
private viewContainerRef;
|
18
|
-
private injector;
|
19
|
-
containerContext: any;
|
20
|
-
tagObjects: any;
|
21
|
-
beforeCollapse: any;
|
22
|
-
beforeExpand: any;
|
23
|
-
beforeSanitizeHtml: any;
|
24
|
-
collapsed: any;
|
25
|
-
created: any;
|
26
|
-
expanded: any;
|
27
|
-
resizeStart: any;
|
28
|
-
resizeStop: any;
|
29
|
-
resizing: any;
|
30
|
-
childPaneSettings: QueryList<PanesDirective>;
|
31
|
-
tags: string[];
|
32
|
-
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
33
|
-
ngOnInit(): void;
|
34
|
-
ngAfterViewInit(): void;
|
35
|
-
ngOnDestroy(): void;
|
36
|
-
ngAfterContentChecked(): void;
|
37
|
-
registerEvents: (eventList: string[]) => void;
|
38
|
-
addTwoWay: (propList: string[]) => void;
|
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
|
+
export declare const inputs: string[];
|
6
|
+
export declare const outputs: string[];
|
7
|
+
export declare const twoWays: string[];
|
8
|
+
/**
|
9
|
+
* Represents the Angular Splitter Component
|
10
|
+
* ```html
|
11
|
+
* <ejs-splitter></ejs-splitter>
|
12
|
+
* ```
|
13
|
+
*/
|
14
|
+
export declare class SplitterComponent extends Splitter implements IComponentBase {
|
15
|
+
private ngEle;
|
16
|
+
private srenderer;
|
17
|
+
private viewContainerRef;
|
18
|
+
private injector;
|
19
|
+
containerContext: any;
|
20
|
+
tagObjects: any;
|
21
|
+
beforeCollapse: any;
|
22
|
+
beforeExpand: any;
|
23
|
+
beforeSanitizeHtml: any;
|
24
|
+
collapsed: any;
|
25
|
+
created: any;
|
26
|
+
expanded: any;
|
27
|
+
resizeStart: any;
|
28
|
+
resizeStop: any;
|
29
|
+
resizing: any;
|
30
|
+
childPaneSettings: QueryList<PanesDirective>;
|
31
|
+
tags: string[];
|
32
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
33
|
+
ngOnInit(): void;
|
34
|
+
ngAfterViewInit(): void;
|
35
|
+
ngOnDestroy(): void;
|
36
|
+
ngAfterContentChecked(): void;
|
37
|
+
registerEvents: (eventList: string[]) => void;
|
38
|
+
addTwoWay: (propList: string[]) => void;
|
39
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* NgModule definition for the Splitter component.
|
3
|
-
*/
|
4
|
-
export declare class SplitterModule {
|
5
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the Splitter component.
|
3
|
+
*/
|
4
|
+
export declare class SplitterModule {
|
5
|
+
}
|
@@ -1,59 +1,59 @@
|
|
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
|
+
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,5 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* NgModule definition for the Timeline component with providers.
|
3
|
-
*/
|
4
|
-
export declare class TimelineAllModule {
|
5
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the Timeline component with providers.
|
3
|
+
*/
|
4
|
+
export declare class TimelineAllModule {
|
5
|
+
}
|
@@ -1,46 +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
|
-
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
|
+
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,5 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* NgModule definition for the Timeline component.
|
3
|
-
*/
|
4
|
-
export declare class TimelineModule {
|
5
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the Timeline component.
|
3
|
+
*/
|
4
|
+
export declare class TimelineModule {
|
5
|
+
}
|