@colijnit/corecomponents_v12 262.1.5 → 262.1.6
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
|
@@ -1825,7 +1825,7 @@ declare class CalendarModule {
|
|
|
1825
1825
|
|
|
1826
1826
|
declare class InputDatePickerModule {
|
|
1827
1827
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDatePickerModule, never>;
|
|
1828
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InputDatePickerModule, [typeof InputDatePickerComponent], [typeof i2.CommonModule, typeof InputTextModule, typeof CalendarModule, typeof ClickoutsideModule, typeof OverlayModule, typeof i4$1.ReactiveFormsModule], [typeof InputDatePickerComponent]>;
|
|
1828
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputDatePickerModule, [typeof InputDatePickerComponent], [typeof i2.CommonModule, typeof InputTextModule, typeof CalendarModule, typeof ClickoutsideModule, typeof OverlayModule, typeof i4$1.ReactiveFormsModule, typeof i4$1.FormsModule], [typeof InputDatePickerComponent]>;
|
|
1829
1829
|
static ɵinj: i0.ɵɵInjectorDeclaration<InputDatePickerModule>;
|
|
1830
1830
|
}
|
|
1831
1831
|
|
|
@@ -2539,8 +2539,10 @@ declare class SimpleGridComponent extends BaseSimpleGridComponent {
|
|
|
2539
2539
|
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleGridComponent, "co-simple-grid", never, { "showAdd": { "alias": "showAdd"; "required": false; }; "showDelete": { "alias": "showDelete"; "required": false; }; "deselectAllowed": { "alias": "deselectAllowed"; "required": false; }; "editOnCellClick": { "alias": "editOnCellClick"; "required": false; }; "rightToolbar": { "alias": "rightToolbar"; "required": false; }; "showGridSettings": { "alias": "showGridSettings"; "required": false; }; "rowsPerPage": { "alias": "rowsPerPage"; "required": false; }; "rowDisabledFn": { "alias": "rowDisabledFn"; "required": false; }; "rowConditionalClassFn": { "alias": "rowConditionalClassFn"; "required": false; }; "showColumnSort": { "alias": "showColumnSort"; "required": false; }; "showRowButtons": { "alias": "showRowButtons"; "required": false; }; "resetPageOnDataChange": { "alias": "resetPageOnDataChange"; "required": false; }; "scrollOnRowAction": { "alias": "scrollOnRowAction"; "required": false; }; "scrollDirection": { "alias": "scrollDirection"; "required": false; }; "canRowBeEdittedFn": { "alias": "canRowBeEdittedFn"; "required": false; }; }, {}, never, never, false, never>;
|
|
2540
2540
|
}
|
|
2541
2541
|
|
|
2542
|
-
declare class SimpleGridCellComponent {
|
|
2542
|
+
declare class SimpleGridCellComponent implements OnInit {
|
|
2543
2543
|
private _changeDetector;
|
|
2544
|
+
private _injector;
|
|
2545
|
+
private _formComponent;
|
|
2544
2546
|
get editMode(): boolean;
|
|
2545
2547
|
set editMode(value: boolean);
|
|
2546
2548
|
readonly defaultTextAlign: ColumnAlign;
|
|
@@ -2549,6 +2551,7 @@ declare class SimpleGridCellComponent {
|
|
|
2549
2551
|
set noTemplateContent(template: any);
|
|
2550
2552
|
column: SimpleGridColumnDirective;
|
|
2551
2553
|
row: {};
|
|
2554
|
+
columnInjector: Injector;
|
|
2552
2555
|
private _editMode;
|
|
2553
2556
|
set fieldEditMode(value: boolean);
|
|
2554
2557
|
get fieldEditMode(): boolean;
|
|
@@ -2560,13 +2563,14 @@ declare class SimpleGridCellComponent {
|
|
|
2560
2563
|
private _editTemplate;
|
|
2561
2564
|
private _template;
|
|
2562
2565
|
private _inputTemplate;
|
|
2563
|
-
constructor(_changeDetector: ChangeDetectorRef);
|
|
2566
|
+
constructor(_changeDetector: ChangeDetectorRef, _injector: Injector, _formComponent: FormComponent);
|
|
2567
|
+
ngOnInit(): void;
|
|
2564
2568
|
private _setFocusComponent;
|
|
2565
2569
|
private _getFirstFormInput;
|
|
2566
2570
|
private _createNewEvent;
|
|
2567
2571
|
private _getElement;
|
|
2568
2572
|
private _detectChanges;
|
|
2569
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleGridCellComponent,
|
|
2573
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleGridCellComponent, [null, null, { optional: true; }]>;
|
|
2570
2574
|
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleGridCellComponent, "co-simple-grid-cell", never, { "editMode": { "alias": "editMode"; "required": false; }; "column": { "alias": "column"; "required": false; }; "row": { "alias": "row"; "required": false; }; "fieldEditMode": { "alias": "fieldEditMode"; "required": false; }; }, { "cellClick": "cellClick"; }, never, never, false, never>;
|
|
2571
2575
|
}
|
|
2572
2576
|
|