@colijnit/corecomponents_v12 262.1.8 → 262.1.9

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
@@ -3985,5 +3985,78 @@ interface DragDropContainerElement {
3985
3985
  elementIdx: number;
3986
3986
  }
3987
3987
 
3988
- 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, 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 };
3988
+ declare class ChipRenderComponent {
3989
+ text: string;
3990
+ icon: CoreComponentsIcon;
3991
+ iconClass: string;
3992
+ noPointerHover: boolean;
3993
+ bgCssColor: string;
3994
+ textClick: EventEmitter<MouseEvent>;
3995
+ iconClick: EventEmitter<MouseEvent>;
3996
+ get isPointerHover(): boolean;
3997
+ showClass: boolean;
3998
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipRenderComponent, never>;
3999
+ 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>;
4000
+ }
4001
+
4002
+ declare class InputTextChipsComponent extends BaseInputComponent<string[]> implements AfterViewInit {
4003
+ formComponent: FormComponent;
4004
+ protected changeDetector: ChangeDetectorRef;
4005
+ protected overlayService: OverlayService;
4006
+ private _colorService;
4007
+ iconCacheService: IconCacheService;
4008
+ protected formUserChangeListener?: FormInputUserModelChangeListenerService;
4009
+ protected ngZoneWrapper?: NgZoneWrapperService;
4010
+ elementRef?: ElementRef;
4011
+ readonly icons: typeof CoreComponentsIcon;
4012
+ inputTextComp: InputTextComponent;
4013
+ chipRenderComps: QueryList<ChipRenderComponent>;
4014
+ placeholder: string;
4015
+ colorSeqName: ColorSequenceName;
4016
+ toggleModel: boolean;
4017
+ toggleBoxLabel: string;
4018
+ extraIcon: CoreComponentsIcon;
4019
+ extraIconClicked: EventEmitter<any>;
4020
+ submit: EventEmitter<string[]>;
4021
+ toggleModelChange: EventEmitter<boolean>;
4022
+ textMode: boolean;
4023
+ showClass: boolean;
4024
+ customHeight: boolean;
4025
+ inputTextModel: string;
4026
+ colorSequence: ColorSequence;
4027
+ protected chipColors: string[];
4028
+ private _noChipsWrapClickFocus;
4029
+ constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, _colorService: ColorSequenceService, iconCacheService: IconCacheService, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
4030
+ ngAfterViewInit(): void;
4031
+ activateTextMode(): void;
4032
+ activateChipsMode(): void;
4033
+ getChipColorCss(index: number): string;
4034
+ requestFocus(): void;
4035
+ onChipsWrapClick(): void;
4036
+ onChipTextClick(chipIndex: number): void;
4037
+ onChipRemoveIconClick(event: MouseEvent, chipIndex: number): void;
4038
+ onRightInBetweenClick(chipIndex: number): void;
4039
+ onKeyDown(event: KeyboardEvent): void;
4040
+ onClearIconClick(): void;
4041
+ handleFocus(focused: boolean): void;
4042
+ onExtraIconClick(): void;
4043
+ onInputTextModelChange(txtModel: string): void;
4044
+ protected removeChipByIndex(index: number): void;
4045
+ protected resetValue(): void;
4046
+ protected beforeRemoveChip(): void;
4047
+ private _setValueByText;
4048
+ private _prepareModel;
4049
+ private _blurAndSubmit;
4050
+ private _triggerNoChipsWrapClickFocus;
4051
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsComponent, [{ optional: true; }, null, null, null, null, null, null, null]>;
4052
+ 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>;
4053
+ }
4054
+
4055
+ declare class InputTextChipsModule {
4056
+ static ɵfac: i0.ɵɵFactoryDeclaration<InputTextChipsModule, never>;
4057
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InputTextChipsModule, [typeof InputTextChipsComponent, typeof ChipRenderComponent], [typeof i2.CommonModule, typeof IconModule, typeof InputTextModule], [typeof InputTextChipsComponent]>;
4058
+ static ɵinj: i0.ɵɵInjectorDeclaration<InputTextChipsModule>;
4059
+ }
4060
+
4061
+ 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
4062
  export type { CoDragEvent, CoDropEvent, DataItem, DialogResponseInterface, DragDropContainerElement, IPage, IconListItem, SchedulingObject$1 as SchedulingObject, ScreenConfigAdapterComponent, lovViewModel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "262.1.8",
3
+ "version": "262.1.9",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {