@colijnit/corecomponents_v12 261.20.13 → 261.20.15
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
|
@@ -2668,6 +2668,11 @@ declare class SimpleGridModule {
|
|
|
2668
2668
|
static ɵinj: i0.ɵɵInjectorDeclaration<SimpleGridModule>;
|
|
2669
2669
|
}
|
|
2670
2670
|
|
|
2671
|
+
declare enum ColorSequenceName {
|
|
2672
|
+
Regular = "REGULAR",
|
|
2673
|
+
Variant = "VARIANT"
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2671
2676
|
declare enum ContentViewMode {
|
|
2672
2677
|
List = 0,
|
|
2673
2678
|
Grid = 1,
|
|
@@ -3199,6 +3204,7 @@ declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
|
3199
3204
|
search: EventEmitter<string>;
|
|
3200
3205
|
isFocused: EventEmitter<boolean>;
|
|
3201
3206
|
barCodeScanned: EventEmitter<string>;
|
|
3207
|
+
scannerDisabled: boolean;
|
|
3202
3208
|
showClass(): boolean;
|
|
3203
3209
|
private _blockEnterKeydown;
|
|
3204
3210
|
private _keyDownTimeout;
|
|
@@ -3208,7 +3214,7 @@ declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
|
3208
3214
|
triggerCodeScanned(code?: string): void;
|
|
3209
3215
|
private _clearTimeout;
|
|
3210
3216
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputScannerComponent, never>;
|
|
3211
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputScannerComponent, "co-input-scanner", never, { "model": { "alias": "model"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "useLeftIcon": { "alias": "useLeftIcon"; "required": false; }; "useRightIcon": { "alias": "useRightIcon"; "required": false; }; "leftIconData": { "alias": "leftIconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "customCssClass": { "alias": "customCssClass"; "required": false; }; }, { "modelChange": "modelChange"; "leftIconClick": "leftIconClick"; "rightIconClick": "rightIconClick"; "search": "search"; "isFocused": "isFocused"; "barCodeScanned": "barCodeScanned"; }, never, never, false, never>;
|
|
3217
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputScannerComponent, "co-input-scanner", never, { "model": { "alias": "model"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; "useLeftIcon": { "alias": "useLeftIcon"; "required": false; }; "useRightIcon": { "alias": "useRightIcon"; "required": false; }; "leftIconData": { "alias": "leftIconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "customCssClass": { "alias": "customCssClass"; "required": false; }; "scannerDisabled": { "alias": "scannerDisabled"; "required": false; }; }, { "modelChange": "modelChange"; "leftIconClick": "leftIconClick"; "rightIconClick": "rightIconClick"; "search": "search"; "isFocused": "isFocused"; "barCodeScanned": "barCodeScanned"; }, never, never, false, never>;
|
|
3212
3218
|
}
|
|
3213
3219
|
|
|
3214
3220
|
declare class InputScannerModule {
|
|
@@ -3546,11 +3552,6 @@ declare class Color {
|
|
|
3546
3552
|
getTransparentCssColor(opacity?: number): string;
|
|
3547
3553
|
}
|
|
3548
3554
|
|
|
3549
|
-
declare enum ColorSequenceName {
|
|
3550
|
-
Regular = "REGULAR",
|
|
3551
|
-
Variant = "VARIANT"
|
|
3552
|
-
}
|
|
3553
|
-
|
|
3554
3555
|
declare class ColorSequence {
|
|
3555
3556
|
colors: Color[];
|
|
3556
3557
|
name: ColorSequenceName;
|
|
@@ -3964,5 +3965,78 @@ interface DragDropContainerElement {
|
|
|
3964
3965
|
elementIdx: number;
|
|
3965
3966
|
}
|
|
3966
3967
|
|
|
3967
|
-
|
|
3968
|
+
declare class ChipRenderComponent {
|
|
3969
|
+
text: string;
|
|
3970
|
+
icon: CoreComponentsIcon;
|
|
3971
|
+
iconClass: string;
|
|
3972
|
+
noPointerHover: boolean;
|
|
3973
|
+
bgCssColor: string;
|
|
3974
|
+
textClick: EventEmitter<MouseEvent>;
|
|
3975
|
+
iconClick: EventEmitter<MouseEvent>;
|
|
3976
|
+
get isPointerHover(): boolean;
|
|
3977
|
+
showClass: boolean;
|
|
3978
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChipRenderComponent, never>;
|
|
3979
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipRenderComponent, "co-chip-render", never, { "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "noPointerHover": { "alias": "noPointerHover"; "required": false; }; "bgCssColor": { "alias": "bgCssColor"; "required": false; }; }, { "textClick": "textClick"; "iconClick": "iconClick"; }, never, never, false, never>;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
declare class InputTextChipsComponent extends BaseInputComponent<string[]> implements AfterViewInit {
|
|
3983
|
+
formComponent: FormComponent;
|
|
3984
|
+
protected changeDetector: ChangeDetectorRef;
|
|
3985
|
+
protected overlayService: OverlayService;
|
|
3986
|
+
private _colorService;
|
|
3987
|
+
iconCacheService: IconCacheService;
|
|
3988
|
+
protected formUserChangeListener?: FormInputUserModelChangeListenerService;
|
|
3989
|
+
protected ngZoneWrapper?: NgZoneWrapperService;
|
|
3990
|
+
elementRef?: ElementRef;
|
|
3991
|
+
readonly icons: typeof CoreComponentsIcon;
|
|
3992
|
+
inputTextComp: InputTextComponent;
|
|
3993
|
+
chipRenderComps: QueryList<ChipRenderComponent>;
|
|
3994
|
+
placeholder: string;
|
|
3995
|
+
colorSeqName: ColorSequenceName;
|
|
3996
|
+
toggleModel: boolean;
|
|
3997
|
+
toggleBoxLabel: string;
|
|
3998
|
+
extraIcon: CoreComponentsIcon;
|
|
3999
|
+
extraIconClicked: EventEmitter<any>;
|
|
4000
|
+
submit: EventEmitter<string[]>;
|
|
4001
|
+
toggleModelChange: EventEmitter<boolean>;
|
|
4002
|
+
textMode: boolean;
|
|
4003
|
+
showClass: boolean;
|
|
4004
|
+
customHeight: boolean;
|
|
4005
|
+
inputTextModel: string;
|
|
4006
|
+
colorSequence: ColorSequence;
|
|
4007
|
+
protected chipColors: string[];
|
|
4008
|
+
private _noChipsWrapClickFocus;
|
|
4009
|
+
constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, _colorService: ColorSequenceService, iconCacheService: IconCacheService, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
|
|
4010
|
+
ngAfterViewInit(): void;
|
|
4011
|
+
activateTextMode(): void;
|
|
4012
|
+
activateChipsMode(): void;
|
|
4013
|
+
getChipColorCss(index: number): string;
|
|
4014
|
+
requestFocus(): void;
|
|
4015
|
+
onChipsWrapClick(): void;
|
|
4016
|
+
onChipTextClick(chipIndex: number): void;
|
|
4017
|
+
onChipRemoveIconClick(event: MouseEvent, chipIndex: number): void;
|
|
4018
|
+
onRightInBetweenClick(chipIndex: number): void;
|
|
4019
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
4020
|
+
onClearIconClick(): void;
|
|
4021
|
+
handleFocus(focused: boolean): void;
|
|
4022
|
+
onExtraIconClick(): void;
|
|
4023
|
+
onInputTextModelChange(txtModel: string): void;
|
|
4024
|
+
protected removeChipByIndex(index: number): void;
|
|
4025
|
+
protected resetValue(): void;
|
|
4026
|
+
protected beforeRemoveChip(): void;
|
|
4027
|
+
private _setValueByText;
|
|
4028
|
+
private _prepareModel;
|
|
4029
|
+
private _blurAndSubmit;
|
|
4030
|
+
private _triggerNoChipsWrapClickFocus;
|
|
4031
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsComponent, [{ optional: true; }, null, null, null, null, null, null, null]>;
|
|
4032
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextChipsComponent, "co-input-text-chips", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "colorSeqName": { "alias": "colorSeqName"; "required": false; }; "toggleModel": { "alias": "toggleModel"; "required": false; }; "toggleBoxLabel": { "alias": "toggleBoxLabel"; "required": false; }; "extraIcon": { "alias": "extraIcon"; "required": false; }; }, { "extraIconClicked": "extraIconClicked"; "submit": "submit"; "toggleModelChange": "toggleModelChange"; }, never, never, false, never>;
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
declare class InputTextChipsModule {
|
|
4036
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsModule, never>;
|
|
4037
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextChipsModule, [typeof InputTextChipsComponent, typeof ChipRenderComponent], [typeof i2.CommonModule, typeof IconModule, typeof InputTextModule], [typeof InputTextChipsComponent]>;
|
|
4038
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputTextChipsModule>;
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
export { AlignWithDirective, AlignWithModule, AppendPipe, AppendPipeModule, ArticleTileComponent, ArticleTileModule, BaseInputComponent, BaseInputDatePickerDirective, BaseModuleScreenConfigService, BaseModuleService, ButtonComponent, ButtonModule, CalendarComponent, CalendarModule, CalendarTemplateComponent, CardComponent, CardModule, 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, InputTextChipsComponent, InputTextChipsModule, 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 };
|
|
3968
4042
|
export type { CoDragEvent, CoDropEvent, DataItem, DialogResponseInterface, DragDropContainerElement, IPage, IconListItem, SchedulingObject$1 as SchedulingObject, ScreenConfigAdapterComponent, lovViewModel };
|