@progress/kendo-angular-inputs 8.0.0-dev.202201181548 → 8.0.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.
Files changed (42) hide show
  1. package/dist/cdn/js/kendo-angular-inputs.js +2 -2
  2. package/dist/cdn/main.js +1 -1
  3. package/dist/es/colorpicker/colorpicker.component.js +1 -1
  4. package/dist/es/index.js +0 -2
  5. package/dist/es/main.js +2 -0
  6. package/dist/es/maskedtextbox/maskedtextbox.component.js +1 -1
  7. package/dist/es/numerictextbox/numerictextbox.component.js +1 -1
  8. package/dist/es/package-metadata.js +1 -1
  9. package/dist/es/switch/switch.component.js +1 -1
  10. package/dist/es/textarea/textarea.component.js +3 -2
  11. package/dist/es/textbox/textbox.component.js +1 -1
  12. package/dist/es2015/colorpicker/colorpicker.component.d.ts +1 -1
  13. package/dist/es2015/colorpicker/colorpicker.component.js +1 -1
  14. package/dist/es2015/index.d.ts +0 -2
  15. package/dist/es2015/index.js +0 -2
  16. package/dist/es2015/index.metadata.json +1 -1
  17. package/dist/es2015/main.d.ts +2 -0
  18. package/dist/es2015/main.js +2 -0
  19. package/dist/es2015/maskedtextbox/maskedtextbox.component.d.ts +1 -1
  20. package/dist/es2015/maskedtextbox/maskedtextbox.component.js +1 -1
  21. package/dist/es2015/numerictextbox/numerictextbox.component.d.ts +1 -1
  22. package/dist/es2015/numerictextbox/numerictextbox.component.js +1 -1
  23. package/dist/es2015/package-metadata.js +1 -1
  24. package/dist/es2015/switch/switch.component.d.ts +1 -1
  25. package/dist/es2015/switch/switch.component.js +1 -1
  26. package/dist/es2015/textarea/textarea.component.d.ts +1 -1
  27. package/dist/es2015/textarea/textarea.component.js +10 -2
  28. package/dist/es2015/textbox/textbox.component.d.ts +1 -1
  29. package/dist/es2015/textbox/textbox.component.js +1 -1
  30. package/dist/fesm2015/index.js +17 -9
  31. package/dist/fesm5/index.js +10 -9
  32. package/dist/npm/colorpicker/colorpicker.component.js +1 -1
  33. package/dist/npm/index.js +0 -4
  34. package/dist/npm/main.js +4 -0
  35. package/dist/npm/maskedtextbox/maskedtextbox.component.js +1 -1
  36. package/dist/npm/numerictextbox/numerictextbox.component.js +1 -1
  37. package/dist/npm/package-metadata.js +1 -1
  38. package/dist/npm/switch/switch.component.js +1 -1
  39. package/dist/npm/textarea/textarea.component.js +3 -2
  40. package/dist/npm/textbox/textbox.component.js +1 -1
  41. package/dist/systemjs/kendo-angular-inputs.js +1 -1
  42. package/package.json +5 -5
@@ -21,6 +21,8 @@ export { NumericTextBoxModule } from './numerictextbox.module';
21
21
  export { MaskedTextBoxModule } from './maskedtextbox.module';
22
22
  export { TextBoxModule } from './textbox.module';
23
23
  export { TextAreaModule } from './textarea.module';
24
+ export { CheckBoxModule } from './checkbox.module';
25
+ export { RadioButtonModule } from './radiobutton.module';
24
26
  export { InputRounded, CheckBoxRounded, InputFillMode, InputSize } from './common/models';
25
27
  export { ColorPickerComponent } from './colorpicker/colorpicker.component';
26
28
  export { ColorPaletteComponent } from './colorpicker/color-palette.component';
@@ -20,6 +20,8 @@ export { NumericTextBoxModule } from './numerictextbox.module';
20
20
  export { MaskedTextBoxModule } from './maskedtextbox.module';
21
21
  export { TextBoxModule } from './textbox.module';
22
22
  export { TextAreaModule } from './textarea.module';
23
+ export { CheckBoxModule } from './checkbox.module';
24
+ export { RadioButtonModule } from './radiobutton.module';
23
25
  // All ColorPicker Components
