@progress/kendo-angular-inputs 16.6.0-develop.9 → 16.6.1-develop.1

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/directives.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { PrefixTemplateDirective, SuffixTemplateDirective } from "@progress/kendo-angular-common";
5
+ import { PrefixTemplateDirective, SuffixTemplateDirective, SeparatorComponent } from "@progress/kendo-angular-common";
6
6
  import { CheckBoxComponent } from "./checkbox/checkbox.component";
7
7
  import { CheckBoxDirective } from "./checkbox/checkbox.directive";
8
8
  import { ColorGradientComponent } from "./colorpicker/color-gradient.component";
@@ -44,19 +44,19 @@ import { TextBoxDirective } from "./textbox/textbox.directive";
44
44
  /**
45
45
  * Utility array that contains all `TextBox` related components and directives
46
46
  */
47
- export declare const KENDO_TEXTBOX: readonly [typeof TextBoxDirective, typeof TextBoxComponent, typeof InputSeparatorComponent, typeof TextBoxSuffixTemplateDirective, typeof TextBoxPrefixTemplateDirective, typeof TextBoxCustomMessagesComponent];
47
+ export declare const KENDO_TEXTBOX: readonly [typeof TextBoxDirective, typeof TextBoxComponent, typeof InputSeparatorComponent, typeof TextBoxSuffixTemplateDirective, typeof TextBoxPrefixTemplateDirective, typeof TextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent];
48
48
  /**
49
49
  * Utility array that contains all `NumericTextBox` related components and directives
50
50
  */
51
- export declare const KENDO_NUMERICTEXTBOX: readonly [typeof NumericTextBoxComponent, typeof NumericTextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective];
51
+ export declare const KENDO_NUMERICTEXTBOX: readonly [typeof NumericTextBoxComponent, typeof NumericTextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent];
52
52
  /**
53
53
  * Utility array that contains all `MaskedTextBox` related components and directives
54
54
  */
55
- export declare const KENDO_MASKEDTEXTBOX: readonly [typeof MaskedTextBoxComponent];
55
+ export declare const KENDO_MASKEDTEXTBOX: readonly [typeof MaskedTextBoxComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent];
56
56
  /**
57
57
  * Utility array that contains all `TextArea` related components and directives
58
58
  */
59
- export declare const KENDO_TEXTAREA: readonly [typeof TextAreaComponent, typeof TextAreaDirective, typeof TextAreaPrefixComponent, typeof TextAreaSuffixComponent];
59
+ export declare const KENDO_TEXTAREA: readonly [typeof TextAreaComponent, typeof TextAreaDirective, typeof TextAreaPrefixComponent, typeof TextAreaSuffixComponent, typeof SeparatorComponent];
60
60
  /**
61
61
  * Utility array that contains all `CheckBox` related components and directives
62
62
  */
