es-grid-template 1.6.8 → 1.7.0
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.
|
@@ -415,7 +415,8 @@ const EditableCell = props => {
|
|
|
415
415
|
newState,
|
|
416
416
|
option: {
|
|
417
417
|
value: val,
|
|
418
|
-
label: val
|
|
418
|
+
label: val,
|
|
419
|
+
searchTextAsValue: true
|
|
419
420
|
},
|
|
420
421
|
indexCol,
|
|
421
422
|
indexRow,
|
|
@@ -498,7 +499,8 @@ const EditableCell = props => {
|
|
|
498
499
|
newState,
|
|
499
500
|
option: {
|
|
500
501
|
value: val,
|
|
501
|
-
label: val
|
|
502
|
+
label: val,
|
|
503
|
+
searchTextAsValue: true
|
|
502
504
|
},
|
|
503
505
|
indexCol,
|
|
504
506
|
indexRow,
|
|
@@ -15,7 +15,5 @@ interface UseColumnsConfig<RecordType> {
|
|
|
15
15
|
rowKey?: any;
|
|
16
16
|
onMouseHover?: any;
|
|
17
17
|
}
|
|
18
|
-
declare const useColumns: <RecordType extends AnyObject = AnyObject>(config: UseColumnsConfig<RecordType>) => readonly [
|
|
19
|
-
any
|
|
20
|
-
];
|
|
18
|
+
declare const useColumns: <RecordType extends AnyObject = AnyObject>(config: UseColumnsConfig<RecordType>) => readonly [any];
|
|
21
19
|
export default useColumns;
|
|
@@ -417,7 +417,8 @@ const EditableCell = props => {
|
|
|
417
417
|
newState,
|
|
418
418
|
option: {
|
|
419
419
|
value: val,
|
|
420
|
-
label: val
|
|
420
|
+
label: val,
|
|
421
|
+
searchTextAsValue: true
|
|
421
422
|
},
|
|
422
423
|
indexCol,
|
|
423
424
|
indexRow,
|
|
@@ -500,7 +501,8 @@ const EditableCell = props => {
|
|
|
500
501
|
newState,
|
|
501
502
|
option: {
|
|
502
503
|
value: val,
|
|
503
|
-
label: val
|
|
504
|
+
label: val,
|
|
505
|
+
searchTextAsValue: true
|
|
504
506
|
},
|
|
505
507
|
indexCol,
|
|
506
508
|
indexRow,
|