@syncfusion/ej2-angular-ribbon 30.1.42-ngcc → 30.1.42

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 (39) hide show
  1. package/CHANGELOG.md +107 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +10 -0
  4. package/esm2020/src/ribbon/collections.directive.mjs +50 -0
  5. package/esm2020/src/ribbon/contextualtabs.directive.mjs +62 -0
  6. package/esm2020/src/ribbon/groups.directive.mjs +50 -0
  7. package/esm2020/src/ribbon/items.directive.mjs +54 -0
  8. package/esm2020/src/ribbon/ribbon-all.module.mjs +62 -0
  9. package/esm2020/src/ribbon/ribbon.component.mjs +160 -0
  10. package/esm2020/src/ribbon/ribbon.module.mjs +70 -0
  11. package/esm2020/src/ribbon/tabs.directive.mjs +50 -0
  12. package/esm2020/syncfusion-ej2-angular-ribbon.mjs +5 -0
  13. package/fesm2015/syncfusion-ej2-angular-ribbon.mjs +528 -0
  14. package/fesm2015/syncfusion-ej2-angular-ribbon.mjs.map +1 -0
  15. package/fesm2020/syncfusion-ej2-angular-ribbon.mjs +528 -0
  16. package/fesm2020/syncfusion-ej2-angular-ribbon.mjs.map +1 -0
  17. package/package.json +20 -7
  18. package/public_api.d.ts +1 -1
  19. package/src/index.d.ts +9 -9
  20. package/src/ribbon/collections.directive.d.ts +37 -32
  21. package/src/ribbon/contextualtabs.directive.d.ts +49 -44
  22. package/src/ribbon/groups.directive.d.ts +97 -92
  23. package/src/ribbon/items.directive.d.ts +119 -114
  24. package/src/ribbon/ribbon-all.module.d.ts +24 -18
  25. package/src/ribbon/ribbon.component.d.ts +54 -51
  26. package/src/ribbon/ribbon.module.d.ts +16 -5
  27. package/src/ribbon/tabs.directive.d.ts +47 -42
  28. package/syncfusion-ej2-angular-ribbon.d.ts +5 -0
  29. package/@syncfusion/ej2-angular-ribbon.es5.js +0 -615
  30. package/@syncfusion/ej2-angular-ribbon.es5.js.map +0 -1
  31. package/@syncfusion/ej2-angular-ribbon.js +0 -571
  32. package/@syncfusion/ej2-angular-ribbon.js.map +0 -1
  33. package/LICENSE +0 -10
  34. package/dist/ej2-angular-ribbon.umd.js +0 -806
  35. package/dist/ej2-angular-ribbon.umd.js.map +0 -1
  36. package/dist/ej2-angular-ribbon.umd.min.js +0 -11
  37. package/dist/ej2-angular-ribbon.umd.min.js.map +0 -1
  38. package/ej2-angular-ribbon.d.ts +0 -5
  39. package/ej2-angular-ribbon.metadata.json +0 -1
