@syncfusion/ej2-angular-ribbon 30.1.39-ngcc → 30.1.41-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 (42) hide show
  1. package/@syncfusion/ej2-angular-ribbon.es5.js +615 -0
  2. package/@syncfusion/ej2-angular-ribbon.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-ribbon.js +571 -0
  4. package/@syncfusion/ej2-angular-ribbon.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-ribbon.umd.js +806 -0
  7. package/dist/ej2-angular-ribbon.umd.js.map +1 -0
  8. package/dist/ej2-angular-ribbon.umd.min.js +11 -0
  9. package/dist/ej2-angular-ribbon.umd.min.js.map +1 -0
  10. package/ej2-angular-ribbon.d.ts +5 -0
  11. package/ej2-angular-ribbon.metadata.json +1 -0
  12. package/package.json +8 -21
  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 +2 -2
  17. package/src/index.d.ts +9 -9
  18. package/src/ribbon/collections.directive.d.ts +32 -37
  19. package/src/ribbon/contextualtabs.directive.d.ts +44 -49
  20. package/src/ribbon/groups.directive.d.ts +92 -97
  21. package/src/ribbon/items.directive.d.ts +114 -119
  22. package/src/ribbon/ribbon-all.module.d.ts +18 -24
  23. package/src/ribbon/ribbon.component.d.ts +51 -54
  24. package/src/ribbon/ribbon.module.d.ts +5 -16
  25. package/src/ribbon/tabs.directive.d.ts +42 -47
  26. package/CHANGELOG.md +0 -93
  27. package/esm2020/public_api.mjs +0 -2
  28. package/esm2020/src/index.mjs +0 -10
  29. package/esm2020/src/ribbon/collections.directive.mjs +0 -50
  30. package/esm2020/src/ribbon/contextualtabs.directive.mjs +0 -62
  31. package/esm2020/src/ribbon/groups.directive.mjs +0 -50
  32. package/esm2020/src/ribbon/items.directive.mjs +0 -54
  33. package/esm2020/src/ribbon/ribbon-all.module.mjs +0 -62
  34. package/esm2020/src/ribbon/ribbon.component.mjs +0 -160
  35. package/esm2020/src/ribbon/ribbon.module.mjs +0 -70
  36. package/esm2020/src/ribbon/tabs.directive.mjs +0 -50
  37. package/esm2020/syncfusion-ej2-angular-ribbon.mjs +0 -5
  38. package/fesm2015/syncfusion-ej2-angular-ribbon.mjs +0 -528
  39. package/fesm2015/syncfusion-ej2-angular-ribbon.mjs.map +0 -1
  40. package/fesm2020/syncfusion-ej2-angular-ribbon.mjs +0 -528
  41. package/fesm2020/syncfusion-ej2-angular-ribbon.mjs.map +0 -1
  42. package/syncfusion-ej2-angular-ribbon.d.ts +0 -5
