@colijnit/corecomponents_v12 300.1.3 → 300.1.5
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/index.d.ts
CHANGED
|
@@ -2497,6 +2497,9 @@ declare class SimpleGridComponent extends BaseSimpleGridComponent {
|
|
|
2497
2497
|
private _filterSelectedOrReturnAll;
|
|
2498
2498
|
private _resetDblClick;
|
|
2499
2499
|
/**
|
|
2500
|
+
* Cell indexes are expressed in `headerColumnsCopy` space, because that is the
|
|
2501
|
+
* collection the rows are rendered from. Using `columns` here would drift as soon
|
|
2502
|
+
* as a column is hidden or marked as single column.
|
|
2500
2503
|
*
|
|
2501
2504
|
* @param next; Move to next or previous cell
|
|
2502
2505
|
* @param start; Start from cellindex
|
|
@@ -2505,6 +2508,7 @@ declare class SimpleGridComponent extends BaseSimpleGridComponent {
|
|
|
2505
2508
|
private _nextAvailableCellToEdit;
|
|
2506
2509
|
private _getNextEditCellIndex;
|
|
2507
2510
|
private _getPreviousEditCellIndex;
|
|
2511
|
+
private _isCellEditable;
|
|
2508
2512
|
private _getNextEditRowIndex;
|
|
2509
2513
|
private _getPreviousEditRowIndex;
|
|
2510
2514
|
private _saveRow;
|
|
@@ -2519,16 +2523,12 @@ declare class SimpleGridCellComponent implements OnInit {
|
|
|
2519
2523
|
private _changeDetector;
|
|
2520
2524
|
private _injector;
|
|
2521
2525
|
private _formComponent;
|
|
2522
|
-
|
|
2523
|
-
set editMode(value: boolean);
|
|
2526
|
+
editMode: boolean;
|
|
2524
2527
|
readonly defaultTextAlign: ColumnAlign;
|
|
2525
|
-
set
|
|
2526
|
-
set noEditTemplateContent(template: any);
|
|
2527
|
-
set noTemplateContent(template: any);
|
|
2528
|
+
set cellFieldContent(element: ElementRef<HTMLElement>);
|
|
2528
2529
|
column: SimpleGridColumnDirective;
|
|
2529
2530
|
row: {};
|
|
2530
2531
|
columnInjector: Injector;
|
|
2531
|
-
private _editMode;
|
|
2532
2532
|
set fieldEditMode(value: boolean);
|
|
2533
2533
|
get fieldEditMode(): boolean;
|
|
2534
2534
|
cellClick: EventEmitter<MouseEvent>;
|
|
@@ -2536,9 +2536,7 @@ declare class SimpleGridCellComponent implements OnInit {
|
|
|
2536
2536
|
handleClick(event: MouseEvent): void;
|
|
2537
2537
|
private _fieldEditMode;
|
|
2538
2538
|
private _focused;
|
|
2539
|
-
private
|
|
2540
|
-
private _template;
|
|
2541
|
-
private _inputTemplate;
|
|
2539
|
+
private _cellField;
|
|
2542
2540
|
constructor(_changeDetector: ChangeDetectorRef, _injector: Injector, _formComponent: FormComponent);
|
|
2543
2541
|
ngOnInit(): void;
|
|
2544
2542
|
private _setFocusComponent;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@include export-module('co-list-of-values-theme') {
|
|
2
|
-
.co-list-of-values-popup {
|
|
3
|
-
.lov-highlight {
|
|
4
|
-
background-color: $cc-co-list-of-values-highlight-background-color;
|
|
5
|
-
color: $cc-co-list-of-values-highlight-text-color;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
@include export-module('co-list-of-values-theme') {
|
|
2
|
+
.co-list-of-values-popup {
|
|
3
|
+
.lov-highlight {
|
|
4
|
+
background-color: $cc-co-list-of-values-highlight-background-color;
|
|
5
|
+
color: $cc-co-list-of-values-highlight-text-color;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|