@syncfusion/ej2-ribbon 23.1.38 → 23.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.
- package/CHANGELOG.md +2 -0
- package/dist/ej2-ribbon.umd.min.js +2 -2
- package/dist/ej2-ribbon.umd.min.js.map +1 -1
- package/dist/es6/ej2-ribbon.es2015.js +2 -0
- package/dist/es6/ej2-ribbon.es2015.js.map +1 -1
- package/dist/es6/ej2-ribbon.es5.js +2 -0
- package/dist/es6/ej2-ribbon.es5.js.map +1 -1
- package/dist/global/ej2-ribbon.min.js +2 -2
- package/dist/global/ej2-ribbon.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/ribbon/base/ribbon.js +2 -0
- package/styles/bootstrap4.css +13 -2
- package/styles/ribbon/bootstrap4.css +13 -2
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 23.1.
|
|
3
|
+
* version : 23.1.41
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-ribbon@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-ribbon@23.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-ribbon@23.1.38",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-yLsbJy3HywWin8MhlGR3hdBZgKj/pWypSjlsO85FAwKXr9BDn2cqcL09sg9fjRJCeU74qKVUrUEmW0IV7FtIfA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-ribbon",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"/@syncfusion/ej2-react-ribbon",
|
|
24
24
|
"/@syncfusion/ej2-vue-ribbon"
|
|
25
25
|
],
|
|
26
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-ribbon/-/ej2-ribbon-23.1.
|
|
27
|
-
"_shasum": "
|
|
26
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-ribbon/-/ej2-ribbon-23.1.38.tgz",
|
|
27
|
+
"_shasum": "73bb115f3ae57e0e74c88386b15a976aeade5c86",
|
|
28
28
|
"_spec": "@syncfusion/ej2-ribbon@*",
|
|
29
29
|
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
|
|
30
30
|
"author": {
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
},
|
|
36
36
|
"bundleDependencies": false,
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@syncfusion/ej2-base": "~23.1.
|
|
39
|
-
"@syncfusion/ej2-buttons": "~23.1.
|
|
40
|
-
"@syncfusion/ej2-dropdowns": "~23.1.
|
|
38
|
+
"@syncfusion/ej2-base": "~23.1.41",
|
|
39
|
+
"@syncfusion/ej2-buttons": "~23.1.41",
|
|
40
|
+
"@syncfusion/ej2-dropdowns": "~23.1.41",
|
|
41
41
|
"@syncfusion/ej2-lists": "~23.1.36",
|
|
42
|
-
"@syncfusion/ej2-navigations": "~23.1.
|
|
42
|
+
"@syncfusion/ej2-navigations": "~23.1.41",
|
|
43
43
|
"@syncfusion/ej2-popups": "~23.1.38",
|
|
44
|
-
"@syncfusion/ej2-splitbuttons": "~23.1.
|
|
44
|
+
"@syncfusion/ej2-splitbuttons": "~23.1.41"
|
|
45
45
|
},
|
|
46
46
|
"deprecated": false,
|
|
47
47
|
"description": "Essential JS 2 Component",
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
"url": "git+https://github.com/syncfusion/ej2-ribbon-component.git"
|
|
63
63
|
},
|
|
64
64
|
"typings": "index.d.ts",
|
|
65
|
-
"version": "23.1.
|
|
65
|
+
"version": "23.1.41",
|
|
66
66
|
"sideEffects": false
|
|
67
67
|
}
|
|
@@ -1854,6 +1854,8 @@ var Ribbon = /** @class */ (function (_super) {
|
|
|
1854
1854
|
}
|
|
1855
1855
|
}
|
|
1856
1856
|
}
|
|
1857
|
+
var activeContent = this.tabObj.element.querySelector('#' + this.tabs[this.selectedTab].id + constants.CONTENT_ID);
|
|
1858
|
+
this.checkOverflow(this.selectedTab, activeContent);
|
|
1857
1859
|
};
|
|
1858
1860
|
Ribbon.prototype.switchLayout = function () {
|
|
1859
1861
|
this.currentControlIndex = 0;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -130,13 +130,24 @@
|
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
133
|
-
font-size:
|
|
133
|
+
font-size: 12px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
137
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
138
|
+
font-size: 14px;
|
|
134
139
|
}
|
|
135
140
|
|
|
136
|
-
.e-
|
|
141
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
142
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
137
143
|
font-size: 10px;
|
|
138
144
|
}
|
|
139
145
|
|
|
146
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
147
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
148
|
+
font-size: 12px;
|
|
149
|
+
}
|
|
150
|
+
|
|
140
151
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
141
152
|
font-size: 14px;
|
|
142
153
|
line-height: 34px;
|
|
@@ -130,13 +130,24 @@
|
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
133
|
-
font-size:
|
|
133
|
+
font-size: 12px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
137
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
138
|
+
font-size: 14px;
|
|
134
139
|
}
|
|
135
140
|
|
|
136
|
-
.e-
|
|
141
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
142
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
137
143
|
font-size: 10px;
|
|
138
144
|
}
|
|
139
145
|
|
|
146
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
147
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
148
|
+
font-size: 12px;
|
|
149
|
+
}
|
|
150
|
+
|
|
140
151
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
141
152
|
font-size: 14px;
|
|
142
153
|
line-height: 34px;
|