24
26
  export { ColorPickerComponent } from './colorpicker/colorpicker.component';
25
27
  export { ColorPaletteComponent } from './colorpicker/color-palette.component';
@@ -54,7 +54,7 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
54
54
  */
55
55
  title: string;
56
56
  /**
57
- * The size property specifies the font size and line height of the MaskedTextBox
57
+ * The size property specifies the padding of the MaskedTextBox internal input element
58
58
  * ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
59
59
  * The possible values are:
60
60
  * * `'small'`
@@ -203,7 +203,7 @@ let MaskedTextBoxComponent = MaskedTextBoxComponent_1 = class MaskedTextBoxCompo
203
203
  this.updateService();
204
204
  }
205
205
  /**
206
- * The size property specifies the font size and line height of the MaskedTextBox
206
+ * The size property specifies the padding of the MaskedTextBox internal input element
207
207
  * ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
208
208
  * The possible values are:
209
209
  * * `'small'`
@@ -113,7 +113,7 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
113
113
  */
114
114
  maxlength: number;
115
115
  /**
116
- * The size property specifies the font size and line height of the NumericTextBox
116
+ * The size property specifies padding of the NumericTextBox internal input element
117
117
  * ([see example]({% slug appearance_numerictextbox %}#toc-size)).
118
118
  * The possible values are:
119
119
  * * `'small'`
@@ -322,7 +322,7 @@ let NumericTextBoxComponent = NumericTextBoxComponent_1 = class NumericTextBoxCo
322
322
  return this.tabindex;
323
323
  }
324
324
  /**
325
- * The size property specifies the font size and line height of the NumericTextBox
325
+ * The size property specifies padding of the NumericTextBox internal input element
326
326
  * ([see example]({% slug appearance_numerictextbox %}#toc-size)).
327
327
  * The possible values are:
328
328
  * * `'small'`
@@ -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: 1642520654,
12
+ publishDate: 1642685118,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };
@@ -46,7 +46,7 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
46
46
  */
47
47
  tabindex: number;
48
48
  /**
49
- * Specifies the size of the Switch.
49
+ * Specifies the width and height of the Switch.
50
50
  *
51
51
  * The possible values are:
52
52
  * * `'small'`
@@ -113,7 +113,7 @@ let SwitchComponent = SwitchComponent_1 = class SwitchComponent {
113
113
  return this._checked;
114
114
  }
115
115
  /**
116
- * Specifies the size of the Switch.
116
+ * Specifies the width and height of the Switch.
117
117
  *
118
118
  * The possible values are:
119
119
  * * `'small'`
@@ -68,7 +68,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
68
68
  */
69
69
  resizable: TextAreaResize;
70
70
  /**
71
- * The size property specifies the font size and line height of the TextArea
71
+ * The size property specifies the padding of the internal textarea element
72
72
  * ([see example]({% slug appearance_textarea %}#toc-size)).
73
73
  *
74
74
  * The possible values are:
@@ -173,7 +173,7 @@ let TextAreaComponent = TextAreaComponent_1 = class TextAreaComponent extends Te
173
173
  return this.tabindex;
174
174
  }
175
175
  /**
176
- * The size property specifies the font size and line height of the TextArea
176
+ * The size property specifies the padding of the internal textarea element
177
177
  * ([see example]({% slug appearance_textarea %}#toc-size)).
178
178
  *
179
179
  * The possible values are:
@@ -558,7 +558,15 @@ TextAreaComponent = TextAreaComponent_1 = tslib_1.__decorate([
558
558
  input: handleInput}">
559
559
  </textarea>
560
560
  <ng-content select="kendo-textarea-suffix"></ng-content>
561
- `
561
+ `,
562
+ styles: [`
563
+ :host(.k-flex-col) {
564
+ flex-direction: column !important;
565
+ }
566
+ :host(.k-flex-row) {
567
+ flex-direction: row !important;
568
+ }
569
+ `]
562
570
  }),
563
571
  tslib_1.__metadata("design:paramtypes", [LocalizationService,
564
572
  NgZone,
@@ -96,7 +96,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
96
96
  */
97
97
  clearButtonIcon: string;
