@syncfusion/ej2-angular-navigations 31.2.12-ngcc → 31.2.12

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 (104) hide show
  1. package/CHANGELOG.md +3152 -0
  2. package/README.md +11 -3
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
  5. package/esm2020/src/accordion/accordion.component.mjs +77 -0
  6. package/esm2020/src/accordion/accordion.module.mjs +34 -0
  7. package/esm2020/src/accordion/items.directive.mjs +72 -0
  8. package/esm2020/src/appbar/appbar-all.module.mjs +23 -0
  9. package/esm2020/src/appbar/appbar.component.mjs +59 -0
  10. package/esm2020/src/appbar/appbar.module.mjs +25 -0
  11. package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
  12. package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
  13. package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
  14. package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
  15. package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
  16. package/esm2020/src/carousel/carousel.component.mjs +95 -0
  17. package/esm2020/src/carousel/carousel.module.mjs +34 -0
  18. package/esm2020/src/carousel/items.directive.mjs +66 -0
  19. package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
  20. package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
  21. package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
  22. package/esm2020/src/index.mjs +42 -0
  23. package/esm2020/src/menu/items.directive.mjs +46 -0
  24. package/esm2020/src/menu/menu-all.module.mjs +23 -0
  25. package/esm2020/src/menu/menu.component.mjs +71 -0
  26. package/esm2020/src/menu/menu.module.mjs +34 -0
  27. package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
  28. package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
  29. package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
  30. package/esm2020/src/stepper/stepper-all.module.mjs +23 -0
  31. package/esm2020/src/stepper/stepper.component.mjs +77 -0
  32. package/esm2020/src/stepper/stepper.module.mjs +34 -0
  33. package/esm2020/src/stepper/steps.directive.mjs +58 -0
  34. package/esm2020/src/tab/items.directive.mjs +78 -0
  35. package/esm2020/src/tab/tab-all.module.mjs +23 -0
  36. package/esm2020/src/tab/tab.component.mjs +64 -0
  37. package/esm2020/src/tab/tab.module.mjs +34 -0
  38. package/esm2020/src/toolbar/items.directive.mjs +66 -0
  39. package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
  40. package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
  41. package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
  42. package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
  43. package/esm2020/src/treeview/treeview.component.mjs +66 -0
  44. package/esm2020/src/treeview/treeview.module.mjs +25 -0
  45. package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
  46. package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1615 -0
  47. package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  48. package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1615 -0
  49. package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  50. package/package.json +20 -7
  51. package/public_api.d.ts +1 -1
  52. package/src/accordion/accordion-all.module.d.ts +11 -5
  53. package/src/accordion/accordion.component.d.ts +57 -54
  54. package/src/accordion/accordion.module.d.ts +12 -5
  55. package/src/accordion/items.directive.d.ts +80 -75
  56. package/src/appbar/appbar-all.module.d.ts +11 -5
  57. package/src/appbar/appbar.component.d.ts +32 -29
  58. package/src/appbar/appbar.module.d.ts +11 -5
  59. package/src/breadcrumb/breadcrumb-all.module.d.ts +11 -5
  60. package/src/breadcrumb/breadcrumb.component.d.ts +49 -46
  61. package/src/breadcrumb/breadcrumb.module.d.ts +12 -5
  62. package/src/breadcrumb/items.directive.d.ts +56 -51
  63. package/src/carousel/carousel-all.module.d.ts +11 -5
  64. package/src/carousel/carousel.component.d.ts +81 -78
  65. package/src/carousel/carousel.module.d.ts +12 -5
  66. package/src/carousel/items.directive.d.ts +55 -50
  67. package/src/context-menu/contextmenu-all.module.d.ts +11 -5
  68. package/src/context-menu/contextmenu.component.d.ts +38 -35
  69. package/src/context-menu/contextmenu.module.d.ts +11 -5
  70. package/src/index.d.ts +41 -41
  71. package/src/menu/items.directive.d.ts +55 -50
  72. package/src/menu/menu-all.module.d.ts +11 -5
  73. package/src/menu/menu.component.d.ts +46 -43
  74. package/src/menu/menu.module.d.ts +12 -5
  75. package/src/sidebar/sidebar-all.module.d.ts +11 -5
  76. package/src/sidebar/sidebar.component.d.ts +36 -33
  77. package/src/sidebar/sidebar.module.d.ts +11 -5
  78. package/src/stepper/stepper-all.module.d.ts +11 -5
  79. package/src/stepper/stepper.component.d.ts +60 -57
  80. package/src/stepper/stepper.module.d.ts +12 -5
  81. package/src/stepper/steps.directive.d.ts +81 -76
  82. package/src/tab/items.directive.d.ts +82 -77
  83. package/src/tab/tab-all.module.d.ts +11 -5
  84. package/src/tab/tab.component.d.ts +44 -41
  85. package/src/tab/tab.module.d.ts +12 -5
  86. package/src/toolbar/items.directive.d.ts +147 -142
  87. package/src/toolbar/toolbar-all.module.d.ts +11 -5
  88. package/src/toolbar/toolbar.component.d.ts +38 -35
  89. package/src/toolbar/toolbar.module.d.ts +12 -5
  90. package/src/treeview/treeview-all.module.d.ts +11 -5
  91. package/src/treeview/treeview.component.d.ts +65 -62
  92. package/src/treeview/treeview.module.d.ts +11 -5
  93. package/syncfusion-ej2-angular-navigations.d.ts +5 -0
  94. package/@syncfusion/ej2-angular-navigations.es5.js +0 -2247
  95. package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
  96. package/@syncfusion/ej2-angular-navigations.js +0 -2070
  97. package/@syncfusion/ej2-angular-navigations.js.map +0 -1
  98. package/LICENSE +0 -10
  99. package/dist/ej2-angular-navigations.umd.js +0 -2356
  100. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  101. package/dist/ej2-angular-navigations.umd.min.js +0 -11
  102. package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
  103. package/ej2-angular-navigations.d.ts +0 -15
  104. package/ej2-angular-navigations.metadata.json +0 -1
