@syncfusion/ej2-angular-ribbon 29.2.4-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.
- package/@syncfusion/ej2-angular-ribbon.es5.js +614 -614
- package/@syncfusion/ej2-angular-ribbon.js +545 -545
- package/{license → LICENSE} +10 -10
- package/dist/ej2-angular-ribbon.umd.js +605 -605
- package/dist/ej2-angular-ribbon.umd.min.js +1 -1
- package/ej2-angular-ribbon.d.ts +5 -5
- package/package.json +15 -46
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/index.d.ts +9 -9
- package/src/ribbon/collections.directive.d.ts +32 -32
- package/src/ribbon/contextualtabs.directive.d.ts +44 -44
- package/src/ribbon/groups.directive.d.ts +92 -92
- package/src/ribbon/items.directive.d.ts +114 -114
- package/src/ribbon/ribbon-all.module.d.ts +18 -18
- package/src/ribbon/ribbon.component.d.ts +51 -51
- package/src/ribbon/ribbon.module.d.ts +5 -5
- package/src/ribbon/tabs.directive.d.ts +42 -42
|
@@ -1,114 +1,114 @@
|
|
|
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
|
+
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,18 +1,18 @@
|
|
|
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
|
+
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,51 +1,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
|
-
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
|
+
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,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NgModule definition for the Ribbon component.
|
|
3
|
-
*/
|
|
4
|
-
export declare class RibbonModule {
|
|
5
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the Ribbon component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class RibbonModule {
|
|
5
|
+
}
|
|
@@ -1,42 +1,42 @@
|
|
|
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
|
+
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
|
+
}
|