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

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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-angular-ribbon",
3
- "version": "30.1.41-ngcc",
3
+ "version": "30.1.41",
4
4
  "description": "Essential JS 2 Component for Angular",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -10,7 +10,6 @@
10
10
  "@syncfusion/ej2-angular-base": "~30.1.37",
11
11
  "@syncfusion/ej2-ribbon": "30.1.41"
12
12
  },
13
- "devDependencies": {},
14
13
  "keywords": [
15
14
  "angular",
16
15
  "ng",
@@ -22,10 +21,24 @@
22
21
  "url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
23
22
  },
24
23
  "sideEffects": false,
25
- "main": "dist/ej2-angular-ribbon.umd.js",
26
- "module": "@syncfusion/ej2-angular-ribbon.es5.js",
27
- "es2015": "@syncfusion/ej2-angular-ribbon.js",
28
- "typings": "ej2-angular-ribbon.d.ts",
29
- "metadata": "ej2-angular-ribbon.metadata.json",
24
+ "module": "fesm2015/syncfusion-ej2-angular-ribbon.mjs",
25
+ "es2020": "fesm2020/syncfusion-ej2-angular-ribbon.mjs",
26
+ "esm2020": "esm2020/syncfusion-ej2-angular-ribbon.mjs",
27
+ "fesm2020": "fesm2020/syncfusion-ej2-angular-ribbon.mjs",
28
+ "fesm2015": "fesm2015/syncfusion-ej2-angular-ribbon.mjs",
29
+ "typings": "syncfusion-ej2-angular-ribbon.d.ts",
30
+ "exports": {
31
+ "./package.json": {
32
+ "default": "./package.json"
33
+ },
34
+ ".": {
35
+ "types": "./syncfusion-ej2-angular-ribbon.d.ts",
36
+ "esm2020": "./esm2020/syncfusion-ej2-angular-ribbon.mjs",
37
+ "es2020": "./fesm2020/syncfusion-ej2-angular-ribbon.mjs",
38
+ "es2015": "./fesm2015/syncfusion-ej2-angular-ribbon.mjs",
39
+ "node": "./fesm2015/syncfusion-ej2-angular-ribbon.mjs",
40
+ "default": "./fesm2020/syncfusion-ej2-angular-ribbon.mjs"
41
+ }
42
+ },
30
43
  "homepage": "https://www.syncfusion.com/angular-components"
31
44
  }
package/public_api.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './src/index';
1
+ export * from './src/index';
package/src/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- export { RibbonItemDirective, RibbonItemsDirective } from './ribbon/items.directive';
2
- export { RibbonCollectionDirective, RibbonCollectionsDirective } from './ribbon/collections.directive';
3
- export { RibbonGroupDirective, RibbonGroupsDirective } from './ribbon/groups.directive';
4
- export { RibbonTabDirective, RibbonTabsDirective } from './ribbon/tabs.directive';
5
- export { RibbonContextualTabDirective, RibbonContextualTabsDirective } from './ribbon/contextualtabs.directive';
6
- export { RibbonComponent } from './ribbon/ribbon.component';
7
- export { RibbonModule } from './ribbon/ribbon.module';
8
- export { RibbonAllModule, RibbonButtonService, RibbonDropDownService, RibbonSplitButtonService, RibbonCheckBoxService, RibbonColorPickerService, RibbonComboBoxService, RibbonGroupButtonService, RibbonFileMenuService, RibbonBackstageService, RibbonKeyTipService, RibbonContextualTabService, RibbonGalleryService } from './ribbon/ribbon-all.module';
9
- export * from '@syncfusion/ej2-ribbon';
1
+ export { RibbonItemDirective, RibbonItemsDirective } from './ribbon/items.directive';
2
+ export { RibbonCollectionDirective, RibbonCollectionsDirective } from './ribbon/collections.directive';
3
+ export { RibbonGroupDirective, RibbonGroupsDirective } from './ribbon/groups.directive';
4
+ export { RibbonTabDirective, RibbonTabsDirective } from './ribbon/tabs.directive';
5
+ export { RibbonContextualTabDirective, RibbonContextualTabsDirective } from './ribbon/contextualtabs.directive';
6
+ export { RibbonComponent } from './ribbon/ribbon.component';
7
+ export { RibbonModule } from './ribbon/ribbon.module';
8
+ export { RibbonAllModule, RibbonButtonService, RibbonDropDownService, RibbonSplitButtonService, RibbonCheckBoxService, RibbonColorPickerService, RibbonComboBoxService, RibbonGroupButtonService, RibbonFileMenuService, RibbonBackstageService, RibbonKeyTipService, RibbonContextualTabService, RibbonGalleryService } from './ribbon/ribbon-all.module';
9
+ export * from '@syncfusion/ej2-ribbon';
@@ -1,32 +1,37 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class RibbonCollectionDirective extends ComplexBase<RibbonCollectionDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- childItems: any;
7
- tags: string[];
8
- /**
9
- * Defines one or more CSS classes to customize the appearance of collection.
10
- * @default ''
11
- */
12
- cssClass: any;
13
- /**
14
- * Defines a unique identifier for the collection.
15
- * @default ''
16
- */
17
- id: any;
18
- /**
19
- * Defines the list of ribbon items.
20
- * @default []
21
- * @asptype List<RibbonItem>
22
- */
23
- items: any;
24
- constructor(viewContainerRef: ViewContainerRef);
25
- }
26
- /**
27
- * RibbonCollection Array Directive
28
- * @private
29
- */
30
- export declare class RibbonCollectionsDirective extends ArrayBase<RibbonCollectionsDirective> {
31
- constructor();
32
- }
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 RibbonCollectionDirective extends ComplexBase<RibbonCollectionDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ childItems: any;
8
+ tags: string[];
9
+ /**
10
+ * Defines one or more CSS classes to customize the appearance of collection.
11
+ * @default ''
12
+ */
13
+ cssClass: any;
14
+ /**
15
+ * Defines a unique identifier for the collection.
16
+ * @default ''
17
+ */
18
+ id: any;
19
+ /**
20
+ * Defines the list of ribbon items.
21
+ * @default []
22
+ * @asptype List<RibbonItem>
23
+ */
24
+ items: any;
25
+ constructor(viewContainerRef: ViewContainerRef);
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonCollectionDirective, never>;
27
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonCollectionDirective, "e-ribbon-collection", never, { "cssClass": "cssClass"; "id": "id"; "items": "items"; }, {}, ["childItems"]>;
28
+ }
29
+ /**
30
+ * RibbonCollection Array Directive
31
+ * @private
32
+ */
33
+ export declare class RibbonCollectionsDirective extends ArrayBase<RibbonCollectionsDirective> {
34
+ constructor();
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<RibbonCollectionsDirective, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonCollectionsDirective, "e-ribbon-collections", never, {}, {}, ["children"]>;
37
+ }
@@ -1,44 +1,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
+ 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,92 +1,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
+ 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
+ }