@syncfusion/ej2-angular-navigations 31.2.16-ngcc → 31.2.16
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 +3166 -0
- package/README.md +11 -3
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
- package/esm2020/src/accordion/accordion.component.mjs +77 -0
- package/esm2020/src/accordion/accordion.module.mjs +34 -0
- package/esm2020/src/accordion/items.directive.mjs +72 -0
- package/esm2020/src/appbar/appbar-all.module.mjs +23 -0
- package/esm2020/src/appbar/appbar.component.mjs +59 -0
- package/esm2020/src/appbar/appbar.module.mjs +25 -0
- package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
- package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
- package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
- package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
- package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
- package/esm2020/src/carousel/carousel.component.mjs +95 -0
- package/esm2020/src/carousel/carousel.module.mjs +34 -0
- package/esm2020/src/carousel/items.directive.mjs +66 -0
- package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
- package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
- package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
- package/esm2020/src/index.mjs +42 -0
- package/esm2020/src/menu/items.directive.mjs +46 -0
- package/esm2020/src/menu/menu-all.module.mjs +23 -0
- package/esm2020/src/menu/menu.component.mjs +71 -0
- package/esm2020/src/menu/menu.module.mjs +34 -0
- package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
- package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
- package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
- package/esm2020/src/stepper/stepper-all.module.mjs +23 -0
- package/esm2020/src/stepper/stepper.component.mjs +77 -0
- package/esm2020/src/stepper/stepper.module.mjs +34 -0
- package/esm2020/src/stepper/steps.directive.mjs +58 -0
- package/esm2020/src/tab/items.directive.mjs +78 -0
- package/esm2020/src/tab/tab-all.module.mjs +23 -0
- package/esm2020/src/tab/tab.component.mjs +64 -0
- package/esm2020/src/tab/tab.module.mjs +34 -0
- package/esm2020/src/toolbar/items.directive.mjs +66 -0
- package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
- package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
- package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
- package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
- package/esm2020/src/treeview/treeview.component.mjs +66 -0
- package/esm2020/src/treeview/treeview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1615 -0
- package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1615 -0
- package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/accordion/accordion-all.module.d.ts +11 -5
- package/src/accordion/accordion.component.d.ts +57 -54
- package/src/accordion/accordion.module.d.ts +12 -5
- package/src/accordion/items.directive.d.ts +80 -75
- package/src/appbar/appbar-all.module.d.ts +11 -5
- package/src/appbar/appbar.component.d.ts +32 -29
- package/src/appbar/appbar.module.d.ts +11 -5
- package/src/breadcrumb/breadcrumb-all.module.d.ts +11 -5
- package/src/breadcrumb/breadcrumb.component.d.ts +49 -46
- package/src/breadcrumb/breadcrumb.module.d.ts +12 -5
- package/src/breadcrumb/items.directive.d.ts +56 -51
- package/src/carousel/carousel-all.module.d.ts +11 -5
- package/src/carousel/carousel.component.d.ts +81 -78
- package/src/carousel/carousel.module.d.ts +12 -5
- package/src/carousel/items.directive.d.ts +55 -50
- package/src/context-menu/contextmenu-all.module.d.ts +11 -5
- package/src/context-menu/contextmenu.component.d.ts +38 -35
- package/src/context-menu/contextmenu.module.d.ts +11 -5
- package/src/index.d.ts +41 -41
- package/src/menu/items.directive.d.ts +55 -50
- package/src/menu/menu-all.module.d.ts +11 -5
- package/src/menu/menu.component.d.ts +46 -43
- package/src/menu/menu.module.d.ts +12 -5
- package/src/sidebar/sidebar-all.module.d.ts +11 -5
- package/src/sidebar/sidebar.component.d.ts +36 -33
- package/src/sidebar/sidebar.module.d.ts +11 -5
- package/src/stepper/stepper-all.module.d.ts +11 -5
- package/src/stepper/stepper.component.d.ts +60 -57
- package/src/stepper/stepper.module.d.ts +12 -5
- package/src/stepper/steps.directive.d.ts +81 -76
- package/src/tab/items.directive.d.ts +82 -77
- package/src/tab/tab-all.module.d.ts +11 -5
- package/src/tab/tab.component.d.ts +44 -41
- package/src/tab/tab.module.d.ts +12 -5
- package/src/toolbar/items.directive.d.ts +147 -142
- package/src/toolbar/toolbar-all.module.d.ts +11 -5
- package/src/toolbar/toolbar.component.d.ts +38 -35
- package/src/toolbar/toolbar.module.d.ts +12 -5
- package/src/treeview/treeview-all.module.d.ts +11 -5
- package/src/treeview/treeview.component.d.ts +65 -62
- package/src/treeview/treeview.module.d.ts +11 -5
- package/syncfusion-ej2-angular-navigations.d.ts +5 -0
- package/@syncfusion/ej2-angular-navigations.es5.js +0 -2247
- package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-navigations.js +0 -2070
- package/@syncfusion/ej2-angular-navigations.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-navigations.umd.js +0 -2356
- package/dist/ej2-angular-navigations.umd.js.map +0 -1
- package/dist/ej2-angular-navigations.umd.min.js +0 -11
- package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
- package/ej2-angular-navigations.d.ts +0 -15
- package/ej2-angular-navigations.metadata.json +0 -1
|
@@ -1,35 +1,38 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Toolbar } from '@syncfusion/ej2-navigations';
|
|
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
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Toolbar } from '@syncfusion/ej2-navigations';
|
|
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 Angular Toolbar Component.
|
|
11
|
+
* ```html
|
|
12
|
+
* <ejs-toolbar></ejs-toolbar>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class ToolbarComponent extends Toolbar implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
containerContext: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
beforeCreate: any;
|
|
23
|
+
clicked: any;
|
|
24
|
+
created: any;
|
|
25
|
+
destroyed: any;
|
|
26
|
+
keyDown: any;
|
|
27
|
+
childItems: QueryList<ItemsDirective>;
|
|
28
|
+
tags: string[];
|
|
29
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngAfterViewInit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
ngAfterContentChecked(): void;
|
|
34
|
+
registerEvents: (eventList: string[]) => void;
|
|
35
|
+
addTwoWay: (propList: string[]) => void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "ejs-toolbar", never, { "allowKeyboard": "allowKeyboard"; "cssClass": "cssClass"; "enableCollision": "enableCollision"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "items": "items"; "locale": "locale"; "overflowMode": "overflowMode"; "scrollStep": "scrollStep"; "width": "width"; }, { "beforeCreate": "beforeCreate"; "clicked": "clicked"; "created": "created"; "destroyed": "destroyed"; "keyDown": "keyDown"; }, ["childItems"], ["div"]>;
|
|
38
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./toolbar.component";
|
|
3
|
+
import * as i2 from "./items.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
/**
|
|
6
|
+
* NgModule definition for the Toolbar component.
|
|
7
|
+
*/
|
|
8
|
+
export declare class ToolbarModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.ToolbarComponent, typeof i2.ItemDirective, typeof i2.ItemsDirective], [typeof i3.CommonModule], [typeof i1.ToolbarComponent, typeof i2.ItemDirective, typeof i2.ItemsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
12
|
+
}
|
|
@@ -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 "./treeview.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TreeView component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TreeViewAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeViewAllModule, never, [typeof i1.CommonModule, typeof i2.TreeViewModule], [typeof i2.TreeViewModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TreeViewAllModule>;
|
|
11
|
+
}
|
|
@@ -1,62 +1,65 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { TreeView } from '@syncfusion/ej2-navigations';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
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
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { TreeView } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* TreeView component is used to represent the hierarchical data in tree like structure with advanced functions to perform edit, drag and drop, selection with check-box and more.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ej-treeview allowDragAndDrop='true'></ej-treeview>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class TreeViewComponent extends TreeView implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
context: any;
|
|
20
|
+
tagObjects: any;
|
|
21
|
+
actionFailure: any;
|
|
22
|
+
created: any;
|
|
23
|
+
dataBound: any;
|
|
24
|
+
dataSourceChanged: any;
|
|
25
|
+
destroyed: any;
|
|
26
|
+
drawNode: any;
|
|
27
|
+
keyPress: any;
|
|
28
|
+
nodeChecked: any;
|
|
29
|
+
nodeChecking: any;
|
|
30
|
+
nodeClicked: any;
|
|
31
|
+
nodeCollapsed: any;
|
|
32
|
+
nodeCollapsing: any;
|
|
33
|
+
nodeDragStart: any;
|
|
34
|
+
nodeDragStop: any;
|
|
35
|
+
nodeDragging: any;
|
|
36
|
+
nodeDropped: any;
|
|
37
|
+
nodeEdited: any;
|
|
38
|
+
nodeEditing: any;
|
|
39
|
+
nodeExpanded: any;
|
|
40
|
+
nodeExpanding: any;
|
|
41
|
+
nodeSelected: any;
|
|
42
|
+
nodeSelecting: any;
|
|
43
|
+
/**
|
|
44
|
+
* Specifies a template to render customized content for all the nodes. If the `nodeTemplate` property
|
|
45
|
+
* is set, the template content overrides the displayed node text. The property accepts template string
|
|
46
|
+
* [template string](https://ej2.syncfusion.com/documentation/common/template-engine/)
|
|
47
|
+
* or HTML element ID holding the content. For more information on template concept, refer to
|
|
48
|
+
* [Template](../../treeview/template/).
|
|
49
|
+
* @default null
|
|
50
|
+
* @angulartype string | object
|
|
51
|
+
* @reacttype string | function | JSX.Element
|
|
52
|
+
* @vuetype string | function
|
|
53
|
+
* @asptype string
|
|
54
|
+
*/
|
|
55
|
+
nodeTemplate: any;
|
|
56
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
57
|
+
ngOnInit(): void;
|
|
58
|
+
ngAfterViewInit(): void;
|
|
59
|
+
ngOnDestroy(): void;
|
|
60
|
+
ngAfterContentChecked(): void;
|
|
61
|
+
registerEvents: (eventList: string[]) => void;
|
|
62
|
+
addTwoWay: (propList: string[]) => void;
|
|
63
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewComponent, "ejs-treeview", never, { "allowDragAndDrop": "allowDragAndDrop"; "allowEditing": "allowEditing"; "allowMultiSelection": "allowMultiSelection"; "allowTextWrap": "allowTextWrap"; "animation": "animation"; "autoCheck": "autoCheck"; "checkDisabledChildren": "checkDisabledChildren"; "checkOnClick": "checkOnClick"; "checkedNodes": "checkedNodes"; "cssClass": "cssClass"; "disabled": "disabled"; "dragArea": "dragArea"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "expandOn": "expandOn"; "expandedNodes": "expandedNodes"; "fields": "fields"; "fullRowNavigable": "fullRowNavigable"; "fullRowSelect": "fullRowSelect"; "loadOnDemand": "loadOnDemand"; "locale": "locale"; "nodeTemplate": "nodeTemplate"; "selectedNodes": "selectedNodes"; "showCheckBox": "showCheckBox"; "sortOrder": "sortOrder"; }, { "actionFailure": "actionFailure"; "created": "created"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "destroyed": "destroyed"; "drawNode": "drawNode"; "keyPress": "keyPress"; "nodeChecked": "nodeChecked"; "nodeChecking": "nodeChecking"; "nodeClicked": "nodeClicked"; "nodeCollapsed": "nodeCollapsed"; "nodeCollapsing": "nodeCollapsing"; "nodeDragStart": "nodeDragStart"; "nodeDragStop": "nodeDragStop"; "nodeDragging": "nodeDragging"; "nodeDropped": "nodeDropped"; "nodeEdited": "nodeEdited"; "nodeEditing": "nodeEditing"; "nodeExpanded": "nodeExpanded"; "nodeExpanding": "nodeExpanding"; "nodeSelected": "nodeSelected"; "nodeSelecting": "nodeSelecting"; }, ["nodeTemplate"], never>;
|
|
65
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./treeview.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TreeView component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TreeViewModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeViewModule, [typeof i1.TreeViewComponent], [typeof i2.CommonModule], [typeof i1.TreeViewComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TreeViewModule>;
|
|
11
|
+
}
|