@colijnit/corecomponents_v12 262.1.8 → 262.1.10
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
|
@@ -2001,6 +2001,7 @@ declare class InputRadioButtonModule {
|
|
|
2001
2001
|
|
|
2002
2002
|
declare class InputSearchComponent extends BaseInputComponent<string> implements OnDestroy {
|
|
2003
2003
|
readonly searchIcon: CoreComponentsIcon;
|
|
2004
|
+
inputSearchText: InputTextComponent;
|
|
2004
2005
|
placeholder: string;
|
|
2005
2006
|
handleKeydown: boolean;
|
|
2006
2007
|
search: EventEmitter<string>;
|
|
@@ -2015,6 +2016,7 @@ declare class InputSearchComponent extends BaseInputComponent<string> implements
|
|
|
2015
2016
|
showClass(): boolean;
|
|
2016
2017
|
handleKeyDown(event: KeyboardEvent): void;
|
|
2017
2018
|
handleModelChange(model: string): void;
|
|
2019
|
+
requestFocus(): void;
|
|
2018
2020
|
private isMobileDevice;
|
|
2019
2021
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearchComponent, never>;
|
|
2020
2022
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputSearchComponent, "co-input-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "handleKeydown": { "alias": "handleKeydown"; "required": false; }; "useLeftIcon": { "alias": "useLeftIcon"; "required": false; }; "useRightIcon": { "alias": "useRightIcon"; "required": false; }; "leftIconData": { "alias": "leftIconData"; "required": false; }; "rightIconData": { "alias": "rightIconData"; "required": false; }; "centerLabel": { "alias": "centerLabel"; "required": false; }; }, { "search": "search"; "isFocused": "isFocused"; "leftIconClick": "leftIconClick"; "rightIconClick": "rightIconClick"; }, never, never, false, never>;
|
|
@@ -3210,6 +3212,7 @@ declare class ScannerService implements OnDestroy {
|
|
|
3210
3212
|
|
|
3211
3213
|
declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
3212
3214
|
private _scannerService;
|
|
3215
|
+
inputSearch: InputSearchComponent;
|
|
3213
3216
|
model: string;
|
|
3214
3217
|
placeholder: string;
|
|
3215
3218
|
centerLabel: boolean;
|
|
@@ -3232,6 +3235,7 @@ declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
|
3232
3235
|
ngOnDestroy(): void;
|
|
3233
3236
|
handleKeyDown(event: KeyboardEvent): void;
|
|
3234
3237
|
triggerCodeScanned(code?: string): void;
|
|
3238
|
+
requestFocus(): void;
|
|
3235
3239
|
private _clearTimeout;
|
|
3236
3240
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputScannerComponent, never>;
|
|
3237
3241
|
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>;
|
|
@@ -3985,5 +3989,78 @@ interface DragDropContainerElement {
|
|
|
3985
3989
|
elementIdx: number;
|
|
3986
3990
|
}
|
|
3987
3991
|
|
|
3988
|
-
|
|
3992
|
+
declare class ChipRenderComponent {
|
|
3993
|
+
text: string;
|
|
3994
|
+
icon: CoreComponentsIcon;
|
|
3995
|
+
iconClass: string;
|
|
3996
|
+
noPointerHover: boolean;
|
|
3997
|
+
bgCssColor: string;
|
|
3998
|
+
textClick: EventEmitter<MouseEvent>;
|
|
3999
|
+
iconClick: EventEmitter<MouseEvent>;
|
|
4000
|
+
get isPointerHover(): boolean;
|
|
4001
|
+
showClass: boolean;
|
|
4002
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChipRenderComponent, never>;
|
|
4003
|
+
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>;
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
declare class InputTextChipsComponent extends BaseInputComponent<string[]> implements AfterViewInit {
|
|
4007
|
+
formComponent: FormComponent;
|
|
4008
|
+
protected changeDetector: ChangeDetectorRef;
|
|
4009
|
+
protected overlayService: OverlayService;
|
|
4010
|
+
private _colorService;
|
|
4011
|
+
iconCacheService: IconCacheService;
|
|
4012
|
+
protected formUserChangeListener?: FormInputUserModelChangeListenerService;
|
|
4013
|
+
protected ngZoneWrapper?: NgZoneWrapperService;
|
|
4014
|
+
elementRef?: ElementRef;
|
|
4015
|
+
readonly icons: typeof CoreComponentsIcon;
|
|
4016
|
+
inputTextComp: InputTextComponent;
|
|
4017
|
+
chipRenderComps: QueryList<ChipRenderComponent>;
|
|
4018
|
+
placeholder: string;
|
|
4019
|
+
colorSeqName: ColorSequenceName;
|
|
4020
|
+
toggleModel: boolean;
|
|
4021
|
+
toggleBoxLabel: string;
|
|
4022
|
+
extraIcon: CoreComponentsIcon;
|
|
4023
|
+
extraIconClicked: EventEmitter<any>;
|
|
4024
|
+
submit: EventEmitter<string[]>;
|
|
4025
|
+
toggleModelChange: EventEmitter<boolean>;
|
|
4026
|
+
textMode: boolean;
|
|
4027
|
+
showClass: boolean;
|
|
4028
|
+
customHeight: boolean;
|
|
4029
|
+
inputTextModel: string;
|
|
4030
|
+
colorSequence: ColorSequence;
|
|
4031
|
+
protected chipColors: string[];
|
|
4032
|
+
private _noChipsWrapClickFocus;
|
|
4033
|
+
constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, _colorService: ColorSequenceService, iconCacheService: IconCacheService, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
|
|
4034
|
+
ngAfterViewInit(): void;
|
|
4035
|
+
activateTextMode(): void;
|
|
4036
|
+
activateChipsMode(): void;
|
|
4037
|
+
getChipColorCss(index: number): string;
|
|
4038
|
+
requestFocus(): void;
|
|
4039
|
+
onChipsWrapClick(): void;
|
|
4040
|
+
onChipTextClick(chipIndex: number): void;
|
|
4041
|
+
onChipRemoveIconClick(event: MouseEvent, chipIndex: number): void;
|
|
4042
|
+
onRightInBetweenClick(chipIndex: number): void;
|
|
4043
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
4044
|
+
onClearIconClick(): void;
|
|
4045
|
+
handleFocus(focused: boolean): void;
|
|
4046
|
+
onExtraIconClick(): void;
|
|
4047
|
+
onInputTextModelChange(txtModel: string): void;
|
|
4048
|
+
protected removeChipByIndex(index: number): void;
|
|
4049
|
+
protected resetValue(): void;
|
|
4050
|
+
protected beforeRemoveChip(): void;
|
|
4051
|
+
private _setValueByText;
|
|
4052
|
+
private _prepareModel;
|
|
4053
|
+
private _blurAndSubmit;
|
|
4054
|
+
private _triggerNoChipsWrapClickFocus;
|
|
4055
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsComponent, [{ optional: true; }, null, null, null, null, null, null, null]>;
|
|
4056
|
+
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>;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
declare class InputTextChipsModule {
|
|
4060
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsModule, never>;
|
|
4061
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextChipsModule, [typeof InputTextChipsComponent, typeof ChipRenderComponent], [typeof i2.CommonModule, typeof IconModule, typeof InputTextModule], [typeof InputTextChipsComponent]>;
|
|
4062
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputTextChipsModule>;
|
|
4063
|
+
}
|
|
4064
|
+
|
|
4065
|
+
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 };
|
|
3989
4066
|
export type { CoDragEvent, CoDropEvent, DataItem, DialogResponseInterface, DragDropContainerElement, IPage, IconListItem, SchedulingObject$1 as SchedulingObject, ScreenConfigAdapterComponent, lovViewModel };
|
package/package.json
CHANGED
|
Binary file
|