@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,12 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
* NgModule definition for the DashboardLayout component.
|
7
|
-
*/
|
8
|
-
export declare class DashboardLayoutModule {
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardLayoutModule, never>;
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardLayoutModule, [typeof i1.DashboardLayoutComponent, typeof i2.PanelDirective, typeof i2.PanelsDirective], [typeof i3.CommonModule], [typeof i1.DashboardLayoutComponent, typeof i2.PanelDirective, typeof i2.PanelsDirective]>;
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DashboardLayoutModule>;
|
12
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the DashboardLayout component.
|
3
|
+
*/
|
4
|
+
export declare class DashboardLayoutModule {
|
5
|
+
}
|
@@ -1,107 +1,102 @@
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
* <e-panel></e-panel>
|
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
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
*
|
65
|
-
* @
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
*
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
*
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
*
|
81
|
-
* @
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
*
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
*
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
export declare class PanelsDirective extends ArrayBase<PanelsDirective> {
|
104
|
-
constructor();
|
105
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PanelsDirective, never>;
|
106
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PanelsDirective, "ejs-dashboardlayout>e-panels", never, {}, {}, ["children"]>;
|
107
|
-
}
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
/**
|
4
|
+
* 'e-panels' directive represent a panels of angular dashboardlayout
|
5
|
+
* It must be contained in a dashboardlayout component(`ej-dashboardlayout`).
|
6
|
+
* ```html
|
7
|
+
* <ejs-dashboardlayout>
|
8
|
+
* <e-panels>
|
9
|
+
* <e-panel></e-panel>
|
10
|
+
* <e-panel></e-panel>
|
11
|
+
* </e-panels>
|
12
|
+
* </ejs-dashboardlayout>
|
13
|
+
* ```
|
14
|
+
*/
|
15
|
+
export declare class PanelDirective extends ComplexBase<PanelDirective> {
|
16
|
+
private viewContainerRef;
|
17
|
+
directivePropList: any;
|
18
|
+
/**
|
19
|
+
* Defines the column value where the panel to be placed.
|
20
|
+
* @default 0
|
21
|
+
* @asptype int
|
22
|
+
*/
|
23
|
+
col: any;
|
24
|
+
/**
|
25
|
+
* Defines the CSS class name that can be appended with each panel element.
|
26
|
+
* @default ''
|
27
|
+
*/
|
28
|
+
cssClass: any;
|
29
|
+
/**
|
30
|
+
* Defines whether to the panel should be enabled or not.
|
31
|
+
* @default true
|
32
|
+
*/
|
33
|
+
enabled: any;
|
34
|
+
/**
|
35
|
+
* Defines the id of the panel.
|
36
|
+
* @default ''
|
37
|
+
*/
|
38
|
+
id: any;
|
39
|
+
/**
|
40
|
+
* Specifies the maximum width of the panel in cells count.
|
41
|
+
* @default null
|
42
|
+
* @asptype int
|
43
|
+
*/
|
44
|
+
maxSizeX: any;
|
45
|
+
/**
|
46
|
+
* Specifies the maximum height of the panel in cells count.
|
47
|
+
* @default null
|
48
|
+
* @asptype int
|
49
|
+
|
50
|
+
*/
|
51
|
+
maxSizeY: any;
|
52
|
+
/**
|
53
|
+
* Specifies the minimum width of the panel in cells count.
|
54
|
+
* @default 1
|
55
|
+
*/
|
56
|
+
minSizeX: any;
|
57
|
+
/**
|
58
|
+
* Specifies the minimum height of the panel in cells count.
|
59
|
+
* @default 1
|
60
|
+
*/
|
61
|
+
minSizeY: any;
|
62
|
+
/**
|
63
|
+
* Defines a row value where the panel should be placed.
|
64
|
+
* @default 0
|
65
|
+
* @asptype int
|
66
|
+
*/
|
67
|
+
row: any;
|
68
|
+
/**
|
69
|
+
* Specifies the width of the panel in the layout in cells count.
|
70
|
+
* @default 1
|
71
|
+
*/
|
72
|
+
sizeX: any;
|
73
|
+
/**
|
74
|
+
* Specifies the height of the panel in the layout in cells count.
|
75
|
+
* @default 1
|
76
|
+
*/
|
77
|
+
sizeY: any;
|
78
|
+
/**
|
79
|
+
* Specifies the z-index of the panel
|
80
|
+
* @default 1000
|
81
|
+
* @asptype double
|
82
|
+
*/
|
83
|
+
zIndex: any;
|
84
|
+
/**
|
85
|
+
* Defines the template value that should be displayed as the panel's header.
|
86
|
+
* @asptype string
|
87
|
+
*/
|
88
|
+
header: any;
|
89
|
+
/**
|
90
|
+
* Defines the template value that should be displayed as the panel's content.
|
91
|
+
* @asptype string
|
92
|
+
*/
|
93
|
+
content: any;
|
94
|
+
constructor(viewContainerRef: ViewContainerRef);
|
95
|
+
}
|
96
|
+
/**
|
97
|
+
* Panel Array Directive
|
98
|
+
* @private
|
99
|
+
*/
|
100
|
+
export declare class PanelsDirective extends ArrayBase<PanelsDirective> {
|
101
|
+
constructor();
|
102
|
+
}
|
package/src/index.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
export { PaneDirective, PanesDirective } from './splitter/panesettings.directive';
|
2
|
-
export { SplitterComponent } from './splitter/splitter.component';
|
3
|
-
export { SplitterModule } from './splitter/splitter.module';
|
4
|
-
export { SplitterAllModule } from './splitter/splitter-all.module';
|
5
|
-
export { PanelDirective, PanelsDirective } from './dashboard-layout/panels.directive';
|
6
|
-
export { DashboardLayoutComponent } from './dashboard-layout/dashboardlayout.component';
|
7
|
-
export { DashboardLayoutModule } from './dashboard-layout/dashboardlayout.module';
|
8
|
-
export { DashboardLayoutAllModule } from './dashboard-layout/dashboardlayout-all.module';
|
9
|
-
export { ItemDirective, ItemsDirective } from './timeline/items.directive';
|
10
|
-
export { TimelineComponent } from './timeline/timeline.component';
|
11
|
-
export { TimelineModule } from './timeline/timeline.module';
|
12
|
-
export { TimelineAllModule } from './timeline/timeline-all.module';
|
13
|
-
export * from '@syncfusion/ej2-layouts';
|
1
|
+
export { PaneDirective, PanesDirective } from './splitter/panesettings.directive';
|
2
|
+
export { SplitterComponent } from './splitter/splitter.component';
|
3
|
+
export { SplitterModule } from './splitter/splitter.module';
|
4
|
+
export { SplitterAllModule } from './splitter/splitter-all.module';
|
5
|
+
export { PanelDirective, PanelsDirective } from './dashboard-layout/panels.directive';
|
6
|
+
export { DashboardLayoutComponent } from './dashboard-layout/dashboardlayout.component';
|
7
|
+
export { DashboardLayoutModule } from './dashboard-layout/dashboardlayout.module';
|
8
|
+
export { DashboardLayoutAllModule } from './dashboard-layout/dashboardlayout-all.module';
|
9
|
+
export { ItemDirective, ItemsDirective } from './timeline/items.directive';
|
10
|
+
export { TimelineComponent } from './timeline/timeline.component';
|
11
|
+
export { TimelineModule } from './timeline/timeline.module';
|
12
|
+
export { TimelineAllModule } from './timeline/timeline-all.module';
|
13
|
+
export * from '@syncfusion/ej2-layouts';
|
@@ -1,82 +1,77 @@
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
|
4
|
-
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
* <e-pane size ='
|
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
|
-
*
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
*
|
66
|
-
* @
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
export declare class PanesDirective extends ArrayBase<PanesDirective> {
|
79
|
-
constructor();
|
80
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PanesDirective, never>;
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PanesDirective, "ejs-splitter>e-panes", never, {}, {}, ["children"]>;
|
82
|
-
}
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
+
/**
|
4
|
+
* 'e-panesettings' directive represent a panes of angular splitter
|
5
|
+
* It must be contained in a Splitter component(`ejs-splitter`).
|
6
|
+
* ```html
|
7
|
+
* <ejs-splitter id='splitter' >
|
8
|
+
* <e-panes>
|
9
|
+
* <e-pane size ='150px'></e-pane>
|
10
|
+
* <e-pane size = '20%'></e-pane>
|
11
|
+
* </e-panes>
|
12
|
+
* </ejs-splitter>
|
13
|
+
* ```
|
14
|
+
*/
|
15
|
+
export declare class PaneDirective extends ComplexBase<PaneDirective> {
|
16
|
+
private viewContainerRef;
|
17
|
+
directivePropList: any;
|
18
|
+
/**
|
19
|
+
* Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.
|
20
|
+
*
|
21
|
+
* {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}
|
22
|
+
*
|
23
|
+
* @default false
|
24
|
+
*/
|
25
|
+
collapsed: any;
|
26
|
+
/**
|
27
|
+
* Specifies whether a pane is collapsible or not collapsible.
|
28
|
+
*
|
29
|
+
* {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}
|
30
|
+
*
|
31
|
+
* @default false
|
32
|
+
*/
|
33
|
+
collapsible: any;
|
34
|
+
/**
|
35
|
+
* Specifies the CSS class names that defines specific user-defined
|
36
|
+
* styles and themes to be appended on corresponding pane of the Splitter.
|
37
|
+
* It is used to customize the Splitter control panes.
|
38
|
+
* One or more custom CSS classes can be specified to the Splitter panes.
|
39
|
+
* @default ''
|
40
|
+
*/
|
41
|
+
cssClass: any;
|
42
|
+
/**
|
43
|
+
* Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.
|
44
|
+
* @default null
|
45
|
+
*/
|
46
|
+
max: any;
|
47
|
+
/**
|
48
|
+
* Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.
|
49
|
+
* @default null
|
50
|
+
*/
|
51
|
+
min: any;
|
52
|
+
/**
|
53
|
+
* Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes.
|
54
|
+
* You can disable this for any specific panes using this property.
|
55
|
+
* @default true
|
56
|
+
*/
|
57
|
+
resizable: any;
|
58
|
+
/**
|
59
|
+
* Configures the properties for each pane.
|
60
|
+
* @default ''
|
61
|
+
*/
|
62
|
+
size: any;
|
63
|
+
/**
|
64
|
+
* Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.
|
65
|
+
* @default ''
|
66
|
+
* @blazortype string
|
67
|
+
*/
|
68
|
+
content: any;
|
69
|
+
constructor(viewContainerRef: ViewContainerRef);
|
70
|
+
}
|
71
|
+
/**
|
72
|
+
* Pane Array Directive
|
73
|
+
* @private
|
74
|
+
*/
|
75
|
+
export declare class PanesDirective extends ArrayBase<PanesDirective> {
|
76
|
+
constructor();
|
77
|
+
}
|
@@ -1,11 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
*/
|
7
|
-
export declare class SplitterAllModule {
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterAllModule, never>;
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitterAllModule, never, [typeof i1.CommonModule, typeof i2.SplitterModule], [typeof i2.SplitterModule]>;
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SplitterAllModule>;
|
11
|
-
}
|
1
|
+
/**
|
2
|
+
* NgModule definition for the Splitter component with providers.
|
3
|
+
*/
|
4
|
+
export declare class SplitterAllModule {
|
5
|
+
}
|
@@ -1,42 +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
|
-
|
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
|
-
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
|
+
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,12 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
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
|
+
/**
|
2
|
+
* NgModule definition for the Splitter component.
|
3
|
+
*/
|
4
|
+
export declare class SplitterModule {
|
5
|
+
}
|