@@ -1,114 +1,119 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class RibbonItemDirective extends ComplexBase<RibbonItemDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- /**
7
- * Defines the type of control to be added as the Ribbon Item.
8
- * @isenumeration true
9
- * @default RibbonItemType.Button
10
- * @asptype RibbonItemType
11
- */
12
- type: any;
13
- /**
14
- * Defines the active size of the ribbon item.
15
- * @default 'Medium'
16
- * @aspnumberenum
17
- */
18
- activeSize: any;
19
- /**
20
- * Defines the sizes that are allowed for the ribbon item on ribbon resize.
21
- * @default null
22
- * @aspnumberenum
23
- */
24
- allowedSizes: any;
25
- /**
26
- * Defines the settings for the ribbon button.
27
- * @default {}
28
- */
29
- buttonSettings: any;
30
- /**
31
- * Defines the settings for the ribbon checkbox.
32
- * @default {}
33
- */
34
- checkBoxSettings: any;
35
- /**
36
- * Defines the settings for the ribbon color picker.
37
- * @default {}
38
- */
39
- colorPickerSettings: any;
40
- /**
41
- * Defines the settings for the ribbon combobox.
42
- * @default {}
43
- */
44
- comboBoxSettings: any;
45
- /**
46
- * Defines one or more CSS classes to customize the appearance of item.
47
- * @default ''
48
- */
49
- cssClass: any;
50
- /**
51
- * Defines whether the item is disabled or not.
52
- * @default false
53
- */
54
- disabled: any;
55
- /**
56
- * Defines the display options for the ribbon item.
57
- * @default 'Auto'
58
- * @aspnumberenum
59
- */
60
- displayOptions: any;
61
- /**
62
- * Defines the settings for the ribbon dropdown button.
63
- * @default {}
64
- */
65
- dropDownSettings: any;
66
- /**
67
- * Defines the properties of the gallery view in Ribbon.
68
- * @default {}
69
- */
70
- gallerySettings: any;
71
- /**
72
- * Defines the properties for group button in Ribbon
73
- * @default {}
74
- */
75
- groupButtonSettings: any;
76
- /**
77
- * Defines a unique identifier for the item.
78
- * @default ''
79
- */
80
- id: any;
81
- /**
82
- * Defines the key tip text to be accessed for specified Ribbon item.
83
- * @default ''
84
- */
85
- keyTip: any;
86
- /**
87
- * Defines the settings for the tooltip of the item.
88
- * @default {}
89
- */
90
- ribbonTooltipSettings: any;
91
- /**
92
- * Defines the settings for the ribbon split button.
93
- * @default {}
94
- */
95
- splitButtonSettings: any;
96
- /**
97
- * Defines the template content for the ribbon item.
98
- * `ActiveSize` property is passed as string in template context.
99
- * @default ''
100
- * @angulartype string | object | HTMLElement
101
- * @reacttype string | function | JSX.Element | HTMLElement
102
- * @vuetype string | function | HTMLElement
103
- * @asptype string
104
- */
105
- itemTemplate: any;
106
- constructor(viewContainerRef: ViewContainerRef);
107
- }
108
- /**
109
- * RibbonItem Array Directive
110
- * @private
111
- */
112
- export declare class RibbonItemsDirective extends ArrayBase<RibbonItemsDirective> {
113
- constructor();
114
- }
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 RibbonItemDirective extends ComplexBase<RibbonItemDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ /**
8
+ * Defines the type of control to be added as the Ribbon Item.
9
+ * @isenumeration true
10
+ * @default RibbonItemType.Button
11
+ * @asptype RibbonItemType
12
+ */
13
+ type: any;
14
+ /**
15
+ * Defines the active size of the ribbon item.
16
+ * @default 'Medium'
17
+ * @aspnumberenum
18
+ */
19
+ activeSize: any;
20
+ /**
21
+ * Defines the sizes that are allowed for the ribbon item on ribbon resize.
22
+ * @default null
23
+ * @aspnumberenum
24
+ */
25
+ allowedSizes: any;
26
+ /**
27
+ * Defines the settings for the ribbon button.
28
+ * @default {}
29
+ */
30
+ buttonSettings: any;
31
+ /**
32
+ * Defines the settings for the ribbon checkbox.
33
+ * @default {}
34
+ */
35
+ checkBoxSettings: any;
36
+ /**
37
+ * Defines the settings for the ribbon color picker.
38
+ * @default {}
39
+ */
40
+ colorPickerSettings: any;
41
+ /**
42
+ * Defines the settings for the ribbon combobox.
43
+ * @default {}
44
+ */
45
+ comboBoxSettings: any;
46
+ /**
47
+ * Defines one or more CSS classes to customize the appearance of item.
48
+ * @default ''
49
+ */
50
+ cssClass: any;
51
+ /**
52
+ * Defines whether the item is disabled or not.
53
+ * @default false
54
+ */
55
+ disabled: any;
56
+ /**
57
+ * Defines the display options for the ribbon item.
58
+ * @default 'Auto'
59
+ * @aspnumberenum
60
+ */
61
+ displayOptions: any;
62
+ /**
63
+ * Defines the settings for the ribbon dropdown button.
64
+ * @default {}
65
+ */
66
+ dropDownSettings: any;
67
+ /**
68
+ * Defines the properties of the gallery view in Ribbon.
69
+ * @default {}
70
+ */
71
+ gallerySettings: any;
72
+ /**
73
+ * Defines the properties for group button in Ribbon
74
+ * @default {}
75
+ */
76
+ groupButtonSettings: any;
77
+ /**
78
+ * Defines a unique identifier for the item.
79
+ * @default ''
80
+ */
81
+ id: any;
82
+ /**
83
+ * Defines the key tip text to be accessed for specified Ribbon item.
84
+ * @default ''
85
+ */
86
+ keyTip: any;
87
+ /**
88
+ * Defines the settings for the tooltip of the item.
89
+ * @default {}
90
+ */
91
+ ribbonTooltipSettings: any;
92
+ /**
93
+ * Defines the settings for the ribbon split button.
94
+ * @default {}
95
+ */
96
+ splitButtonSettings: any;
97
+ /**
98
+ * Defines the template content for the ribbon item.
99
+ * `ActiveSize` property is passed as string in template context.
100
+ * @default ''
101
+ * @angulartype string | object | HTMLElement
102
+ * @reacttype string | function | JSX.Element | HTMLElement
103
+ * @vuetype string | function | HTMLElement
104
+ * @asptype string
105
+ */
106
+ itemTemplate: any;
107
+ constructor(viewContainerRef: ViewContainerRef);
108
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonItemDirective, never>;
109
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonItemDirective, "e-ribbon-item", never, { "activeSize": "activeSize"; "allowedSizes": "allowedSizes"; "buttonSettings": "buttonSettings"; "checkBoxSettings": "checkBoxSettings"; "colorPickerSettings": "colorPickerSettings"; "comboBoxSettings": "comboBoxSettings"; "cssClass": "cssClass"; "disabled": "disabled"; "displayOptions": "displayOptions"; "dropDownSettings": "dropDownSettings"; "gallerySettings": "gallerySettings"; "groupButtonSettings": "groupButtonSettings"; "id": "id"; "itemTemplate": "itemTemplate"; "keyTip": "keyTip"; "ribbonTooltipSettings": "ribbonTooltipSettings"; "splitButtonSettings": "splitButtonSettings"; "type": "type"; }, {}, ["itemTemplate"]>;
110
+ }
111
+ /**
112
+ * RibbonItem Array Directive
113
+ * @private
114
+ */
115
+ export declare class RibbonItemsDirective extends ArrayBase<RibbonItemsDirective> {
116
+ constructor();
117
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonItemsDirective, never>;
118
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonItemsDirective, "e-ribbon-items", never, {}, {}, ["children"]>;
119
+ }
@@ -1,18 +1,24 @@
1
- import { ValueProvider } from '@angular/core';
2
- export declare const RibbonButtonService: ValueProvider;
3
- export declare const RibbonDropDownService: ValueProvider;
4
- export declare const RibbonSplitButtonService: ValueProvider;
5
- export declare const RibbonCheckBoxService: ValueProvider;
6
- export declare const RibbonColorPickerService: ValueProvider;
7
- export declare const RibbonComboBoxService: ValueProvider;
8
- export declare const RibbonGroupButtonService: ValueProvider;
9
- export declare const RibbonFileMenuService: ValueProvider;
10
- export declare const RibbonBackstageService: ValueProvider;
11
- export declare const RibbonKeyTipService: ValueProvider;
12
- export declare const RibbonContextualTabService: ValueProvider;
13
- export declare const RibbonGalleryService: ValueProvider;
14
- /**
15
- * NgModule definition for the Ribbon component with providers.
16
- */
17
- export declare class RibbonAllModule {
18
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "./ribbon.module";
5
+ export declare const RibbonButtonService: ValueProvider;
6
+ export declare const RibbonDropDownService: ValueProvider;
7
+ export declare const RibbonSplitButtonService: ValueProvider;
8
+ export declare const RibbonCheckBoxService: ValueProvider;
9
+ export declare const RibbonColorPickerService: ValueProvider;
10
+ export declare const RibbonComboBoxService: ValueProvider;
11
+ export declare const RibbonGroupButtonService: ValueProvider;
12
+ export declare const RibbonFileMenuService: ValueProvider;
13
+ export declare const RibbonBackstageService: ValueProvider;
14
+ export declare const RibbonKeyTipService: ValueProvider;
15
+ export declare const RibbonContextualTabService: ValueProvider;
16
+ export declare const RibbonGalleryService: ValueProvider;
17
+ /**
18
+ * NgModule definition for the Ribbon component with providers.
19
+ */
20
+ export declare class RibbonAllModule {
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonAllModule, never>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RibbonAllModule, never, [typeof i1.CommonModule, typeof i2.RibbonModule], [typeof i2.RibbonModule]>;
23
+ static ɵinj: i0.ɵɵInjectorDeclaration<RibbonAllModule>;
24
+ }
@@ -1,51 +1,54 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Ribbon } from '@syncfusion/ej2-ribbon';
4
- import { RibbonTabsDirective } from './tabs.directive';
5
- import { RibbonContextualTabsDirective } from './contextualtabs.directive';
6
- export declare const inputs: string[];
7
- export declare const outputs: string[];
8
- export declare const twoWays: string[];
9
- /**
10
- * Represents the Essential JS 2 Angular Ribbon Component.
11
- * ```html
12
- * <ejs-ribbon></ejs-ribbon>
13
- * ```
14
- */
15
- export declare class RibbonComponent extends Ribbon implements IComponentBase {
16
- private ngEle;
17
- private srenderer;
18
- private viewContainerRef;
19
- private injector;
20
- containerContext: any;
21
- tagObjects: any;
22
- created: any;
23
- launcherIconClick: any;
24
- overflowPopupClose: any;
25
- overflowPopupOpen: any;
26
- ribbonCollapsing: any;
27
- ribbonExpanding: any;
28
- ribbonLayoutSwitched: any;
29
- tabSelected: any;
30
- tabSelecting: any;
31
- childTabs: QueryList<RibbonTabsDirective>;
32
- childContextualTabs: QueryList<RibbonContextualTabsDirective>;
33
- tags: string[];
34
- /**
35
- * Specifies the template content for the help pane of ribbon.
36
- * The help pane appears on the right side of the ribbon header row.
37
- * @default ''
38
- * @angulartype string | object | HTMLElement
39
- * @reacttype string | function | JSX.Element | HTMLElement
40
- * @vuetype string | function | HTMLElement
41
- * @asptype string
42
- */
43
- helpPaneTemplate: any;
44
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
45
- ngOnInit(): void;
46
- ngAfterViewInit(): void;
47
- ngOnDestroy(): void;
48
- ngAfterContentChecked(): void;
49
- registerEvents: (eventList: string[]) => void;
50
- addTwoWay: (propList: string[]) => void;
51
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Ribbon } from '@syncfusion/ej2-ribbon';
4
+ import { RibbonTabsDirective } from './tabs.directive';
5
+ import { RibbonContextualTabsDirective } from './contextualtabs.directive';
6
+ import * as i0 from "@angular/core";
7
+ export declare const inputs: string[];
8
+ export declare const outputs: string[];
9
+ export declare const twoWays: string[];
10
+ /**
11
+ * Represents the Essential JS 2 Angular Ribbon Component.
12
+ * ```html
13
+ * <ejs-ribbon></ejs-ribbon>
14
+ * ```
15
+ */
16
+ export declare class RibbonComponent extends Ribbon implements IComponentBase {
17
+ private ngEle;
18
+ private srenderer;
19
+ private viewContainerRef;
20
+ private injector;
21
+ containerContext: any;
22
+ tagObjects: any;
23
+ created: any;
24
+ launcherIconClick: any;
25
+ overflowPopupClose: any;
26
+ overflowPopupOpen: any;
27
+ ribbonCollapsing: any;
28
+ ribbonExpanding: any;
29
+ ribbonLayoutSwitched: any;
30
+ tabSelected: any;
31
+ tabSelecting: any;
32
+ childTabs: QueryList<RibbonTabsDirective>;
33
+ childContextualTabs: QueryList<RibbonContextualTabsDirective>;
34
+ tags: string[];
35
+ /**
36
+ * Specifies the template content for the help pane of ribbon.
37
+ * The help pane appears on the right side of the ribbon header row.
38
+ * @default ''
39
+ * @angulartype string | object | HTMLElement
40
+ * @reacttype string | function | JSX.Element | HTMLElement
41
+ * @vuetype string | function | HTMLElement
42
+ * @asptype string
43
+ */
44
+ helpPaneTemplate: any;
45
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
46
+ ngOnInit(): void;
47
+ ngAfterViewInit(): void;
48
+ ngOnDestroy(): void;
49
+ ngAfterContentChecked(): void;
50
+ registerEvents: (eventList: string[]) => void;
51
+ addTwoWay: (propList: string[]) => void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonComponent, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<RibbonComponent, "ejs-ribbon", never, { "activeLayout": "activeLayout"; "backStageMenu": "backStageMenu"; "contextualTabs": "contextualTabs"; "cssClass": "cssClass"; "enableKeyTips": "enableKeyTips"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "fileMenu": "fileMenu"; "helpPaneTemplate": "helpPaneTemplate"; "hideLayoutSwitcher": "hideLayoutSwitcher"; "isMinimized": "isMinimized"; "launcherIconCss": "launcherIconCss"; "layoutSwitcherKeyTip": "layoutSwitcherKeyTip"; "locale": "locale"; "selectedTab": "selectedTab"; "tabAnimation": "tabAnimation"; "tabs": "tabs"; "width": "width"; }, { "created": "created"; "launcherIconClick": "launcherIconClick"; "overflowPopupClose": "overflowPopupClose"; "overflowPopupOpen": "overflowPopupOpen"; "ribbonCollapsing": "ribbonCollapsing"; "ribbonExpanding": "ribbonExpanding"; "ribbonLayoutSwitched": "ribbonLayoutSwitched"; "tabSelected": "tabSelected"; "tabSelecting": "tabSelecting"; }, ["helpPaneTemplate", "childTabs", "childContextualTabs"], ["div"]>;
54
+ }
@@ -1,5 +1,16 @@
1
- /**
2
- * NgModule definition for the Ribbon component.
3
- */
4
- export declare class RibbonModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./ribbon.component";
3
+ import * as i2 from "./items.directive";
4
+ import * as i3 from "./collections.directive";
5
+ import * as i4 from "./groups.directive";
6
+ import * as i5 from "./tabs.directive";
7
+ import * as i6 from "./contextualtabs.directive";
8
+ import * as i7 from "@angular/common";
9
+ /**
10
+ * NgModule definition for the Ribbon component.
11
+ */
12
+ export declare class RibbonModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RibbonModule, [typeof i1.RibbonComponent, typeof i2.RibbonItemDirective, typeof i2.RibbonItemsDirective, typeof i3.RibbonCollectionDirective, typeof i3.RibbonCollectionsDirective, typeof i4.RibbonGroupDirective, typeof i4.RibbonGroupsDirective, typeof i5.RibbonTabDirective, typeof i5.RibbonTabsDirective, typeof i6.RibbonContextualTabDirective, typeof i6.RibbonContextualTabsDirective], [typeof i7.CommonModule], [typeof i1.RibbonComponent, typeof i2.RibbonItemDirective, typeof i2.RibbonItemsDirective, typeof i3.RibbonCollectionDirective, typeof i3.RibbonCollectionsDirective, typeof i4.RibbonGroupDirective, typeof i4.RibbonGroupsDirective, typeof i5.RibbonTabDirective, typeof i5.RibbonTabsDirective, typeof i6.RibbonContextualTabDirective, typeof i6.RibbonContextualTabsDirective]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<RibbonModule>;
16
+ }
@@ -1,42 +1,47 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class RibbonTabDirective extends ComplexBase<RibbonTabDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- childGroups: any;
7
- tags: string[];
8
- /**
9
- * Defines one or more CSS classes to customize the appearance of tab.
10
- * @default ''
11
- */
12
- cssClass: any;
13
- /**
14
- * Defines the list of ribbon groups.
15
- * @default []
16
- * @asptype List<RibbonGroup>
17
- */
18
- groups: any;
19
- /**
20
- * Defines the content of tab header.
21
- * @default ''
22
- */
23
- header: any;
24
- /**
25
- * Defines a unique identifier for the tab.
26
- * @default ''
27
- */
28
- id: any;
29
- /**
30
- * Specifies the keytip content.
31
- * @default ''
32
- */
33
- keyTip: any;
34
- constructor(viewContainerRef: ViewContainerRef);
35
- }
36
- /**
37
- * RibbonTab Array Directive
38
- * @private
39
- */
40
- export declare class RibbonTabsDirective extends ArrayBase<RibbonTabsDirective> {
41
- constructor();
42
- }
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 RibbonTabDirective extends ComplexBase<RibbonTabDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ childGroups: any;
8
+ tags: string[];
9
+ /**
10
+ * Defines one or more CSS classes to customize the appearance of tab.
11
+ * @default ''
12
+ */
13
+ cssClass: any;
14
+ /**
15
+ * Defines the list of ribbon groups.
16
+ * @default []
17
+ * @asptype List<RibbonGroup>
18
+ */
19
+ groups: any;
20
+ /**
21
+ * Defines the content of tab header.
22
+ * @default ''
23
+ */
24
+ header: any;
25
+ /**
26
+ * Defines a unique identifier for the tab.
27
+ * @default ''
28
+ */
29
+ id: any;
30
+ /**
31
+ * Specifies the keytip content.
32
+ * @default ''
33
+ */
34
+ keyTip: any;
35
+ constructor(viewContainerRef: ViewContainerRef);
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonTabDirective, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonTabDirective, "e-ribbon-tab", never, { "cssClass": "cssClass"; "groups": "groups"; "header": "header"; "id": "id"; "keyTip": "keyTip"; }, {}, ["childGroups"]>;
38
+ }
39
+ /**
40
+ * RibbonTab Array Directive
41
+ * @private
42
+ */
43
+ export declare class RibbonTabsDirective extends ArrayBase<RibbonTabsDirective> {
44
+ constructor();
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonTabsDirective, never>;
46
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonTabsDirective, "e-ribbon-tabs", never, {}, {}, ["children"]>;
47
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-ribbon" />
5
+ export * from './public_api';