@syncfusion/ej2-splitbuttons 20.1.57 → 20.2.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 -6
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +3 -2
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +3 -2
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/button-group/button-group.ts +84 -0
- package/dist/ts/common/common.ts +203 -0
- package/dist/ts/drop-down-button/drop-down-button.ts +806 -0
- package/dist/ts/progress-button/progress-button.ts +689 -0
- package/dist/ts/split-button/split-button.ts +501 -0
- package/helpers/e2e/dropdownbuttonHelper.js +55 -38
- package/helpers/e2e/index.js +10 -8
- package/helpers/e2e/progressbuttonHelper.js +52 -35
- package/helpers/e2e/splitbuttonHelper.js +58 -41
- package/package.json +7 -7
- package/src/drop-down-button/drop-down-button.js +3 -2
- package/styles/bootstrap-dark.css +0 -8
- package/styles/bootstrap.css +0 -8
- package/styles/bootstrap4.css +0 -8
- package/styles/bootstrap5-dark.css +14 -0
- package/styles/bootstrap5.css +14 -0
- package/styles/button-group/_fusionnew-definition.scss +31 -0
- package/styles/button-group/_layout.scss +1 -1
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_theme.scss +48 -12
- package/styles/button-group/bootstrap-dark.css +0 -8
- package/styles/button-group/bootstrap.css +0 -8
- package/styles/button-group/bootstrap4.css +0 -8
- package/styles/button-group/bootstrap5-dark.css +12 -0
- package/styles/button-group/bootstrap5.css +12 -0
- package/styles/button-group/fabric-dark.css +0 -8
- package/styles/button-group/fabric.css +0 -8
- package/styles/button-group/fluent-dark.css +0 -8
- package/styles/button-group/fluent.css +0 -8
- package/styles/button-group/highcontrast-light.css +0 -8
- package/styles/button-group/highcontrast.css +0 -8
- package/styles/button-group/material-dark.css +0 -8
- package/styles/button-group/material.css +0 -8
- package/styles/button-group/tailwind-dark.css +8 -12
- package/styles/button-group/tailwind.css +8 -12
- package/styles/drop-down-button/_fusionnew-definition.scss +51 -0
- package/styles/drop-down-button/_layout.scss +4 -2
- package/styles/drop-down-button/_material3-definition.scss +51 -0
- package/styles/drop-down-button/bootstrap5-dark.css +2 -0
- package/styles/drop-down-button/bootstrap5.css +2 -0
- package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
- package/styles/drop-down-button/icons/_material3.scss +10 -0
- package/styles/drop-down-button/tailwind-dark.css +2 -0
- package/styles/drop-down-button/tailwind.css +2 -0
- package/styles/fabric-dark.css +0 -8
- package/styles/fabric.css +0 -8
- package/styles/fluent-dark.css +1 -9
- package/styles/fluent.css +1 -9
- package/styles/highcontrast-light.css +0 -8
- package/styles/highcontrast.css +0 -8
- package/styles/material-dark.css +0 -8
- package/styles/material.css +0 -8
- package/styles/progress-button/_fluent-definition.scss +1 -1
- package/styles/progress-button/_fusionnew-definition.scss +21 -0
- package/styles/progress-button/_material3-definition.scss +21 -0
- package/styles/progress-button/fluent-dark.css +1 -1
- package/styles/progress-button/fluent.css +1 -1
- package/styles/split-button/_fusionnew-definition.scss +25 -0
- package/styles/split-button/_material3-definition.scss +25 -0
- package/styles/tailwind-dark.css +10 -12
- package/styles/tailwind.css +10 -12
|
@@ -1,36 +1,53 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
|
15
|
+
"use strict";
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var ProgressButtonHelper = (function (_super) {
|
|
18
|
+
__extends(ProgressButtonHelper, _super);
|
|
19
|
+
function ProgressButtonHelper(id, wrapperFn) {
|
|
20
|
+
var _this = _super.call(this) || this;
|
|
21
|
+
_this.id = id;
|
|
22
|
+
if (wrapperFn !== undefined) {
|
|
23
|
+
_this.wrapperFn = wrapperFn;
|
|
24
|
+
}
|
|
25
|
+
return _this;
|
|
10
26
|
}
|
|
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
|
-
exports.ProgressButtonHelper = ProgressButtonHelper;
|
|
27
|
+
ProgressButtonHelper.prototype.getElement = function () {
|
|
28
|
+
return this.selector('#' + this.id);
|
|
29
|
+
};
|
|
30
|
+
ProgressButtonHelper.prototype.setModel = function (property, value) {
|
|
31
|
+
var cy;
|
|
32
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
33
|
+
return ele[0].ej2_instances[0][property] = value;
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
ProgressButtonHelper.prototype.getModel = function (property) {
|
|
37
|
+
var cy;
|
|
38
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
39
|
+
return ele[0].ej2_instances[0][property];
|
|
40
|
+
});
|
|
41
|
+
};
|
|
42
|
+
ProgressButtonHelper.prototype.invoke = function (fName, args) {
|
|
43
|
+
if (args === void 0) { args = []; }
|
|
44
|
+
var cy;
|
|
45
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
46
|
+
var inst = ele[0].ej2_instances[0];
|
|
47
|
+
return inst[fName].apply(inst, args);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
return ProgressButtonHelper;
|
|
51
|
+
}(e2e_1.TestHelper));
|
|
52
|
+
exports.ProgressButtonHelper = ProgressButtonHelper;
|
|
53
|
+
});
|
|
@@ -1,42 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
|
|
15
|
+
"use strict";
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var SplitButtonHelper = (function (_super) {
|
|
18
|
+
__extends(SplitButtonHelper, _super);
|
|
19
|
+
function SplitButtonHelper(id, wrapperFn) {
|
|
20
|
+
var _this = _super.call(this) || this;
|
|
21
|
+
_this.id = id;
|
|
22
|
+
if (wrapperFn !== undefined) {
|
|
23
|
+
_this.wrapperFn = wrapperFn;
|
|
24
|
+
}
|
|
25
|
+
return _this;
|
|
10
26
|
}
|
|
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
|
-
exports.SplitButtonHelper = SplitButtonHelper;
|
|
27
|
+
SplitButtonHelper.prototype.getElement = function () {
|
|
28
|
+
return this.selector('#' + this.id);
|
|
29
|
+
};
|
|
30
|
+
SplitButtonHelper.prototype.getDropDownElement = function () {
|
|
31
|
+
return this.selector('#' + this.id + '_dropdownbtn');
|
|
32
|
+
};
|
|
33
|
+
SplitButtonHelper.prototype.getPopupElement = function () {
|
|
34
|
+
return this.selector('#' + this.id + '_dropdownbtn_popup');
|
|
35
|
+
};
|
|
36
|
+
SplitButtonHelper.prototype.setModel = function (property, value) {
|
|
37
|
+
var cy;
|
|
38
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
39
|
+
return ele[0].ej2_instances[0][property] = value;
|
|
40
|
+
});
|
|
41
|
+
};
|
|
42
|
+
SplitButtonHelper.prototype.getModel = function (property) {
|
|
43
|
+
var cy;
|
|
44
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
45
|
+
return ele[0].ej2_instances[0][property];
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
SplitButtonHelper.prototype.invoke = function (fName, args) {
|
|
49
|
+
if (args === void 0) { args = []; }
|
|
50
|
+
var cy;
|
|
51
|
+
return cy.get('#' + this.id).then(function (ele) {
|
|
52
|
+
var inst = ele[0].ej2_instances[0];
|
|
53
|
+
return inst[fName].apply(inst, args);
|
|
54
|
+
});
|
|
55
|
+
};
|
|
56
|
+
return SplitButtonHelper;
|
|
57
|
+
}(e2e_1.TestHelper));
|
|
58
|
+
exports.SplitButtonHelper = SplitButtonHelper;
|
|
59
|
+
});
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-splitbuttons@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-splitbuttons@20.1
|
|
3
|
+
"_id": "@syncfusion/ej2-splitbuttons@20.2.1",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-QPgyFYcS+goyy0ZtopODg8lVT6JbSi17+GQNeGv6/IU/FcMcf7JSwtWx5umiTxGQ8nG70wIwIXBq49btr0HWoQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-splitbuttons",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"/@syncfusion/ej2-richtexteditor",
|
|
32
32
|
"/@syncfusion/ej2-vue-splitbuttons"
|
|
33
33
|
],
|
|
34
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
35
|
-
"_shasum": "
|
|
34
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-20.2.1.tgz",
|
|
35
|
+
"_shasum": "0e33e29493bd7277ab1ec72661da739019329966",
|
|
36
36
|
"_spec": "@syncfusion/ej2-splitbuttons@*",
|
|
37
37
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
38
38
|
"author": {
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
},
|
|
44
44
|
"bundleDependencies": false,
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@syncfusion/ej2-base": "~20.
|
|
47
|
-
"@syncfusion/ej2-popups": "~20.
|
|
46
|
+
"@syncfusion/ej2-base": "~20.2.36",
|
|
47
|
+
"@syncfusion/ej2-popups": "~20.2.36"
|
|
48
48
|
},
|
|
49
49
|
"deprecated": false,
|
|
50
50
|
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup.",
|
|
@@ -87,6 +87,6 @@
|
|
|
87
87
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
88
88
|
},
|
|
89
89
|
"typings": "index.d.ts",
|
|
90
|
-
"version": "20.
|
|
90
|
+
"version": "20.2.36",
|
|
91
91
|
"sideEffects": false
|
|
92
92
|
}
|
|
@@ -171,7 +171,7 @@ var DropDownButton = /** @class */ (function (_super) {
|
|
|
171
171
|
_a['aria-expanded'] = 'false',
|
|
172
172
|
_a['aria-owns'] = this.getPopUpElement().id,
|
|
173
173
|
_a['type'] = 'button',
|
|
174
|
-
_a['aria-label'] = this.element.textContent
|
|
174
|
+
_a['aria-label'] = this.element.textContent ? this.element.textContent : 'dropdownbutton',
|
|
175
175
|
_a));
|
|
176
176
|
if (this.cssClass) {
|
|
177
177
|
addClass([div], this.cssClass.split(' '));
|
|
@@ -201,8 +201,9 @@ var DropDownButton = /** @class */ (function (_super) {
|
|
|
201
201
|
item = items[i];
|
|
202
202
|
var tempItem = item.text;
|
|
203
203
|
li = this.createElement('li', {
|
|
204
|
+
innerHTML: item.url ? '' : tempItem,
|
|
204
205
|
className: item.separator ? classNames.ITEM + ' ' + classNames.SEPARATOR : classNames.ITEM,
|
|
205
|
-
attrs: { 'role': 'menuItem', 'tabindex': '-1' },
|
|
206
|
+
attrs: { 'role': 'menuItem', 'tabindex': '-1', 'aria-label': tempItem },
|
|
206
207
|
id: item.id ? item.id : getUniqueID('e-' + this.getModuleName() + '-item')
|
|
207
208
|
});
|
|
208
209
|
if (this.enableHtmlSanitizer) {
|
|
@@ -531,14 +531,6 @@
|
|
|
531
531
|
flex-direction: row;
|
|
532
532
|
position: relative;
|
|
533
533
|
}
|
|
534
|
-
*.e-btn-group input:focus + label.e-btn,
|
|
535
|
-
*.e-btn-group .e-btn:focus,
|
|
536
|
-
*.e-btn-group .e-btn:hover,
|
|
537
|
-
*.e-css.e-btn-group input:focus + label.e-btn,
|
|
538
|
-
*.e-css.e-btn-group .e-btn:focus,
|
|
539
|
-
*.e-css.e-btn-group .e-btn:hover {
|
|
540
|
-
z-index: 2;
|
|
541
|
-
}
|
|
542
534
|
*.e-btn-group input + label.e-btn,
|
|
543
535
|
*.e-css.e-btn-group input + label.e-btn {
|
|
544
536
|
margin-bottom: 0;
|
package/styles/bootstrap.css
CHANGED
|
@@ -531,14 +531,6 @@
|
|
|
531
531
|
flex-direction: row;
|
|
532
532
|
position: relative;
|
|
533
533
|
}
|
|
534
|
-
*.e-btn-group input:focus + label.e-btn,
|
|
535
|
-
*.e-btn-group .e-btn:focus,
|
|
536
|
-
*.e-btn-group .e-btn:hover,
|
|
537
|
-
*.e-css.e-btn-group input:focus + label.e-btn,
|
|
538
|
-
*.e-css.e-btn-group .e-btn:focus,
|
|
539
|
-
*.e-css.e-btn-group .e-btn:hover {
|
|
540
|
-
z-index: 2;
|
|
541
|
-
}
|
|
542
534
|
*.e-btn-group input + label.e-btn,
|
|
543
535
|
*.e-css.e-btn-group input + label.e-btn {
|
|
544
536
|
margin-bottom: 0;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -514,14 +514,6 @@
|
|
|
514
514
|
flex-direction: row;
|
|
515
515
|
position: relative;
|
|
516
516
|
}
|
|
517
|
-
*.e-btn-group input:focus + label.e-btn,
|
|
518
|
-
*.e-btn-group .e-btn:focus,
|
|
519
|
-
*.e-btn-group .e-btn:hover,
|
|
520
|
-
*.e-css.e-btn-group input:focus + label.e-btn,
|
|
521
|
-
*.e-css.e-btn-group .e-btn:focus,
|
|
522
|
-
*.e-css.e-btn-group .e-btn:hover {
|
|
523
|
-
z-index: 2;
|
|
524
|
-
}
|
|
525
517
|
*.e-btn-group input + label.e-btn,
|
|
526
518
|
*.e-css.e-btn-group input + label.e-btn {
|
|
527
519
|
margin-bottom: 0;
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
|
|
70
70
|
.e-dropdown-popup {
|
|
71
71
|
position: absolute;
|
|
72
|
+
border-radius: 4px;
|
|
72
73
|
margin-top: 2px;
|
|
73
74
|
}
|
|
74
75
|
.e-dropdown-popup ul {
|
|
@@ -148,6 +149,7 @@
|
|
|
148
149
|
|
|
149
150
|
*.e-bigger .e-dropdown-popup {
|
|
150
151
|
background-color: transparent;
|
|
152
|
+
border-radius: 4px;
|
|
151
153
|
}
|
|
152
154
|
|
|
153
155
|
*.e-bigger .e-dropdown-popup ul,
|
|
@@ -778,6 +780,7 @@
|
|
|
778
780
|
outline: #6c757d 0 solid;
|
|
779
781
|
outline-offset: 0;
|
|
780
782
|
box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
|
|
783
|
+
border-color: #5c636a;
|
|
781
784
|
outline-color: inherit;
|
|
782
785
|
}
|
|
783
786
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -789,6 +792,7 @@
|
|
|
789
792
|
color: #fff;
|
|
790
793
|
outline: #6c757d 0 solid;
|
|
791
794
|
box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
|
|
795
|
+
border-color: #0b5ed7;
|
|
792
796
|
outline-color: inherit;
|
|
793
797
|
}
|
|
794
798
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -799,6 +803,7 @@
|
|
|
799
803
|
border-color: #198754;
|
|
800
804
|
color: #fff;
|
|
801
805
|
box-shadow: 0 0 0 4px rgba(66, 190, 133, 0.5);
|
|
806
|
+
border-color: #157347;
|
|
802
807
|
outline-color: inherit;
|
|
803
808
|
}
|
|
804
809
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -809,6 +814,7 @@
|
|
|
809
814
|
border-color: #0dcaf0;
|
|
810
815
|
color: #000;
|
|
811
816
|
box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
|
|
817
|
+
border-color: #31d2f2;
|
|
812
818
|
outline-color: inherit;
|
|
813
819
|
}
|
|
814
820
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -819,6 +825,7 @@
|
|
|
819
825
|
border-color: #ffc107;
|
|
820
826
|
color: #000;
|
|
821
827
|
box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
|
|
828
|
+
border-color: #ffca2c;
|
|
822
829
|
outline-color: inherit;
|
|
823
830
|
}
|
|
824
831
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -829,6 +836,7 @@
|
|
|
829
836
|
border-color: #dc3545;
|
|
830
837
|
color: #fff;
|
|
831
838
|
box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
|
|
839
|
+
border-color: #bb2d3b;
|
|
832
840
|
outline-color: inherit;
|
|
833
841
|
}
|
|
834
842
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -848,36 +856,42 @@
|
|
|
848
856
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
849
857
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
850
858
|
box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
|
|
859
|
+
border-color: #5c636a;
|
|
851
860
|
}
|
|
852
861
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
853
862
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
854
863
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
855
864
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
856
865
|
box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
|
|
866
|
+
border-color: #0d6efd;
|
|
857
867
|
}
|
|
858
868
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
859
869
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
860
870
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
861
871
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
862
872
|
box-shadow: 0 0 0 4px rgba(66, 190, 133, 0.5);
|
|
873
|
+
border-color: #157347;
|
|
863
874
|
}
|
|
864
875
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
865
876
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
866
877
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
867
878
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
868
879
|
box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
|
|
880
|
+
border-color: #31d2f2;
|
|
869
881
|
}
|
|
870
882
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
871
883
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
872
884
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
873
885
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
874
886
|
box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
|
|
887
|
+
border-color: #ffca2c;
|
|
875
888
|
}
|
|
876
889
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
877
890
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
878
891
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
879
892
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
880
893
|
box-shadow: 0 0 0 4px rgba(232, 120, 131, 0.5);
|
|
894
|
+
border-color: #bb2d3b;
|
|
881
895
|
}
|
|
882
896
|
.e-btn-group .e-btn:active,
|
|
883
897
|
.e-btn-group input:active + label.e-btn,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
|
|
70
70
|
.e-dropdown-popup {
|
|
71
71
|
position: absolute;
|
|
72
|
+
border-radius: 4px;
|
|
72
73
|
margin-top: 2px;
|
|
73
74
|
}
|
|
74
75
|
.e-dropdown-popup ul {
|
|
@@ -148,6 +149,7 @@
|
|
|
148
149
|
|
|
149
150
|
*.e-bigger .e-dropdown-popup {
|
|
150
151
|
background-color: transparent;
|
|
152
|
+
border-radius: 4px;
|
|
151
153
|
}
|
|
152
154
|
|
|
153
155
|
*.e-bigger .e-dropdown-popup ul,
|
|
@@ -778,6 +780,7 @@
|
|
|
778
780
|
outline: #6c757d 0 solid;
|
|
779
781
|
outline-offset: 0;
|
|
780
782
|
box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
|
|
783
|
+
border-color: #5c636a;
|
|
781
784
|
outline-color: inherit;
|
|
782
785
|
}
|
|
783
786
|
.e-btn-group .e-btn:focus.e-primary,
|
|
@@ -789,6 +792,7 @@
|
|
|
789
792
|
color: #fff;
|
|
790
793
|
outline: #6c757d 0 solid;
|
|
791
794
|
box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
|
|
795
|
+
border-color: #0b5ed7;
|
|
792
796
|
outline-color: inherit;
|
|
793
797
|
}
|
|
794
798
|
.e-btn-group .e-btn:focus.e-success,
|
|
@@ -799,6 +803,7 @@
|
|
|
799
803
|
border-color: #198754;
|
|
800
804
|
color: #fff;
|
|
801
805
|
box-shadow: 0 0 0 4px rgba(60, 153, 110, 0.5);
|
|
806
|
+
border-color: #157347;
|
|
802
807
|
outline-color: inherit;
|
|
803
808
|
}
|
|
804
809
|
.e-btn-group .e-btn:focus.e-info,
|
|
@@ -809,6 +814,7 @@
|
|
|
809
814
|
border-color: #0dcaf0;
|
|
810
815
|
color: #000;
|
|
811
816
|
box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
|
|
817
|
+
border-color: #31d2f2;
|
|
812
818
|
outline-color: inherit;
|
|
813
819
|
}
|
|
814
820
|
.e-btn-group .e-btn:focus.e-warning,
|
|
@@ -819,6 +825,7 @@
|
|
|
819
825
|
border-color: #ffc107;
|
|
820
826
|
color: #000;
|
|
821
827
|
box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
|
|
828
|
+
border-color: #ffca2c;
|
|
822
829
|
outline-color: inherit;
|
|
823
830
|
}
|
|
824
831
|
.e-btn-group .e-btn:focus.e-danger,
|
|
@@ -829,6 +836,7 @@
|
|
|
829
836
|
border-color: #dc3545;
|
|
830
837
|
color: #fff;
|
|
831
838
|
box-shadow: 0 0 0 4px rgba(225, 83, 97, 0.5);
|
|
839
|
+
border-color: #bb2d3b;
|
|
832
840
|
outline-color: inherit;
|
|
833
841
|
}
|
|
834
842
|
.e-btn-group .e-btn:focus.e-link,
|
|
@@ -848,36 +856,42 @@
|
|
|
848
856
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
849
857
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
850
858
|
box-shadow: 0 0 0 4px rgba(130, 138, 145, 0.5);
|
|
859
|
+
border-color: #5c636a;
|
|
851
860
|
}
|
|
852
861
|
.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
853
862
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
854
863
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
855
864
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
856
865
|
box-shadow: 0 0 0 4px rgba(49, 132, 253, 0.5);
|
|
866
|
+
border-color: #0d6efd;
|
|
857
867
|
}
|
|
858
868
|
.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
859
869
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
860
870
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
861
871
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
862
872
|
box-shadow: 0 0 0 4px rgba(60, 153, 110, 0.5);
|
|
873
|
+
border-color: #157347;
|
|
863
874
|
}
|
|
864
875
|
.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
865
876
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
866
877
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
867
878
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
868
879
|
box-shadow: 0 0 0 4px rgba(49, 210, 242, 0.5);
|
|
880
|
+
border-color: #31d2f2;
|
|
869
881
|
}
|
|
870
882
|
.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
871
883
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
872
884
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
873
885
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
874
886
|
box-shadow: 0 0 0 4px rgba(255, 202, 44, 0.5);
|
|
887
|
+
border-color: #ffca2c;
|
|
875
888
|
}
|
|
876
889
|
.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
877
890
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
878
891
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
879
892
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
880
893
|
box-shadow: 0 0 0 4px rgba(225, 83, 97, 0.5);
|
|
894
|
+
border-color: #bb2d3b;
|
|
881
895
|
}
|
|
882
896
|
.e-btn-group .e-btn:active,
|
|
883
897
|
.e-btn-group input:active + label.e-btn,
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 16px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 20px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$btn-grp-margin: -1px !default;
|
|
3
|
+
$btn-grp-margin-left: -1px !default;
|
|
4
|
+
$btn-grp-wrapper-border: 4px !default;
|
|
5
|
+
$btn-grp-round-radius: 20px !default;
|
|
6
|
+
$btn-grp-icon-font-size: 16px !default;
|
|
7
|
+
$btn-grp-icon-font-size-bigger: 20px !default;
|
|
8
|
+
|
|
9
|
+
//Normal Outline GroupButton
|
|
10
|
+
$btn-grp-outline-focus-border-color: $secondary-border-color !default;
|
|
11
|
+
$btn-grp-outline-focus-color: inherit !default;
|
|
12
|
+
|
|
13
|
+
//Outline Primary
|
|
14
|
+
$btn-grp-outline-primary-focus-border-color: $primary !default;
|
|
15
|
+
$btn-grp-outline-focus-primary-color: inherit !default;
|
|
16
|
+
|
|
17
|
+
//Outline Success
|
|
18
|
+
$btn-grp-outline-success-focus-border-color: $btn-success-focus-border-color !default;
|
|
19
|
+
$btn-grp-outline-focus-success-color: inherit !default;
|
|
20
|
+
|
|
21
|
+
//Outline Info
|
|
22
|
+
$btn-grp-outline-info-focus-border-color: $btn-info-focus-border-color !default;
|
|
23
|
+
$btn-grp-outline-focus-info-color: inherit !default;
|
|
24
|
+
|
|
25
|
+
//Outline warning
|
|
26
|
+
$btn-grp-outline-warning-focus-border-color: $btn-warning-focus-border-color !default;
|
|
27
|
+
$btn-grp-outline-focus-warning-color: inherit !default;
|
|
28
|
+
|
|
29
|
+
//Outline danger
|
|
30
|
+
$btn-grp-outline-danger-focus-border-color: $btn-danger-focus-border-color !default;
|
|
31
|
+
$btn-grp-outline-focus-danger-color: inherit !default;
|