98
98
  /**
99
- * The size property specifies the font size and line height of the TextBox
99
+ * The size property specifies the padding of the TextBox internal input element
100
100
  * ([see example]({% slug appearance_textbox %}#toc-size)).
101
101
  *
102
102
  * The possible values are:
@@ -211,7 +211,7 @@ let TextBoxComponent = TextBoxComponent_1 = class TextBoxComponent {
211
211
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
212
212
  }
213
213
  /**
214
- * The size property specifies the font size and line height of the TextBox
214
+ * The size property specifies the padding of the TextBox internal input element
215
215
  * ([see example]({% slug appearance_textbox %}#toc-size)).
216
216
  *
217
217
  * The possible values are:
@@ -481,7 +481,7 @@ const packageMetadata = {
481
481
  name: '@progress/kendo-angular-inputs',
482
482
  productName: 'Kendo UI for Angular',
483
483
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
484
- publishDate: 1642520654,
484
+ publishDate: 1642685118,
485
485
  version: '',
486
486
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
487
487
  };
@@ -1947,7 +1947,7 @@ let SwitchComponent = SwitchComponent_1 = class SwitchComponent {
1947
1947
  return this._checked;
1948
1948
  }
1949
1949
  /**
1950
- * Specifies the size of the Switch.
1950
+ * Specifies the width and height of the Switch.
1951
1951
  *
1952
1952
  * The possible values are:
1953
1953
  * * `'small'`
@@ -3178,7 +3178,7 @@ let NumericTextBoxComponent = NumericTextBoxComponent_1 = class NumericTextBoxCo
3178
3178
  return this.tabindex;
3179
3179
  }
3180
3180
  /**
3181
- * The size property specifies the font size and line height of the NumericTextBox
3181
+ * The size property specifies padding of the NumericTextBox internal input element
3182
3182
  * ([see example]({% slug appearance_numerictextbox %}#toc-size)).
3183
3183
  * The possible values are:
3184
3184
  * * `'small'`
@@ -4560,7 +4560,7 @@ let MaskedTextBoxComponent = MaskedTextBoxComponent_1 = class MaskedTextBoxCompo
4560
4560
  this.updateService();
4561
4561
  }
4562
4562
  /**
4563
- * The size property specifies the font size and line height of the MaskedTextBox
4563
+ * The size property specifies the padding of the MaskedTextBox internal input element
4564
4564
  * ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
4565
4565
  * The possible values are:
4566
4566
  * * `'small'`
@@ -5930,7 +5930,7 @@ let TextBoxComponent = TextBoxComponent_1 = class TextBoxComponent {
5930
5930
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
5931
5931
  }
5932
5932
  /**
5933
- * The size property specifies the font size and line height of the TextBox
5933
+ * The size property specifies the padding of the TextBox internal input element
5934
5934
  * ([see example]({% slug appearance_textbox %}#toc-size)).
5935
5935
  *
5936
5936
  * The possible values are:
@@ -6944,7 +6944,7 @@ let TextAreaComponent = TextAreaComponent_1 = class TextAreaComponent extends Te
6944
6944
  return this.tabindex;
6945
6945
  }
6946
6946
  /**
6947
- * The size property specifies the font size and line height of the TextArea
6947
+ * The size property specifies the padding of the internal textarea element
6948
6948
  * ([see example]({% slug appearance_textarea %}#toc-size)).
6949
6949
  *
6950
6950
  * The possible values are:
@@ -7329,7 +7329,15 @@ TextAreaComponent = TextAreaComponent_1 = __decorate([
7329
7329
  input: handleInput}">
7330
7330
  </textarea>
7331
7331
  <ng-content select="kendo-textarea-suffix"></ng-content>
7332
- `
7332
+ `,
7333
+ styles: [`
7334
+ :host(.k-flex-col) {
7335
+ flex-direction: column !important;
7336
+ }
7337
+ :host(.k-flex-row) {
7338
+ flex-direction: row !important;
7339
+ }
7340
+ `]
7333
7341
  }),
7334
7342
  __metadata("design:paramtypes", [LocalizationService,
7335
7343
  NgZone,
@@ -10427,7 +10435,7 @@ let ColorPickerComponent = ColorPickerComponent_1 = class ColorPickerComponent {
10427
10435
  return !this.disabled ? this._tabindex : undefined;
10428
10436
  }
10429
10437
  /**
10430
- * The size property specifies the font size and line height of the ColorPicker
10438
+ * The size property specifies the padding of the ColorPicker internal elements
10431
10439
  * ([see example]({% slug appearance_colorpicker %}#toc-size)).
10432
10440
  *
10433
10441
  * The possible values are:
@@ -12285,4 +12293,4 @@ InputsModule = __decorate([
12285
12293
  * Generated bundle index. Do not edit.
12286
12294
  */
