@colijnit/corecomponents_v12 261.20.14 → 261.20.16
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>;
|
|
@@ -2668,6 +2670,11 @@ declare class SimpleGridModule {
|
|
|
2668
2670
|
static ɵinj: i0.ɵɵInjectorDeclaration<SimpleGridModule>;
|
|
2669
2671
|
}
|
|
2670
2672
|
|
|
2673
|
+
declare enum ColorSequenceName {
|
|
2674
|
+
Regular = "REGULAR",
|
|
2675
|
+
Variant = "VARIANT"
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2671
2678
|
declare enum ContentViewMode {
|
|
2672
2679
|
List = 0,
|
|
2673
2680
|
Grid = 1,
|
|
@@ -3185,6 +3192,7 @@ declare class ScannerService implements OnDestroy {
|
|
|
3185
3192
|
|
|
3186
3193
|
declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
3187
3194
|
private _scannerService;
|
|
3195
|
+
inputSearch: InputSearchComponent;
|
|
3188
3196
|
model: string;
|
|
3189
3197
|
placeholder: string;
|
|
3190
3198
|
centerLabel: boolean;
|
|
@@ -3207,6 +3215,7 @@ declare class InputScannerComponent implements ScannerInput, OnDestroy {
|
|
|
3207
3215
|
ngOnDestroy(): void;
|
|
3208
3216
|
handleKeyDown(event: KeyboardEvent): void;
|
|
3209
3217
|
triggerCodeScanned(code?: string): void;
|
|
3218
|
+
requestFocus(): void;
|
|
3210
3219
|
private _clearTimeout;
|
|
3211
3220
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputScannerComponent, never>;
|
|
3212
3221
|
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>;
|
|
@@ -3547,11 +3556,6 @@ declare class Color {
|
|
|
3547
3556
|
getTransparentCssColor(opacity?: number): string;
|
|
3548
3557
|
}
|
|
3549
3558
|
|
|
3550
|
-
declare enum ColorSequenceName {
|
|
3551
|
-
Regular = "REGULAR",
|
|
3552
|
-
Variant = "VARIANT"
|
|
3553
|
-
}
|
|
3554
|
-
|
|
3555
3559
|
declare class ColorSequence {
|
|
3556
3560
|
colors: Color[];
|
|
3557
3561
|
name: ColorSequenceName;
|
|
@@ -3965,5 +3969,78 @@ interface DragDropContainerElement {
|
|
|
3965
3969
|
elementIdx: number;
|
|
3966
3970
|
}
|
|
3967
3971
|
|
|
3968
|
-
|
|
3972
|
+
declare class ChipRenderComponent {
|
|
3973
|
+
text: string;
|
|
3974
|
+
icon: CoreComponentsIcon;
|
|
3975
|
+
iconClass: string;
|
|
3976
|
+
noPointerHover: boolean;
|
|
3977
|
+
bgCssColor: string;
|
|
3978
|
+
textClick: EventEmitter<MouseEvent>;
|
|
3979
|
+
iconClick: EventEmitter<MouseEvent>;
|
|
3980
|
+
get isPointerHover(): boolean;
|
|
3981
|
+
showClass: boolean;
|
|
3982
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChipRenderComponent, never>;
|
|
3983
|
+
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>;
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
declare class InputTextChipsComponent extends BaseInputComponent<string[]> implements AfterViewInit {
|
|
3987
|
+
formComponent: FormComponent;
|
|
3988
|
+
protected changeDetector: ChangeDetectorRef;
|
|
3989
|
+
protected overlayService: OverlayService;
|
|
3990
|
+
private _colorService;
|
|
3991
|
+
iconCacheService: IconCacheService;
|
|
3992
|
+
protected formUserChangeListener?: FormInputUserModelChangeListenerService;
|
|
3993
|
+
protected ngZoneWrapper?: NgZoneWrapperService;
|
|
3994
|
+
elementRef?: ElementRef;
|
|
3995
|
+
readonly icons: typeof CoreComponentsIcon;
|
|
3996
|
+
inputTextComp: InputTextComponent;
|
|
3997
|
+
chipRenderComps: QueryList<ChipRenderComponent>;
|
|
3998
|
+
placeholder: string;
|
|
3999
|
+
colorSeqName: ColorSequenceName;
|
|
4000
|
+
toggleModel: boolean;
|
|
4001
|
+
toggleBoxLabel: string;
|
|
4002
|
+
extraIcon: CoreComponentsIcon;
|
|
4003
|
+
extraIconClicked: EventEmitter<any>;
|
|
4004
|
+
submit: EventEmitter<string[]>;
|
|
4005
|
+
toggleModelChange: EventEmitter<boolean>;
|
|
4006
|
+
textMode: boolean;
|
|
4007
|
+
showClass: boolean;
|
|
4008
|
+
customHeight: boolean;
|
|
4009
|
+
inputTextModel: string;
|
|
4010
|
+
colorSequence: ColorSequence;
|
|
4011
|
+
protected chipColors: string[];
|
|
4012
|
+
private _noChipsWrapClickFocus;
|
|
4013
|
+
constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, _colorService: ColorSequenceService, iconCacheService: IconCacheService, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
|
|
4014
|
+
ngAfterViewInit(): void;
|
|
4015
|
+
activateTextMode(): void;
|
|
4016
|
+
activateChipsMode(): void;
|
|
4017
|
+
getChipColorCss(index: number): string;
|
|
4018
|
+
requestFocus(): void;
|
|
4019
|
+
onChipsWrapClick(): void;
|
|
4020
|
+
onChipTextClick(chipIndex: number): void;
|
|
4021
|
+
onChipRemoveIconClick(event: MouseEvent, chipIndex: number): void;
|
|
4022
|
+
onRightInBetweenClick(chipIndex: number): void;
|
|
4023
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
4024
|
+
onClearIconClick(): void;
|
|
4025
|
+
handleFocus(focused: boolean): void;
|
|
4026
|
+
onExtraIconClick(): void;
|
|
4027
|
+
onInputTextModelChange(txtModel: string): void;
|
|
4028
|
+
protected removeChipByIndex(index: number): void;
|
|
4029
|
+
protected resetValue(): void;
|
|
4030
|
+
protected beforeRemoveChip(): void;
|
|
4031
|
+
private _setValueByText;
|
|
4032
|
+
private _prepareModel;
|
|
4033
|
+
private _blurAndSubmit;
|
|
4034
|
+
private _triggerNoChipsWrapClickFocus;
|
|
4035
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsComponent, [{ optional: true; }, null, null, null, null, null, null, null]>;
|
|
4036
|
+
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>;
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
declare class InputTextChipsModule {
|
|
4040
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsModule, never>;
|
|
4041
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextChipsModule, [typeof InputTextChipsComponent, typeof ChipRenderComponent], [typeof i2.CommonModule, typeof IconModule, typeof InputTextModule], [typeof InputTextChipsComponent]>;
|
|
4042
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputTextChipsModule>;
|
|
4043
|
+
}
|
|
4044
|
+
|
|
4045
|
+
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 };
|
|
3969
4046
|
export type { CoDragEvent, CoDropEvent, DataItem, DialogResponseInterface, DragDropContainerElement, IPage, IconListItem, SchedulingObject$1 as SchedulingObject, ScreenConfigAdapterComponent, lovViewModel };
|
package/package.json
CHANGED
|
Binary file
|