@colijnit/corecomponents_v12 262.1.5 → 262.1.7
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
|
|
|
@@ -2741,6 +2745,11 @@ declare class SimpleGridModule {
|
|
|
2741
2745
|
static ɵinj: i0.ɵɵInjectorDeclaration<SimpleGridModule>;
|
|
2742
2746
|
}
|
|
2743
2747
|
|
|
2748
|
+
declare enum ColorSequenceName {
|
|
2749
|
+
Regular = "REGULAR",
|
|
2750
|
+
Variant = "VARIANT"
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2744
2753
|
declare enum ContentViewMode {
|
|
2745
2754
|
List = 0,
|
|
2746
2755
|
Grid = 1,
|
|
@@ -3625,11 +3634,6 @@ declare class Color {
|
|
|
3625
3634
|
getTransparentCssColor(opacity?: number): string;
|
|
3626
3635
|
}
|
|
3627
3636
|
|
|
3628
|
-
declare enum ColorSequenceName {
|
|
3629
|
-
Regular = "REGULAR",
|
|
3630
|
-
Variant = "VARIANT"
|
|
3631
|
-
}
|
|
3632
|
-
|
|
3633
3637
|
declare class ColorSequence {
|
|
3634
3638
|
colors: Color[];
|
|
3635
3639
|
name: ColorSequenceName;
|
|
@@ -4043,5 +4047,5 @@ interface DragDropContainerElement {
|
|
|
4043
4047
|
elementIdx: number;
|
|
4044
4048
|
}
|
|
4045
4049
|
|
|
4046
|
-
export { AlignWithDirective, AlignWithModule, AppendPipe, AppendPipeModule, ArticleTileComponent, ArticleTileModule, BaseInputComponent, BaseInputDatePickerDirective, BaseModuleScreenConfigService, BaseModuleService, ButtonComponent, ButtonModule, CalendarComponent, CalendarModule, CalendarTemplateComponent, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayComponent, CheckmarkOverlayModule, ClickOutsideDirective, ClickoutsideModule, CoCurrencyPipe, CoCurrencyPipeModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoOrientation, CollapsibleComponent, CollapsibleModule, ColorPickerComponent, ColorPickerModule, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, CoreComponentsTranslationModule, CoreComponentsTranslationService, CoreDialogModule, CoreDialogService, CoreLocalizePipe, DoubleCalendarComponent, DoubleCalendarModule, DragDropContainer, DragDropContainerComponent, DragDropManagerService, DragDropModule, DraggableDirective, ElementPosition, FilterItemComponent, FilterItemMode, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormInputUserModelChangeListenerService, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, HourSchedulingComponent, HourSchedulingComponentModule, HourSchedulingExpandableComponent, HourSchedulingExpandableComponentModule, HourSchedulingExpandableTemplateComponent, HourSchedulingExpandableTemplateModule, HourSchedulingTestObjectComponent, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputScannerComponent, InputScannerModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTimeComponent, InputTimeModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfIconsComponent, ListOfIconsModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesPopupComponent, LoaderComponent, LoaderModule, NgZoneWrapperService, ObserveVisibilityDirective, ObserveVisibilityModule, OrientationOfDirection, OverlayDirective, OverlayModule, OverlayParentDirective, OverlayService, PaginatePipe, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PrependPipe, PrependPipeModule, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, ResponsiveTextComponent, ResponsiveTextModule, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationDirective, ScreenConfigurationModule, ScrollContainerComponent, ScrollContainerModule, ScrollDirection, SimpleGridCellComponent, SimpleGridColumnDirective, SimpleGridColumnTemplateDirective, SimpleGridColumnTemplateType, SimpleGridComponent, SimpleGridModule, TemplateWrapperDirective, TemplateWrapperModule, TextInputPopupComponent, TileComponent, TileModule, TileSelectComponent, TileSelectModule, TooltipDirective, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, emailValidator, equalValidator, getValidatePasswordErrorString, maxStringLengthValidator, passwordValidator, precisionScaleValidator, requiredValidator, showHideDialog };
|
|
4050
|
+
export { AlignWithDirective, AlignWithModule, AppendPipe, AppendPipeModule, ArticleTileComponent, ArticleTileModule, BaseInputComponent, BaseInputDatePickerDirective, BaseModuleScreenConfigService, BaseModuleService, ButtonComponent, ButtonModule, CalendarComponent, CalendarModule, CalendarTemplateComponent, CardComponent, CardModule, Carousel3dComponent, Carousel3dModule, CarouselComponent, CarouselHammerConfig, CarouselModule, CheckmarkOverlayComponent, CheckmarkOverlayModule, ClickOutsideDirective, ClickoutsideModule, CoCurrencyPipe, CoCurrencyPipeModule, CoDialogComponent, CoDialogModule, CoDialogWizardComponent, CoDialogWizardModule, CoDirection, CoOrientation, CollapsibleComponent, CollapsibleModule, Color, ColorPickerComponent, ColorPickerModule, ColorSequence, ColorSequenceName, ColorSequenceService, ColumnAlign, ContentViewMode, CoreComponentsIcon, CoreComponentsTranslationModule, CoreComponentsTranslationService, CoreDialogModule, CoreDialogService, CoreLocalizePipe, DoubleCalendarComponent, DoubleCalendarModule, DragDropContainer, DragDropContainerComponent, DragDropManagerService, DragDropModule, DraggableDirective, ElementPosition, FilterItemComponent, FilterItemMode, FilterItemModule, FilterItemViewmodel, FilterPipe, FilterPipeModule, FilterViewmodel, FormComponent, FormInputUserModelChangeListenerService, FormMasterService, FormModule, GridToolbarButtonComponent, GridToolbarButtonModule, GridToolbarComponent, GridToolbarModule, HourSchedulingComponent, HourSchedulingComponentModule, HourSchedulingExpandableComponent, HourSchedulingExpandableComponentModule, HourSchedulingExpandableTemplateComponent, HourSchedulingExpandableTemplateModule, HourSchedulingTestObjectComponent, IconCacheService, IconCollapseHandleComponent, IconCollapseHandleModule, IconComponent, IconModule, ImageComponent, ImageModule, InputCheckboxComponent, InputCheckboxModule, InputDatePickerComponent, InputDatePickerModule, InputDateRangePickerComponent, InputDateRangePickerModule, InputNumberPickerComponent, InputNumberPickerModule, InputRadioButtonComponent, InputRadioButtonModule, InputScannerComponent, InputScannerModule, InputSearchComponent, InputSearchModule, InputTextComponent, InputTextModule, InputTextareaComponent, InputTextareaModule, InputTimeComponent, InputTimeModule, LevelIndicatorComponent, LevelIndicatorModule, ListOfIconsComponent, ListOfIconsModule, ListOfValuesComponent, ListOfValuesModule, ListOfValuesPopupComponent, LoaderComponent, LoaderModule, NgZoneWrapperService, ObserveVisibilityDirective, ObserveVisibilityModule, OrientationOfDirection, OverlayDirective, OverlayModule, OverlayParentDirective, OverlayService, PaginatePipe, PaginationBarComponent, PaginationBarModule, PaginationComponent, PaginationModule, PopupButtonsComponent, PopupMessageDisplayComponent, PopupModule, PopupWindowShellComponent, PrependPipe, PrependPipeModule, PriceDisplayPipe, PriceDisplayPipeModule, PromptService, ResponsiveTextComponent, ResponsiveTextModule, SCREEN_CONFIG_ADAPTER_COMPONENT_INTERFACE_NAME, ScreenConfigurationDirective, ScreenConfigurationModule, ScrollContainerComponent, ScrollContainerModule, ScrollDirection, SimpleGridCellComponent, SimpleGridColumnDirective, SimpleGridColumnTemplateDirective, SimpleGridColumnTemplateType, SimpleGridComponent, SimpleGridModule, TemplateWrapperDirective, TemplateWrapperModule, TextInputPopupComponent, TileComponent, TileModule, TileSelectComponent, TileSelectModule, TooltipDirective, TooltipDirectiveModule, ViewModeButtonsComponent, ViewModeButtonsModule, emailValidator, equalValidator, getValidatePasswordErrorString, maxStringLengthValidator, passwordValidator, precisionScaleValidator, requiredValidator, showHideDialog };
|
|
4047
4051
|
export type { CoDragEvent, CoDropEvent, DataItem, DialogResponseInterface, DragDropContainerElement, IPage, IconListItem, SchedulingObject$1 as SchedulingObject, ScreenConfigAdapterComponent, lovViewModel };
|