@syncfusion/ej2-angular-navigations 29.1.38-ngcc → 29.1.38
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 +2947 -0
- 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 +24 -11
- package/src/accordion/accordion-all.module.d.ts +6 -0
- package/src/accordion/accordion.component.d.ts +3 -0
- package/src/accordion/accordion.module.d.ts +7 -0
- package/src/accordion/items.directive.d.ts +5 -0
- package/src/appbar/appbar-all.module.d.ts +6 -0
- package/src/appbar/appbar.component.d.ts +3 -0
- package/src/appbar/appbar.module.d.ts +6 -0
- package/src/breadcrumb/breadcrumb-all.module.d.ts +6 -0
- package/src/breadcrumb/breadcrumb.component.d.ts +3 -0
- package/src/breadcrumb/breadcrumb.module.d.ts +7 -0
- package/src/breadcrumb/items.directive.d.ts +5 -0
- package/src/carousel/carousel-all.module.d.ts +6 -0
- package/src/carousel/carousel.component.d.ts +3 -0
- package/src/carousel/carousel.module.d.ts +7 -0
- package/src/carousel/items.directive.d.ts +5 -0
- package/src/context-menu/contextmenu-all.module.d.ts +6 -0
- package/src/context-menu/contextmenu.component.d.ts +3 -0
- package/src/context-menu/contextmenu.module.d.ts +6 -0
- package/src/menu/items.directive.d.ts +5 -0
- package/src/menu/menu-all.module.d.ts +6 -0
- package/src/menu/menu.component.d.ts +3 -0
- package/src/menu/menu.module.d.ts +7 -0
- package/src/sidebar/sidebar-all.module.d.ts +6 -0
- package/src/sidebar/sidebar.component.d.ts +3 -0
- package/src/sidebar/sidebar.module.d.ts +6 -0
- package/src/stepper/stepper-all.module.d.ts +6 -0
- package/src/stepper/stepper.component.d.ts +3 -0
- package/src/stepper/stepper.module.d.ts +7 -0
- package/src/stepper/steps.directive.d.ts +5 -0
- package/src/tab/items.directive.d.ts +5 -0
- package/src/tab/tab-all.module.d.ts +6 -0
- package/src/tab/tab.component.d.ts +3 -0
- package/src/tab/tab.module.d.ts +7 -0
- package/src/toolbar/items.directive.d.ts +5 -0
- package/src/toolbar/toolbar-all.module.d.ts +6 -0
- package/src/toolbar/toolbar.component.d.ts +3 -0
- package/src/toolbar/toolbar.module.d.ts +7 -0
- package/src/treeview/treeview-all.module.d.ts +6 -0
- package/src/treeview/treeview.component.d.ts +3 -0
- package/src/treeview/treeview.module.d.ts +6 -0
- 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/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
- package/license +0 -10
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./carousel.component";
|
|
3
|
+
import * as i2 from "./items.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Carousel component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class CarouselModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CarouselModule, [typeof i1.CarouselComponent, typeof i2.CarouselItemDirective, typeof i2.CarouselItemsDirective], [typeof i3.CommonModule], [typeof i1.CarouselComponent, typeof i2.CarouselItemDirective, typeof i2.CarouselItemsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CarouselModule>;
|
|
5
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* `e-carousel-item` directive represent a item of the Angular Carousel.
|
|
5
6
|
* It must be contained in a Carousel component(`ejs-carousel`).
|
|
@@ -40,6 +41,8 @@ export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirec
|
|
|
40
41
|
*/
|
|
41
42
|
template: any;
|
|
42
43
|
constructor(viewContainerRef: ViewContainerRef);
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemDirective, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemDirective, "ejs-carousel>e-carousel-items>e-carousel-item", never, { "cssClass": "cssClass"; "htmlAttributes": "htmlAttributes"; "interval": "interval"; "template": "template"; }, {}, ["template"]>;
|
|
43
46
|
}
|
|
44
47
|
/**
|
|
45
48
|
* CarouselItem Array Directive
|
|
@@ -47,4 +50,6 @@ export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirec
|
|
|
47
50
|
*/
|
|
48
51
|
export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
|
|
49
52
|
constructor();
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemsDirective, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemsDirective, "ejs-carousel>e-carousel-items", never, {}, {}, ["children"]>;
|
|
50
55
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./contextmenu.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the ContextMenu component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class ContextMenuAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuAllModule, never, [typeof i1.CommonModule, typeof i2.ContextMenuModule], [typeof i2.ContextMenuModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuAllModule>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { ContextMenu } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -32,4 +33,6 @@ export declare class ContextMenuComponent extends ContextMenu implements ICompon
|
|
|
32
33
|
ngAfterContentChecked(): void;
|
|
33
34
|
registerEvents: (eventList: string[]) => void;
|
|
34
35
|
addTwoWay: (propList: string[]) => void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "ejs-contextmenu", never, { "animationSettings": "animationSettings"; "cssClass": "cssClass"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableScrolling": "enableScrolling"; "fields": "fields"; "filter": "filter"; "hoverDelay": "hoverDelay"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "showItemOnClick": "showItemOnClick"; "target": "target"; "template": "template"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "created": "created"; "onClose": "onClose"; "onOpen": "onOpen"; "select": "select"; }, never, never>;
|
|
35
38
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./contextmenu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the ContextMenu component.
|
|
3
6
|
*/
|
|
4
7
|
export declare class ContextMenuModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuModule, [typeof i1.ContextMenuComponent], [typeof i2.CommonModule], [typeof i1.ContextMenuComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuModule>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
|
|
4
5
|
private viewContainerRef;
|
|
5
6
|
directivePropList: any;
|
|
@@ -40,6 +41,8 @@ export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
|
|
|
40
41
|
*/
|
|
41
42
|
url: any;
|
|
42
43
|
constructor(viewContainerRef: ViewContainerRef);
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemDirective, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemDirective, "ejs-menu>e-menu-items>e-menu-item>", never, { "htmlAttributes": "htmlAttributes"; "iconCss": "iconCss"; "id": "id"; "items": "items"; "separator": "separator"; "text": "text"; "url": "url"; }, {}, never>;
|
|
43
46
|
}
|
|
44
47
|
/**
|
|
45
48
|
* MenuItem Array Directive
|
|
@@ -47,4 +50,6 @@ export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
|
|
|
47
50
|
*/
|
|
48
51
|
export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
|
|
49
52
|
constructor();
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemsDirective, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemsDirective, "ejs-menu>e-menu-items", never, {}, {}, ["children"]>;
|
|
50
55
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./menu.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Menu component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class MenuAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuAllModule, never, [typeof i1.CommonModule, typeof i2.MenuModule], [typeof i2.MenuModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MenuAllModule>;
|
|
5
11
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Menu } from '@syncfusion/ej2-navigations';
|
|
4
4
|
import { MenuItemsDirective } from './items.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -40,4 +41,6 @@ export declare class MenuComponent extends Menu implements IComponentBase {
|
|
|
40
41
|
ngAfterContentChecked(): void;
|
|
41
42
|
registerEvents: (eventList: string[]) => void;
|
|
42
43
|
addTwoWay: (propList: string[]) => void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "ejs-menu", never, { "animationSettings": "animationSettings"; "cssClass": "cssClass"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableScrolling": "enableScrolling"; "fields": "fields"; "filter": "filter"; "hamburgerMode": "hamburgerMode"; "hoverDelay": "hoverDelay"; "items": "items"; "locale": "locale"; "orientation": "orientation"; "showItemOnClick": "showItemOnClick"; "target": "target"; "template": "template"; "title": "title"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "created": "created"; "onClose": "onClose"; "onOpen": "onOpen"; "select": "select"; }, ["template", "childItems"], never>;
|
|
43
46
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./menu.component";
|
|
3
|
+
import * as i2 from "./items.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Menu component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class MenuModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, [typeof i1.MenuComponent, typeof i2.MenuItemDirective, typeof i2.MenuItemsDirective], [typeof i3.CommonModule], [typeof i1.MenuComponent, typeof i2.MenuItemDirective, typeof i2.MenuItemsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
|
|
5
12
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./sidebar.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Sidebar component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SidebarAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarAllModule, never, [typeof i1.CommonModule, typeof i2.SidebarModule], [typeof i2.SidebarModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SidebarAllModule>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Sidebar } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -30,4 +31,6 @@ export declare class SidebarComponent extends Sidebar implements IComponentBase
|
|
|
30
31
|
ngAfterContentChecked(): void;
|
|
31
32
|
registerEvents: (eventList: string[]) => void;
|
|
32
33
|
addTwoWay: (propList: string[]) => void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "ejs-sidebar", never, { "animate": "animate"; "closeOnDocumentClick": "closeOnDocumentClick"; "dockSize": "dockSize"; "enableDock": "enableDock"; "enableGestures": "enableGestures"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "isOpen": "isOpen"; "locale": "locale"; "mediaQuery": "mediaQuery"; "position": "position"; "showBackdrop": "showBackdrop"; "target": "target"; "type": "type"; "width": "width"; "zIndex": "zIndex"; }, { "change": "change"; "close": "close"; "created": "created"; "destroyed": "destroyed"; "open": "open"; "isOpenChange": "isOpenChange"; }, never, ["*"]>;
|
|
33
36
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sidebar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Sidebar component.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SidebarModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarModule, [typeof i1.SidebarComponent], [typeof i2.CommonModule], [typeof i1.SidebarComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SidebarModule>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./stepper.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Stepper component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class StepperAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StepperAllModule, never, [typeof i1.CommonModule, typeof i2.StepperModule], [typeof i2.StepperModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StepperAllModule>;
|
|
5
11
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Stepper } from '@syncfusion/ej2-navigations';
|
|
4
4
|
import { StepsDirective } from './steps.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -54,4 +55,6 @@ export declare class StepperComponent extends Stepper implements IComponentBase
|
|
|
54
55
|
ngAfterContentChecked(): void;
|
|
55
56
|
registerEvents: (eventList: string[]) => void;
|
|
56
57
|
addTwoWay: (propList: string[]) => void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "ejs-stepper", never, { "activeStep": "activeStep"; "animation": "animation"; "cssClass": "cssClass"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "labelPosition": "labelPosition"; "linear": "linear"; "locale": "locale"; "orientation": "orientation"; "readOnly": "readOnly"; "showTooltip": "showTooltip"; "stepType": "stepType"; "steps": "steps"; "template": "template"; "tooltipTemplate": "tooltipTemplate"; }, { "beforeStepRender": "beforeStepRender"; "created": "created"; "stepChanged": "stepChanged"; "stepChanging": "stepChanging"; "stepClick": "stepClick"; "activeStepChange": "activeStepChange"; }, ["template", "tooltipTemplate", "childSteps"], ["nav"]>;
|
|
57
60
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stepper.component";
|
|
3
|
+
import * as i2 from "./steps.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Stepper component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class StepperModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StepperModule, [typeof i1.StepperComponent, typeof i2.StepDirective, typeof i2.StepsDirective], [typeof i3.CommonModule], [typeof i1.StepperComponent, typeof i2.StepDirective, typeof i2.StepsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StepperModule>;
|
|
5
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* 'e-step' directive represents a step of the Angular Stepper.
|
|
5
6
|
* It must be contained in a Stepper component(`ejs-stepper`).
|
|
@@ -63,6 +64,8 @@ export declare class StepDirective extends ComplexBase<StepDirective> {
|
|
|
63
64
|
*/
|
|
64
65
|
text: any;
|
|
65
66
|
constructor(viewContainerRef: ViewContainerRef);
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepDirective, never>;
|
|
68
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepDirective, "ejs-stepper>e-steps>e-step", never, { "cssClass": "cssClass"; "disabled": "disabled"; "iconCss": "iconCss"; "isValid": "isValid"; "label": "label"; "optional": "optional"; "status": "status"; "text": "text"; }, {}, never>;
|
|
66
69
|
}
|
|
67
70
|
/**
|
|
68
71
|
* Step Array Directive
|
|
@@ -70,4 +73,6 @@ export declare class StepDirective extends ComplexBase<StepDirective> {
|
|
|
70
73
|
*/
|
|
71
74
|
export declare class StepsDirective extends ArrayBase<StepsDirective> {
|
|
72
75
|
constructor();
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepsDirective, never>;
|
|
77
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StepsDirective, "ejs-stepper>e-steps", never, {}, {}, ["children"]>;
|
|
73
78
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* 'e-tabitem' directive represent a item of the Angular Tab.
|
|
5
6
|
* It must be contained in a Tab component(`ejs-tab`).
|
|
@@ -67,6 +68,8 @@ export declare class TabItemDirective extends ComplexBase<TabItemDirective> {
|
|
|
67
68
|
*/
|
|
68
69
|
headerTemplate: any;
|
|
69
70
|
constructor(viewContainerRef: ViewContainerRef);
|
|
71
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabItemDirective, never>;
|
|
72
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabItemDirective, "e-tabitems>e-tabitem", never, { "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "header": "header"; "headerTemplate": "headerTemplate"; "id": "id"; "tabIndex": "tabIndex"; "visible": "visible"; }, {}, ["content", "header_text", "headerTemplate"]>;
|
|
70
73
|
}
|
|
71
74
|
/**
|
|
72
75
|
* TabItem Array Directive
|
|
@@ -74,4 +77,6 @@ export declare class TabItemDirective extends ComplexBase<TabItemDirective> {
|
|
|
74
77
|
*/
|
|
75
78
|
export declare class TabItemsDirective extends ArrayBase<TabItemsDirective> {
|
|
76
79
|
constructor();
|
|
80
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabItemsDirective, never>;
|
|
81
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabItemsDirective, "ejs-tab>e-tabitems", never, {}, {}, ["children"]>;
|
|
77
82
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./tab.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Tab component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class TabAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabAllModule, never, [typeof i1.CommonModule, typeof i2.TabModule], [typeof i2.TabModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TabAllModule>;
|
|
5
11
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Tab } from '@syncfusion/ej2-navigations';
|
|
4
4
|
import { TabItemsDirective } from './items.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -38,4 +39,6 @@ export declare class TabComponent extends Tab implements IComponentBase {
|
|
|
38
39
|
ngAfterContentChecked(): void;
|
|
39
40
|
registerEvents: (eventList: string[]) => void;
|
|
40
41
|
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "ejs-tab", never, { "allowDragAndDrop": "allowDragAndDrop"; "animation": "animation"; "clearTemplates": "clearTemplates"; "cssClass": "cssClass"; "dragArea": "dragArea"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "headerPlacement": "headerPlacement"; "height": "height"; "heightAdjustMode": "heightAdjustMode"; "items": "items"; "loadOn": "loadOn"; "locale": "locale"; "overflowMode": "overflowMode"; "reorderActiveTab": "reorderActiveTab"; "scrollStep": "scrollStep"; "selectedItem": "selectedItem"; "showCloseButton": "showCloseButton"; "swipeMode": "swipeMode"; "width": "width"; }, { "added": "added"; "adding": "adding"; "created": "created"; "destroyed": "destroyed"; "dragged": "dragged"; "dragging": "dragging"; "onDragStart": "onDragStart"; "removed": "removed"; "removing": "removing"; "selected": "selected"; "selecting": "selecting"; }, ["childItems"], ["div"]>;
|
|
41
44
|
}
|
package/src/tab/tab.module.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tab.component";
|
|
3
|
+
import * as i2 from "./items.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Tab component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class TabModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabModule, [typeof i1.TabComponent, typeof i2.TabItemDirective, typeof i2.TabItemsDirective], [typeof i3.CommonModule], [typeof i1.TabComponent, typeof i2.TabItemDirective, typeof i2.TabItemsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TabModule>;
|
|
5
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* 'e-item' directive represent a item of the Angular Toolbar.
|
|
5
6
|
* It must be contained in a Toolbar component(`ejs-toolbar`).
|
|
@@ -132,6 +133,8 @@ export declare class ItemDirective extends ComplexBase<ItemDirective> {
|
|
|
132
133
|
*/
|
|
133
134
|
template: any;
|
|
134
135
|
constructor(viewContainerRef: ViewContainerRef);
|
|
136
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemDirective, never>;
|
|
137
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemDirective, "e-items>e-item", never, { "align": "align"; "cssClass": "cssClass"; "disabled": "disabled"; "htmlAttributes": "htmlAttributes"; "id": "id"; "overflow": "overflow"; "prefixIcon": "prefixIcon"; "showAlwaysInPopup": "showAlwaysInPopup"; "showTextOn": "showTextOn"; "suffixIcon": "suffixIcon"; "tabIndex": "tabIndex"; "template": "template"; "text": "text"; "tooltipText": "tooltipText"; "type": "type"; "visible": "visible"; "width": "width"; }, { "click": "click"; }, ["template"]>;
|
|
135
138
|
}
|
|
136
139
|
/**
|
|
137
140
|
* Item Array Directive
|
|
@@ -139,4 +142,6 @@ export declare class ItemDirective extends ComplexBase<ItemDirective> {
|
|
|
139
142
|
*/
|
|
140
143
|
export declare class ItemsDirective extends ArrayBase<ItemsDirective> {
|
|
141
144
|
constructor();
|
|
145
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ItemsDirective, never>;
|
|
146
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ItemsDirective, "ejs-toolbar>e-items", never, {}, {}, ["children"]>;
|
|
142
147
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./toolbar.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Toolbar component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class ToolbarAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarAllModule, never, [typeof i1.CommonModule, typeof i2.ToolbarModule], [typeof i2.ToolbarModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarAllModule>;
|
|
5
11
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Toolbar } from '@syncfusion/ej2-navigations';
|
|
4
4
|
import { ItemsDirective } from './items.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -31,4 +32,6 @@ export declare class ToolbarComponent extends Toolbar implements IComponentBase
|
|
|
31
32
|
ngAfterContentChecked(): void;
|
|
32
33
|
registerEvents: (eventList: string[]) => void;
|
|
33
34
|
addTwoWay: (propList: string[]) => void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
36
|
+
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"; }, ["childItems"], ["div"]>;
|
|
34
37
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
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";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Toolbar component.
|
|
3
7
|
*/
|
|
4
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>;
|
|
5
12
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./treeview.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TreeView component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { TreeView } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -59,4 +60,6 @@ export declare class TreeViewComponent extends TreeView implements IComponentBas
|
|
|
59
60
|
ngAfterContentChecked(): void;
|
|
60
61
|
registerEvents: (eventList: string[]) => void;
|
|
61
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"; "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>;
|
|
62
65
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./treeview.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TreeView component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|