@syncfusion/ej2-angular-ribbon 30.1.37-ngcc → 30.1.37
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/CHANGELOG.md +93 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +10 -0
- package/esm2020/src/ribbon/collections.directive.mjs +50 -0
- package/esm2020/src/ribbon/contextualtabs.directive.mjs +62 -0
- package/esm2020/src/ribbon/groups.directive.mjs +50 -0
- package/esm2020/src/ribbon/items.directive.mjs +54 -0
- package/esm2020/src/ribbon/ribbon-all.module.mjs +62 -0
- package/esm2020/src/ribbon/ribbon.component.mjs +160 -0
- package/esm2020/src/ribbon/ribbon.module.mjs +70 -0
- package/esm2020/src/ribbon/tabs.directive.mjs +50 -0
- package/esm2020/syncfusion-ej2-angular-ribbon.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-ribbon.mjs +528 -0
- package/fesm2015/syncfusion-ej2-angular-ribbon.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-ribbon.mjs +528 -0
- package/fesm2020/syncfusion-ej2-angular-ribbon.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +9 -9
- package/src/ribbon/collections.directive.d.ts +37 -32
- package/src/ribbon/contextualtabs.directive.d.ts +49 -44
- package/src/ribbon/groups.directive.d.ts +97 -92
- package/src/ribbon/items.directive.d.ts +119 -114
- package/src/ribbon/ribbon-all.module.d.ts +24 -18
- package/src/ribbon/ribbon.component.d.ts +54 -51
- package/src/ribbon/ribbon.module.d.ts +16 -5
- package/src/ribbon/tabs.directive.d.ts +47 -42
- package/syncfusion-ej2-angular-ribbon.d.ts +5 -0
- package/@syncfusion/ej2-angular-ribbon.es5.js +0 -615
- package/@syncfusion/ej2-angular-ribbon.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-ribbon.js +0 -571
- package/@syncfusion/ej2-angular-ribbon.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-ribbon.umd.js +0 -806
- package/dist/ej2-angular-ribbon.umd.js.map +0 -1
- package/dist/ej2-angular-ribbon.umd.min.js +0 -11
- package/dist/ej2-angular-ribbon.umd.min.js.map +0 -1
- package/ej2-angular-ribbon.d.ts +0 -5
- 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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
* @
|
|
10
|
-
* @
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
* @
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
*
|
|
22
|
-
* @
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
*
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
*
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
*
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
*
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
*
|
|
58
|
-
* @
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
*
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
*
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
*
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
*
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
*
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
*
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
*
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
* @
|
|
101
|
-
* @
|
|
102
|
-
* @
|
|
103
|
-
* @
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
* @
|
|
39
|
-
* @
|
|
40
|
-
* @
|
|
41
|
-
* @
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
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
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
*
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
* @
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
*
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
*
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
*
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
+
}
|