@syncfusion/ej2-treegrid 20.4.54 → 21.1.35
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 +1 -46
- 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 +37 -10
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +36 -9
- 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/package.json +10 -10
- package/src/treegrid/actions/freeze-column.js +3 -0
- package/src/treegrid/actions/rowdragdrop.js +3 -2
- package/src/treegrid/base/treegrid-model.d.ts +26 -15
- package/src/treegrid/base/treegrid.d.ts +32 -14
- package/src/treegrid/base/treegrid.js +28 -5
- package/src/treegrid/enum.d.ts +79 -138
- package/src/treegrid/models/column.d.ts +5 -3
- package/src/treegrid/models/edit-settings-model.d.ts +13 -9
- package/src/treegrid/models/edit-settings.d.ts +13 -9
- package/src/treegrid/models/filter-settings-model.d.ts +13 -8
- package/src/treegrid/models/filter-settings.d.ts +13 -8
- package/src/treegrid/models/loading-indicator-model.d.ts +4 -2
- package/src/treegrid/models/loading-indicator.d.ts +4 -2
- package/src/treegrid/models/search-settings-model.d.ts +9 -3
- package/src/treegrid/models/search-settings.d.ts +9 -3
- package/src/treegrid/models/selection-settings-model.d.ts +17 -8
- package/src/treegrid/models/selection-settings.d.ts +17 -8
- package/src/treegrid/renderer/render.js +2 -2
- package/styles/bootstrap-dark.css +2 -8
- package/styles/highcontrast-light.css +2 -8
- package/styles/treegrid/_bootstrap5-definition.scss +2 -2
- package/styles/treegrid/_fluent-definition.scss +2 -2
- package/styles/treegrid/_tailwind-definition.scss +2 -2
- package/styles/treegrid/bootstrap-dark.css +2 -8
- package/styles/treegrid/highcontrast-light.css +2 -8
- package/styles/treegrid/_material3-definition.scss +0 -28
|
@@ -28,10 +28,12 @@ export interface EditSettingsModel {
|
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
* Defines the mode to edit. The available editing modes are:
|
|
31
|
-
*
|
|
32
|
-
* *
|
|
33
|
-
* *
|
|
34
|
-
* *
|
|
31
|
+
* ```props
|
|
32
|
+
* * Cell :- Defines the editing mode as Cell.
|
|
33
|
+
* * Row :- Defines the editing mode as Row.
|
|
34
|
+
* * Dialog :- Defines the editing mode as Dialog.
|
|
35
|
+
* * Batch :- Defines the editing mode as Batch.
|
|
36
|
+
* ```
|
|
35
37
|
*
|
|
36
38
|
* @default Cell
|
|
37
39
|
* @isEnumeration true
|
|
@@ -40,11 +42,13 @@ export interface EditSettingsModel {
|
|
|
40
42
|
|
|
41
43
|
/**
|
|
42
44
|
* Defines the row position for new records. The available row positions are:
|
|
43
|
-
*
|
|
44
|
-
* *
|
|
45
|
-
* *
|
|
46
|
-
* *
|
|
47
|
-
* *
|
|
45
|
+
* ```props
|
|
46
|
+
* * Top :- Defines the row position as Top.
|
|
47
|
+
* * Bottom :- Defines the row position as Bottom.
|
|
48
|
+
* * Above :- Defines the row position as Above.
|
|
49
|
+
* * Below :- Defines the row position as Below.
|
|
50
|
+
* * Child :- Defines the row position as Child.
|
|
51
|
+
* ```
|
|
48
52
|
* {% codeBlock src='treegrid/newRowPosition/index.md' %}{% endcodeBlock %}
|
|
49
53
|
*
|
|
50
54
|
* @default Top
|
|
@@ -25,10 +25,12 @@ export declare class EditSettings extends ChildProperty<EditSettings> {
|
|
|
25
25
|
allowDeleting: boolean;
|
|
26
26
|
/**
|
|
27
27
|
* Defines the mode to edit. The available editing modes are:
|
|
28
|
-
*
|
|
29
|
-
* *
|
|
30
|
-
* *
|
|
31
|
-
* *
|
|
28
|
+
* ```props
|
|
29
|
+
* * Cell :- Defines the editing mode as Cell.
|
|
30
|
+
* * Row :- Defines the editing mode as Row.
|
|
31
|
+
* * Dialog :- Defines the editing mode as Dialog.
|
|
32
|
+
* * Batch :- Defines the editing mode as Batch.
|
|
33
|
+
* ```
|
|
32
34
|
*
|
|
33
35
|
* @default Cell
|
|
34
36
|
* @isEnumeration true
|
|
@@ -36,11 +38,13 @@ export declare class EditSettings extends ChildProperty<EditSettings> {
|
|
|
36
38
|
mode: EditMode;
|
|
37
39
|
/**
|
|
38
40
|
* Defines the row position for new records. The available row positions are:
|
|
39
|
-
*
|
|
40
|
-
* *
|
|
41
|
-
* *
|
|
42
|
-
* *
|
|
43
|
-
* *
|
|
41
|
+
* ```props
|
|
42
|
+
* * Top :- Defines the row position as Top.
|
|
43
|
+
* * Bottom :- Defines the row position as Bottom.
|
|
44
|
+
* * Above :- Defines the row position as Above.
|
|
45
|
+
* * Below :- Defines the row position as Below.
|
|
46
|
+
* * Child :- Defines the row position as Child.
|
|
47
|
+
* ```
|
|
44
48
|
* {% codeBlock src='treegrid/newRowPosition/index.md' %}{% endcodeBlock %}
|
|
45
49
|
*
|
|
46
50
|
* @default Top
|
|
@@ -161,9 +161,10 @@ export interface FilterSettingsModel {
|
|
|
161
161
|
|
|
162
162
|
/**
|
|
163
163
|
* Defines the filter bar modes. The available options are,
|
|
164
|
-
*
|
|
165
|
-
* *
|
|
166
|
-
*
|
|
164
|
+
* ```props
|
|
165
|
+
* * OnEnter :- Initiates filter operation after Enter key is pressed.
|
|
166
|
+
* * Immediate :- Initiates filter operation after a certain time interval. By default, time interval is 1500 ms.
|
|
167
|
+
* ```
|
|
167
168
|
* @default Syncfusion.EJ2.Grids.FilterBarMode.OnEnter
|
|
168
169
|
* @isEnumeration true
|
|
169
170
|
* @aspType Syncfusion.EJ2.Grids.FilterBarMode
|
|
@@ -204,14 +205,18 @@ export interface FilterSettingsModel {
|
|
|
204
205
|
ignoreAccent?: boolean;
|
|
205
206
|
|
|
206
207
|
/**
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
*
|
|
211
|
-
*
|
|
208
|
+
* Defines the filter hierarchy modes. The available options are,
|
|
209
|
+
* ```props
|
|
210
|
+
* * Parent :- Shows the filtered record with parent record.
|
|
211
|
+
* * Child :- Shows the filtered record with child record.
|
|
212
|
+
* * Both :- Shows the filtered record with both parent and child record.
|
|
213
|
+
* * None :- Shows only the filtered record.
|
|
214
|
+
* ```
|
|
212
215
|
* {% codeBlock src='treegrid/hierarchyMode/index.md' %}{% endcodeBlock %}
|
|
213
216
|
*
|
|
214
217
|
* @default Parent
|
|
218
|
+
* @isEnumeration true
|
|
219
|
+
* @aspType FilterHierarchyMode
|
|
215
220
|
*/
|
|
216
221
|
hierarchyMode?: FilterHierarchyMode;
|
|
217
222
|
|
|
@@ -146,9 +146,10 @@ export declare class FilterSettings extends ChildProperty<FilterSettings> {
|
|
|
146
146
|
type: FilterType;
|
|
147
147
|
/**
|
|
148
148
|
* Defines the filter bar modes. The available options are,
|
|
149
|
-
*
|
|
150
|
-
* *
|
|
151
|
-
*
|
|
149
|
+
* ```props
|
|
150
|
+
* * OnEnter :- Initiates filter operation after Enter key is pressed.
|
|
151
|
+
* * Immediate :- Initiates filter operation after a certain time interval. By default, time interval is 1500 ms.
|
|
152
|
+
* ```
|
|
152
153
|
* @default Syncfusion.EJ2.Grids.FilterBarMode.OnEnter
|
|
153
154
|
* @isEnumeration true
|
|
154
155
|
* @aspType Syncfusion.EJ2.Grids.FilterBarMode
|
|
@@ -184,14 +185,18 @@ export declare class FilterSettings extends ChildProperty<FilterSettings> {
|
|
|
184
185
|
*/
|
|
185
186
|
ignoreAccent: boolean;
|
|
186
187
|
/**
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
*
|
|
191
|
-
*
|
|
188
|
+
* Defines the filter hierarchy modes. The available options are,
|
|
189
|
+
* ```props
|
|
190
|
+
* * Parent :- Shows the filtered record with parent record.
|
|
191
|
+
* * Child :- Shows the filtered record with child record.
|
|
192
|
+
* * Both :- Shows the filtered record with both parent and child record.
|
|
193
|
+
* * None :- Shows only the filtered record.
|
|
194
|
+
* ```
|
|
192
195
|
* {% codeBlock src='treegrid/hierarchyMode/index.md' %}{% endcodeBlock %}
|
|
193
196
|
*
|
|
194
197
|
* @default Parent
|
|
198
|
+
* @isEnumeration true
|
|
199
|
+
* @aspType FilterHierarchyMode
|
|
195
200
|
*/
|
|
196
201
|
hierarchyMode: FilterHierarchyMode;
|
|
197
202
|
}
|
|
@@ -7,8 +7,10 @@ export interface LoadingIndicatorModel {
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Defines the loading indicator. The available loading indicator are:
|
|
10
|
-
*
|
|
11
|
-
* *
|
|
10
|
+
* ```props
|
|
11
|
+
* * Spinner :- Defines Loading Indicator as Spinner.
|
|
12
|
+
* * Shimmer :- Defines Loading Indicator as Shimmer.
|
|
13
|
+
* ```
|
|
12
14
|
*
|
|
13
15
|
* @default Syncfusion.EJ2.Grids.IndicatorType.Spinner
|
|
14
16
|
* @isEnumeration true
|
|
@@ -6,8 +6,10 @@ import { IndicatorType } from '@syncfusion/ej2-grids';
|
|
|
6
6
|
export declare class LoadingIndicator extends ChildProperty<LoadingIndicator> {
|
|
7
7
|
/**
|
|
8
8
|
* Defines the loading indicator. The available loading indicator are:
|
|
9
|
-
*
|
|
10
|
-
* *
|
|
9
|
+
* ```props
|
|
10
|
+
* * Spinner :- Defines Loading Indicator as Spinner.
|
|
11
|
+
* * Shimmer :- Defines Loading Indicator as Shimmer.
|
|
12
|
+
* ```
|
|
11
13
|
*
|
|
12
14
|
* @default Syncfusion.EJ2.Grids.IndicatorType.Spinner
|
|
13
15
|
* @isEnumeration true
|
|
@@ -60,11 +60,17 @@ export interface SearchSettingsModel {
|
|
|
60
60
|
key?: string;
|
|
61
61
|
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
* *
|
|
63
|
+
* Defines the search hierarchy modes. The available options are,
|
|
64
|
+
* ```props
|
|
65
|
+
* * Parent :- Shows the searched record with parent record.
|
|
66
|
+
* * Child :- Shows the searched record with child record.
|
|
67
|
+
* * Both :- shows the searched record with both parent and child record.
|
|
68
|
+
* * None :- Shows only the searched record.
|
|
69
|
+
* ```
|
|
66
70
|
*
|
|
67
71
|
* @default Parent
|
|
72
|
+
* @isEnumeration true
|
|
73
|
+
* @aspType FilterHierarchyMode
|
|
68
74
|
*/
|
|
69
75
|
hierarchyMode?: FilterHierarchyMode;
|
|
70
76
|
|
|
@@ -55,11 +55,17 @@ export declare class SearchSettings extends ChildProperty<SearchSettings> {
|
|
|
55
55
|
*/
|
|
56
56
|
key: string;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
59
|
-
*
|
|
60
|
-
* *
|
|
58
|
+
* Defines the search hierarchy modes. The available options are,
|
|
59
|
+
* ```props
|
|
60
|
+
* * Parent :- Shows the searched record with parent record.
|
|
61
|
+
* * Child :- Shows the searched record with child record.
|
|
62
|
+
* * Both :- shows the searched record with both parent and child record.
|
|
63
|
+
* * None :- Shows only the searched record.
|
|
64
|
+
* ```
|
|
61
65
|
*
|
|
62
66
|
* @default Parent
|
|
67
|
+
* @isEnumeration true
|
|
68
|
+
* @aspType FilterHierarchyMode
|
|
63
69
|
*/
|
|
64
70
|
hierarchyMode: FilterHierarchyMode;
|
|
65
71
|
}
|
|
@@ -7,6 +7,11 @@ export interface SelectionSettingsModel {
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* TreeGrid supports row, cell, and both (row and cell) selection mode.
|
|
10
|
+
* ```props
|
|
11
|
+
* * Row :- Selects the entire row.
|
|
12
|
+
* * Cell :- Selects the cell alone.
|
|
13
|
+
* * Both :- Selects the entire row and its cell.
|
|
14
|
+
* ```
|
|
10
15
|
*
|
|
11
16
|
* @default Syncfusion.EJ2.Grids.SelectionMode.Row
|
|
12
17
|
* @isEnumeration true
|
|
@@ -17,9 +22,10 @@ export interface SelectionSettingsModel {
|
|
|
17
22
|
/**
|
|
18
23
|
* The cell selection modes are flow and box. It requires the selection
|
|
19
24
|
* [`mode`](#mode) to be either cell or both.
|
|
20
|
-
*
|
|
21
|
-
* *
|
|
22
|
-
*
|
|
25
|
+
* ```props
|
|
26
|
+
* * Flow :- Selects the range of cells between start index and end index that also includes the other cells of the selected rows.
|
|
27
|
+
* * Box :- Selects the range of cells within the start and end column indexes that includes in between cells of rows within the range.
|
|
28
|
+
* ```
|
|
23
29
|
* @default Syncfusion.EJ2.Grids.CellSelectionMode.Flow
|
|
24
30
|
* @isEnumeration true
|
|
25
31
|
* @aspType Syncfusion.EJ2.Grids.CellSelectionMode
|
|
@@ -28,9 +34,10 @@ export interface SelectionSettingsModel {
|
|
|
28
34
|
|
|
29
35
|
/**
|
|
30
36
|
* Defines options for selection type. They are
|
|
31
|
-
*
|
|
32
|
-
* *
|
|
33
|
-
*
|
|
37
|
+
* ```props
|
|
38
|
+
* * Single :- Allows selection of only a row or a cell.
|
|
39
|
+
* * Multiple :- Allows selection of multiple rows or cells.
|
|
40
|
+
* ```
|
|
34
41
|
* @default Syncfusion.EJ2.Grids.SelectionType.Single
|
|
35
42
|
* @isEnumeration true
|
|
36
43
|
* @aspType Syncfusion.EJ2.Grids.SelectionType
|
|
@@ -47,8 +54,10 @@ export interface SelectionSettingsModel {
|
|
|
47
54
|
|
|
48
55
|
/**
|
|
49
56
|
* Defines options for checkbox selection Mode. They are
|
|
50
|
-
*
|
|
51
|
-
* *
|
|
57
|
+
* ```props
|
|
58
|
+
* * Default :- This is the default value of the checkboxMode. In this mode, user can select multiple rows by clicking rows one by one.
|
|
59
|
+
* * ResetOnRowClick :- In ResetOnRowClick mode, on clicking a row it will reset previously selected row and also multiple.
|
|
60
|
+
* ```
|
|
52
61
|
* rows can be selected by using CTRL or SHIFT key.
|
|
53
62
|
*
|
|
54
63
|
* @default Syncfusion.EJ2.Grids.CheckboxSelectionType.Default
|
|
@@ -6,6 +6,11 @@ import { SelectionMode, CellSelectionMode, SelectionType, CheckboxSelectionType
|
|
|
6
6
|
export declare class SelectionSettings extends ChildProperty<SelectionSettings> {
|
|
7
7
|
/**
|
|
8
8
|
* TreeGrid supports row, cell, and both (row and cell) selection mode.
|
|
9
|
+
* ```props
|
|
10
|
+
* * Row :- Selects the entire row.
|
|
11
|
+
* * Cell :- Selects the cell alone.
|
|
12
|
+
* * Both :- Selects the entire row and its cell.
|
|
13
|
+
* ```
|
|
9
14
|
*
|
|
10
15
|
* @default Syncfusion.EJ2.Grids.SelectionMode.Row
|
|
11
16
|
* @isEnumeration true
|
|
@@ -15,9 +20,10 @@ export declare class SelectionSettings extends ChildProperty<SelectionSettings>
|
|
|
15
20
|
/**
|
|
16
21
|
* The cell selection modes are flow and box. It requires the selection
|
|
17
22
|
* [`mode`](#mode) to be either cell or both.
|
|
18
|
-
*
|
|
19
|
-
* *
|
|
20
|
-
*
|
|
23
|
+
* ```props
|
|
24
|
+
* * Flow :- Selects the range of cells between start index and end index that also includes the other cells of the selected rows.
|
|
25
|
+
* * Box :- Selects the range of cells within the start and end column indexes that includes in between cells of rows within the range.
|
|
26
|
+
* ```
|
|
21
27
|
* @default Syncfusion.EJ2.Grids.CellSelectionMode.Flow
|
|
22
28
|
* @isEnumeration true
|
|
23
29
|
* @aspType Syncfusion.EJ2.Grids.CellSelectionMode
|
|
@@ -25,9 +31,10 @@ export declare class SelectionSettings extends ChildProperty<SelectionSettings>
|
|
|
25
31
|
cellSelectionMode: CellSelectionMode;
|
|
26
32
|
/**
|
|
27
33
|
* Defines options for selection type. They are
|
|
28
|
-
*
|
|
29
|
-
* *
|
|
30
|
-
*
|
|
34
|
+
* ```props
|
|
35
|
+
* * Single :- Allows selection of only a row or a cell.
|
|
36
|
+
* * Multiple :- Allows selection of multiple rows or cells.
|
|
37
|
+
* ```
|
|
31
38
|
* @default Syncfusion.EJ2.Grids.SelectionType.Single
|
|
32
39
|
* @isEnumeration true
|
|
33
40
|
* @aspType Syncfusion.EJ2.Grids.SelectionType
|
|
@@ -42,8 +49,10 @@ export declare class SelectionSettings extends ChildProperty<SelectionSettings>
|
|
|
42
49
|
persistSelection: boolean;
|
|
43
50
|
/**
|
|
44
51
|
* Defines options for checkbox selection Mode. They are
|
|
45
|
-
*
|
|
46
|
-
* *
|
|
52
|
+
* ```props
|
|
53
|
+
* * Default :- This is the default value of the checkboxMode. In this mode, user can select multiple rows by clicking rows one by one.
|
|
54
|
+
* * ResetOnRowClick :- In ResetOnRowClick mode, on clicking a row it will reset previously selected row and also multiple.
|
|
55
|
+
* ```
|
|
47
56
|
* rows can be selected by using CTRL or SHIFT key.
|
|
48
57
|
*
|
|
49
58
|
* @default Syncfusion.EJ2.Grids.CheckboxSelectionType.Default
|
|
@@ -136,7 +136,7 @@ var Render = /** @class */ (function () {
|
|
|
136
136
|
addClass([expandIcon], (expand) ? 'e-treegridexpand' : 'e-treegridcollapse');
|
|
137
137
|
totalIconsWidth += 18;
|
|
138
138
|
container.appendChild(expandIcon);
|
|
139
|
-
emptyExpandIcon.style.width = '
|
|
139
|
+
emptyExpandIcon.style.width = '4px';
|
|
140
140
|
totalIconsWidth += 7;
|
|
141
141
|
container.appendChild(emptyExpandIcon.cloneNode());
|
|
142
142
|
}
|
|
@@ -263,7 +263,7 @@ var Render = /** @class */ (function () {
|
|
|
263
263
|
}
|
|
264
264
|
else {
|
|
265
265
|
var str = 'isStringTemplate';
|
|
266
|
-
var result = args.column["" + templateFn](extend({ 'index': '' }, args.data), this.parent, 'template', tempID, this.parent["" + str]
|
|
266
|
+
var result = args.column["" + templateFn](extend({ 'index': '' }, args.data), this.parent, 'template', tempID, this.parent["" + str]);
|
|
267
267
|
appendChildren(cellElement, result);
|
|
268
268
|
}
|
|
269
269
|
delete args.column.template;
|
|
@@ -161,9 +161,6 @@
|
|
|
161
161
|
width: 20px;
|
|
162
162
|
}
|
|
163
163
|
.e-bigger .e-treegrid .e-hierarchycheckbox .e-frame {
|
|
164
|
-
font-size: 12px;
|
|
165
|
-
line-height: 12px;
|
|
166
|
-
padding: 2px 0;
|
|
167
164
|
height: 20px;
|
|
168
165
|
width: 20px;
|
|
169
166
|
}
|
|
@@ -226,11 +223,8 @@
|
|
|
226
223
|
vertical-align: middle;
|
|
227
224
|
}
|
|
228
225
|
.e-treegrid .e-hierarchycheckbox .e-frame {
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
line-height: 11px;
|
|
232
|
-
padding: 2px 0;
|
|
233
|
-
width: 16px;
|
|
226
|
+
height: 20px;
|
|
227
|
+
width: 20px;
|
|
234
228
|
}
|
|
235
229
|
.e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
|
|
236
230
|
.e-treegrid .e-checkselection .e-movableheader .e-rowcell,
|
|
@@ -134,9 +134,6 @@
|
|
|
134
134
|
width: 20px;
|
|
135
135
|
}
|
|
136
136
|
.e-bigger .e-treegrid .e-hierarchycheckbox .e-frame {
|
|
137
|
-
font-size: 12px;
|
|
138
|
-
line-height: 12px;
|
|
139
|
-
padding: 2px 0;
|
|
140
137
|
height: 20px;
|
|
141
138
|
width: 20px;
|
|
142
139
|
}
|
|
@@ -199,11 +196,8 @@
|
|
|
199
196
|
vertical-align: middle;
|
|
200
197
|
}
|
|
201
198
|
.e-treegrid .e-hierarchycheckbox .e-frame {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
line-height: 11px;
|
|
205
|
-
padding: 2px 0;
|
|
206
|
-
width: 16px;
|
|
199
|
+
height: 20px;
|
|
200
|
+
width: 20px;
|
|
207
201
|
}
|
|
208
202
|
.e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
|
|
209
203
|
.e-treegrid .e-checkselection .e-movableheader .e-rowcell,
|
|
@@ -7,14 +7,14 @@ $error-elem-color: $danger !default;
|
|
|
7
7
|
// Layout
|
|
8
8
|
|
|
9
9
|
$error-elem-content: '\e839' !default;
|
|
10
|
-
$treegrid-right-arrow-icon-font-size:
|
|
10
|
+
$treegrid-right-arrow-icon-font-size: $text-lg !default;
|
|
11
11
|
$treegrid-right-arrow-icon-padding: 0 !default;
|
|
12
12
|
$treegrid-right-arrow-icon-vertical-align: unset;
|
|
13
13
|
$treegrid-right-arrow-icon-height: 18px !default;
|
|
14
14
|
$treegrid-right-arrow-icon-width: 16px !default;
|
|
15
15
|
$treegrid-bigger-icon-size: 22px !default;
|
|
16
16
|
$treegrid-smaller-icon-size: 16px !default;
|
|
17
|
-
$treegrid-bigger-icon-font-size:
|
|
17
|
+
$treegrid-bigger-icon-font-size: $font-icon-22 !default;
|
|
18
18
|
$treegrid-frame-bigger-icon-height: 18px !default;
|
|
19
19
|
$treegrid-frame-bigger-icon-width: 18px !default;
|
|
20
20
|
$treegrid-frame-icon-height: 16px !default;
|
|
@@ -7,14 +7,14 @@ $error-elem-color: $danger !default;
|
|
|
7
7
|
// Layout
|
|
8
8
|
|
|
9
9
|
$error-elem-content: '\e839' !default;
|
|
10
|
-
$treegrid-right-arrow-icon-font-size:
|
|
10
|
+
$treegrid-right-arrow-icon-font-size: $text-lg !default;
|
|
11
11
|
$treegrid-right-arrow-icon-padding: 0 !default;
|
|
12
12
|
$treegrid-right-arrow-icon-vertical-align: unset;
|
|
13
13
|
$treegrid-right-arrow-icon-height: 18px !default;
|
|
14
14
|
$treegrid-right-arrow-icon-width: 16px !default;
|
|
15
15
|
$treegrid-bigger-icon-size: 22px !default;
|
|
16
16
|
$treegrid-smaller-icon-size: 16px !default;
|
|
17
|
-
$treegrid-bigger-icon-font-size:
|
|
17
|
+
$treegrid-bigger-icon-font-size: $font-icon-22 !default;
|
|
18
18
|
$treegrid-frame-bigger-icon-height: 18px !default;
|
|
19
19
|
$treegrid-frame-bigger-icon-width: 18px !default;
|
|
20
20
|
$treegrid-frame-icon-height: 16px !default;
|
|
@@ -7,14 +7,14 @@ $error-elem-color: $danger !default;
|
|
|
7
7
|
// Layout
|
|
8
8
|
|
|
9
9
|
$error-elem-content: '\e77e' !default;
|
|
10
|
-
$treegrid-right-arrow-icon-font-size:
|
|
10
|
+
$treegrid-right-arrow-icon-font-size: $text-lg !default;
|
|
11
11
|
$treegrid-right-arrow-icon-padding: 0 !default;
|
|
12
12
|
$treegrid-right-arrow-icon-vertical-align: unset;
|
|
13
13
|
$treegrid-right-arrow-icon-height: 18px !default;
|
|
14
14
|
$treegrid-right-arrow-icon-width: 16px !default;
|
|
15
15
|
$treegrid-bigger-icon-size: 22px !default;
|
|
16
16
|
$treegrid-smaller-icon-size: 16px !default;
|
|
17
|
-
$treegrid-bigger-icon-font-size:
|
|
17
|
+
$treegrid-bigger-icon-font-size: $font-icon-22 !default;
|
|
18
18
|
$treegrid-frame-bigger-icon-height: 18px !default;
|
|
19
19
|
$treegrid-frame-bigger-icon-width: 18px !default;
|
|
20
20
|
$treegrid-frame-icon-height: 16px !default;
|
|
@@ -161,9 +161,6 @@
|
|
|
161
161
|
width: 20px;
|
|
162
162
|
}
|
|
163
163
|
.e-bigger .e-treegrid .e-hierarchycheckbox .e-frame {
|
|
164
|
-
font-size: 12px;
|
|
165
|
-
line-height: 12px;
|
|
166
|
-
padding: 2px 0;
|
|
167
164
|
height: 20px;
|
|
168
165
|
width: 20px;
|
|
169
166
|
}
|
|
@@ -226,11 +223,8 @@
|
|
|
226
223
|
vertical-align: middle;
|
|
227
224
|
}
|
|
228
225
|
.e-treegrid .e-hierarchycheckbox .e-frame {
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
line-height: 11px;
|
|
232
|
-
padding: 2px 0;
|
|
233
|
-
width: 16px;
|
|
226
|
+
height: 20px;
|
|
227
|
+
width: 20px;
|
|
234
228
|
}
|
|
235
229
|
.e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
|
|
236
230
|
.e-treegrid .e-checkselection .e-movableheader .e-rowcell,
|
|
@@ -134,9 +134,6 @@
|
|
|
134
134
|
width: 20px;
|
|
135
135
|
}
|
|
136
136
|
.e-bigger .e-treegrid .e-hierarchycheckbox .e-frame {
|
|
137
|
-
font-size: 12px;
|
|
138
|
-
line-height: 12px;
|
|
139
|
-
padding: 2px 0;
|
|
140
137
|
height: 20px;
|
|
141
138
|
width: 20px;
|
|
142
139
|
}
|
|
@@ -199,11 +196,8 @@
|
|
|
199
196
|
vertical-align: middle;
|
|
200
197
|
}
|
|
201
198
|
.e-treegrid .e-hierarchycheckbox .e-frame {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
line-height: 11px;
|
|
205
|
-
padding: 2px 0;
|
|
206
|
-
width: 16px;
|
|
199
|
+
height: 20px;
|
|
200
|
+
width: 20px;
|
|
207
201
|
}
|
|
208
202
|
.e-treegrid .e-checkselection .e-frozenheader .e-rowcell,
|
|
209
203
|
.e-treegrid .e-checkselection .e-movableheader .e-rowcell,
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
// color
|
|
2
|
-
$treegrid-right-arrow-icon-color: $icon-color !default;
|
|
3
|
-
$treegrid-right-arrow-hover-color: $icon-color-hover !default;
|
|
4
|
-
$childborder-color: $primary !default;
|
|
5
|
-
$error-elem-color: $danger !default;
|
|
6
|
-
|
|
7
|
-
// Layout
|
|
8
|
-
|
|
9
|
-
$error-elem-content: '\e839' !default;
|
|
10
|
-
$treegrid-right-arrow-icon-font-size: 18px !default;
|
|
11
|
-
$treegrid-right-arrow-icon-padding: 0 !default;
|
|
12
|
-
$treegrid-right-arrow-icon-vertical-align: unset;
|
|
13
|
-
$treegrid-right-arrow-icon-height: 18px !default;
|
|
14
|
-
$treegrid-right-arrow-icon-width: 16px !default;
|
|
15
|
-
$treegrid-bigger-icon-size: 22px !default;
|
|
16
|
-
$treegrid-smaller-icon-size: 16px !default;
|
|
17
|
-
$treegrid-bigger-icon-font-size: 22px !default;
|
|
18
|
-
$treegrid-frame-bigger-icon-height: 18px !default;
|
|
19
|
-
$treegrid-frame-bigger-icon-width: 18px !default;
|
|
20
|
-
$treegrid-frame-icon-height: 16px !default;
|
|
21
|
-
$treegrid-frame-icon-width: 16px !default;
|
|
22
|
-
$treegrid-content-right-padding: 21px !default;
|
|
23
|
-
$treegrid-rowdrag-childborder-border: 2px solid #4f46e5;
|
|
24
|
-
$treegrid-rowdd-topbottom-border: 2px solid #4f46e5 !default;
|
|
25
|
-
$treegrid-rowdd-boxshadow: $primary !default;
|
|
26
|
-
$treegrid-rowdd-childborder-width: 2px 0 0 !default;
|
|
27
|
-
$treegrid-lastrowdd-childborder-width: 2px 0 !default;
|
|
28
|
-
$treegrid-rtl-rowdd-childborder-width: 2px 0 2px 0 !default;
|