@@ -1,49 +1,44 @@
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-ribbon-contextual-tab` directive represent a contextual tab of the Angular Ribbon.
6
- * It must be contained in a Ribbon component(`ejs-ribbon`).
7
- * ```html
8
- * <ejs-ribbon>
9
- * <e-ribbon-contextual-tabs>
10
- * <e-ribbon-contextual-tab>
11
- * </e-ribbon-contextual-tab>
12
- * </e-ribbon-contextual-tabs>
13
- * </ejs-ribbon>
14
- * ```
15
- */
16
- export declare class RibbonContextualTabDirective extends ComplexBase<RibbonContextualTabDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- childTabs: any;
20
- tags: string[];
21
- /**
22
- * Specifies whether the contextual tab is selected.
23
- * @default false
24
- */
25
- isSelected: any;
26
- /**
27
- * Defines the tab groups to be rendered in ribbon.
28
- * @default []
29
- * @asptype List<RibbonTab>
30
- */
31
- tabs: any;
32
- /**
33
- * Specifies whether the contextual tab is visible.
34
- * @default false
35
- */
36
- visible: any;
37
- constructor(viewContainerRef: ViewContainerRef);
38
- static ɵfac: i0.ɵɵFactoryDeclaration<RibbonContextualTabDirective, never>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonContextualTabDirective, "e-ribbon-contextual-tab", never, { "isSelected": "isSelected"; "tabs": "tabs"; "visible": "visible"; }, {}, ["childTabs"]>;
40
- }
41
- /**
42
- * RibbonContextualTab Array Directive
43
- * @private
44
- */
45
- export declare class RibbonContextualTabsDirective extends ArrayBase<RibbonContextualTabsDirective> {
46
- constructor();
47
- static ɵfac: i0.ɵɵFactoryDeclaration<RibbonContextualTabsDirective, never>;
48
- static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonContextualTabsDirective, "e-ribbon-contextual-tabs", never, {}, {}, ["children"]>;
49
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-ribbon-contextual-tab` directive represent a contextual tab of the Angular Ribbon.
5
+ * It must be contained in a Ribbon component(`ejs-ribbon`).
6
+ * ```html
7
+ * <ejs-ribbon>
8
+ * <e-ribbon-contextual-tabs>
9
+ * <e-ribbon-contextual-tab>
10
+ * </e-ribbon-contextual-tab>
11
+ * </e-ribbon-contextual-tabs>
12
+ * </ejs-ribbon>
13
+ * ```
14
+ */
15
+ export declare class RibbonContextualTabDirective extends ComplexBase<RibbonContextualTabDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ childTabs: any;
19
+ tags: string[];
20
+ /**
21
+ * Specifies whether the contextual tab is selected.
22
+ * @default false
23
+ */
24
+ isSelected: any;
25
+ /**
26
+ * Defines the tab groups to be rendered in ribbon.
27
+ * @default []
28
+ * @asptype List<RibbonTab>
29
+ */
30
+ tabs: any;
31
+ /**
32
+ * Specifies whether the contextual tab is visible.
33
+ * @default false
34
+ */
35
+ visible: any;
36
+ constructor(viewContainerRef: ViewContainerRef);
37
+ }
38
+ /**
39
+ * RibbonContextualTab Array Directive
40
+ * @private
41
+ */
42
+ export declare class RibbonContextualTabsDirective extends ArrayBase<RibbonContextualTabsDirective> {
43
+ constructor();
44
+ }
@@ -1,97 +1,92 @@
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 RibbonGroupDirective extends ComplexBase<RibbonGroupDirective> {
5
- private viewContainerRef;
6
- directivePropList: any;
7
- childCollections: any;
8
- tags: string[];
9
- /**
10
- * Defines the list of ribbon collections.
11
- * @default []
12
- * @asptype List<RibbonCollection>
13
- */
14
- collections: any;
15
- /**
16
- * Defines one or more CSS classes to customize the appearance of group.
17
- * @default ''
18
- */
19
- cssClass: any;
20
- /**
21
- * Defines whether to add a separate popup for the overflow items in the group.
22
- * If it is set to false, the overflow items will be shown in the common overflow popup present at the right end of the tab content.
23
- * @default false
24
- */
25
- enableGroupOverflow: any;
26
- /**
27
- * Defines the CSS class for the icons to be shown in the group overflow dropdown button in classic mode.
28
- * During overflow, the entire group will be shown in a popup of a dropdown button which appears in the place of the group in ribbon tab.
29
- * @default ''
30
- */
31
- groupIconCss: any;
32
- /**
33
- * Defines the content of group header.
34
- * @default ''
35
- */
36
- header: any;
37
- /**
38
- * Defines a unique identifier for the group.
39
- * @default ''
40
- */
41
- id: any;
42
- /**
43
- * Defines whether the group is in collapsed state or not during classic mode.
44
- * @default false
45
- */
46
- isCollapsed: any;
47
- /**
48
- * Defines whether the group can be collapsed on resize during classic mode.
49
- * @default true
50
- */
51
- isCollapsible: any;
52
- /**
53
- * Specifies the keytip content.
54
- * @default ''
55
- */
56
- keyTip: any;
57
- /**
58
- * Specifies the keytip content for launcher icon.
59
- * @default ''
60
- */
61
- launcherIconKeyTip: any;
62
- /**
63
- * Defines whether to orientation in which the items of the group should be arranged.
64
- * @isenumeration true
65
- * @default ItemOrientation.Column
66
- * @asptype ItemOrientation
67
- */
68
- orientation: any;
69
- /**
70
- * Defines the header shown in overflow popup of Ribbon group.
71
- * @default ''
72
- */
73
- overflowHeader: any;
74
- /**
75
- * Defines the priority order at which the group should be collapsed or expanded.
76
- * For collapsing value is fetched in ascending order and for expanding value is fetched in descending order.
77
- * @default 0
78
- */
79
- priority: any;
80
- /**
81
- * Defines whether to show or hide the launcher icon for the group.
82
- * @default false
83
- */
84
- showLauncherIcon: any;
85
- constructor(viewContainerRef: ViewContainerRef);
86
- static ɵfac: i0.ɵɵFactoryDeclaration<RibbonGroupDirective, never>;
87
- static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonGroupDirective, "e-ribbon-group", never, { "collections": "collections"; "cssClass": "cssClass"; "enableGroupOverflow": "enableGroupOverflow"; "groupIconCss": "groupIconCss"; "header": "header"; "id": "id"; "isCollapsed": "isCollapsed"; "isCollapsible": "isCollapsible"; "keyTip": "keyTip"; "launcherIconKeyTip": "launcherIconKeyTip"; "orientation": "orientation"; "overflowHeader": "overflowHeader"; "priority": "priority"; "showLauncherIcon": "showLauncherIcon"; }, {}, ["childCollections"]>;
88
- }
89
- /**
90
- * RibbonGroup Array Directive
91
- * @private
92
- */
93
- export declare class RibbonGroupsDirective extends ArrayBase<RibbonGroupsDirective> {
94
- constructor();
95
- static ɵfac: i0.ɵɵFactoryDeclaration<RibbonGroupsDirective, never>;
96
- static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonGroupsDirective, "e-ribbon-groups", never, {}, {}, ["children"]>;
97
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ export declare class RibbonGroupDirective extends ComplexBase<RibbonGroupDirective> {
4
+ private viewContainerRef;
5
+ directivePropList: any;
6
+ childCollections: any;
7
+ tags: string[];
8
+ /**
9
+ * Defines the list of ribbon collections.
10
+ * @default []
11
+ * @asptype List<RibbonCollection>
12
+ */
13
+ collections: any;
14
+ /**
15
+ * Defines one or more CSS classes to customize the appearance of group.
16
+ * @default ''
17
+ */
18
+ cssClass: any;
19
+ /**
20
+ * Defines whether to add a separate popup for the overflow items in the group.
21
+ * If it is set to false, the overflow items will be shown in the common overflow popup present at the right end of the tab content.
22
+ * @default false
23
+ */
24
+ enableGroupOverflow: any;
25
+ /**
26
+ * Defines the CSS class for the icons to be shown in the group overflow dropdown button in classic mode.
27
+ * During overflow, the entire group will be shown in a popup of a dropdown button which appears in the place of the group in ribbon tab.
28
+ * @default ''
29
+ */
30
+ groupIconCss: any;
31
+ /**
32
+ * Defines the content of group header.
33
+ * @default ''
34
+ */
35
+ header: any;
36
+ /**
37
+ * Defines a unique identifier for the group.
38
+ * @default ''
39
+ */
40
+ id: any;
41
+ /**
42
+ * Defines whether the group is in collapsed state or not during classic mode.
43
+ * @default false
44
+ */
45
+ isCollapsed: any;
46
+ /**
47
+ * Defines whether the group can be collapsed on resize during classic mode.
48
+ * @default true
49
+ */
50
+ isCollapsible: any;
51
+ /**
52
+ * Specifies the keytip content.
53
+ * @default ''
54
+ */
55
+ keyTip: any;
56
+ /**
57
+ * Specifies the keytip content for launcher icon.
58
+ * @default ''
59
+ */
60
+ launcherIconKeyTip: any;
61
+ /**
62
+ * Defines whether to orientation in which the items of the group should be arranged.
63
+ * @isenumeration true
64
+ * @default ItemOrientation.Column
65
+ * @asptype ItemOrientation
66
+ */
67
+ orientation: any;
68
+ /**
69
+ * Defines the header shown in overflow popup of Ribbon group.
70
+ * @default ''
71
+ */
72
+ overflowHeader: any;
73
+ /**
74
+ * Defines the priority order at which the group should be collapsed or expanded.
75
+ * For collapsing value is fetched in ascending order and for expanding value is fetched in descending order.
76
+ * @default 0
77
+ */
78
+ priority: any;
79
+ /**
80
+ * Defines whether to show or hide the launcher icon for the group.
81
+ * @default false
82
+ */
83
+ showLauncherIcon: any;
84
+ constructor(viewContainerRef: ViewContainerRef);
85
+ }
86
+ /**
87
+ * RibbonGroup Array Directive
88
+ * @private
89
+ */
90
+ export declare class RibbonGroupsDirective extends ArrayBase<RibbonGroupsDirective> {
91
+ constructor();
92
+ }
@@ -1,119 +1,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
+ 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,24 +1,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
+ 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
+ }