@@ -1,77 +1,82 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * 'e-tabitem' directive represent a item of the Angular Tab.
5
- * It must be contained in a Tab component(`ejs-tab`).
6
- * ```html
7
- * <ejs-tab>
8
- * <e-tabitems>
9
- * <e-tabitem [header]='Header 1' [content]='Content 1'></e-tabitem>
10
- * <e-tabitem [header]='Header 2' [content]='Content 2'></e-tabitem>
11
- * <e-tabitems>
12
- * </ejs-tab>
13
- * ```
14
- */
15
- export declare class TabItemDirective extends ComplexBase<TabItemDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Sets the CSS classes to the Tab item to customize its styles.
20
- * @default ''
21
- */
22
- cssClass: any;
23
- /**
24
- * Sets true to disable user interactions of the Tab item.
25
- * @default false
26
- */
27
- disabled: any;
28
- /**
29
- * The object used for configuring the Tab item header properties.
30
- * @default {}
31
- */
32
- header: any;
33
- /**
34
- * Sets unique ID to Tab item.
35
- * @default null
36
- */
37
- id: any;
38
- /**
39
- * Specifies the tab order of the Tabs items. When positive values assigned, it allows to switch focus to the next/previous tabs items with Tab/ShiftTab keys.
40
- * By default, user can able to switch between items only via arrow keys.
41
- * If the value is set to 0 for all tabs items, then tab switches based on element order.
42
- * @default -1
43
- */
44
- tabIndex: any;
45
- /**
46
- * Sets false to hide the Tab item.
47
- * @default true
48
- */
49
- visible: any;
50
- /**
51
- * Specifies the content of Tab item, that is displayed when concern item header is selected.
52
- * @default ''
53
- * @angulartype string | object
54
- * @reacttype string | function | JSX.Element
55
- * @vuetype string | function
56
- * @asptype string
57
- */
58
- content: any;
59
- header_text: any;
60
- /**
61
- * Specifies the header text of Tab item.
62
- * @default null
63
- * @angulartype string | object
64
- * @reacttype string | function | JSX.Element
65
- * @vuetype string | function
66
- * @asptype string
67
- */
68
- headerTemplate: any;
69
- constructor(viewContainerRef: ViewContainerRef);
70
- }
71
- /**
72
- * TabItem Array Directive
73
- * @private
74
- */
75
- export declare class TabItemsDirective extends ArrayBase<TabItemsDirective> {
76
- constructor();
77
- }
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-tabitem' directive represent a item of the Angular Tab.
6
+ * It must be contained in a Tab component(`ejs-tab`).
7
+ * ```html
8
+ * <ejs-tab>
9
+ * <e-tabitems>
10
+ * <e-tabitem [header]='Header 1' [content]='Content 1'></e-tabitem>
11
+ * <e-tabitem [header]='Header 2' [content]='Content 2'></e-tabitem>
12
+ * <e-tabitems>
13
+ * </ejs-tab>
14
+ * ```
15
+ */
16
+ export declare class TabItemDirective extends ComplexBase<TabItemDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ /**
20
+ * Sets the CSS classes to the Tab item to customize its styles.
21
+ * @default ''
22
+ */
23
+ cssClass: any;
24
+ /**
25
+ * Sets true to disable user interactions of the Tab item.
26
+ * @default false
27
+ */
28
+ disabled: any;
29
+ /**
30
+ * The object used for configuring the Tab item header properties.
31
+ * @default {}
32
+ */
33
+ header: any;
34
+ /**
35
+ * Sets unique ID to Tab item.
36
+ * @default null
37
+ */
38
+ id: any;
39
+ /**
40
+ * Specifies the tab order of the Tabs items. When positive values assigned, it allows to switch focus to the next/previous tabs items with Tab/ShiftTab keys.
41
+ * By default, user can able to switch between items only via arrow keys.
42
+ * If the value is set to 0 for all tabs items, then tab switches based on element order.
43
+ * @default -1
44
+ */
45
+ tabIndex: any;
46
+ /**
47
+ * Sets false to hide the Tab item.
48
+ * @default true
49
+ */
50
+ visible: any;
51
+ /**
52
+ * Specifies the content of Tab item, that is displayed when concern item header is selected.
53
+ * @default ''
54
+ * @angulartype string | object
55
+ * @reacttype string | function | JSX.Element
56
+ * @vuetype string | function
57
+ * @asptype string
58
+ */
59
+ content: any;
60
+ header_text: any;
61
+ /**
62
+ * Specifies the header text of Tab item.
63
+ * @default null
64
+ * @angulartype string | object
65
+ * @reacttype string | function | JSX.Element
66
+ * @vuetype string | function
67
+ * @asptype string
68
+ */
69
+ headerTemplate: any;
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"]>;
73
+ }
74
+ /**
75
+ * TabItem Array Directive
76
+ * @private
77
+ */
78
+ export declare class TabItemsDirective extends ArrayBase<TabItemsDirective> {
79
+ constructor();
80
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabItemsDirective, never>;
81
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TabItemsDirective, "ejs-tab>e-tabitems", never, {}, {}, ["children"]>;
82
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the Tab component with providers.
3
- */
4
- export declare class TabAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./tab.module";
4
+ /**
5
+ * NgModule definition for the Tab component with providers.
6
+ */
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>;
11
+ }
@@ -1,41 +1,44 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Tab } from '@syncfusion/ej2-navigations';
4
- import { TabItemsDirective } 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 Angular Tab Component.
10
- * ```html
11
- * <ejs-tab></ejs-tab>
12
- * ```
13
- */
14
- export declare class TabComponent extends Tab implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- containerContext: any;
20
- tagObjects: any;
21
- added: any;
22
- adding: any;
23
- created: any;
24
- destroyed: any;
25
- dragged: any;
26
- dragging: any;
27
- onDragStart: any;
28
- removed: any;
29
- removing: any;
30
- selected: any;
31
- selecting: any;
32
- childItems: QueryList<TabItemsDirective>;
33
- tags: string[];
34
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
35
- ngOnInit(): void;
36
- ngAfterViewInit(): void;
37
- ngOnDestroy(): void;
38
- ngAfterContentChecked(): void;
39
- registerEvents: (eventList: string[]) => void;
40
- addTwoWay: (propList: string[]) => void;
41
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Tab } from '@syncfusion/ej2-navigations';
4
+ import { TabItemsDirective } 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 Tab Component.
11
+ * ```html
12
+ * <ejs-tab></ejs-tab>
13
+ * ```
14
+ */
15
+ export declare class TabComponent extends Tab implements IComponentBase {
16
+ private ngEle;
17
+ private srenderer;
18
+ private viewContainerRef;
19
+ private injector;
20
+ containerContext: any;
21
+ tagObjects: any;
22
+ added: any;
23
+ adding: any;
24
+ created: any;
25
+ destroyed: any;
26
+ dragged: any;
27
+ dragging: any;
28
+ onDragStart: any;
29
+ removed: any;
30
+ removing: any;
31
+ selected: any;
32
+ selecting: any;
33
+ childItems: QueryList<TabItemsDirective>;
34
+ tags: string[];
35
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
36
+ ngOnInit(): void;
37
+ ngAfterViewInit(): void;
38
+ ngOnDestroy(): void;
39
+ ngAfterContentChecked(): void;
40
+ registerEvents: (eventList: string[]) => void;
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"]>;
44
+ }
@@ -1,5 +1,12 @@
1
- /**
2
- * NgModule definition for the Tab component.
3
- */
4
- export declare class TabModule {
5
- }
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";
5
+ /**
6
+ * NgModule definition for the Tab component.
7
+ */
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>;
12
+ }
@@ -1,142 +1,147 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * 'e-item' directive represent a item of the Angular Toolbar.
5
- * It must be contained in a Toolbar component(`ejs-toolbar`).
6
- * ```html
7
- * <ejs-toolbar>
8
- * <e-items>
9
- * <e-item text='Cut'></e-item>
10
- * <e-item text='Copy'></e-item>
11
- * </e-items>
12
- * </ejs-toolbar>
13
- * ```
14
- */
15
- export declare class ItemDirective extends ComplexBase<ItemDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- click: any;
19
- /**
20
- * Specifies the types of command to be rendered in the Toolbar.
21
- * Supported types are:
22
- * * `Button`: Creates the Button control with its given properties like text, prefixIcon, etc.
23
- * * `Separator`: Adds a horizontal line that separates the Toolbar commands.
24
- * * `Input`: Creates an input element that is applicable to template rendering with Syncfusion controls like DropDownList,
25
- * AutoComplete, etc.
26
- * @default 'Button'
27
- */
28
- type: any;
29
- /**
30
- * Specifies the location for aligning Toolbar items on the Toolbar. Each command will be aligned according to the `align` property.
31
- * The possible values for this property as follows
32
- * * `Left`: To align commands to the left side of the Toolbar.
33
- * * `Center`: To align commands at the center of the Toolbar.
34
- * * `Right`: To align commands to the right side of the Toolbar.
35
- *
36
- * @default "Left"
37
- * @asppopulatedefaultvalue
38
- */
39
- align: any;
40
- /**
41
- * Defines single/multiple classes (separated by space) to be used for customization of commands.
42
- * @default ""
43
- */
44
- cssClass: any;
45
- /**
46
- * Specifies whether an item should be disabled or not.
47
- * @default false
48
- */
49
- disabled: any;
50
- /**
51
- * Defines htmlAttributes used to add custom attributes to Toolbar command.
52
- * Supports HTML attributes such as style, class, etc.
53
- * @default null
54
- */
55
- htmlAttributes: any;
56
- /**
57
- * Specifies the unique ID to be used with button or input element of Toolbar items.
58
- * @default ""
59
- */
60
- id: any;
61
- /**
62
- * Specifies the Toolbar command display area when an element's content is too large to fit available space.
63
- * This is applicable only to `popup` mode. The possible values for this property as follows
64
- * * `Show`: Always shows the item as the primary priority on the *Toolbar*.
65
- * * `Hide`: Always shows the item as the secondary priority on the *popup*.
66
- * * `None`: No priority for display, and as per normal order moves to popup when content exceeds.
67
- * @default 'None'
68
- */
69
- overflow: any;
70
- /**
71
- * Defines single/multiple classes separated by space used to specify an icon for the button.
72
- * The icon will be positioned before the text content if text is available, otherwise the icon alone will be rendered.
73
- * @default ""
74
- */
75
- prefixIcon: any;
76
- /**
77
- * Defines the priority of items to display it in popup always.
78
- * It allows to maintain toolbar item on popup always but it does not work for toolbar priority items.
79
- * @default false
80
- */
81
- showAlwaysInPopup: any;
82
- /**
83
- * Specifies where the button text will be displayed on *popup mode* of the Toolbar.
84
- * The possible values for this property as follows
85
- * * `Toolbar`: Text will be displayed on *Toolbar* only.
86
- * * `Overflow`: Text will be displayed only when content overflows to *popup*.
87
- * * `Both`: Text will be displayed on *popup* and *Toolbar*.
88
- * @default 'Both'
89
- */
90
- showTextOn: any;
91
- /**
92
- * Defines single/multiple classes separated by space used to specify an icon for the button.
93
- * The icon will be positioned after the text content if text is available.
94
- * @default ""
95
- */
96
- suffixIcon: any;
97
- /**
98
- * Specifies the tab order of the Toolbar items. When positive values assigned, it allows to switch focus to the next/previous toolbar items with Tab/ShiftTab keys.
99
- * By default, user can able to switch between items only via arrow keys.
100
- * If the value is set to 0 for all tool bar items, then tab switches based on element order.
101
- * @default -1
102
- */
103
- tabIndex: any;
104
- /**
105
- * Specifies the text to be displayed on the Toolbar button.
106
- * @default ""
107
- */
108
- text: any;
109
- /**
110
- * Specifies the text to be displayed on hovering the Toolbar button.
111
- * @default ""
112
- */
113
- tooltipText: any;
114
- /**
115
- * Specifies whether an item should be hidden or not.
116
- * @default true
117
- */
118
- visible: any;
119
- /**
120
- * Specifies the width of the Toolbar button commands.
121
- * @default 'auto'
122
- */
123
- width: any;
124
- /**
125
- * Specifies the HTML element/element ID as a string that can be added as a Toolbar command.
126
- *
127
- * @default ""
128
- * @angulartype string | object
129
- * @reacttype string | function | JSX.Element
130
- * @vuetype string | function
131
- * @asptype string
132
- */
133
- template: any;
134
- constructor(viewContainerRef: ViewContainerRef);
135
- }
136
- /**
137
- * Item Array Directive
138
- * @private
139
- */
140
- export declare class ItemsDirective extends ArrayBase<ItemsDirective> {
141
- constructor();
142
- }
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-item' directive represent a item of the Angular Toolbar.
6
+ * It must be contained in a Toolbar component(`ejs-toolbar`).
7
+ * ```html
8
+ * <ejs-toolbar>
9
+ * <e-items>
10
+ * <e-item text='Cut'></e-item>
11
+ * <e-item text='Copy'></e-item>
12
+ * </e-items>
13
+ * </ejs-toolbar>
14
+ * ```
15
+ */
16
+ export declare class ItemDirective extends ComplexBase<ItemDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ click: any;
20
+ /**
21
+ * Specifies the types of command to be rendered in the Toolbar.
22
+ * Supported types are:
23
+ * * `Button`: Creates the Button control with its given properties like text, prefixIcon, etc.
24
+ * * `Separator`: Adds a horizontal line that separates the Toolbar commands.
25
+ * * `Input`: Creates an input element that is applicable to template rendering with Syncfusion controls like DropDownList,
26
+ * AutoComplete, etc.
27
+ * @default 'Button'
28
+ */
29
+ type: any;
30
+ /**
31
+ * Specifies the location for aligning Toolbar items on the Toolbar. Each command will be aligned according to the `align` property.
32
+ * The possible values for this property as follows
33
+ * * `Left`: To align commands to the left side of the Toolbar.
34
+ * * `Center`: To align commands at the center of the Toolbar.
35
+ * * `Right`: To align commands to the right side of the Toolbar.
36
+ *
37
+ * @default "Left"
38
+ * @asppopulatedefaultvalue
39
+ */
40
+ align: any;
41
+ /**
42
+ * Defines single/multiple classes (separated by space) to be used for customization of commands.
43
+ * @default ""
44
+ */
45
+ cssClass: any;
46
+ /**
47
+ * Specifies whether an item should be disabled or not.
48
+ * @default false
49
+ */
50
+ disabled: any;
51
+ /**
52
+ * Defines htmlAttributes used to add custom attributes to Toolbar command.
53
+ * Supports HTML attributes such as style, class, etc.
54
+ * @default null
55
+ */
56
+ htmlAttributes: any;
57
+ /**
58
+ * Specifies the unique ID to be used with button or input element of Toolbar items.
59
+ * @default ""
60
+ */
61
+ id: any;
62
+ /**
63
+ * Specifies the Toolbar command display area when an element's content is too large to fit available space.
64
+ * This is applicable only to `popup` mode. The possible values for this property as follows
65
+ * * `Show`: Always shows the item as the primary priority on the *Toolbar*.
66
+ * * `Hide`: Always shows the item as the secondary priority on the *popup*.
67
+ * * `None`: No priority for display, and as per normal order moves to popup when content exceeds.
68
+ * @default 'None'
69
+ */
70
+ overflow: any;
71
+ /**
72
+ * Defines single/multiple classes separated by space used to specify an icon for the button.
73
+ * The icon will be positioned before the text content if text is available, otherwise the icon alone will be rendered.
74
+ * @default ""
75
+ */
76
+ prefixIcon: any;
77
+ /**
78
+ * Defines the priority of items to display it in popup always.
79
+ * It allows to maintain toolbar item on popup always but it does not work for toolbar priority items.
80
+ * @default false
81
+ */
82
+ showAlwaysInPopup: any;
83
+ /**
84
+ * Specifies where the button text will be displayed on *popup mode* of the Toolbar.
85
+ * The possible values for this property as follows
86
+ * * `Toolbar`: Text will be displayed on *Toolbar* only.
87
+ * * `Overflow`: Text will be displayed only when content overflows to *popup*.
88
+ * * `Both`: Text will be displayed on *popup* and *Toolbar*.
89
+ * @default 'Both'
90
+ */
91
+ showTextOn: any;
92
+ /**
93
+ * Defines single/multiple classes separated by space used to specify an icon for the button.
94
+ * The icon will be positioned after the text content if text is available.
95
+ * @default ""
96
+ */
97
+ suffixIcon: any;
98
+ /**
99
+ * Specifies the tab order of the Toolbar items. When positive values assigned, it allows to switch focus to the next/previous toolbar items with Tab/ShiftTab keys.
100
+ * By default, user can able to switch between items only via arrow keys.
101
+ * If the value is set to 0 for all tool bar items, then tab switches based on element order.
102
+ * @default -1
103
+ */
104
+ tabIndex: any;
105
+ /**
106
+ * Specifies the text to be displayed on the Toolbar button.
107
+ * @default ""
108
+ */
109
+ text: any;
110
+ /**
111
+ * Specifies the text to be displayed on hovering the Toolbar button.
112
+ * @default ""
113
+ */
114
+ tooltipText: any;
115
+ /**
116
+ * Specifies whether an item should be hidden or not.
117
+ * @default true
118
+ */
119
+ visible: any;
120
+ /**
121
+ * Specifies the width of the Toolbar button commands.
122
+ * @default 'auto'
123
+ */
124
+ width: any;
125
+ /**
126
+ * Specifies the HTML element/element ID as a string that can be added as a Toolbar command.
127
+ *
128
+ * @default ""
129
+ * @angulartype string | object
130
+ * @reacttype string | function | JSX.Element
131
+ * @vuetype string | function
132
+ * @asptype string
133
+ */
134
+ template: any;
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"]>;
138
+ }
139
+ /**
140
+ * Item Array Directive
141
+ * @private
142
+ */
143
+ export declare class ItemsDirective extends ArrayBase<ItemsDirective> {
144
+ constructor();
145
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemsDirective, never>;
146
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ItemsDirective, "ejs-toolbar>e-items", never, {}, {}, ["children"]>;
147
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the Toolbar component with providers.
3
- */
4
- export declare class ToolbarAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./toolbar.module";
4
+ /**
5
+ * NgModule definition for the Toolbar component with providers.
6
+ */
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>;
11
+ }