12287
12295
 
12288
- export { CheckBoxModule, ColorContrastSvgComponent, ColorInputComponent, ContrastValidationComponent, ContrastComponent, FlatColorPickerActionButtonsComponent, FlatColorPickerHeaderComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, FlatColorPickerLocalizationService, ColorPickerMessages, ColorPaletteService, FlatColorPickerService, MaskingService, NumericTextBoxMessages, RadioButtonModule, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, FlatColorPickerComponent, ColorPickerCancelEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective, ColorPickerCloseEvent, ColorPickerOpenEvent, ActiveColorClickEvent };
12296
+ export { ColorContrastSvgComponent, ColorInputComponent, ContrastValidationComponent, ContrastComponent, FlatColorPickerActionButtonsComponent, FlatColorPickerHeaderComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, FlatColorPickerLocalizationService, ColorPickerMessages, ColorPaletteService, FlatColorPickerService, MaskingService, NumericTextBoxMessages, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, CheckBoxModule, RadioButtonModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, FlatColorPickerComponent, ColorPickerCancelEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective, ColorPickerCloseEvent, ColorPickerOpenEvent, ActiveColorClickEvent };
@@ -514,7 +514,7 @@ var packageMetadata = {
514
514
  name: '@progress/kendo-angular-inputs',
515
515
  productName: 'Kendo UI for Angular',
516
516
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
517
- publishDate: 1642520654,
517
+ publishDate: 1642685118,
518
518
  version: '',
519
519
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
520
520
  };
