@progress/kendo-angular-inputs 14.3.0-develop.7 → 14.3.0-develop.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ /**
6
+ * Represents the possible input `type` options of the TextBox.
7
+ *
8
+ * @default `text`
9
+ */
10
+ export declare type InputType = 'text' | 'password';
@@ -6,3 +6,4 @@ export * from './models/fillmode';
6
6
  export * from './models/rounded';
7
7
  export * from './models/size';
8
8
  export * from './models/styling-classes';
9
+ export * from './models/type';
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -6,3 +6,4 @@ export * from './models/fillmode';
6
6
  export * from './models/rounded';
7
7
  export * from './models/size';
8
8
  export * from './models/styling-classes';
9
+ export * from './models/type';
@@ -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: 1701794010,
13
- version: '14.3.0-develop.7',
12
+ publishDate: 1701953710,
13
+ version: '14.3.0-develop.9',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -43,6 +43,10 @@ export class TextBoxComponent {
43
43
  * Sets the `title` attribute of the `input` element of the TextBox.
44
44
  */
45
45
  this.title = '';
46
+ /**
47
+ * Sets the `type` attribute of the `input` element of the TextBox.
48
+ */
49
+ this.type = 'text';
46
50
  /**
47
51
  * Sets the disabled state of the component.
48
52
  *
@@ -608,7 +612,7 @@ export class TextBoxComponent {
608
612
  }
609
613
  }
610
614
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
611
- TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
615
+ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
612
616
  LocalizationService,
613
617
  { provide: L10N_PREFIX, useValue: 'kendo.textbox' },
614
618
  {
@@ -635,6 +639,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
635
639
  [readonly]="readonly"
636
640
  [attr.tabindex]="disabled ? undefined : tabindex"
637
641
  [value]="value"
642
+ [attr.type]="type"
638
643
  [attr.placeholder]="placeholder"
639
644
  [attr.title]="title"
640
645
  [attr.maxlength]="maxlength"
@@ -718,6 +723,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
718
723
  [readonly]="readonly"
719
724
  [attr.tabindex]="disabled ? undefined : tabindex"
720
725
  [value]="value"
726
+ [attr.type]="type"
721
727
  [attr.placeholder]="placeholder"
722
728
  [attr.title]="title"
723
729
  [attr.maxlength]="maxlength"
@@ -773,6 +779,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
773
779
  type: Input
774
780
  }], title: [{
775
781
  type: Input
782
+ }], type: [{
783
+ type: Input
776
784
  }], disabled: [{
777
785
  type: Input
778
786
  }], readonly: [{
@@ -537,8 +537,8 @@ const packageMetadata = {
537
537
  name: '@progress/kendo-angular-inputs',
538
538
  productName: 'Kendo UI for Angular',
539
539
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
540
- publishDate: 1701794010,
541
- version: '14.3.0-develop.7',
540
+ publishDate: 1701953710,
541
+ version: '14.3.0-develop.9',
542
542
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
543
543
  };
544
544
 
@@ -6267,6 +6267,10 @@ class TextBoxComponent {
6267
6267
  * Sets the `title` attribute of the `input` element of the TextBox.
6268
6268
  */
6269
6269
  this.title = '';
6270
+ /**
6271
+ * Sets the `type` attribute of the `input` element of the TextBox.
6272
+ */
6273
+ this.type = 'text';
6270
6274
  /**
6271
6275
  * Sets the disabled state of the component.
6272
6276
  *
@@ -6832,7 +6836,7 @@ class TextBoxComponent {
6832
6836
  }
6833
6837
  }
6834
6838
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
6835
- TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
6839
+ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
6836
6840
  LocalizationService,
6837
6841
  { provide: L10N_PREFIX, useValue: 'kendo.textbox' },
6838
6842
  {
@@ -6859,6 +6863,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
6859
6863
  [readonly]="readonly"
6860
6864
  [attr.tabindex]="disabled ? undefined : tabindex"
6861
6865
  [value]="value"
6866
+ [attr.type]="type"
6862
6867
  [attr.placeholder]="placeholder"
6863
6868
  [attr.title]="title"
6864
6869
  [attr.maxlength]="maxlength"
@@ -6942,6 +6947,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6942
6947
  [readonly]="readonly"
6943
6948
  [attr.tabindex]="disabled ? undefined : tabindex"
6944
6949
  [value]="value"
6950
+ [attr.type]="type"
6945
6951
  [attr.placeholder]="placeholder"
6946
6952
  [attr.title]="title"
6947
6953
  [attr.maxlength]="maxlength"
@@ -6997,6 +7003,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6997
7003
  type: Input
6998
7004
  }], title: [{
6999
7005
  type: Input
7006
+ }], type: [{
7007
+ type: Input
7000
7008
  }], disabled: [{
7001
7009
  type: Input
7002
7010
  }], readonly: [{
@@ -536,8 +536,8 @@ const packageMetadata = {
536
536
  name: '@progress/kendo-angular-inputs',
537
537
  productName: 'Kendo UI for Angular',
538
538
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
539
- publishDate: 1701794010,
540
- version: '14.3.0-develop.7',
539
+ publishDate: 1701953710,
540
+ version: '14.3.0-develop.9',
541
541
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
542
542
  };
543
543
 
@@ -6254,6 +6254,10 @@ class TextBoxComponent {
6254
6254
  * Sets the `title` attribute of the `input` element of the TextBox.
6255
6255
  */
6256
6256
  this.title = '';
6257
+ /**
6258
+ * Sets the `type` attribute of the `input` element of the TextBox.
6259
+ */
6260
+ this.type = 'text';
6257
6261
  /**
6258
6262
  * Sets the disabled state of the component.
6259
6263
  *
@@ -6819,7 +6823,7 @@ class TextBoxComponent {
6819
6823
  }
6820
6824
  }
6821
6825
  TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
6822
- TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
6826
+ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TextBoxComponent, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-textbox": "this.hostClasses", "class.k-input": "this.hostClasses", "attr.dir": "this.direction" } }, providers: [
6823
6827
  LocalizationService,
6824
6828
  { provide: L10N_PREFIX, useValue: 'kendo.textbox' },
6825
6829
  {
@@ -6846,6 +6850,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
6846
6850
  [readonly]="readonly"
6847
6851
  [attr.tabindex]="disabled ? undefined : tabindex"
6848
6852
  [value]="value"
6853
+ [attr.type]="type"
6849
6854
  [attr.placeholder]="placeholder"
6850
6855
  [attr.title]="title"
6851
6856
  [attr.maxlength]="maxlength"
@@ -6929,6 +6934,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6929
6934
  [readonly]="readonly"
6930
6935
  [attr.tabindex]="disabled ? undefined : tabindex"
6931
6936
  [value]="value"
6937
+ [attr.type]="type"
6932
6938
  [attr.placeholder]="placeholder"
6933
6939
  [attr.title]="title"
6934
6940
  [attr.maxlength]="maxlength"
@@ -6984,6 +6990,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
6984
6990
  type: Input
6985
6991
  }], title: [{
6986
6992
  type: Input
6993
+ }], type: [{
6994
+ type: Input
6987
6995
  }], disabled: [{
6988
6996
  type: Input
6989
6997
  }], readonly: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "14.3.0-develop.7",
3
+ "version": "14.3.0-develop.9",
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,19 +34,19 @@
34
34
  "@angular/platform-browser": "13 - 17",
35
35
  "@progress/kendo-drawing": "^1.17.2",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "14.3.0-develop.7",
38
- "@progress/kendo-angular-common": "14.3.0-develop.7",
39
- "@progress/kendo-angular-dialog": "14.3.0-develop.7",
40
- "@progress/kendo-angular-intl": "14.3.0-develop.7",
41
- "@progress/kendo-angular-l10n": "14.3.0-develop.7",
42
- "@progress/kendo-angular-popup": "14.3.0-develop.7",
43
- "@progress/kendo-angular-icons": "14.3.0-develop.7",
37
+ "@progress/kendo-angular-buttons": "14.3.0-develop.9",
38
+ "@progress/kendo-angular-common": "14.3.0-develop.9",
39
+ "@progress/kendo-angular-dialog": "14.3.0-develop.9",
40
+ "@progress/kendo-angular-intl": "14.3.0-develop.9",
41
+ "@progress/kendo-angular-l10n": "14.3.0-develop.9",
42
+ "@progress/kendo-angular-popup": "14.3.0-develop.9",
43
+ "@progress/kendo-angular-icons": "14.3.0-develop.9",
44
44
  "rxjs": "^6.5.3 || ^7.0.0",
45
- "@progress/kendo-angular-upload": "14.3.0-develop.7"
45
+ "@progress/kendo-angular-upload": "14.3.0-develop.9"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.3.1",
49
- "@progress/kendo-angular-schematics": "14.3.0-develop.7",
49
+ "@progress/kendo-angular-schematics": "14.3.0-develop.9",
50
50
  "@progress/kendo-common": "^0.2.2",
51
51
  "@progress/kendo-draggable": "^3.0.0",
52
52
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -10,7 +10,7 @@ import { TextBoxSuffixTemplateDirective } from './textbox-suffix.directive';
10
10
  import { TextBoxPrefixTemplateDirective } from './textbox-prefix.directive';
11
11
  import { LocalizationService } from '@progress/kendo-angular-l10n';
12
12
  import { SVGIcon } from '@progress/kendo-angular-icons';
13
- import { InputSize, InputRounded, InputFillMode } from '../common/models';
13
+ import { InputSize, InputRounded, InputFillMode, InputType } from '../common/models';
14
14
  import * as i0 from "@angular/core";
15
15
  export declare class TextBoxComponent implements ControlValueAccessor {
16
16
  private localizationService;
@@ -27,6 +27,10 @@ export declare class TextBoxComponent implements ControlValueAccessor {
27
27
  * Sets the `title` attribute of the `input` element of the TextBox.
28
28
  */
29
29
  title: string;
30
+ /**
31
+ * Sets the `type` attribute of the `input` element of the TextBox.
32
+ */
33
+ type: InputType;
30
34
  /**
31
35
  * Sets the disabled state of the component.
32
36
  *
@@ -372,5 +376,5 @@ export declare class TextBoxComponent implements ControlValueAccessor {
372
376
  private handleBlur;
373
377
  private handleClasses;
374
378
  static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
375
- static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": "focusableId"; "title": "title"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "value": "value"; "selectOnFocus": "selectOnFocus"; "showSuccessIcon": "showSuccessIcon"; "showErrorIcon": "showErrorIcon"; "clearButton": "clearButton"; "successIcon": "successIcon"; "successSvgIcon": "successSvgIcon"; "errorIcon": "errorIcon"; "errorSvgIcon": "errorSvgIcon"; "clearButtonIcon": "clearButtonIcon"; "clearButtonSvgIcon": "clearButtonSvgIcon"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "maxlength": "maxlength"; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["suffixTemplate", "prefixTemplate"], never>;
379
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "kendo-textbox", ["kendoTextBox"], { "focusableId": "focusableId"; "title": "title"; "type": "type"; "disabled": "disabled"; "readonly": "readonly"; "tabindex": "tabindex"; "value": "value"; "selectOnFocus": "selectOnFocus"; "showSuccessIcon": "showSuccessIcon"; "showErrorIcon": "showErrorIcon"; "clearButton": "clearButton"; "successIcon": "successIcon"; "successSvgIcon": "successSvgIcon"; "errorIcon": "errorIcon"; "errorSvgIcon": "errorSvgIcon"; "clearButtonIcon": "clearButtonIcon"; "clearButtonSvgIcon": "clearButtonSvgIcon"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "tabIndex": "tabIndex"; "placeholder": "placeholder"; "maxlength": "maxlength"; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "onFocus": "focus"; "onBlur": "blur"; }, ["suffixTemplate", "prefixTemplate"], never>;
376
380
  }