@syncfusion/ej2-react-ribbon 22.2.12 → 23.1.38

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 (41) hide show
  1. package/CHANGELOG.md +3 -14
  2. package/diConfig.json +46 -3
  3. package/dist/ej2-react-ribbon.min.js +3 -3
  4. package/dist/ej2-react-ribbon.umd.min.js +2 -2
  5. package/package.json +9 -9
  6. package/styles/bootstrap-dark.css +511 -8
  7. package/styles/bootstrap.css +511 -8
  8. package/styles/bootstrap4.css +511 -8
  9. package/styles/bootstrap5-dark.css +511 -8
  10. package/styles/bootstrap5.css +511 -8
  11. package/styles/fabric-dark.css +511 -8
  12. package/styles/fabric.css +511 -8
  13. package/styles/fluent-dark.css +511 -8
  14. package/styles/fluent.css +511 -8
  15. package/styles/highcontrast-light.css +511 -8
  16. package/styles/highcontrast.css +511 -8
  17. package/styles/material-dark.css +511 -9
  18. package/styles/material.css +512 -9
  19. package/styles/material3-dark.css +511 -9
  20. package/styles/material3.css +511 -9
  21. package/styles/ribbon/bootstrap-dark.css +511 -8
  22. package/styles/ribbon/bootstrap.css +511 -8
  23. package/styles/ribbon/bootstrap4.css +511 -8
  24. package/styles/ribbon/bootstrap5-dark.css +511 -8
  25. package/styles/ribbon/bootstrap5.css +511 -8
  26. package/styles/ribbon/fabric-dark.css +511 -8
  27. package/styles/ribbon/fabric.css +511 -8
  28. package/styles/ribbon/fluent-dark.css +511 -8
  29. package/styles/ribbon/fluent.css +511 -8
  30. package/styles/ribbon/highcontrast-light.css +511 -8
  31. package/styles/ribbon/highcontrast.css +511 -8
  32. package/styles/ribbon/material-dark.css +511 -9
  33. package/styles/ribbon/material.css +512 -9
  34. package/styles/ribbon/material3-dark.css +511 -9
  35. package/styles/ribbon/material3-dark.scss +1 -1
  36. package/styles/ribbon/material3.css +511 -9
  37. package/styles/ribbon/material3.scss +1 -1
  38. package/styles/ribbon/tailwind-dark.css +511 -9
  39. package/styles/ribbon/tailwind.css +511 -9
  40. package/styles/tailwind-dark.css +511 -9
  41. package/styles/tailwind.css +511 -9
package/CHANGELOG.md CHANGED
@@ -6,25 +6,14 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#I484502` - Now, you can control the visibility of the layout switcher button in the ribbon using the new `hideLayoutSwitcher` API.
10
- - `#I488294` - Now, the Ribbon Dropdown control has a `createPopupOnClick` property for adding or removing pop-up elements dynamically when the button is clicked.
9
+ `#I491455` - Now, the flickering issue raised when dynamically enable/disable the ribbon item is resolved.
11
10
 
12
- ## 22.2.11 (2023-08-29)
13
11
 
14
- ### Ribbon
15
-
16
- #### Bug Fixes
17
-
18
- - `I491455` - Now, the script issue raised when enable/disable the Ribbon items is resolved.
12
+ `#I499031` - Now, the issue with overflow popup items are arranged in reversal order when being resized is resolved.
19
13
 
20
- ## 22.1.39 (2023-07-18)
21
14
 
22
- ### Ribbon
23
-
24
- #### Bug Fixes
15
+ `#I491455` - Now, the flickering issue raised when dynamically enable/disable the ribbon item is resolved.
25
16
 
26
- - Now, the issue with Ribbon tooltip position is resolved.
27
- - Now, the issue with Ribbon tooltip cssClass not added properly is resolved.
28
17
 
29
18
  ## 21.1.35 (2023-03-23)
30
19
 
package/diConfig.json CHANGED
@@ -3,7 +3,8 @@
3
3
  "description": "Ribbon Component",
