@syncfusion/ej2-react-ribbon 22.2.11 → 23.1.36
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 +0 -15
- package/diConfig.json +46 -3
- package/dist/ej2-react-ribbon.min.js +2 -2
- package/dist/ej2-react-ribbon.umd.min.js +1 -1
- package/package.json +9 -9
- package/styles/bootstrap-dark.css +511 -8
- package/styles/bootstrap.css +511 -8
- package/styles/bootstrap4.css +511 -8
- package/styles/bootstrap5-dark.css +511 -8
- package/styles/bootstrap5.css +511 -8
- package/styles/fabric-dark.css +511 -8
- package/styles/fabric.css +511 -8
- package/styles/fluent-dark.css +511 -8
- package/styles/fluent.css +511 -8
- package/styles/highcontrast-light.css +511 -8
- package/styles/highcontrast.css +511 -8
- package/styles/material-dark.css +511 -9
- package/styles/material.css +512 -9
- package/styles/material3-dark.css +511 -9
- package/styles/material3.css +511 -9
- package/styles/ribbon/bootstrap-dark.css +511 -8
- package/styles/ribbon/bootstrap.css +511 -8
- package/styles/ribbon/bootstrap4.css +511 -8
- package/styles/ribbon/bootstrap5-dark.css +511 -8
- package/styles/ribbon/bootstrap5.css +511 -8
- package/styles/ribbon/fabric-dark.css +511 -8
- package/styles/ribbon/fabric.css +511 -8
- package/styles/ribbon/fluent-dark.css +511 -8
- package/styles/ribbon/fluent.css +511 -8
- package/styles/ribbon/highcontrast-light.css +511 -8
- package/styles/ribbon/highcontrast.css +511 -8
- package/styles/ribbon/material-dark.css +511 -9
- package/styles/ribbon/material.css +512 -9
- package/styles/ribbon/material3-dark.css +511 -9
- package/styles/ribbon/material3-dark.scss +1 -1
- package/styles/ribbon/material3.css +511 -9
- package/styles/ribbon/material3.scss +1 -1
- package/styles/ribbon/tailwind-dark.css +511 -9
- package/styles/ribbon/tailwind.css +511 -9
- package/styles/tailwind-dark.css +511 -9
- package/styles/tailwind.css +511 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,21 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### Ribbon
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `I491455` - Now, the script issue raised when enable/disable the Ribbon items is resolved.
|
|
10
|
-
|
|
11
|
-
## 22.1.39 (2023-07-18)
|
|
12
|
-
|
|
13
|
-
### Ribbon
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- Now, the issue with Ribbon tooltip position is resolved.
|
|
18
|
-
- Now, the issue with Ribbon tooltip cssClass not added properly is resolved.
|
|
19
|
-
|
|
20
5
|
## 21.1.35 (2023-03-23)
|
|
21
6
|
|
|
22
7
|
### Ribbon
|
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
|
-
"
|
|
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-
|
|
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": [
|