@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,78 +1,81 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Carousel } from '@syncfusion/ej2-navigations';
|
|
4
|
-
import { CarouselItemsDirective } 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
|
-
*
|
|
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
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Carousel } from '@syncfusion/ej2-navigations';
|
|
4
|
+
import { CarouselItemsDirective } 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 Carousel Component.
|
|
11
|
+
* ```html
|
|
12
|
+
* <ejs-carousel [items]='carouselItems'></ejs-carousel>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class CarouselComponent extends Carousel implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
context: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
slideChanged: any;
|
|
23
|
+
slideChanging: any;
|
|
24
|
+
selectedIndexChange: any;
|
|
25
|
+
childItems: QueryList<CarouselItemsDirective>;
|
|
26
|
+
tags: string[];
|
|
27
|
+
/**
|
|
28
|
+
* Accepts the template for indicator buttons.
|
|
29
|
+
* @default null
|
|
30
|
+
* @angulartype string | object
|
|
31
|
+
* @reacttype string | function | JSX.Element
|
|
32
|
+
* @vuetype string | function
|
|
33
|
+
* @asptype string
|
|
34
|
+
*/
|
|
35
|
+
indicatorsTemplate: any;
|
|
36
|
+
/**
|
|
37
|
+
* Accepts the template for next navigation button.
|
|
38
|
+
* @default null
|
|
39
|
+
* @angulartype string | object
|
|
40
|
+
* @reacttype string | function | JSX.Element
|
|
41
|
+
* @vuetype string | function
|
|
42
|
+
* @asptype string
|
|
43
|
+
*/
|
|
44
|
+
nextButtonTemplate: any;
|
|
45
|
+
/**
|
|
46
|
+
* Accepts the template for previous navigation button.
|
|
47
|
+
* @default null
|
|
48
|
+
* @angulartype string | object
|
|
49
|
+
* @reacttype string | function | JSX.Element
|
|
50
|
+
* @vuetype string | function
|
|
51
|
+
* @asptype string
|
|
52
|
+
*/
|
|
53
|
+
previousButtonTemplate: any;
|
|
54
|
+
/**
|
|
55
|
+
* Accepts the template for play/pause button.
|
|
56
|
+
* @default null
|
|
57
|
+
* @angulartype string | object
|
|
58
|
+
* @reacttype string | function | JSX.Element
|
|
59
|
+
* @vuetype string | function
|
|
60
|
+
* @asptype string
|
|
61
|
+
*/
|
|
62
|
+
playButtonTemplate: any;
|
|
63
|
+
/**
|
|
64
|
+
* Specifies the template option for carousel items.
|
|
65
|
+
* @default null
|
|
66
|
+
* @angulartype string | object
|
|
67
|
+
* @reacttype string | function | JSX.Element
|
|
68
|
+
* @vuetype string | function
|
|
69
|
+
* @asptype string
|
|
70
|
+
*/
|
|
71
|
+
itemTemplate: any;
|
|
72
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
73
|
+
ngOnInit(): void;
|
|
74
|
+
ngAfterViewInit(): void;
|
|
75
|
+
ngOnDestroy(): void;
|
|
76
|
+
ngAfterContentChecked(): void;
|
|
77
|
+
registerEvents: (eventList: string[]) => void;
|
|
78
|
+
addTwoWay: (propList: string[]) => void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselComponent, "ejs-carousel", never, { "allowKeyboardInteraction": "allowKeyboardInteraction"; "animationEffect": "animationEffect"; "autoPlay": "autoPlay"; "buttonsVisibility": "buttonsVisibility"; "cssClass": "cssClass"; "dataSource": "dataSource"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableTouchSwipe": "enableTouchSwipe"; "height": "height"; "htmlAttributes": "htmlAttributes"; "indicatorsTemplate": "indicatorsTemplate"; "indicatorsType": "indicatorsType"; "interval": "interval"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "loop": "loop"; "nextButtonTemplate": "nextButtonTemplate"; "partialVisible": "partialVisible"; "pauseOnHover": "pauseOnHover"; "playButtonTemplate": "playButtonTemplate"; "previousButtonTemplate": "previousButtonTemplate"; "selectedIndex": "selectedIndex"; "showIndicators": "showIndicators"; "showPlayButton": "showPlayButton"; "swipeMode": "swipeMode"; "width": "width"; }, { "slideChanged": "slideChanged"; "slideChanging": "slideChanging"; "selectedIndexChange": "selectedIndexChange"; }, ["indicatorsTemplate", "nextButtonTemplate", "previousButtonTemplate", "playButtonTemplate", "itemTemplate", "childItems"], never>;
|
|
81
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* NgModule definition for the Carousel component.
|
|
7
|
+
*/
|
|
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>;
|
|
12
|
+
}
|
|
@@ -1,50 +1,55 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-carousel-item template='#
|
|
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
|
-
|
|
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-carousel-item` directive represent a item of the Angular Carousel.
|
|
6
|
+
* It must be contained in a Carousel component(`ejs-carousel`).
|
|
7
|
+
* ```html
|
|
8
|
+
* <ejs-carousel>
|
|
9
|
+
* <e-carousel-items>
|
|
10
|
+
* <e-carousel-item template='#item1'></e-carousel-item>
|
|
11
|
+
* <e-carousel-item template='#item2'></e-carousel-item>
|
|
12
|
+
* </e-carousel-items>
|
|
13
|
+
* </ejs-carousel>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirective> {
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
directivePropList: any;
|
|
19
|
+
/**
|
|
20
|
+
* Accepts single/multiple classes (separated by a space) to be used for individual carousel item customization.
|
|
21
|
+
* @default null
|
|
22
|
+
*/
|
|
23
|
+
cssClass: any;
|
|
24
|
+
/**
|
|
25
|
+
* Accepts HTML attributes/custom attributes to add in individual carousel item.
|
|
26
|
+
* @default null
|
|
27
|
+
*/
|
|
28
|
+
htmlAttributes: any;
|
|
29
|
+
/**
|
|
30
|
+
* Accepts the interval duration in milliseconds for individual carousel item transition.
|
|
31
|
+
* @default null
|
|
32
|
+
*/
|
|
33
|
+
interval: any;
|
|
34
|
+
/**
|
|
35
|
+
* Accepts the template for individual carousel item.
|
|
36
|
+
* @default null
|
|
37
|
+
* @angulartype string | object
|
|
38
|
+
* @reacttype string | function | JSX.Element
|
|
39
|
+
* @vuetype string | function
|
|
40
|
+
* @asptype string
|
|
41
|
+
*/
|
|
42
|
+
template: any;
|
|
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"]>;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* CarouselItem Array Directive
|
|
49
|
+
* @private
|
|
50
|
+
*/
|
|
51
|
+
export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
|
|
52
|
+
constructor();
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemsDirective, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemsDirective, "ejs-carousel>e-carousel-items", never, {}, {}, ["children"]>;
|
|
55
|
+
}
|
|
@@ -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 "./contextmenu.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the ContextMenu component with providers.
|
|
6
|
+
*/
|
|
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>;
|
|
11
|
+
}
|
|
@@ -1,35 +1,38 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { ContextMenu } from '@syncfusion/ej2-navigations';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
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 } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { ContextMenu } 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
|
+
* Represents the EJ2 Angular ContextMenu Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <div id='target'>Right click / Touch hold to open the ContextMenu</div>
|
|
12
|
+
* <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class ContextMenuComponent extends ContextMenu implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
context: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
beforeClose: any;
|
|
23
|
+
beforeItemRender: any;
|
|
24
|
+
beforeOpen: any;
|
|
25
|
+
created: any;
|
|
26
|
+
onClose: any;
|
|
27
|
+
onOpen: any;
|
|
28
|
+
select: any;
|
|
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<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>;
|
|
38
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./contextmenu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the ContextMenu component.
|
|
6
|
+
*/
|
|
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>;
|
|
11
|
+
}
|
package/src/index.d.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
export { AccordionItemDirective, AccordionItemsDirective } from './accordion/items.directive';
|
|
2
|
-
export { AccordionComponent } from './accordion/accordion.component';
|
|
3
|
-
export { AccordionModule } from './accordion/accordion.module';
|
|
4
|
-
export { AccordionAllModule } from './accordion/accordion-all.module';
|
|
5
|
-
export { ItemDirective, ItemsDirective } from './toolbar/items.directive';
|
|
6
|
-
export { ToolbarComponent } from './toolbar/toolbar.component';
|
|
7
|
-
export { ToolbarModule } from './toolbar/toolbar.module';
|
|
8
|
-
export { ToolbarAllModule } from './toolbar/toolbar-all.module';
|
|
9
|
-
export { ContextMenuComponent } from './context-menu/contextmenu.component';
|
|
10
|
-
export { ContextMenuModule } from './context-menu/contextmenu.module';
|
|
11
|
-
export { ContextMenuAllModule } from './context-menu/contextmenu-all.module';
|
|
12
|
-
export { BreadcrumbItemDirective, BreadcrumbItemsDirective } from './breadcrumb/items.directive';
|
|
13
|
-
export { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
|
|
14
|
-
export { BreadcrumbModule } from './breadcrumb/breadcrumb.module';
|
|
15
|
-
export { BreadcrumbAllModule } from './breadcrumb/breadcrumb-all.module';
|
|
16
|
-
export { CarouselItemDirective, CarouselItemsDirective } from './carousel/items.directive';
|
|
17
|
-
export { CarouselComponent } from './carousel/carousel.component';
|
|
18
|
-
export { CarouselModule } from './carousel/carousel.module';
|
|
19
|
-
export { CarouselAllModule } from './carousel/carousel-all.module';
|
|
20
|
-
export { TabItemDirective, TabItemsDirective } from './tab/items.directive';
|
|
21
|
-
export { TabComponent } from './tab/tab.component';
|
|
22
|
-
export { TabModule } from './tab/tab.module';
|
|
23
|
-
export { TabAllModule } from './tab/tab-all.module';
|
|
24
|
-
export { TreeViewComponent } from './treeview/treeview.component';
|
|
25
|
-
export { TreeViewModule } from './treeview/treeview.module';
|
|
26
|
-
export { TreeViewAllModule } from './treeview/treeview-all.module';
|
|
27
|
-
export { SidebarComponent } from './sidebar/sidebar.component';
|
|
28
|
-
export { SidebarModule } from './sidebar/sidebar.module';
|
|
29
|
-
export { SidebarAllModule } from './sidebar/sidebar-all.module';
|
|
30
|
-
export { MenuItemDirective, MenuItemsDirective } from './menu/items.directive';
|
|
31
|
-
export { MenuComponent } from './menu/menu.component';
|
|
32
|
-
export { MenuModule } from './menu/menu.module';
|
|
33
|
-
export { MenuAllModule } from './menu/menu-all.module';
|
|
34
|
-
export { AppBarComponent } from './appbar/appbar.component';
|
|
35
|
-
export { AppBarModule } from './appbar/appbar.module';
|
|
36
|
-
export { AppBarAllModule } from './appbar/appbar-all.module';
|
|
37
|
-
export { StepDirective, StepsDirective } from './stepper/steps.directive';
|
|
38
|
-
export { StepperComponent } from './stepper/stepper.component';
|
|
39
|
-
export { StepperModule } from './stepper/stepper.module';
|
|
40
|
-
export { StepperAllModule } from './stepper/stepper-all.module';
|
|
41
|
-
export * from '@syncfusion/ej2-navigations';
|
|
1
|
+
export { AccordionItemDirective, AccordionItemsDirective } from './accordion/items.directive';
|
|
2
|
+
export { AccordionComponent } from './accordion/accordion.component';
|
|
3
|
+
export { AccordionModule } from './accordion/accordion.module';
|
|
4
|
+
export { AccordionAllModule } from './accordion/accordion-all.module';
|
|
5
|
+
export { ItemDirective, ItemsDirective } from './toolbar/items.directive';
|
|
6
|
+
export { ToolbarComponent } from './toolbar/toolbar.component';
|
|
7
|
+
export { ToolbarModule } from './toolbar/toolbar.module';
|
|
8
|
+
export { ToolbarAllModule } from './toolbar/toolbar-all.module';
|
|
9
|
+
export { ContextMenuComponent } from './context-menu/contextmenu.component';
|
|
10
|
+
export { ContextMenuModule } from './context-menu/contextmenu.module';
|
|
11
|
+
export { ContextMenuAllModule } from './context-menu/contextmenu-all.module';
|
|
12
|
+
export { BreadcrumbItemDirective, BreadcrumbItemsDirective } from './breadcrumb/items.directive';
|
|
13
|
+
export { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
|
|
14
|
+
export { BreadcrumbModule } from './breadcrumb/breadcrumb.module';
|
|
15
|
+
export { BreadcrumbAllModule } from './breadcrumb/breadcrumb-all.module';
|
|
16
|
+
export { CarouselItemDirective, CarouselItemsDirective } from './carousel/items.directive';
|
|
17
|
+
export { CarouselComponent } from './carousel/carousel.component';
|
|
18
|
+
export { CarouselModule } from './carousel/carousel.module';
|
|
19
|
+
export { CarouselAllModule } from './carousel/carousel-all.module';
|
|
20
|
+
export { TabItemDirective, TabItemsDirective } from './tab/items.directive';
|
|
21
|
+
export { TabComponent } from './tab/tab.component';
|
|
22
|
+
export { TabModule } from './tab/tab.module';
|
|
23
|
+
export { TabAllModule } from './tab/tab-all.module';
|
|
24
|
+
export { TreeViewComponent } from './treeview/treeview.component';
|
|
25
|
+
export { TreeViewModule } from './treeview/treeview.module';
|
|
26
|
+
export { TreeViewAllModule } from './treeview/treeview-all.module';
|
|
27
|
+
export { SidebarComponent } from './sidebar/sidebar.component';
|
|
28
|
+
export { SidebarModule } from './sidebar/sidebar.module';
|
|
29
|
+
export { SidebarAllModule } from './sidebar/sidebar-all.module';
|
|
30
|
+
export { MenuItemDirective, MenuItemsDirective } from './menu/items.directive';
|
|
31
|
+
export { MenuComponent } from './menu/menu.component';
|
|
32
|
+
export { MenuModule } from './menu/menu.module';
|
|
33
|
+
export { MenuAllModule } from './menu/menu-all.module';
|
|
34
|
+
export { AppBarComponent } from './appbar/appbar.component';
|
|
35
|
+
export { AppBarModule } from './appbar/appbar.module';
|
|
36
|
+
export { AppBarAllModule } from './appbar/appbar-all.module';
|
|
37
|
+
export { StepDirective, StepsDirective } from './stepper/steps.directive';
|
|
38
|
+
export { StepperComponent } from './stepper/stepper.component';
|
|
39
|
+
export { StepperModule } from './stepper/stepper.module';
|
|
40
|
+
export { StepperAllModule } from './stepper/stepper-all.module';
|
|
41
|
+
export * from '@syncfusion/ej2-navigations';
|
|
@@ -1,50 +1,55 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
directivePropList: any;
|
|
7
|
+
/**
|
|
8
|
+
* Specifies the htmlAttributes property to support adding custom attributes to the menu items in the menu component.
|
|
9
|
+
* @default null
|
|
10
|
+
*/
|
|
11
|
+
htmlAttributes: any;
|
|
12
|
+
/**
|
|
13
|
+
* Defines class/multiple classes separated by a space for the menu Item that is used to include an icon.
|
|
14
|
+
* Menu Item can include font icon and sprite image.
|
|
15
|
+
* @default null
|
|
16
|
+
*/
|
|
17
|
+
iconCss: any;
|
|
18
|
+
/**
|
|
19
|
+
* Specifies the id for menu item.
|
|
20
|
+
* @default ''
|
|
21
|
+
*/
|
|
22
|
+
id: any;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the sub menu items that is the array of MenuItem model.
|
|
25
|
+
* @default []
|
|
26
|
+
*/
|
|
27
|
+
items: any;
|
|
28
|
+
/**
|
|
29
|
+
* Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
separator: any;
|
|
33
|
+
/**
|
|
34
|
+
* Specifies text for menu item.
|
|
35
|
+
* @default ''
|
|
36
|
+
*/
|
|
37
|
+
text: any;
|
|
38
|
+
/**
|
|
39
|
+
* Specifies url for menu item that creates the anchor link to navigate to the url provided.
|
|
40
|
+
* @default ''
|
|
41
|
+
*/
|
|
42
|
+
url: any;
|
|
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>;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* MenuItem Array Directive
|
|
49
|
+
* @private
|
|
50
|
+
*/
|
|
51
|
+
export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
|
|
52
|
+
constructor();
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemsDirective, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemsDirective, "ejs-menu>e-menu-items", never, {}, {}, ["children"]>;
|
|
55
|
+
}
|
|
@@ -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 "./menu.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the Menu component with providers.
|
|
6
|
+
*/
|
|
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>;
|
|
11
|
+
}
|