4
4
  "eventInterfaces": [
5
5
  "ExpandCollapseEventArgs", "LauncherClickEventArgs", "TabSelectedEventArgs", "TabSelectingEventArgs",
6
- "FileMenuBeforeOpenCloseEventArgs", "FileMenuEventArgs", "FileMenuOpenCloseEventArgs"
6
+ "FileMenuBeforeOpenCloseEventArgs", "FileMenuEventArgs", "FileMenuOpenCloseEventArgs", "BeforeClickGroupButtonEventArgs",
7
+ "ClickGroupButtonEventArgs", "BackstageItemClickArgs"
7
8
  ],
8
9
  "keywords": {
9
10
  "common": [ "ej2", "syncfusion", "ribbon", "ej2-ribbon", "ej2 ribbon" ],
@@ -56,7 +57,9 @@
56
57
  "RibbonCheckBox",
57
58
  "RibbonColorPicker",
58
59
  "RibbonComboBox",
59
- "RibbonFileMenu"
60
+ "RibbonGroupButton",
61
+ "RibbonFileMenu",
62
+ "RibbonBackstage"
60
63
  ],
61
64
  "diModuleFiles": [
62
65
  { "fileName": "ribbon-button" },
@@ -65,10 +68,22 @@
65
68
  { "fileName": "ribbon-combobox" },
66
69
  { "fileName": "ribbon-dropdown" },
67
70
  { "fileName": "ribbon-splitbutton" },
68
- { "fileName": "ribbon-filemenu" }
71
+ { "fileName": "ribbon-groupbutton" },
72
+ { "fileName": "ribbon-filemenu" },
73
+ { "fileName": "ribbon-backstage" }
69
74
  ],
70
75
  "complexDirective": [
71
76
  {
77
+ "propertyName": "backStageMenu",
78
+ "baseClass": "BackStageMenu",
79
+ "aspClassName":"BackStageMenu",
80
+ "SelectorName": "e-ribbon-backstagemenusettings",
81
+ "aspSelectorName": "e-ribbon-backstagemenusettings",
82
+ "templateProperties": [
83
+ "template",
84
+ "content"
85
+ ]
86
+ },{
72
87
  "propertyName": "fileMenu",
73
88
  "baseClass": "FileMenuSettings",
74
89
  "aspClassName":"FileMenuSettings",
@@ -84,6 +99,27 @@
84
99
  "aspClassName":"RibbonTooltipSettings",
85
100
  "SelectorName": "e-ribbon-tooltipsettings",
86
101
  "aspSelectorName": "e-ribbon-tooltipsettings"
102
+ },
103
+ {
104
+ "propertyName": "items",
105
+ "baseClass": "RibbonGroupButtonItem",
106
+ "aspClassName":"RibbonGroupButtonItem",
107
+ "SelectorName": "e-ribbon-groupbutton-item",
108
+ "aspSelectorName": "e-ribbon-groupbutton-item"
109
+ },
110
+ {
111
+ "propertyName": "items",
112
+ "baseClass": "BackstageItem",
113
+ "aspClassName":"BackstageItem",
114
+ "SelectorName": "e-ribbon-backstage-item",
115
+ "aspSelectorName": "e-ribbon-backstage-item"
116
+ },
117
+ {
118
+ "propertyName": "backButton",
119
+ "baseClass": "BackstageBackButton",
120
+ "aspClassName":"BackstageBackButton",
121
+ "SelectorName": "e-ribbon-backstage-back-button",
122
+ "aspSelectorName": "e-ribbon-backstage-back-button"
87
123
  }
88
124
  ],
89
125
  "tagDirective": [{
@@ -349,6 +385,13 @@
349
385
  "aspClassName":"RibbonColorPickerSettings",
350
386
  "SelectorName": "e-ribbon-colorpickersettings",
351
387
  "aspSelectorName": "e-ribbon-colorpickersettings"
388
+ },
389
+ {
390
+ "propertyName": "groupButtonSettings",
391
+ "baseClass": "RibbonGroupButtonSettings",
392
+ "aspClassName":"RibbonGroupButtonSettings",
393
+ "SelectorName": "e-ribbon-groupbuttonsettings",
394
+ "aspSelectorName": "e-ribbon-groupbuttonsettings"
352
395
  }
353
396
  ],
354
397
  "comment": [