@@ -1946,7 +1946,7 @@ var SwitchComponent = /** @class */ (function () {
1946
1946
  return this._size;
1947
1947
  },
1948
1948
  /**
1949
- * Specifies the size of the Switch.
1949
+ * Specifies the width and height of the Switch.
1950
1950
  *
1951
1951
  * The possible values are:
1952
1952
  * * `'small'`
@@ -3234,7 +3234,7 @@ var NumericTextBoxComponent = /** @class */ (function () {
3234
3234
  return this._size;
3235
3235
  },
3236
3236
  /**
3237
- * The size property specifies the font size and line height of the NumericTextBox
3237
+ * The size property specifies padding of the NumericTextBox internal input element
3238
3238
  * ([see example]({% slug appearance_numerictextbox %}#toc-size)).
3239
3239
  * The possible values are:
3240
3240
  * * `'small'`
@@ -4658,7 +4658,7 @@ var MaskedTextBoxComponent = /** @class */ (function () {
4658
4658
  return this._size;
4659
4659
  },
4660
4660
  /**
4661
- * The size property specifies the font size and line height of the MaskedTextBox
4661
+ * The size property specifies the padding of the MaskedTextBox internal input element
4662
4662
  * ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
4663
4663
  * The possible values are:
4664
4664
  * * `'small'`
@@ -6104,7 +6104,7 @@ var TextBoxComponent = /** @class */ (function () {
6104
6104
  return this._size;
6105
6105
  },
6106
6106
  /**
6107
- * The size property specifies the font size and line height of the TextBox
6107
+ * The size property specifies the padding of the TextBox internal input element
6108
6108
  * ([see example]({% slug appearance_textbox %}#toc-size)).
6109
6109
  *
6110
6110
  * The possible values are:
@@ -7148,7 +7148,7 @@ var TextAreaComponent = /** @class */ (function (_super) {
7148
7148
  return this._size;
7149
7149
  },
7150
7150
  /**
7151
- * The size property specifies the font size and line height of the TextArea
7151
+ * The size property specifies the padding of the internal textarea element
7152
7152
  * ([see example]({% slug appearance_textarea %}#toc-size)).
7153
7153
  *
7154
7154
  * The possible values are:
@@ -7530,7 +7530,8 @@ var TextAreaComponent = /** @class */ (function (_super) {
7530
7530
  { provide: KendoInput, useExisting: forwardRef(function () { return TextAreaComponent_1; }) }
7531
7531
  ],
7532
7532
  selector: 'kendo-textarea',
7533
- template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n "
7533
+ template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n ",
7534
+ styles: ["\n :host(.k-flex-col) {\n flex-direction: column !important;\n }\n :host(.k-flex-row) {\n flex-direction: row !important;\n }\n "]
7534
7535
  }),
7535
7536
  __metadata("design:paramtypes", [LocalizationService,
7536
7537
  NgZone,
@@ -10493,7 +10494,7 @@ var ColorPickerComponent = /** @class */ (function () {
10493
10494
  return this._size;
10494
10495
  },
10495
10496
  /**
10496
- * The size property specifies the font size and line height of the ColorPicker
10497
+ * The size property specifies the padding of the ColorPicker internal elements
10497
10498
  * ([see example]({% slug appearance_colorpicker %}#toc-size)).
10498
10499
  *
10499
10500
  * The possible values are:
@@ -12401,4 +12402,4 @@ var InputsModule = /** @class */ (function () {
12401
12402
  * Generated bundle index. Do not edit.
12402
12403
  */
12403
12404
 
12404
- export { CheckBoxModule, ColorContrastSvgComponent, ColorInputComponent, ContrastValidationComponent, ContrastComponent, FlatColorPickerActionButtonsComponent, FlatColorPickerHeaderComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, FlatColorPickerLocalizationService, ColorPickerMessages, ColorPaletteService, FlatColorPickerService, MaskingService, NumericTextBoxMessages, RadioButtonModule, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, FlatColorPickerComponent, ColorPickerCancelEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective, ColorPickerCloseEvent, ColorPickerOpenEvent, ActiveColorClickEvent };
12405
+ export { ColorContrastSvgComponent, ColorInputComponent, ContrastValidationComponent, ContrastComponent, FlatColorPickerActionButtonsComponent, FlatColorPickerHeaderComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, FlatColorPickerLocalizationService, ColorPickerMessages, ColorPaletteService, FlatColorPickerService, MaskingService, NumericTextBoxMessages, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, CheckBoxModule, RadioButtonModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, FlatColorPickerComponent, ColorPickerCancelEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective, ColorPickerCloseEvent, ColorPickerOpenEvent, ActiveColorClickEvent };
@@ -278,7 +278,7 @@ var ColorPickerComponent = /** @class */ (function () {
278
278
  return this._size;
279
279
  },
280
280
  /**
281
- * The size property specifies the font size and line height of the ColorPicker
281
+ * The size property specifies the padding of the ColorPicker internal elements
282
282
  * ([see example]({% slug appearance_colorpicker %}#toc-size)).
283
283
  *
284
284
  * The possible values are:
package/dist/npm/index.js CHANGED
@@ -9,8 +9,6 @@
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var tslib_1 = require("tslib");
11
11
  tslib_1.__exportStar(require("./main"), exports);
12
- var checkbox_module_1 = require("./checkbox.module");
13
- exports.CheckBoxModule = checkbox_module_1.CheckBoxModule
14
12
  var color_contrast_svg_component_1 = require("./colorpicker/color-contrast-svg.component");
15
13
  exports.ColorContrastSvgComponent = color_contrast_svg_component_1.ColorContrastSvgComponent
16
14
  var color_input_component_1 = require("./colorpicker/color-input.component");
@@ -45,8 +43,6 @@ var masking_service_1 = require("./maskedtextbox/masking.service");
45
43
  exports.MaskingService = masking_service_1.MaskingService
46
44
  var messages_2 = require("./numerictextbox/localization/messages");
47
45
  exports.NumericTextBoxMessages = messages_2.NumericTextBoxMessages
48
- var radiobutton_module_1 = require("./radiobutton.module");
49
- exports.RadioButtonModule = radiobutton_module_1.RadioButtonModule
50
46
  var custom_messages_component_2 = require("./rangeslider/localization/custom-messages.component");
51
47
  exports.RangeSliderCustomMessagesComponent = custom_messages_component_2.RangeSliderCustomMessagesComponent
52
48
  var messages_3 = require("./rangeslider/localization/messages");
package/dist/npm/main.js CHANGED
@@ -41,6 +41,10 @@ var textbox_module_1 = require("./textbox.module");
41
41
  exports.TextBoxModule = textbox_module_1.TextBoxModule;
42
42
  var textarea_module_1 = require("./textarea.module");
43
43
  exports.TextAreaModule = textarea_module_1.TextAreaModule;
44
+ var checkbox_module_1 = require("./checkbox.module");
45
+ exports.CheckBoxModule = checkbox_module_1.CheckBoxModule;
46
+ var radiobutton_module_1 = require("./radiobutton.module");
47
+ exports.RadioButtonModule = radiobutton_module_1.RadioButtonModule;
44
48
  // All ColorPicker Components
45
49
  var colorpicker_component_1 = require("./colorpicker/colorpicker.component");
46
50
  exports.ColorPickerComponent = colorpicker_component_1.ColorPickerComponent;
@@ -210,7 +210,7 @@ var MaskedTextBoxComponent = /** @class */ (function () {
210
210
  return this._size;
211
211
  },
212
212
  /**
213
- * The size property specifies the font size and line height of the MaskedTextBox
213
+ * The size property specifies the padding of the MaskedTextBox internal input element
214
214
  * ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
215
215
  * The possible values are:
216
216
  * * `'small'`
@@ -337,7 +337,7 @@ var NumericTextBoxComponent = /** @class */ (function () {
337
337
  return this._size;
338
338
  },
339
339
  /**
340
- * The size property specifies the font size and line height of the NumericTextBox
340
+ * The size property specifies padding of the NumericTextBox internal input element
341
341
  * ([see example]({% slug appearance_numerictextbox %}#toc-size)).
342
342
  * The possible values are:
343
343
  * * `'small'`
@@ -11,7 +11,7 @@ exports.packageMetadata = {
11
11
  name: '@progress/kendo-angular-inputs',
12
12
  productName: 'Kendo UI for Angular',
13
13
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
14
- publishDate: 1642520654,
14
+ publishDate: 1642685118,
15
15
  version: '',
16
16
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
17
17
  };
@@ -124,7 +124,7 @@ var SwitchComponent = /** @class */ (function () {
124
124
  return this._size;
125
125
  },
126
126
  /**
127
- * Specifies the size of the Switch.
127
+ * Specifies the width and height of the Switch.
128
128
  *
129
129
  * The possible values are:
130
130
  * * `'small'`
@@ -193,7 +193,7 @@ var TextAreaComponent = /** @class */ (function (_super) {
193
193
  return this._size;
194
194
  },
195
195
  /**
196
- * The size property specifies the font size and line height of the TextArea
196
+ * The size property specifies the padding of the internal textarea element
197
197
  * ([see example]({% slug appearance_textarea %}#toc-size)).
198
198
  *
199
199
  * The possible values are:
@@ -575,7 +575,8 @@ var TextAreaComponent = /** @class */ (function (_super) {
575
575
  { provide: kendo_angular_common_1.KendoInput, useExisting: core_1.forwardRef(function () { return TextAreaComponent_1; }) }
576
576
  ],
577
577
  selector: 'kendo-textarea',
578
- template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n "
578
+ template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n ",
579
+ styles: ["\n :host(.k-flex-col) {\n flex-direction: column !important;\n }\n :host(.k-flex-row) {\n flex-direction: row !important;\n }\n "]
579
580
  }),
580
581
  tslib_1.__metadata("design:paramtypes", [kendo_angular_l10n_1.LocalizationService,
581
582
  core_1.NgZone,
@@ -218,7 +218,7 @@ var TextBoxComponent = /** @class */ (function () {
218
218
  return this._size;
219
219
  },
220
220
  /**
221
- * The size property specifies the font size and line height of the TextBox
221
+ * The size property specifies the padding of the TextBox internal input element
222
222
  * ([see example]({% slug appearance_textbox %}#toc-size)).
223
223
  *
224
224
  * The possible values are: