@syncfusion/ej2-angular-ribbon 24.2.8-ngcc → 25.1.35-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.
@@ -8,6 +8,9 @@ export declare const RibbonComboBoxService: ValueProvider;
8
8
  export declare const RibbonGroupButtonService: ValueProvider;
9
9
  export declare const RibbonFileMenuService: ValueProvider;
10
10
  export declare const RibbonBackstageService: ValueProvider;
11
+ export declare const RibbonKeyTipService: ValueProvider;
12
+ export declare const RibbonContextualTabService: ValueProvider;
13
+ export declare const RibbonGalleryService: ValueProvider;
11
14
  /**
12
15
  * NgModule definition for the Ribbon component with providers.
13
16
  */
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
2
2
  import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { Ribbon } from '@syncfusion/ej2-ribbon';
4
4
  import { RibbonTabsDirective } from './tabs.directive';
5
+ import { RibbonContextualTabsDirective } from './contextualtabs.directive';
5
6
  export declare const inputs: string[];
6
7
  export declare const outputs: string[];
7
8
  export declare const twoWays: string[];
@@ -27,6 +28,7 @@ export declare class RibbonComponent extends Ribbon implements IComponentBase {
27
28
  tabSelected: any;
28
29
  tabSelecting: any;
29
30
  childTabs: QueryList<RibbonTabsDirective>;
31
+ childContextualTabs: QueryList<RibbonContextualTabsDirective>;
30
32
  tags: string[];
31
33
  /**
32
34
  * Specifies the template content for the help pane of ribbon.
@@ -1,17 +1,5 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-ribbon-tab` directive represent a tab of the Angular Ribbon.
5
- * It must be contained in a Ribbon component(`ejs-ribbon`).
6
- * ```html
7
- * <ejs-ribbon>
8
- * <e-ribbon-tabs>
9
- * <e-ribbon-tab></e-ribbon-tab>
10
- * <e-ribbon-tab></e-ribbon-tab>
11
- * </e-ribbon-tabs>
12
- * </ejs-ribbon>
13
- * ```
14
- */
15
3
  export declare class RibbonTabDirective extends ComplexBase<RibbonTabDirective> {
16
4
  private viewContainerRef;
17
5
  directivePropList: any;
@@ -38,6 +26,11 @@ export declare class RibbonTabDirective extends ComplexBase<RibbonTabDirective>
38
26
  * @default ''
39
27
  */
40
28
  id: any;
29
+ /**
30
+ * Specifies the keytip content.
31
+ * @default ''
32
+ */
33
+ keyTip: any;
41
34
  constructor(viewContainerRef: ViewContainerRef);
42
35
  }
43
36
  /**