@syncfusion/ej2-angular-navigations 29.2.8-ngcc → 30.1.37-ngcc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/@syncfusion/ej2-angular-navigations.es5.js +2246 -2246
  2. package/@syncfusion/ej2-angular-navigations.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-navigations.js +1980 -1980
  4. package/@syncfusion/ej2-angular-navigations.js.map +1 -1
  5. package/{license → LICENSE} +10 -10
  6. package/dist/ej2-angular-navigations.umd.js +2237 -2237
  7. package/dist/ej2-angular-navigations.umd.js.map +1 -1
  8. package/dist/ej2-angular-navigations.umd.min.js +2 -2
  9. package/dist/ej2-angular-navigations.umd.min.js.map +1 -1
  10. package/ej2-angular-navigations.d.ts +15 -15
  11. package/ej2-angular-navigations.metadata.json +1 -1
  12. package/package.json +4 -4
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +4 -4
  17. package/src/accordion/accordion-all.module.d.ts +5 -5
  18. package/src/accordion/accordion.component.d.ts +54 -54
  19. package/src/accordion/accordion.module.d.ts +5 -5
  20. package/src/accordion/items.directive.d.ts +75 -75
  21. package/src/appbar/appbar-all.module.d.ts +5 -5
  22. package/src/appbar/appbar.component.d.ts +29 -29
  23. package/src/appbar/appbar.module.d.ts +5 -5
  24. package/src/breadcrumb/breadcrumb-all.module.d.ts +5 -5
  25. package/src/breadcrumb/breadcrumb.component.d.ts +46 -46
  26. package/src/breadcrumb/breadcrumb.module.d.ts +5 -5
  27. package/src/breadcrumb/items.directive.d.ts +51 -51
  28. package/src/carousel/carousel-all.module.d.ts +5 -5
  29. package/src/carousel/carousel.component.d.ts +78 -78
  30. package/src/carousel/carousel.module.d.ts +5 -5
  31. package/src/carousel/items.directive.d.ts +50 -50
  32. package/src/context-menu/contextmenu-all.module.d.ts +5 -5
  33. package/src/context-menu/contextmenu.component.d.ts +35 -35
  34. package/src/context-menu/contextmenu.module.d.ts +5 -5
  35. package/src/index.d.ts +41 -41
  36. package/src/menu/items.directive.d.ts +50 -50
  37. package/src/menu/menu-all.module.d.ts +5 -5
  38. package/src/menu/menu.component.d.ts +43 -43
  39. package/src/menu/menu.module.d.ts +5 -5
  40. package/src/sidebar/sidebar-all.module.d.ts +5 -5
  41. package/src/sidebar/sidebar.component.d.ts +33 -33
  42. package/src/sidebar/sidebar.module.d.ts +5 -5
  43. package/src/stepper/stepper-all.module.d.ts +5 -5
  44. package/src/stepper/stepper.component.d.ts +57 -57
  45. package/src/stepper/stepper.module.d.ts +5 -5
  46. package/src/stepper/steps.directive.d.ts +73 -73
  47. package/src/tab/items.directive.d.ts +77 -77
  48. package/src/tab/tab-all.module.d.ts +5 -5
  49. package/src/tab/tab.component.d.ts +41 -41
  50. package/src/tab/tab.module.d.ts +5 -5
  51. package/src/toolbar/items.directive.d.ts +142 -142
  52. package/src/toolbar/toolbar-all.module.d.ts +5 -5
  53. package/src/toolbar/toolbar.component.d.ts +35 -34
  54. package/src/toolbar/toolbar.module.d.ts +5 -5
  55. package/src/treeview/treeview-all.module.d.ts +5 -5
  56. package/src/treeview/treeview.component.d.ts +62 -62
  57. package/src/treeview/treeview.module.d.ts +5 -5
