@syncfusion/ej2-treegrid 26.1.41 → 26.2.4
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/dist/ej2-treegrid.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +42 -13
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +43 -13
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-treegrid.min.js +2 -2
- package/dist/global/ej2-treegrid.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/hotfix/26.1.35_Vol2.txt +1 -0
- package/package.json +9 -9
- package/src/treegrid/actions/selection.js +9 -0
- package/src/treegrid/actions/virtual-scroll.js +2 -2
- package/src/treegrid/base/data.js +3 -0
- package/src/treegrid/base/treegrid.d.ts +1 -0
- package/src/treegrid/base/treegrid.js +28 -10
- package/src/treegrid/renderer/virtual-tree-content-render.js +1 -1
- package/styles/fluent2.css +10 -10
- package/styles/treegrid/fluent2.css +10 -10
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 26.
|
|
3
|
+
* version : 26.2.4
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hotfix/26.1.35_Vol2
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-treegrid@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-treegrid@26.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-treegrid@26.1.42",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-UGPp38yDOArNOTGVss2EU+BoYFDbtuX7AQPGwepSDA/IvJZqVuuhzIbORFGAovtVu/49UWanMWu9ci47SKkjxw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-treegrid",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"/@syncfusion/ej2-react-treegrid",
|
|
25
25
|
"/@syncfusion/ej2-vue-treegrid"
|
|
26
26
|
],
|
|
27
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-26.1.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-26.1.42.tgz",
|
|
28
|
+
"_shasum": "ac8621c6da11adaeb47f35a1b10f2e94520bea34",
|
|
29
29
|
"_spec": "@syncfusion/ej2-treegrid@*",
|
|
30
30
|
"_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@syncfusion/ej2-base": "~26.
|
|
40
|
-
"@syncfusion/ej2-data": "~26.
|
|
41
|
-
"@syncfusion/ej2-grids": "~26.
|
|
42
|
-
"@syncfusion/ej2-popups": "~26.
|
|
39
|
+
"@syncfusion/ej2-base": "~26.2.4",
|
|
40
|
+
"@syncfusion/ej2-data": "~26.2.4",
|
|
41
|
+
"@syncfusion/ej2-grids": "~26.2.4",
|
|
42
|
+
"@syncfusion/ej2-popups": "~26.2.4"
|
|
43
43
|
},
|
|
44
44
|
"deprecated": false,
|
|
45
45
|
"description": "Essential JS 2 TreeGrid Component",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"url": "git+https://github.com/syncfusion/ej2-treegrid.git"
|
|
77
77
|
},
|
|
78
78
|
"typings": "index.d.ts",
|
|
79
|
-
"version": "26.
|
|
79
|
+
"version": "26.2.4",
|
|
80
80
|
"sideEffects": false
|
|
81
81
|
}
|
|
@@ -58,6 +58,7 @@ var Selection = /** @class */ (function () {
|
|
|
58
58
|
this.removeEventListener();
|
|
59
59
|
};
|
|
60
60
|
Selection.prototype.checkboxSelection = function (args) {
|
|
61
|
+
var _a;
|
|
61
62
|
var target = getObject('target', args);
|
|
62
63
|
var checkWrap = parentsUntil(target, 'e-checkbox-wrapper');
|
|
63
64
|
var checkBox;
|
|
@@ -75,6 +76,14 @@ var Selection = /** @class */ (function () {
|
|
|
75
76
|
checkBox = checkWrap.querySelector('input[type="checkbox"]');
|
|
76
77
|
this.triggerChkChangeEvent(checkBox, checkBoxvalue, target.closest('tr'));
|
|
77
78
|
}
|
|
79
|
+
if (!isNullOrUndefined(this.parent['parentQuery']) && this.parent.selectionSettings.persistSelection
|
|
80
|
+
&& this.parent['columnModel'].filter(function (col) { return col.type === 'checkbox'; }).length > 0
|
|
81
|
+
&& isRemoteData(this.parent)) {
|
|
82
|
+
if (this.parent['parentQuery'].length > 0) {
|
|
83
|
+
(_a = this.parent.query.queries).push.apply(_a, this.parent['parentQuery']);
|
|
84
|
+
this.parent['parentQuery'] = [];
|
|
85
|
+
}
|
|
86
|
+
}
|
|
78
87
|
};
|
|
79
88
|
Selection.prototype.triggerChkChangeEvent = function (checkBox, checkState, rowElement) {
|
|
80
89
|
var data = this.parent.getCurrentViewRecords()[rowElement.rowIndex];
|
|
@@ -118,7 +118,7 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
118
118
|
}
|
|
119
119
|
else {
|
|
120
120
|
var requestType = pageingDetails.actionArgs.requestType;
|
|
121
|
-
if (requestType === 'filtering' || requestType === 'collapseAll' || requestType === 'searching' ||
|
|
121
|
+
if (requestType === 'filtering' || requestType === 'collapseAll' || requestType === 'searching' || (requestType === 'refresh' && getValue('isExpandAll', this.parent)) ||
|
|
122
122
|
(requestType === 'refresh' && this.parent.enableCollapseAll && endIndex > visualData.length && isNullOrUndefined(this.expandCollapseRec))) {
|
|
123
123
|
startIndex = 0;
|
|
124
124
|
endIndex = this.parent.grid.pageSettings.pageSize - 1;
|
|
@@ -159,7 +159,7 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
//}
|
|
162
|
-
if (this.prevrequestType === 'collapseAll' && pageingDetails.actionArgs.requestType === 'virtualscroll') {
|
|
162
|
+
if (this.prevrequestType === 'collapseAll' && pageingDetails.actionArgs.requestType === 'virtualscroll' && !isNullOrUndefined(this.parent.idMapping)) {
|
|
163
163
|
startIndex = 0;
|
|
164
164
|
endIndex = this.parent.grid.pageSettings.pageSize - 1;
|
|
165
165
|
this.parent.grid.notify(events.virtualActionArgs, { setTop: true });
|
|
@@ -556,6 +556,9 @@ var DataManipulation = /** @class */ (function () {
|
|
|
556
556
|
_this.parent.grid.pageSettings.totalRecordsCount = e.count;
|
|
557
557
|
}
|
|
558
558
|
e.count = _this.parent.grid.pageSettings.totalRecordsCount;
|
|
559
|
+
if (rowDetails.action === 'remoteExpand' && _this.parent.allowPaging) {
|
|
560
|
+
_this.parent.grid.pageSettings.totalRecordsCount = _this.parent.grid.currentViewData.length + result.length;
|
|
561
|
+
}
|
|
559
562
|
var virtualArgs = {};
|
|
560
563
|
if (_this.parent.enableVirtualization) {
|
|
561
564
|
_this.remoteVirtualAction(virtualArgs);
|
|
@@ -86,6 +86,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
86
86
|
private isAddedFromGantt;
|
|
87
87
|
private isIndentEnabled;
|
|
88
88
|
private indentOutdentAction;
|
|
89
|
+
private parentQuery;
|
|
89
90
|
private isCollapsedEventTriggered;
|
|
90
91
|
private isCollapsingEventTriggered;
|
|
91
92
|
private isExpandedEventTriggered;
|
|
@@ -883,7 +883,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
883
883
|
|| (/[0-9]$/.test(this.height.toString()) && /[px]$/.test(this.height.toString()))) {
|
|
884
884
|
failureCases.push('column width and height should be in pixels');
|
|
885
885
|
}
|
|
886
|
-
if (
|
|
886
|
+
if ((this.childMapping !== 'Children') && !isNullOrUndefined(this.idMapping)) {
|
|
887
887
|
failureCases.push('Both IdMapping and ChildMapping should not be used together for tree grid rendering.');
|
|
888
888
|
}
|
|
889
889
|
if ((!isNullOrUndefined(this.idMapping) && (isNullOrUndefined(this.parentIdMapping))) ||
|
|
@@ -1048,10 +1048,24 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
1048
1048
|
var _this = this;
|
|
1049
1049
|
this.grid.rowSelecting = function (args) {
|
|
1050
1050
|
_this.IsExpandCollapseClicked(args);
|
|
1051
|
+
if (!isNullOrUndefined(args.data) && _this.selectionSettings.persistSelection
|
|
1052
|
+
&& _this.columnModel.filter(function (col) { return col.type === 'checkbox'; }).length > 0 && isRemoteData(_this)) {
|
|
1053
|
+
if (!isNullOrUndefined(args.data.parentItem)) {
|
|
1054
|
+
_this.parentQuery = _this.query.queries.filter(function (q) { return q.e.field === _this.parentIdMapping; });
|
|
1055
|
+
_this.query.queries = _this.query.queries.slice(0, 0);
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1051
1058
|
_this.trigger(events.rowSelecting, args);
|
|
1052
1059
|
};
|
|
1053
1060
|
this.grid.rowDeselecting = function (args) {
|
|
1054
1061
|
_this.IsExpandCollapseClicked(args);
|
|
1062
|
+
if (isNullOrUndefined(args.data) && _this.selectionSettings.persistSelection
|
|
1063
|
+
&& _this.columnModel.filter(function (col) { return col.type === 'checkbox'; }).length > 0 && isRemoteData(_this)) {
|
|
1064
|
+
if (isNullOrUndefined(args.data.parentItem)) {
|
|
1065
|
+
_this.parentQuery = _this.query.queries.filter(function (q) { return q.e.field === _this.parentIdMapping; });
|
|
1066
|
+
_this.query.queries = _this.query.queries.slice(0, 0);
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1055
1069
|
_this.trigger(events.rowDeselecting, args);
|
|
1056
1070
|
};
|
|
1057
1071
|
this.grid.rowSelected = function (args) {
|
|
@@ -1804,7 +1818,8 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
1804
1818
|
TreeGrid.prototype.onPropertyChanged = function (newProp) {
|
|
1805
1819
|
var properties = Object.keys(newProp);
|
|
1806
1820
|
var requireRefresh = false;
|
|
1807
|
-
if (properties.indexOf('columns') > -1 && !isNullOrUndefined(newProp.columns)
|
|
1821
|
+
if (properties.indexOf('columns') > -1 && !isNullOrUndefined(newProp.columns) && this.frozenColumns === 0
|
|
1822
|
+
&& this.frozenRows === 0 && !this.columnModel.some(function (col) { return col.isFrozen || col.freeze; })) {
|
|
1808
1823
|
this.grid.columns = this.getGridColumns(newProp.columns);
|
|
1809
1824
|
this.grid['updateColumnObject']();
|
|
1810
1825
|
requireRefresh = true;
|
|
@@ -3016,13 +3031,13 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3016
3031
|
return e.hasChildRecords;
|
|
3017
3032
|
});
|
|
3018
3033
|
}
|
|
3019
|
-
else if (isNullOrUndefined(record)) {
|
|
3034
|
+
else if (isNullOrUndefined(record) && !isNullOrUndefined(row)) {
|
|
3020
3035
|
if (this.detailTemplate) {
|
|
3021
3036
|
record = this.grid.getCurrentViewRecords()[row.getAttribute('data-rowindex')];
|
|
3022
3037
|
}
|
|
3023
3038
|
else {
|
|
3024
|
-
if (this.enableVirtualization && this.isCollapseAll) {
|
|
3025
|
-
if (
|
|
3039
|
+
if (this.enableVirtualization && (this.isCollapseAll || this.isExpandAll)) {
|
|
3040
|
+
if (row.rowIndex === -1) {
|
|
3026
3041
|
record = this.grid.getCurrentViewRecords()[parseInt(row.getAttribute('data-rowindex'), 10)];
|
|
3027
3042
|
}
|
|
3028
3043
|
else {
|
|
@@ -3375,9 +3390,12 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3375
3390
|
TreeGrid.prototype.expandCollapse = function (action, row, record, isChild) {
|
|
3376
3391
|
var _this = this;
|
|
3377
3392
|
var expandingArgs = { row: row, data: record, childData: [], requestType: action };
|
|
3378
|
-
var childRecords
|
|
3379
|
-
|
|
3380
|
-
|
|
3393
|
+
var childRecords;
|
|
3394
|
+
if (!isNullOrUndefined(record)) {
|
|
3395
|
+
childRecords = this.grid.currentViewData.filter(function (e) {
|
|
3396
|
+
return e.parentUniqueID === record.uniqueID;
|
|
3397
|
+
});
|
|
3398
|
+
}
|
|
3381
3399
|
var targetEle;
|
|
3382
3400
|
if ((!isRemoteData(this) && action === 'expand' && this.isSelfReference && isCountRequired(this) && !childRecords.length) || (action === 'collapse' || (this.isExpandAll && this.loadChildOnDemand) && !isRemoteData(this) && this.isSelfReference && isCountRequired(this))) {
|
|
3383
3401
|
this.updateChildOnDemand(expandingArgs);
|
|
@@ -3406,7 +3424,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3406
3424
|
var displayAction = void 0;
|
|
3407
3425
|
if (action === 'expand') {
|
|
3408
3426
|
displayAction = 'table-row';
|
|
3409
|
-
if (!isChild) {
|
|
3427
|
+
if (!isChild && !isNullOrUndefined(record)) {
|
|
3410
3428
|
record.expanded = true;
|
|
3411
3429
|
this.uniqueIDCollection[record.uniqueID].expanded = record.expanded;
|
|
3412
3430
|
}
|
|
@@ -3427,7 +3445,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
3427
3445
|
}
|
|
3428
3446
|
else {
|
|
3429
3447
|
displayAction = 'none';
|
|
3430
|
-
if (!isChild || isCountRequired(this)) {
|
|
3448
|
+
if ((!isChild || isCountRequired(this)) && !isNullOrUndefined(row)) {
|
|
3431
3449
|
record.expanded = false;
|
|
3432
3450
|
this.uniqueIDCollection[record.uniqueID].expanded = record.expanded;
|
|
3433
3451
|
}
|
|
@@ -516,7 +516,7 @@ var VirtualTreeContentRenderer = /** @class */ (function (_super) {
|
|
|
516
516
|
};
|
|
517
517
|
VirtualTreeContentRenderer.prototype.appendContent = function (target, newChild, e) {
|
|
518
518
|
if ((this.parent.dataSource instanceof DataManager && this.parent.dataSource.dataSource.url !== undefined
|
|
519
|
-
&& !this.parent.dataSource.dataSource.offline && this.parent.dataSource.dataSource.url !== '') || isCountRequired(this.parent)
|
|
519
|
+
&& !this.parent.dataSource.dataSource.offline && this.parent.dataSource.dataSource.url !== '') || isCountRequired(this.parent)) {
|
|
520
520
|
if (getValue('isExpandCollapse', e)) {
|
|
521
521
|
this.isRemoteExpand = true;
|
|
522
522
|
}
|
package/styles/fluent2.css
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
--color-sf-flyout-bg-color-pressed: #e0e0e0;
|
|
48
48
|
--color-sf-flyout-bg-color-selected: #ebebeb;
|
|
49
49
|
--color-sf-flyout-bg-color-focus: #f5f5f5;
|
|
50
|
-
--color-sf-overlay-bg-color:
|
|
50
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
51
51
|
--color-sf-table-bg-color-hover: #f5f5f5;
|
|
52
52
|
--color-sf-table-bg-color-pressed: #e0e0e0;
|
|
53
53
|
--color-sf-table-bg-color-selected: #ebf3fc;
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
--color-sf-flyout-bg-color-pressed: var(--color-sf-black);
|
|
370
370
|
--color-sf-flyout-bg-color-selected: #383838;
|
|
371
371
|
--color-sf-flyout-bg-color-focus: var(--color-sf-flyout-bg-color-hover);
|
|
372
|
-
--color-sf-overlay-bg-color: rgba(
|
|
372
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
373
373
|
--color-sf-table-bg-color-hover: #383838;
|
|
374
374
|
--color-sf-table-bg-color-pressed: #2e2e2e;
|
|
375
375
|
--color-sf-table-bg-color-selected: #082338;
|
|
@@ -711,9 +711,9 @@
|
|
|
711
711
|
--color-sf-flyout-bg-color-pressed: var(--color-sf-content-bg-color-hover);
|
|
712
712
|
--color-sf-flyout-bg-color-selected: var(--color-sf-content-bg-color-hover);
|
|
713
713
|
--color-sf-flyout-bg-color-focus: var(--color-sf-content-bg-color-hover);
|
|
714
|
-
--color-sf-overlay-bg-color: rgba(
|
|
715
|
-
--color-sf-table-bg-color-hover:
|
|
716
|
-
--color-sf-table-bg-color-pressed:
|
|
714
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
715
|
+
--color-sf-table-bg-color-hover: #1a3bff;
|
|
716
|
+
--color-sf-table-bg-color-pressed: #1a3bff;
|
|
717
717
|
--color-sf-table-bg-color-selected: #1a3bff;
|
|
718
718
|
--color-sf-content-text-color: #fff;
|
|
719
719
|
--color-sf-content-text-color-alt1: var(--color-sf-content-text-color);
|
|
@@ -732,12 +732,12 @@
|
|
|
732
732
|
--color-sf-flyout-text-color-selected: var(--color-sf-content-text-color-hover);
|
|
733
733
|
--color-sf-flyout-text-color-focus: var(--color-sf-content-text-color-hover);
|
|
734
734
|
--color-sf-flyout-text-color-disabled: var(--color-sf-content-text-color-disabled);
|
|
735
|
-
--color-sf-table-text-color-hover:
|
|
736
|
-
--color-sf-table-text-color-pressed:
|
|
737
|
-
--color-sf-table-text-color-selected:
|
|
735
|
+
--color-sf-table-text-color-hover: #000;
|
|
736
|
+
--color-sf-table-text-color-pressed: #000;
|
|
737
|
+
--color-sf-table-text-color-selected: #000;
|
|
738
738
|
--color-sf-icon-color: #fff;
|
|
739
|
-
--color-sf-icon-color-hover:
|
|
740
|
-
--color-sf-icon-color-pressed:
|
|
739
|
+
--color-sf-icon-color-hover: #000;
|
|
740
|
+
--color-sf-icon-color-pressed: #000;
|
|
741
741
|
--color-sf-icon-color-disabled: var(--color-sf-content-text-color-disabled);
|
|
742
742
|
--color-sf-border-light: #fff;
|
|
743
743
|
--color-sf-border: var(--color-sf-border-light);
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
--color-sf-flyout-bg-color-pressed: #e0e0e0;
|
|
48
48
|
--color-sf-flyout-bg-color-selected: #ebebeb;
|
|
49
49
|
--color-sf-flyout-bg-color-focus: #f5f5f5;
|
|
50
|
-
--color-sf-overlay-bg-color:
|
|
50
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
51
51
|
--color-sf-table-bg-color-hover: #f5f5f5;
|
|
52
52
|
--color-sf-table-bg-color-pressed: #e0e0e0;
|
|
53
53
|
--color-sf-table-bg-color-selected: #ebf3fc;
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
--color-sf-flyout-bg-color-pressed: var(--color-sf-black);
|
|
370
370
|
--color-sf-flyout-bg-color-selected: #383838;
|
|
371
371
|
--color-sf-flyout-bg-color-focus: var(--color-sf-flyout-bg-color-hover);
|
|
372
|
-
--color-sf-overlay-bg-color: rgba(
|
|
372
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
373
373
|
--color-sf-table-bg-color-hover: #383838;
|
|
374
374
|
--color-sf-table-bg-color-pressed: #2e2e2e;
|
|
375
375
|
--color-sf-table-bg-color-selected: #082338;
|
|
@@ -711,9 +711,9 @@
|
|
|
711
711
|
--color-sf-flyout-bg-color-pressed: var(--color-sf-content-bg-color-hover);
|
|
712
712
|
--color-sf-flyout-bg-color-selected: var(--color-sf-content-bg-color-hover);
|
|
713
713
|
--color-sf-flyout-bg-color-focus: var(--color-sf-content-bg-color-hover);
|
|
714
|
-
--color-sf-overlay-bg-color: rgba(
|
|
715
|
-
--color-sf-table-bg-color-hover:
|
|
716
|
-
--color-sf-table-bg-color-pressed:
|
|
714
|
+
--color-sf-overlay-bg-color: rgba(0, 0, 0, .4);
|
|
715
|
+
--color-sf-table-bg-color-hover: #1a3bff;
|
|
716
|
+
--color-sf-table-bg-color-pressed: #1a3bff;
|
|
717
717
|
--color-sf-table-bg-color-selected: #1a3bff;
|
|
718
718
|
--color-sf-content-text-color: #fff;
|
|
719
719
|
--color-sf-content-text-color-alt1: var(--color-sf-content-text-color);
|
|
@@ -732,12 +732,12 @@
|
|
|
732
732
|
--color-sf-flyout-text-color-selected: var(--color-sf-content-text-color-hover);
|
|
733
733
|
--color-sf-flyout-text-color-focus: var(--color-sf-content-text-color-hover);
|
|
734
734
|
--color-sf-flyout-text-color-disabled: var(--color-sf-content-text-color-disabled);
|
|
735
|
-
--color-sf-table-text-color-hover:
|
|
736
|
-
--color-sf-table-text-color-pressed:
|
|
737
|
-
--color-sf-table-text-color-selected:
|
|
735
|
+
--color-sf-table-text-color-hover: #000;
|
|
736
|
+
--color-sf-table-text-color-pressed: #000;
|
|
737
|
+
--color-sf-table-text-color-selected: #000;
|
|
738
738
|
--color-sf-icon-color: #fff;
|
|
739
|
-
--color-sf-icon-color-hover:
|
|
740
|
-
--color-sf-icon-color-pressed:
|
|
739
|
+
--color-sf-icon-color-hover: #000;
|
|
740
|
+
--color-sf-icon-color-pressed: #000;
|
|
741
741
|
--color-sf-icon-color-disabled: var(--color-sf-content-text-color-disabled);
|
|
742
742
|
--color-sf-border-light: #fff;
|
|
743
743
|
--color-sf-border: var(--color-sf-border-light);
|