@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,57 +1,57 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Stepper } from '@syncfusion/ej2-navigations';
4
- import { StepsDirective } from './steps.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 Stepper Component.
10
- * ```html
11
- * <nav ejs-stepper [steps]='stepItems'></nav>
12
- * ```
13
- */
14
- export declare class StepperComponent extends Stepper implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- containerContext: any;
20
- tagObjects: any;
21
- beforeStepRender: any;
22
- created: any;
23
- stepChanged: any;
24
- stepChanging: any;
25
- stepClick: any;
26
- activeStepChange: any;
27
- childSteps: QueryList<StepsDirective>;
28
- tags: string[];
29
- /**
30
- * Defines the template content for each step.
31
- *
32
- * {% codeBlock src='stepper/template/index.md' %}{% endcodeBlock %}
33
- *
34
- * @default ''
35
- * @angulartype string | object
36
- * @reacttype string | function | JSX.Element
37
- * @vuetype string | function
38
- * @asptype string
39
- */
40
- template: any;
41
- /**
42
- * Defines the template content for the tooltip.
43
- * @default ''
44
- * @angulartype string | object
45
- * @reacttype string | function | JSX.Element
46
- * @vuetype string | function
47
- * @asptype string
48
- */
49
- tooltipTemplate: any;
50
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
51
- ngOnInit(): void;
52
- ngAfterViewInit(): void;
53
- ngOnDestroy(): void;
54
- ngAfterContentChecked(): void;
55
- registerEvents: (eventList: string[]) => void;
56
- addTwoWay: (propList: string[]) => void;
57
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Stepper } from '@syncfusion/ej2-navigations';
4
+ import { StepsDirective } from './steps.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 Stepper Component.
10
+ * ```html
11
+ * <nav ejs-stepper [steps]='stepItems'></nav>
12
+ * ```
13
+ */
14
+ export declare class StepperComponent extends Stepper implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ containerContext: any;
20
+ tagObjects: any;
21
+ beforeStepRender: any;
22
+ created: any;
23
+ stepChanged: any;
24
+ stepChanging: any;
25
+ stepClick: any;
26
+ activeStepChange: any;
27
+ childSteps: QueryList<StepsDirective>;
28
+ tags: string[];
29
+ /**
30
+ * Defines the template content for each step.
31
+ *
32
+ * {% codeBlock src='stepper/template/index.md' %}{% endcodeBlock %}
33
+ *
34
+ * @default ''
35
+ * @angulartype string | object
36
+ * @reacttype string | function | JSX.Element
37
+ * @vuetype string | function
38
+ * @asptype string
39
+ */
40
+ template: any;
41
+ /**
42
+ * Defines the template content for the tooltip.
43
+ * @default ''
44
+ * @angulartype string | object
45
+ * @reacttype string | function | JSX.Element
46
+ * @vuetype string | function
47
+ * @asptype string
48
+ */
49
+ tooltipTemplate: any;
50
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
51
+ ngOnInit(): void;
52
+ ngAfterViewInit(): void;
53
+ ngOnDestroy(): void;
54
+ ngAfterContentChecked(): void;
55
+ registerEvents: (eventList: string[]) => void;
56
+ addTwoWay: (propList: string[]) => void;
57
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Stepper component.
3
- */
4
- export declare class StepperModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Stepper component.
3
+ */
4
+ export declare class StepperModule {
5
+ }
@@ -1,73 +1,73 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * 'e-step' directive represents a step of the Angular Stepper.
5
- * It must be contained in a Stepper component(`ejs-stepper`).
6
- * ```html
7
- * <ejs-stepper>
8
- * <e-steps>
9
- * <e-step [iconCss]='e-icons e-folder' [text]='Step 1' />
10
- * <e-step [iconCss]='e-icons e-folder' [text]='Step 2' />
11
- * </e-steps>
12
- * </ejs-stepper>
13
- * ```
14
- */
15
- export declare class StepDirective extends ComplexBase<StepDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Defines the CSS class to customize the step appearance.
20
- * @default ''
21
- */
22
- cssClass: any;
23
- /**
24
- * Defines whether a step is enabled or disabled.
25
- * @default false
26
- */
27
- disabled: any;
28
- /**
29
- * Defines the icon content of the step.
30
- * @default ''
31
- */
32
- iconCss: any;
33
- /**
34
- * Defines the state whether it is valid completion or not.
35
- * @asptype bool?
36
- * @default null
37
- */
38
- isValid: any;
39
- /**
40
- * Defines the label content of the step.
41
- * @default ''
42
- */
43
- label: any;
44
- /**
45
- * Defines whether the step is optionally to skip completion or not.
46
- * @default false
47
- */
48
- optional: any;
49
- /**
50
- * Defines the status of the step.
51
- * The possible values are
52
- * * NotStarted
53
- * * InProgress
54
- * * Completed
55
- * @isenumeration true
56
- * @default StepStatus.NotStarted
57
- * @asptype StepStatus
58
- */
59
- status: any;
60
- /**
61
- * Defines the text content of the step.
62
- * @default ''
63
- */
64
- text: any;
65
- constructor(viewContainerRef: ViewContainerRef);
66
- }
67
- /**
68
- * Step Array Directive
69
- * @private
70
- */
71
- export declare class StepsDirective extends ArrayBase<StepsDirective> {
72
- constructor();
73
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * 'e-step' directive represents a step of the Angular Stepper.
5
+ * It must be contained in a Stepper component(`ejs-stepper`).
6
+ * ```html
7
+ * <ejs-stepper>
8
+ * <e-steps>
9
+ * <e-step [iconCss]='e-icons e-folder' [text]='Step 1' />
10
+ * <e-step [iconCss]='e-icons e-folder' [text]='Step 2' />
11
+ * </e-steps>
12
+ * </ejs-stepper>
13
+ * ```
14
+ */
15
+ export declare class StepDirective extends ComplexBase<StepDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Defines the CSS class to customize the step appearance.
20
+ * @default ''
21
+ */
22
+ cssClass: any;
23
+ /**
24
+ * Defines whether a step is enabled or disabled.
25
+ * @default false
26
+ */
27
+ disabled: any;
28
+ /**
29
+ * Defines the icon content of the step.
30
+ * @default ''
31
+ */
32
+ iconCss: any;
33
+ /**
34
+ * Defines the state whether it is valid completion or not.
35
+ * @asptype bool?
36
+ * @default null
37
+ */
38
+ isValid: any;
39
+ /**
40
+ * Defines the label content of the step.
41
+ * @default ''
42
+ */
43
+ label: any;
44
+ /**
45
+ * Defines whether the step is optionally to skip completion or not.
46
+ * @default false
47
+ */
48
+ optional: any;
49
+ /**
50
+ * Defines the status of the step.
51
+ * The possible values are
52
+ * * NotStarted
53
+ * * InProgress
54
+ * * Completed
55
+ * @isenumeration true
56
+ * @default StepStatus.NotStarted
57
+ * @asptype StepStatus
58
+ */
59
+ status: any;
60
+ /**
61
+ * Defines the text content of the step.
62
+ * @default ''
63
+ */
64
+ text: any;
65
+ constructor(viewContainerRef: ViewContainerRef);
66
+ }
67
+ /**
68
+ * Step Array Directive
69
+ * @private
70
+ */
71
+ export declare class StepsDirective extends ArrayBase<StepsDirective> {
72
+ constructor();
73
+ }
@@ -1,77 +1,77 @@
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
+ /**
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,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Tab component with providers.
3
- */
4
- export declare class TabAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Tab component with providers.
3
+ */
4
+ export declare class TabAllModule {
5
+ }
@@ -1,41 +1,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
- 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
+ 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,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Tab component.
3
- */
4
- export declare class TabModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Tab component.
3
+ */
4
+ export declare class TabModule {
5
+ }