@@ -1,50 +1,50 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-carousel-item` directive represent a item of the Angular Carousel.
5
- * It must be contained in a Carousel component(`ejs-carousel`).
6
- * ```html
7
- * <ejs-carousel>
8
- * <e-carousel-items>
9
- * <e-carousel-item template='#item1'></e-carousel-item>
10
- * <e-carousel-item template='#item2'></e-carousel-item>
11
- * </e-carousel-items>
12
- * </ejs-carousel>
13
- * ```
14
- */
15
- export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Accepts single/multiple classes (separated by a space) to be used for individual carousel item customization.
20
- * @default null
21
- */
22
- cssClass: any;
23
- /**
24
- * Accepts HTML attributes/custom attributes to add in individual carousel item.
25
- * @default null
26
- */
27
- htmlAttributes: any;
28
- /**
29
- * Accepts the interval duration in milliseconds for individual carousel item transition.
30
- * @default null
31
- */
32
- interval: any;
33
- /**
34
- * Accepts the template for individual carousel item.
35
- * @default null
36
- * @angulartype string | object
37
- * @reacttype string | function | JSX.Element
38
- * @vuetype string | function
39
- * @asptype string
40
- */
41
- template: any;
42
- constructor(viewContainerRef: ViewContainerRef);
43
- }
44
- /**
45
- * CarouselItem Array Directive
46
- * @private
47
- */
48
- export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
49
- constructor();
50
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-carousel-item` directive represent a item of the Angular Carousel.
5
+ * It must be contained in a Carousel component(`ejs-carousel`).
6
+ * ```html
7
+ * <ejs-carousel>
8
+ * <e-carousel-items>
9
+ * <e-carousel-item template='#item1'></e-carousel-item>
10
+ * <e-carousel-item template='#item2'></e-carousel-item>
11
+ * </e-carousel-items>
12
+ * </ejs-carousel>
13
+ * ```
14
+ */
15
+ export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Accepts single/multiple classes (separated by a space) to be used for individual carousel item customization.
20
+ * @default null
21
+ */
22
+ cssClass: any;
23
+ /**
24
+ * Accepts HTML attributes/custom attributes to add in individual carousel item.
25
+ * @default null
26
+ */
27
+ htmlAttributes: any;
28
+ /**
29
+ * Accepts the interval duration in milliseconds for individual carousel item transition.
30
+ * @default null
31
+ */
32
+ interval: any;
33
+ /**
34
+ * Accepts the template for individual carousel item.
35
+ * @default null
36
+ * @angulartype string | object
37
+ * @reacttype string | function | JSX.Element
38
+ * @vuetype string | function
39
+ * @asptype string
40
+ */
41
+ template: any;
42
+ constructor(viewContainerRef: ViewContainerRef);
43
+ }
44
+ /**
45
+ * CarouselItem Array Directive
46
+ * @private
47
+ */
48
+ export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
49
+ constructor();
50
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the ContextMenu component with providers.
3
- */
4
- export declare class ContextMenuAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the ContextMenu component with providers.
3
+ */
4
+ export declare class ContextMenuAllModule {
5
+ }
@@ -1,35 +1,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
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular ContextMenu Component.
9
- * ```html
10
- * <div id='target'>Right click / Touch hold to open the ContextMenu</div>
11
- * <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
12
- * ```
13
- */
14
- export declare class ContextMenuComponent extends ContextMenu implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- beforeClose: any;
22
- beforeItemRender: any;
23
- beforeOpen: any;
24
- created: any;
25
- onClose: any;
26
- onOpen: any;
27
- select: any;
28
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
29
- ngOnInit(): void;
30
- ngAfterViewInit(): void;
31
- ngOnDestroy(): void;
32
- ngAfterContentChecked(): void;
33
- registerEvents: (eventList: string[]) => void;
34
- addTwoWay: (propList: string[]) => void;
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
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular ContextMenu Component.
9
+ * ```html
10
+ * <div id='target'>Right click / Touch hold to open the ContextMenu</div>
11
+ * <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
12
+ * ```
13
+ */
14
+ export declare class ContextMenuComponent extends ContextMenu implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ context: any;
20
+ tagObjects: any;
21
+ beforeClose: any;
22
+ beforeItemRender: any;
23
+ beforeOpen: any;
24
+ created: any;
25
+ onClose: any;
26
+ onOpen: any;
27
+ select: any;
28
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
29
+ ngOnInit(): void;
30
+ ngAfterViewInit(): void;
31
+ ngOnDestroy(): void;
32
+ ngAfterContentChecked(): void;
33
+ registerEvents: (eventList: string[]) => void;
34
+ addTwoWay: (propList: string[]) => void;
35
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the ContextMenu component.
3
- */
4
- export declare class ContextMenuModule {
5
- }
1
+ /**
2
+ * NgModule definition for the ContextMenu component.
3
+ */
4
+ export declare class ContextMenuModule {
5
+ }
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,50 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- /**
7
- * Specifies the htmlAttributes property to support adding custom attributes to the menu items in the menu component.
8
- * @default null
9
- */
10
- htmlAttributes: any;
11
- /**
12
- * Defines class/multiple classes separated by a space for the menu Item that is used to include an icon.
13
- * Menu Item can include font icon and sprite image.
14
- * @default null
15
- */
16
- iconCss: any;
17
- /**
18
- * Specifies the id for menu item.
19
- * @default ''
20
- */
21
- id: any;
22
- /**
23
- * Specifies the sub menu items that is the array of MenuItem model.
24
- * @default []
25
- */
26
- items: any;
27
- /**
28
- * Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
29
- * @default false
30
- */
31
- separator: any;
32
- /**
33
- * Specifies text for menu item.
34
- * @default ''
35
- */
36
- text: any;
37
- /**
38
- * Specifies url for menu item that creates the anchor link to navigate to the url provided.
39
- * @default ''
40
- */
41
- url: any;
42
- constructor(viewContainerRef: ViewContainerRef);
43
- }
44
- /**
45
- * MenuItem Array Directive
46
- * @private
47
- */
48
- export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
49
- constructor();
50
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
4
+ private viewContainerRef;
5
+ directivePropList: any;
6
+ /**
7
+ * Specifies the htmlAttributes property to support adding custom attributes to the menu items in the menu component.
8
+ * @default null
9
+ */
10
+ htmlAttributes: any;
11
+ /**
12
+ * Defines class/multiple classes separated by a space for the menu Item that is used to include an icon.
13
+ * Menu Item can include font icon and sprite image.
14
+ * @default null
15
+ */
16
+ iconCss: any;
17
+ /**
18
+ * Specifies the id for menu item.
19
+ * @default ''
20
+ */
21
+ id: any;
22
+ /**
23
+ * Specifies the sub menu items that is the array of MenuItem model.
24
+ * @default []
25
+ */
26
+ items: any;
27
+ /**
28
+ * Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
29
+ * @default false
30
+ */
31
+ separator: any;
32
+ /**
33
+ * Specifies text for menu item.
34
+ * @default ''
35
+ */
36
+ text: any;
37
+ /**
38
+ * Specifies url for menu item that creates the anchor link to navigate to the url provided.
39
+ * @default ''
40
+ */
41
+ url: any;
42
+ constructor(viewContainerRef: ViewContainerRef);
43
+ }
44
+ /**
45
+ * MenuItem Array Directive
46
+ * @private
47
+ */
48
+ export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
49
+ constructor();
50
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Menu component with providers.
3
- */
4
- export declare class MenuAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Menu component with providers.
3
+ */
4
+ export declare class MenuAllModule {
5
+ }
@@ -1,43 +1,43 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Menu } from '@syncfusion/ej2-navigations';
4
- import { MenuItemsDirective } from './items.directive';
5
- export declare const inputs: string[];
6
- export declare const outputs: string[];
7
- export declare const twoWays: string[];
8
- /**
9
- * Represents the EJ2 Angular Menu Component.
10
- * ```html
11
- * <ejs-menu [items]='menuItems'></ejs-menu>
12
- * ```
13
- */
14
- export declare class MenuComponent extends Menu implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- beforeClose: any;
22
- beforeItemRender: any;
23
- beforeOpen: any;
24
- created: any;
25
- onClose: any;
26
- onOpen: any;
27
- select: any;
28
- childItems: QueryList<MenuItemsDirective>;
29
- tags: string[];
30
- /**
31
- * Specifies the template for Menu item.
32
- * @default null
33
- * @asptype string
34
- */
35
- template: any;
36
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
37
- ngOnInit(): void;
38
- ngAfterViewInit(): void;
39
- ngOnDestroy(): void;
40
- ngAfterContentChecked(): void;
41
- registerEvents: (eventList: string[]) => void;
42
- addTwoWay: (propList: string[]) => void;
43
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Menu } from '@syncfusion/ej2-navigations';
4
+ import { MenuItemsDirective } from './items.directive';
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular Menu Component.
10
+ * ```html
11
+ * <ejs-menu [items]='menuItems'></ejs-menu>
12
+ * ```
13
+ */
14
+ export declare class MenuComponent extends Menu implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ context: any;
20
+ tagObjects: any;
21
+ beforeClose: any;
22
+ beforeItemRender: any;
23
+ beforeOpen: any;
24
+ created: any;
25
+ onClose: any;
26
+ onOpen: any;
27
+ select: any;
28
+ childItems: QueryList<MenuItemsDirective>;
29
+ tags: string[];
30
+ /**
31
+ * Specifies the template for Menu item.
32
+ * @default null
33
+ * @asptype string
34
+ */
35
+ template: any;
36
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
37
+ ngOnInit(): void;
38
+ ngAfterViewInit(): void;
39
+ ngOnDestroy(): void;
40
+ ngAfterContentChecked(): void;
41
+ registerEvents: (eventList: string[]) => void;
42
+ addTwoWay: (propList: string[]) => void;
43
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Menu component.
3
- */
4
- export declare class MenuModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Menu component.
3
+ */
4
+ export declare class MenuModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Sidebar component with providers.
3
- */
4
- export declare class SidebarAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Sidebar component with providers.
3
+ */
4
+ export declare class SidebarAllModule {
5
+ }
@@ -1,33 +1,33 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Sidebar } from '@syncfusion/ej2-navigations';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the Essential JS 2 Angular Sidebar Component.
9
- * ```html
10
- * <ejs-sidebar></ejs-sidebar>
11
- * ```
12
- */
13
- export declare class SidebarComponent extends Sidebar implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- containerContext: any;
19
- tagObjects: any;
20
- change: any;
21
- close: any;
22
- created: any;
23
- destroyed: any;
24
- open: any;
25
- isOpenChange: any;
26
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
27
- ngOnInit(): void;
28
- ngAfterViewInit(): void;
29
- ngOnDestroy(): void;
30
- ngAfterContentChecked(): void;
31
- registerEvents: (eventList: string[]) => void;
32
- addTwoWay: (propList: string[]) => void;
33
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Sidebar } from '@syncfusion/ej2-navigations';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the Essential JS 2 Angular Sidebar Component.
9
+ * ```html
10
+ * <ejs-sidebar></ejs-sidebar>
11
+ * ```
12
+ */
13
+ export declare class SidebarComponent extends Sidebar implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ containerContext: any;
19
+ tagObjects: any;
20
+ change: any;
21
+ close: any;
22
+ created: any;
23
+ destroyed: any;
24
+ open: any;
25
+ isOpenChange: any;
26
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
27
+ ngOnInit(): void;
28
+ ngAfterViewInit(): void;
29
+ ngOnDestroy(): void;
30
+ ngAfterContentChecked(): void;
31
+ registerEvents: (eventList: string[]) => void;
32
+ addTwoWay: (propList: string[]) => void;
33
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Sidebar component.
3
- */
4
- export declare class SidebarModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Sidebar component.
3
+ */
4
+ export declare class SidebarModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Stepper component with providers.
3
- */
4
- export declare class StepperAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Stepper component with providers.
3
+ */
4
+ export declare class StepperAllModule {
5
+ }