@progress/kendo-vue-inputs 3.0.7 → 3.0.9-dev.202202280631

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.
@@ -16,6 +16,10 @@ var MaskedTextBoxVue2 = {
16
16
  event: 'changemodel'
17
17
  },
18
18
  props: {
19
+ type: {
20
+ type: String,
21
+ default: 'text'
22
+ },
19
23
  modelValue: String,
20
24
  modelRawValue: String,
21
25
  value: String,
@@ -357,9 +361,9 @@ var MaskedTextBoxVue2 = {
357
361
  width: this.$props.width
358
362
  } : undefined
359
363
  }, [h("input", {
360
- type: "text",
364
+ type: this.$props.type,
361
365
  attrs: this.v3 ? undefined : {
362
- type: "text",
366
+ type: this.$props.type,
363
367
  autoComplete: "off",
364
368
  autoCorrect: "off",
365
369
  autoCapitalize: "off",
@@ -180,4 +180,8 @@ export interface MaskedTextBoxProps extends FormComponentProps {
180
180
  * v-model value
181
181
  */
182
182
  modelValue?: string;
183
+ /**
184
+ * The type of the input - 'text' by default
185
+ */
186
+ type?: string;
183
187
  }
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-inputs',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1644564775,
8
+ publishDate: 1646029374,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
11
11
  };
@@ -28,6 +28,10 @@ var MaskedTextBoxVue2 = {
28
28
  event: 'changemodel'
29
29
  },
30
30
  props: {
31
+ type: {
32
+ type: String,
33
+ default: 'text'
34
+ },
31
35
  modelValue: String,
32
36
  modelRawValue: String,
33
37
  value: String,
@@ -369,9 +373,9 @@ var MaskedTextBoxVue2 = {
369
373
  width: this.$props.width
370
374
  } : undefined
371
375
  }, [h("input", {
372
- type: "text",
376
+ type: this.$props.type,
373
377
  attrs: this.v3 ? undefined : {
374
- type: "text",
378
+ type: this.$props.type,
375
379
  autoComplete: "off",
376
380
  autoCorrect: "off",
377
381
  autoCapitalize: "off",
@@ -180,4 +180,8 @@ export interface MaskedTextBoxProps extends FormComponentProps {
180
180
  * v-model value
181
181
  */
182
182
  modelValue?: string;
183
+ /**
184
+ * The type of the input - 'text' by default
185
+ */
186
+ type?: string;
183
187
  }
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-inputs',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1644564775,
11
+ publishDate: 1646029374,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
14
14
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-inputs",
3
3
  "description": "Kendo UI for Vue Input package",
4
- "version": "3.0.7",
4
+ "version": "3.0.9-dev.202202280631",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -38,21 +38,21 @@
38
38
  "vue": "^2.6.12 || ^3.0.2"
39
39
  },
40
40
  "dependencies": {
41
- "@progress/kendo-vue-buttons": "3.0.7",
42
- "@progress/kendo-vue-common": "3.0.7",
43
- "@progress/kendo-vue-labels": "3.0.7",
44
- "@progress/kendo-vue-popup": "3.0.7"
41
+ "@progress/kendo-vue-buttons": "3.0.9-dev.202202280631",
42
+ "@progress/kendo-vue-common": "3.0.9-dev.202202280631",
43
+ "@progress/kendo-vue-labels": "3.0.9-dev.202202280631",
44
+ "@progress/kendo-vue-popup": "3.0.9-dev.202202280631"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@progress/kendo-data-query": "^1.5.5",
48
48
  "@progress/kendo-date-math": "^1.5.4",
49
49
  "@progress/kendo-drawing": "^1.8.0",
50
50
  "@progress/kendo-licensing": "^1.1.0",
51
- "@progress/kendo-vue-buttons": "3.0.7",
52
- "@progress/kendo-vue-form": "3.0.7",
53
- "@progress/kendo-vue-intl": "3.0.7",
54
- "@progress/kendo-vue-labels": "3.0.7",
55
- "@progress/kendo-vue-tooltip": "3.0.7",
51
+ "@progress/kendo-vue-buttons": "3.0.9-dev.202202280631",
52
+ "@progress/kendo-vue-form": "3.0.9-dev.202202280631",
53
+ "@progress/kendo-vue-intl": "3.0.9-dev.202202280631",
54
+ "@progress/kendo-vue-labels": "3.0.9-dev.202202280631",
55
+ "@progress/kendo-vue-tooltip": "3.0.9-dev.202202280631",
56
56
  "cldr-core": "^34.0.0",
57
57
  "cldr-dates-full": "^34.0.0",
58
58
  "cldr-numbers-full": "^34.0.0"