@@ -108,4 +108,4 @@ export declare const KENDO_COLORGRADIENT: readonly [typeof ColorGradientComponen
108
108
  /**
109
109
  * Utility array that contains all `@progress/kendo-angular-inputs` related components and directives
110
110
  */
111
- export declare const KENDO_INPUTS: readonly [typeof TextBoxDirective, typeof TextBoxComponent, typeof InputSeparatorComponent, typeof TextBoxSuffixTemplateDirective, typeof TextBoxPrefixTemplateDirective, typeof TextBoxCustomMessagesComponent, typeof NumericTextBoxComponent, typeof NumericTextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof MaskedTextBoxComponent, typeof TextAreaComponent, typeof TextAreaDirective, typeof TextAreaPrefixComponent, typeof TextAreaSuffixComponent, typeof CheckBoxComponent, typeof CheckBoxDirective, typeof RadioButtonComponent, typeof RadioButtonDirective, typeof SwitchComponent, typeof SwitchCustomMessagesComponent, typeof FormFieldComponent, typeof HintComponent, typeof ErrorComponent, typeof SliderComponent, typeof SliderCustomMessagesComponent, typeof LabelTemplateDirective, typeof RangeSliderComponent, typeof RangeSliderCustomMessagesComponent, typeof LabelTemplateDirective, typeof RatingComponent, typeof RatingItemTemplateDirective, typeof RatingHoveredItemTemplateDirective, typeof RatingSelectedItemTemplateDirective, typeof SignatureComponent, typeof SignatureCustomMessagesComponent, typeof ColorPickerComponent, typeof ColorPickerCustomMessagesComponent, typeof FlatColorPickerComponent, typeof ColorPickerCustomMessagesComponent, typeof ColorGradientComponent, typeof ColorPickerCustomMessagesComponent, typeof ColorPaletteComponent, typeof ColorPickerCustomMessagesComponent];
111
+ export declare const KENDO_INPUTS: readonly [typeof TextBoxDirective, typeof TextBoxComponent, typeof InputSeparatorComponent, typeof TextBoxSuffixTemplateDirective, typeof TextBoxPrefixTemplateDirective, typeof TextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent, typeof NumericTextBoxComponent, typeof NumericTextBoxCustomMessagesComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent, typeof MaskedTextBoxComponent, typeof PrefixTemplateDirective, typeof SuffixTemplateDirective, typeof SeparatorComponent, typeof TextAreaComponent, typeof TextAreaDirective, typeof TextAreaPrefixComponent, typeof TextAreaSuffixComponent, typeof SeparatorComponent, typeof CheckBoxComponent, typeof CheckBoxDirective, typeof RadioButtonComponent, typeof RadioButtonDirective, typeof SwitchComponent, typeof SwitchCustomMessagesComponent, typeof FormFieldComponent, typeof HintComponent, typeof ErrorComponent, typeof SliderComponent, typeof SliderCustomMessagesComponent, typeof LabelTemplateDirective, typeof RangeSliderComponent, typeof RangeSliderCustomMessagesComponent, typeof LabelTemplateDirective, typeof RatingComponent, typeof RatingItemTemplateDirective, typeof RatingHoveredItemTemplateDirective, typeof RatingSelectedItemTemplateDirective, typeof SignatureComponent, typeof SignatureCustomMessagesComponent, typeof ColorPickerComponent, typeof ColorPickerCustomMessagesComponent, typeof FlatColorPickerComponent, typeof ColorPickerCustomMessagesComponent, typeof ColorGradientComponent, typeof ColorPickerCustomMessagesComponent, typeof ColorPaletteComponent, typeof ColorPickerCustomMessagesComponent];
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { PrefixTemplateDirective, SuffixTemplateDirective } from "@progress/kendo-angular-common";
5
+ import { PrefixTemplateDirective, SuffixTemplateDirective, SeparatorComponent } from "@progress/kendo-angular-common";
6
6
  import { CheckBoxComponent } from "./checkbox/checkbox.component";
7
7
  import { CheckBoxDirective } from "./checkbox/checkbox.directive";
8
8
  import { ColorGradientComponent } from "./colorpicker/color-gradient.component";
@@ -51,6 +51,9 @@ export const KENDO_TEXTBOX = [
51
51
  TextBoxSuffixTemplateDirective,
52
52
  TextBoxPrefixTemplateDirective,
53
53
  TextBoxCustomMessagesComponent,
54
+ PrefixTemplateDirective,
55
+ SuffixTemplateDirective,
56
+ SeparatorComponent
54
57
  ];
55
58
  /**
56
59
  * Utility array that contains all `NumericTextBox` related components and directives
@@ -59,13 +62,17 @@ export const KENDO_NUMERICTEXTBOX = [
59
62
  NumericTextBoxComponent,
60
63
  NumericTextBoxCustomMessagesComponent,
61
64
  PrefixTemplateDirective,
62
- SuffixTemplateDirective
65
+ SuffixTemplateDirective,
66
+ SeparatorComponent
63
67
  ];
64
68
  /**
65
69
  * Utility array that contains all `MaskedTextBox` related components and directives
66
70
  */
67
71
  export const KENDO_MASKEDTEXTBOX = [
68
- MaskedTextBoxComponent
72
+ MaskedTextBoxComponent,
73
+ PrefixTemplateDirective,
74
+ SuffixTemplateDirective,
75
+ SeparatorComponent
69
76
  ];
70
77
  /**
71
78
  * Utility array that contains all `TextArea` related components and directives
@@ -75,6 +82,7 @@ export const KENDO_TEXTAREA = [
75
82
  TextAreaDirective,
76
83
  TextAreaPrefixComponent,
77
84
  TextAreaSuffixComponent,
85
+ SeparatorComponent
78
86
  ];
79
87
  /**
80
88
  * Utility array that contains all `CheckBox` related components and directives
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { NgModule } from '@angular/core';
6
6
  import { KENDO_INPUTS } from './directives';
7
- import { ResizeBatchService } from '@progress/kendo-angular-common';
7
+ import { AdornmentsModule, ResizeBatchService } from '@progress/kendo-angular-common';
8
8
  import { DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
9
9
  import { IconsService } from '@progress/kendo-angular-icons';
10
10
  import { PopupService } from '@progress/kendo-angular-popup';
@@ -15,9 +15,9 @@ import * as i3 from "./shared/input-separator.component";
15
15
  import * as i4 from "./textbox/textbox-suffix.directive";
16
16
  import * as i5 from "./textbox/textbox-prefix.directive";
17
17
  import * as i6 from "./textbox/localization/custom-messages.component";
18
- import * as i7 from "./numerictextbox/numerictextbox.component";
19
- import * as i8 from "./numerictextbox/localization/custom-messages.component";
20
- import * as i9 from "@progress/kendo-angular-common";
18
+ import * as i7 from "@progress/kendo-angular-common";
19
+ import * as i8 from "./numerictextbox/numerictextbox.component";
20
+ import * as i9 from "./numerictextbox/localization/custom-messages.component";
21
21
  import * as i10 from "./maskedtextbox/maskedtextbox.component";
22
22
  import * as i11 from "./textarea/textarea.component";
23
23
  import * as i12 from "./shared/textarea.directive";
@@ -84,13 +84,13 @@ import * as i39 from "./colorpicker/color-palette.component";
84
84
  export class InputsModule {
85
85
  }
86
86
  InputsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
87
- InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.NumericTextBoxComponent, i8.NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, i10.MaskedTextBoxComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent], exports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.NumericTextBoxComponent, i8.NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, i10.MaskedTextBoxComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent] });
88
- InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i2.TextBoxComponent, i3.InputSeparatorComponent, i6.TextBoxCustomMessagesComponent, i7.NumericTextBoxComponent, i8.NumericTextBoxCustomMessagesComponent, i10.MaskedTextBoxComponent, i11.TextAreaComponent, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i15.CheckBoxComponent, i17.RadioButtonComponent, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i29.RatingComponent, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent] });
87
+ InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i8.NumericTextBoxComponent, i9.NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i10.MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i7.SeparatorComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent], exports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i8.NumericTextBoxComponent, i9.NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i10.MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i7.SeparatorComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent, AdornmentsModule] });
88
+ InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i2.TextBoxComponent, i3.InputSeparatorComponent, i6.TextBoxCustomMessagesComponent, i7.SeparatorComponent, i8.NumericTextBoxComponent, i9.NumericTextBoxCustomMessagesComponent, i7.SeparatorComponent, i10.MaskedTextBoxComponent, i7.SeparatorComponent, i11.TextAreaComponent, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i7.SeparatorComponent, i15.CheckBoxComponent, i17.RadioButtonComponent, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i29.RatingComponent, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent, AdornmentsModule] });
89
89
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, decorators: [{
90
90
  type: NgModule,
91
91
  args: [{
92
92
  imports: [...KENDO_INPUTS],
93
- exports: [...KENDO_INPUTS],
93
+ exports: [...KENDO_INPUTS, AdornmentsModule],
94
94
  providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
95
95
  }]
96
96
  }] });
@@ -4,8 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { NgModule } from '@angular/core';
6
6
  import { KENDO_MASKEDTEXTBOX } from './directives';
7
+ import { AdornmentsModule } from '@progress/kendo-angular-common';
7
8
  import * as i0 from "@angular/core";
8
9
  import * as i1 from "./maskedtextbox/maskedtextbox.component";
10
+ import * as i2 from "@progress/kendo-angular-common";
9
11
  //IMPORTANT: NgModule export kept for backwards compatibility
10
12
  /**
11
13
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
@@ -41,12 +43,12 @@ import * as i1 from "./maskedtextbox/maskedtextbox.component";
41
43
  export class MaskedTextBoxModule {
42
44
  }
43
45
  MaskedTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
44
- MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [i1.MaskedTextBoxComponent], exports: [i1.MaskedTextBoxComponent] });
45
- MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [KENDO_MASKEDTEXTBOX] });
46
+ MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [i1.MaskedTextBoxComponent, i2.PrefixTemplateDirective, i2.SuffixTemplateDirective, i2.SeparatorComponent], exports: [i1.MaskedTextBoxComponent, i2.PrefixTemplateDirective, i2.SuffixTemplateDirective, i2.SeparatorComponent, AdornmentsModule] });
47
+ MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [i1.MaskedTextBoxComponent, i2.SeparatorComponent, AdornmentsModule] });
46
48
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
47
49
  type: NgModule,
48
50
  args: [{
49
51
  imports: [...KENDO_MASKEDTEXTBOX],
50
- exports: [...KENDO_MASKEDTEXTBOX]
52
+ exports: [...KENDO_MASKEDTEXTBOX, AdornmentsModule]
51
53
  }]
52
54
  }] });
@@ -5,6 +5,7 @@
5
5
  import { NgModule } from '@angular/core';
6
6
  import { KENDO_NUMERICTEXTBOX } from './directives';
7
7
  import { IconsService } from '@progress/kendo-angular-icons';
8
+ import { AdornmentsModule } from '@progress/kendo-angular-common';
8
9
  import * as i0 from "@angular/core";
9
10
  import * as i1 from "./numerictextbox/numerictextbox.component";
10
11
  import * as i2 from "./numerictextbox/localization/custom-messages.component";
@@ -44,13 +45,13 @@ import * as i3 from "@progress/kendo-angular-common";
44
45
  export class NumericTextBoxModule {
45
46
  }
46
47
  NumericTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
47
- NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent, i3.PrefixTemplateDirective, i3.SuffixTemplateDirective], exports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent, i3.PrefixTemplateDirective, i3.SuffixTemplateDirective] });
48
- NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent] });
48
+ NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent, i3.PrefixTemplateDirective, i3.SuffixTemplateDirective, i3.SeparatorComponent], exports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent, i3.PrefixTemplateDirective, i3.SuffixTemplateDirective, i3.SeparatorComponent, AdornmentsModule] });
49
+ NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [i1.NumericTextBoxComponent, i2.NumericTextBoxCustomMessagesComponent, i3.SeparatorComponent, AdornmentsModule] });
49
50
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, decorators: [{
50
51
  type: NgModule,
51
52
  args: [{
52
53
  imports: [...KENDO_NUMERICTEXTBOX],
53
- exports: [...KENDO_NUMERICTEXTBOX],
54
+ exports: [...KENDO_NUMERICTEXTBOX, AdornmentsModule],
54
55
  providers: [IconsService]
55
56
  }]
56
57
  }] });
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-inputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1722605463,
13
- version: '16.6.0-develop.9',
12
+ publishDate: 1722938695,
13
+ version: '16.6.1-develop.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -25,7 +25,9 @@ import * as i0 from "@angular/core";
25
25
  export class InputSeparatorComponent {
26
26
  constructor() {
27
27
  /**
28
- * Specifies the orientation of the separator.
28
+ * Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](slug:api_inputs_textareacomponent).
29
+ *
30
+ * @default 'vertical'
29
31
  */
30
32
  this.orientation = 'vertical';
31
33
  this.hostClass = true;
@@ -4,11 +4,13 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { NgModule } from "@angular/core";
6
6
  import { KENDO_TEXTAREA } from "./directives";
7
+ import { AdornmentsModule } from "@progress/kendo-angular-common";
7
8
  import * as i0 from "@angular/core";
8
9
  import * as i1 from "./textarea/textarea.component";
9
10
  import * as i2 from "./shared/textarea.directive";
10
11
  import * as i3 from "./textarea/textarea-prefix.component";
11
12
  import * as i4 from "./textarea/textarea-suffix.component";
13
+ import * as i5 from "@progress/kendo-angular-common";
12
14
  //IMPORTANT: NgModule export kept for backwards compatibility
13
15
  /**
14
16
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
@@ -44,12 +46,12 @@ import * as i4 from "./textarea/textarea-suffix.component";
44
46
  export class TextAreaModule {
45
47
  }
46
48
  TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
47
- TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [i1.TextAreaComponent, i2.TextAreaDirective, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent], exports: [i1.TextAreaComponent, i2.TextAreaDirective, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent] });
48
- TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [i1.TextAreaComponent, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent] });
49
+ TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [i1.TextAreaComponent, i2.TextAreaDirective, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent, i5.SeparatorComponent], exports: [i1.TextAreaComponent, i2.TextAreaDirective, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent, i5.SeparatorComponent, AdornmentsModule] });
50
+ TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [i1.TextAreaComponent, i3.TextAreaPrefixComponent, i4.TextAreaSuffixComponent, i5.SeparatorComponent, AdornmentsModule] });
49
51
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, decorators: [{
50
52
  type: NgModule,
51
53
  args: [{
52
54
  imports: [...KENDO_TEXTAREA],
53
- exports: [...KENDO_TEXTAREA]
55
+ exports: [...KENDO_TEXTAREA, AdornmentsModule]
54
56
  }]
55
57
  }] });
@@ -5,6 +5,7 @@
5
5
  import { NgModule } from "@angular/core";
6
6
  import { KENDO_TEXTBOX } from "./directives";
7
7
  import { IconsService } from "@progress/kendo-angular-icons";
8
+ import { AdornmentsModule } from "@progress/kendo-angular-common";
8
9
  import * as i0 from "@angular/core";
9
10
  import * as i1 from "./textbox/textbox.directive";
10
11
  import * as i2 from "./textbox/textbox.component";
@@ -12,6 +13,7 @@ import * as i3 from "./shared/input-separator.component";
12
13
  import * as i4 from "./textbox/textbox-suffix.directive";
13
14
  import * as i5 from "./textbox/textbox-prefix.directive";
14
15
  import * as i6 from "./textbox/localization/custom-messages.component";
16
+ import * as i7 from "@progress/kendo-angular-common";
15
17
  //IMPORTANT: NgModule export kept for backwards compatibility
16
18
  /**
17
19
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
@@ -47,13 +49,13 @@ import * as i6 from "./textbox/localization/custom-messages.component";
47
49
  export class TextBoxModule {
48
50
  }
49
51
  TextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
50
- TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent], exports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent] });
51
- TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [i2.TextBoxComponent, i3.InputSeparatorComponent, i6.TextBoxCustomMessagesComponent] });
52
+ TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
53
+ TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [i2.TextBoxComponent, i3.InputSeparatorComponent, i6.TextBoxCustomMessagesComponent, i7.SeparatorComponent, AdornmentsModule] });
52
54
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, decorators: [{
53
55
  type: NgModule,
54
56
  args: [{
55
57
  imports: [...KENDO_TEXTBOX],
56
- exports: [...KENDO_TEXTBOX],
58
+ exports: [...KENDO_TEXTBOX, AdornmentsModule],
57
59
  providers: [IconsService]
58
60
  }]
59
61
  }] });
@@ -9,8 +9,8 @@ import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } fr
9
9
  import { take, tap, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
10
10
  import * as i1 from '@progress/kendo-angular-l10n';
11
11
  import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
12
- import * as i9 from '@progress/kendo-angular-common';
13
- import { Keys, guid, hasObservers, anyChanged, isDocumentAvailable, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, isSafari, ResizeBatchService } from '@progress/kendo-angular-common';
12
+ import * as i7 from '@progress/kendo-angular-common';
13
+ import { Keys, guid, hasObservers, anyChanged, isDocumentAvailable, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, isSafari, SeparatorComponent, AdornmentsModule, ResizeBatchService } from '@progress/kendo-angular-common';
14
14
  export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective } from '@progress/kendo-angular-common';
15
15
  import { validatePackage } from '@progress/kendo-licensing';
16
16
  import { caretAltUpIcon, caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltExpandIcon, checkIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon, starIcon, starOutlineIcon, xIcon, hyperlinkOpenIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
@@ -540,8 +540,8 @@ const packageMetadata = {
540
540
  name: '@progress/kendo-angular-inputs',
541
541
  productName: 'Kendo UI for Angular',
542
542
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
543
- publishDate: 1722605463,
544
- version: '16.6.0-develop.9',
543
+ publishDate: 1722938695,
544
+ version: '16.6.1-develop.1',
545
545
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
546
546
  };
547
547
 
@@ -3477,7 +3477,9 @@ var ArrowDirection;
3477
3477
  class InputSeparatorComponent {
3478
3478
  constructor() {
3479
3479
  /**
3480
- * Specifies the orientation of the separator.
3480
+ * Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](slug:api_inputs_textareacomponent).
3481
+ *
3482
+ * @default 'vertical'
3481
3483
  */
3482
3484
  this.orientation = 'vertical';
3483
3485
  this.hostClass = true;
@@ -16464,6 +16466,9 @@ const KENDO_TEXTBOX = [
16464
16466
  TextBoxSuffixTemplateDirective,
16465
16467
  TextBoxPrefixTemplateDirective,
16466
16468
  TextBoxCustomMessagesComponent,
16469
+ PrefixTemplateDirective,
16470
+ SuffixTemplateDirective,
16471
+ SeparatorComponent
16467
16472
  ];
16468
16473
  /**
16469
16474
  * Utility array that contains all `NumericTextBox` related components and directives
@@ -16472,13 +16477,17 @@ const KENDO_NUMERICTEXTBOX = [
16472
16477
  NumericTextBoxComponent,
16473
16478
  NumericTextBoxCustomMessagesComponent,
16474
16479
  PrefixTemplateDirective,
16475
- SuffixTemplateDirective
16480
+ SuffixTemplateDirective,
16481
+ SeparatorComponent
16476
16482
  ];
16477
16483
  /**
16478
16484
  * Utility array that contains all `MaskedTextBox` related components and directives
16479
16485
  */
16480
16486
  const KENDO_MASKEDTEXTBOX = [
16481
- MaskedTextBoxComponent
16487
+ MaskedTextBoxComponent,
16488
+ PrefixTemplateDirective,
16489
+ SuffixTemplateDirective,
16490
+ SeparatorComponent
16482
16491
  ];
16483
16492
  /**
16484
16493
  * Utility array that contains all `TextArea` related components and directives
@@ -16488,6 +16497,7 @@ const KENDO_TEXTAREA = [
16488
16497
  TextAreaDirective,
16489
16498
  TextAreaPrefixComponent,
16490
16499
  TextAreaSuffixComponent,
16500
+ SeparatorComponent
16491
16501
  ];
16492
16502
  /**
16493
16503
  * Utility array that contains all `CheckBox` related components and directives
@@ -16636,13 +16646,13 @@ const KENDO_INPUTS = [
16636
16646
  class InputsModule {
16637
16647
  }
16638
16648
  InputsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16639
- InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, MaskedTextBoxComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, MaskedTextBoxComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent] });
16640
- InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, RadioButtonComponent, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, RangeSliderComponent, RangeSliderCustomMessagesComponent, RatingComponent, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent] });
16649
+ InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, AdornmentsModule] });
16650
+ InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.SeparatorComponent, MaskedTextBoxComponent, i7.SeparatorComponent, TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, RadioButtonComponent, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, RangeSliderComponent, RangeSliderCustomMessagesComponent, RatingComponent, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, AdornmentsModule] });
16641
16651
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, decorators: [{
16642
16652
  type: NgModule,
16643
16653
  args: [{
16644
16654
  imports: [...KENDO_INPUTS],
16645
- exports: [...KENDO_INPUTS],
16655
+ exports: [...KENDO_INPUTS, AdornmentsModule],
16646
16656
  providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
16647
16657
  }]
16648
16658
  }] });
@@ -16822,13 +16832,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16822
16832
  class NumericTextBoxModule {
16823
16833
  }
16824
16834
  NumericTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16825
- NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective], exports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective] });
16826
- NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent] });
16835
+ NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16836
+ NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.SeparatorComponent, AdornmentsModule] });
16827
16837
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, decorators: [{
16828
16838
  type: NgModule,
16829
16839
  args: [{
16830
16840
  imports: [...KENDO_NUMERICTEXTBOX],
16831
- exports: [...KENDO_NUMERICTEXTBOX],
16841
+ exports: [...KENDO_NUMERICTEXTBOX, AdornmentsModule],
16832
16842
  providers: [IconsService]
16833
16843
  }]
16834
16844
  }] });
@@ -16868,13 +16878,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16868
16878
  class MaskedTextBoxModule {
16869
16879
  }
16870
16880
  MaskedTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16871
- MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent], exports: [MaskedTextBoxComponent] });
16872
- MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [KENDO_MASKEDTEXTBOX] });
16881
+ MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16882
+ MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent, i7.SeparatorComponent, AdornmentsModule] });
16873
16883
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
16874
16884
  type: NgModule,
16875
16885
  args: [{
16876
16886
  imports: [...KENDO_MASKEDTEXTBOX],
16877
- exports: [...KENDO_MASKEDTEXTBOX]
16887
+ exports: [...KENDO_MASKEDTEXTBOX, AdornmentsModule]
16878
16888
  }]
16879
16889
  }] });
16880
16890
 
@@ -16913,13 +16923,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16913
16923
  class TextBoxModule {
16914
16924
  }
16915
16925
  TextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16916
- TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent] });
16917
- TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent] });
16926
+ TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16927
+ TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, i7.SeparatorComponent, AdornmentsModule] });
16918
16928
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, decorators: [{
16919
16929
  type: NgModule,
16920
16930
  args: [{
16921
16931
  imports: [...KENDO_TEXTBOX],
16922
- exports: [...KENDO_TEXTBOX],
16932
+ exports: [...KENDO_TEXTBOX, AdornmentsModule],
16923
16933
  providers: [IconsService]
16924
16934
  }]
16925
16935
  }] });
@@ -16959,13 +16969,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16959
16969
  class TextAreaModule {
16960
16970
  }
16961
16971
  TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16962
- TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent], exports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent] });
16963
- TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent] });
16972
+ TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent], exports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, AdornmentsModule] });
16973
+ TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, AdornmentsModule] });
16964
16974
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, decorators: [{
16965
16975
  type: NgModule,
16966
16976
  args: [{
16967
16977
  imports: [...KENDO_TEXTAREA],
16968
- exports: [...KENDO_TEXTAREA]
16978
+ exports: [...KENDO_TEXTAREA, AdornmentsModule]
16969
16979
  }]
16970
16980
  }] });
16971
16981
 
@@ -9,8 +9,8 @@ import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } fr
9
9
  import { take, tap, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
10
10
  import * as i1 from '@progress/kendo-angular-l10n';
11
11
  import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
12
- import * as i9 from '@progress/kendo-angular-common';
13
- import { Keys, guid, hasObservers, anyChanged, isDocumentAvailable, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, isSafari, ResizeBatchService } from '@progress/kendo-angular-common';
12
+ import * as i7 from '@progress/kendo-angular-common';
13
+ import { Keys, guid, hasObservers, anyChanged, isDocumentAvailable, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, isSafari, SeparatorComponent, AdornmentsModule, ResizeBatchService } from '@progress/kendo-angular-common';
14
14
  export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective } from '@progress/kendo-angular-common';
15
15
  import { validatePackage } from '@progress/kendo-licensing';
16
16
  import { caretAltUpIcon, caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltExpandIcon, checkIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon, starIcon, starOutlineIcon, xIcon, hyperlinkOpenIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
@@ -539,8 +539,8 @@ const packageMetadata = {
539
539
  name: '@progress/kendo-angular-inputs',
540
540
  productName: 'Kendo UI for Angular',
541
541
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
542
- publishDate: 1722605463,
543
- version: '16.6.0-develop.9',
542
+ publishDate: 1722938695,
543
+ version: '16.6.1-develop.1',
544
544
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
545
545
  };
546
546
 
@@ -3470,7 +3470,9 @@ var ArrowDirection;
3470
3470
  class InputSeparatorComponent {
3471
3471
  constructor() {
3472
3472
  /**
3473
- * Specifies the orientation of the separator.
3473
+ * Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](slug:api_inputs_textareacomponent).
3474
+ *
3475
+ * @default 'vertical'
3474
3476
  */
3475
3477
  this.orientation = 'vertical';
3476
3478
  this.hostClass = true;
@@ -16421,6 +16423,9 @@ const KENDO_TEXTBOX = [
16421
16423
  TextBoxSuffixTemplateDirective,
16422
16424
  TextBoxPrefixTemplateDirective,
16423
16425
  TextBoxCustomMessagesComponent,
16426
+ PrefixTemplateDirective,
16427
+ SuffixTemplateDirective,
16428
+ SeparatorComponent
16424
16429
  ];
16425
16430
  /**
16426
16431
  * Utility array that contains all `NumericTextBox` related components and directives
@@ -16429,13 +16434,17 @@ const KENDO_NUMERICTEXTBOX = [
16429
16434
  NumericTextBoxComponent,
16430
16435
  NumericTextBoxCustomMessagesComponent,
16431
16436
  PrefixTemplateDirective,
16432
- SuffixTemplateDirective
16437
+ SuffixTemplateDirective,
16438
+ SeparatorComponent
16433
16439
  ];
16434
16440
  /**
16435
16441
  * Utility array that contains all `MaskedTextBox` related components and directives
16436
16442
  */
16437
16443
  const KENDO_MASKEDTEXTBOX = [
16438
- MaskedTextBoxComponent
16444
+ MaskedTextBoxComponent,
16445
+ PrefixTemplateDirective,
16446
+ SuffixTemplateDirective,
16447
+ SeparatorComponent
16439
16448
  ];
16440
16449
  /**
16441
16450
  * Utility array that contains all `TextArea` related components and directives
@@ -16445,6 +16454,7 @@ const KENDO_TEXTAREA = [
16445
16454
  TextAreaDirective,
16446
16455
  TextAreaPrefixComponent,
16447
16456
  TextAreaSuffixComponent,
16457
+ SeparatorComponent
16448
16458
  ];
16449
16459
  /**
16450
16460
  * Utility array that contains all `CheckBox` related components and directives
@@ -16593,13 +16603,13 @@ const KENDO_INPUTS = [
16593
16603
  class InputsModule {
16594
16604
  }
16595
16605
  InputsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16596
- InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, MaskedTextBoxComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective, MaskedTextBoxComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent] });
16597
- InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, CheckBoxComponent, RadioButtonComponent, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, RangeSliderComponent, RangeSliderCustomMessagesComponent, RatingComponent, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent] });
16606
+ InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, AdornmentsModule] });
16607
+ InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, i7.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.SeparatorComponent, MaskedTextBoxComponent, i7.SeparatorComponent, TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, CheckBoxComponent, RadioButtonComponent, SwitchComponent, SwitchCustomMessagesComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, RangeSliderComponent, RangeSliderCustomMessagesComponent, RatingComponent, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, AdornmentsModule] });
16598
16608
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InputsModule, decorators: [{
16599
16609
  type: NgModule,
16600
16610
  args: [{
16601
16611
  imports: [...KENDO_INPUTS],
16602
- exports: [...KENDO_INPUTS],
16612
+ exports: [...KENDO_INPUTS, AdornmentsModule],
16603
16613
  providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
16604
16614
  }]
16605
16615
  }] });
@@ -16779,13 +16789,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16779
16789
  class NumericTextBoxModule {
16780
16790
  }
16781
16791
  NumericTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16782
- NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective], exports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i9.PrefixTemplateDirective, i9.SuffixTemplateDirective] });
16783
- NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent] });
16792
+ NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16793
+ NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i7.SeparatorComponent, AdornmentsModule] });
16784
16794
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxModule, decorators: [{
16785
16795
  type: NgModule,
16786
16796
  args: [{
16787
16797
  imports: [...KENDO_NUMERICTEXTBOX],
16788
- exports: [...KENDO_NUMERICTEXTBOX],
16798
+ exports: [...KENDO_NUMERICTEXTBOX, AdornmentsModule],
16789
16799
  providers: [IconsService]
16790
16800
  }]
16791
16801
  }] });
@@ -16825,13 +16835,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16825
16835
  class MaskedTextBoxModule {
16826
16836
  }
16827
16837
  MaskedTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16828
- MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent], exports: [MaskedTextBoxComponent] });
16829
- MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [KENDO_MASKEDTEXTBOX] });
16838
+ MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16839
+ MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent, i7.SeparatorComponent, AdornmentsModule] });
16830
16840
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
16831
16841
  type: NgModule,
16832
16842
  args: [{
16833
16843
  imports: [...KENDO_MASKEDTEXTBOX],
16834
- exports: [...KENDO_MASKEDTEXTBOX]
16844
+ exports: [...KENDO_MASKEDTEXTBOX, AdornmentsModule]
16835
16845
  }]
16836
16846
  }] });
16837
16847
 
@@ -16870,13 +16880,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16870
16880
  class TextBoxModule {
16871
16881
  }
16872
16882
  TextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16873
- TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent] });
16874
- TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent] });
16883
+ TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, AdornmentsModule] });
16884
+ TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [TextBoxComponent, InputSeparatorComponent, TextBoxCustomMessagesComponent, i7.SeparatorComponent, AdornmentsModule] });
16875
16885
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxModule, decorators: [{
16876
16886
  type: NgModule,
16877
16887
  args: [{
16878
16888
  imports: [...KENDO_TEXTBOX],
16879
- exports: [...KENDO_TEXTBOX],
16889
+ exports: [...KENDO_TEXTBOX, AdornmentsModule],
16880
16890
  providers: [IconsService]
16881
16891
  }]
16882
16892
  }] });
@@ -16916,13 +16926,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16916
16926
  class TextAreaModule {
16917
16927
  }
16918
16928
  TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
16919
- TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent], exports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent] });
16920
- TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent] });
16929
+ TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent], exports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, AdornmentsModule] });
16930
+ TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaPrefixComponent, TextAreaSuffixComponent, i7.SeparatorComponent, AdornmentsModule] });
16921
16931
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaModule, decorators: [{
16922
16932
  type: NgModule,
16923
16933
  args: [{
16924
16934
  imports: [...KENDO_TEXTAREA],
16925
- exports: [...KENDO_TEXTAREA]
16935
+ exports: [...KENDO_TEXTAREA, AdornmentsModule]
16926
16936
  }]
16927
16937
  }] });
16928
16938
 
@@ -9,9 +9,9 @@ import * as i3 from "./shared/input-separator.component";
9
9
  import * as i4 from "./textbox/textbox-suffix.directive";
10
10
  import * as i5 from "./textbox/textbox-prefix.directive";
11
11
  import * as i6 from "./textbox/localization/custom-messages.component";
12
- import * as i7 from "./numerictextbox/numerictextbox.component";
13
- import * as i8 from "./numerictextbox/localization/custom-messages.component";
14
- import * as i9 from "@progress/kendo-angular-common";
12
+ import * as i7 from "@progress/kendo-angular-common";
13
+ import * as i8 from "./numerictextbox/numerictextbox.component";
14
+ import * as i9 from "./numerictextbox/localization/custom-messages.component";
15
15
  import * as i10 from "./maskedtextbox/maskedtextbox.component";
16
16
  import * as i11 from "./textarea/textarea.component";
17
17
  import * as i12 from "./shared/textarea.directive";
@@ -76,6 +76,6 @@ import * as i39 from "./colorpicker/color-palette.component";
76
76
  */
77
77
  export declare class InputsModule {
78
78
  static ɵfac: i0.ɵɵFactoryDeclaration<InputsModule, never>;
79
- static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.NumericTextBoxComponent, typeof i8.NumericTextBoxCustomMessagesComponent, typeof i9.PrefixTemplateDirective, typeof i9.SuffixTemplateDirective, typeof i10.MaskedTextBoxComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.NumericTextBoxComponent, typeof i8.NumericTextBoxCustomMessagesComponent, typeof i9.PrefixTemplateDirective, typeof i9.SuffixTemplateDirective, typeof i10.MaskedTextBoxComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent]>;
79
+ static ɵmod: i0.ɵɵNgModuleDeclaration<InputsModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i8.NumericTextBoxComponent, typeof i9.NumericTextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i10.MaskedTextBoxComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i11.TextAreaComponent, typeof i12.TextAreaDirective, typeof i13.TextAreaPrefixComponent, typeof i14.TextAreaSuffixComponent, typeof i7.SeparatorComponent, typeof i15.CheckBoxComponent, typeof i16.CheckBoxDirective, typeof i17.RadioButtonComponent, typeof i18.RadioButtonDirective, typeof i19.SwitchComponent, typeof i20.SwitchCustomMessagesComponent, typeof i21.FormFieldComponent, typeof i22.HintComponent, typeof i23.ErrorComponent, typeof i24.SliderComponent, typeof i25.SliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i27.RangeSliderComponent, typeof i28.RangeSliderCustomMessagesComponent, typeof i26.LabelTemplateDirective, typeof i29.RatingComponent, typeof i30.RatingItemTemplateDirective, typeof i31.RatingHoveredItemTemplateDirective, typeof i32.RatingSelectedItemTemplateDirective, typeof i33.SignatureComponent, typeof i34.SignatureCustomMessagesComponent, typeof i35.ColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i37.FlatColorPickerComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i38.ColorGradientComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i39.ColorPaletteComponent, typeof i36.ColorPickerCustomMessagesComponent, typeof i7.AdornmentsModule]>;
80
80
  static ɵinj: i0.ɵɵInjectorDeclaration<InputsModule>;
81
81
  }
@@ -4,6 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
6
6
  import * as i1 from "./maskedtextbox/maskedtextbox.component";
7
+ import * as i2 from "@progress/kendo-angular-common";
7
8
  /**
8
9
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
9
10
  * definition for the MaskedTextBox component.
@@ -37,6 +38,6 @@ import * as i1 from "./maskedtextbox/maskedtextbox.component";
37
38
  */
38
39
  export declare class MaskedTextBoxModule {
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxModule, never>;
40
- static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, never, [typeof i1.MaskedTextBoxComponent], [typeof i1.MaskedTextBoxComponent]>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, never, [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent], [typeof i1.MaskedTextBoxComponent, typeof i2.PrefixTemplateDirective, typeof i2.SuffixTemplateDirective, typeof i2.SeparatorComponent, typeof i2.AdornmentsModule]>;
41
42
  static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxModule>;
42
43
  }
@@ -39,6 +39,6 @@ import * as i3 from "@progress/kendo-angular-common";
39
39
  */
40
40
  export declare class NumericTextBoxModule {
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxModule, never>;
42
- static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, never, [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective], [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective]>;
42
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, never, [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent], [typeof i1.NumericTextBoxComponent, typeof i2.NumericTextBoxCustomMessagesComponent, typeof i3.PrefixTemplateDirective, typeof i3.SuffixTemplateDirective, typeof i3.SeparatorComponent, typeof i3.AdornmentsModule]>;
43
43
  static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxModule>;
44
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "16.6.0-develop.9",
3
+ "version": "16.6.1-develop.1",
4
4
  "description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,18 +34,18 @@
34
34
  "@angular/platform-browser": "15 - 18",
35
35
  "@progress/kendo-drawing": "^1.19.0",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "16.6.0-develop.9",
38
- "@progress/kendo-angular-common": "16.6.0-develop.9",
39
- "@progress/kendo-angular-dialog": "16.6.0-develop.9",
40
- "@progress/kendo-angular-intl": "16.6.0-develop.9",
41
- "@progress/kendo-angular-l10n": "16.6.0-develop.9",
42
- "@progress/kendo-angular-popup": "16.6.0-develop.9",
43
- "@progress/kendo-angular-icons": "16.6.0-develop.9",
37
+ "@progress/kendo-angular-buttons": "16.6.1-develop.1",
38
+ "@progress/kendo-angular-common": "16.6.1-develop.1",
39
+ "@progress/kendo-angular-dialog": "16.6.1-develop.1",
40
+ "@progress/kendo-angular-intl": "16.6.1-develop.1",
41
+ "@progress/kendo-angular-l10n": "16.6.1-develop.1",
42
+ "@progress/kendo-angular-popup": "16.6.1-develop.1",
43
+ "@progress/kendo-angular-icons": "16.6.1-develop.1",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "16.6.0-develop.9",
48
+ "@progress/kendo-angular-schematics": "16.6.1-develop.1",
49
49
  "@progress/kendo-common": "^0.2.2",
50
50
  "@progress/kendo-draggable": "^3.0.0",
51
51
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -24,7 +24,9 @@ import * as i0 from "@angular/core";
24
24
  */
25
25
  export declare class InputSeparatorComponent {
26
26
  /**
27
- * Specifies the orientation of the separator.
27
+ * Specifies the orientation of the separator. Applicable for the adornments of the [`TextAreaComponent`](slug:api_inputs_textareacomponent).
28
+ *
29
+ * @default 'vertical'
28
30
  */
29
31
  orientation: SeparatorOrientation;
30
32
  get vertical(): boolean;
@@ -7,6 +7,7 @@ import * as i1 from "./textarea/textarea.component";
7
7
  import * as i2 from "./shared/textarea.directive";
8
8
  import * as i3 from "./textarea/textarea-prefix.component";
9
9
  import * as i4 from "./textarea/textarea-suffix.component";
10
+ import * as i5 from "@progress/kendo-angular-common";
10
11
  /**
11
12
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
13
  * definition for the TextArea component.
@@ -40,6 +41,6 @@ import * as i4 from "./textarea/textarea-suffix.component";
40
41
  */
41
42
  export declare class TextAreaModule {
42
43
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaModule, never>;
43
- static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, never, [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent], [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent]>;
44
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, never, [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent], [typeof i1.TextAreaComponent, typeof i2.TextAreaDirective, typeof i3.TextAreaPrefixComponent, typeof i4.TextAreaSuffixComponent, typeof i5.SeparatorComponent, typeof i5.AdornmentsModule]>;
44
45
  static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaModule>;
45
46
  }
@@ -9,6 +9,7 @@ import * as i3 from "./shared/input-separator.component";
9
9
  import * as i4 from "./textbox/textbox-suffix.directive";
10
10
  import * as i5 from "./textbox/textbox-prefix.directive";
11
11
  import * as i6 from "./textbox/localization/custom-messages.component";
12
+ import * as i7 from "@progress/kendo-angular-common";
12
13
  /**
13
14
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
14
15
  * definition for the TextBox directive.
@@ -42,6 +43,6 @@ import * as i6 from "./textbox/localization/custom-messages.component";
42
43
  */
43
44
  export declare class TextBoxModule {
44
45
  static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxModule, never>;
45
- static ɵmod: i0.ɵɵNgModuleDeclaration<TextBoxModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent]>;
46
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextBoxModule, never, [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent], [typeof i1.TextBoxDirective, typeof i2.TextBoxComponent, typeof i3.InputSeparatorComponent, typeof i4.TextBoxSuffixTemplateDirective, typeof i5.TextBoxPrefixTemplateDirective, typeof i6.TextBoxCustomMessagesComponent, typeof i7.PrefixTemplateDirective, typeof i7.SuffixTemplateDirective, typeof i7.SeparatorComponent, typeof i7.AdornmentsModule]>;
46
47
  static ɵinj: i0.ɵɵInjectorDeclaration<TextBoxModule>;
47
48
  }