@progress/kendo-vue-inputs 3.7.4-dev.202212300853 → 3.7.4-dev.202301120847

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 (35) hide show
  1. package/dist/cdn/js/kendo-vue-inputs.js +1 -1
  2. package/dist/es/colors/ColorContrastLabels.js +23 -12
  3. package/dist/es/colors/ColorInput.js +4 -1
  4. package/dist/es/colors/ColorPicker.js +3 -0
  5. package/dist/es/colors/FlatColorPicker.js +45 -24
  6. package/dist/es/input/Input.js +12 -5
  7. package/dist/es/maskedtextbox/MaskedTextBox.js +12 -5
  8. package/dist/es/numerictextbox/NumericTextBox.js +16 -5
  9. package/dist/es/package-metadata.js +1 -1
  10. package/dist/es/signature/Signature.js +9 -2
  11. package/dist/es/slider/Slider.js +5 -0
  12. package/dist/es/textarea/TextArea.js +5 -2
  13. package/dist/esm/colors/ColorContrastLabels.js +23 -12
  14. package/dist/esm/colors/ColorInput.js +4 -1
  15. package/dist/esm/colors/ColorPicker.js +3 -0
  16. package/dist/esm/colors/FlatColorPicker.js +45 -24
  17. package/dist/esm/input/Input.js +12 -5
  18. package/dist/esm/maskedtextbox/MaskedTextBox.js +12 -5
  19. package/dist/esm/numerictextbox/NumericTextBox.js +16 -5
  20. package/dist/esm/package-metadata.js +1 -1
  21. package/dist/esm/signature/Signature.js +9 -2
  22. package/dist/esm/slider/Slider.js +5 -0
  23. package/dist/esm/textarea/TextArea.js +5 -2
  24. package/dist/npm/colors/ColorContrastLabels.js +23 -12
  25. package/dist/npm/colors/ColorInput.js +4 -1
  26. package/dist/npm/colors/ColorPicker.js +3 -0
  27. package/dist/npm/colors/FlatColorPicker.js +45 -24
  28. package/dist/npm/input/Input.js +12 -5
  29. package/dist/npm/maskedtextbox/MaskedTextBox.js +12 -5
  30. package/dist/npm/numerictextbox/NumericTextBox.js +16 -5
  31. package/dist/npm/package-metadata.js +1 -1
  32. package/dist/npm/signature/Signature.js +9 -2
  33. package/dist/npm/slider/Slider.js +5 -0
  34. package/dist/npm/textarea/TextArea.js +5 -2
  35. package/package.json +17 -15
@@ -25,6 +25,7 @@ var ref = allVue.ref;
25
25
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
26
26
  var package_metadata_1 = require("../package-metadata");
27
27
  var kendo_vue_labels_1 = require("@progress/kendo-vue-labels");
28
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
28
29
  /**
29
30
  * @hidden
30
31
  */
@@ -249,14 +250,18 @@ var InputVue2 = {
249
250
  }, [inputSuffix]), showValidationIcon && isValid && h(kendo_vue_common_1.Icon, {
250
251
  name: 'check',
251
252
  attrs: this.v3 ? undefined : {
252
- name: 'check'
253
+ name: 'check',
254
+ icon: kendo_svg_icons_1.checkIcon
253
255
  },
256
+ icon: kendo_svg_icons_1.checkIcon,
254
257
  "class": "k-input-validation-icon"
255
258
  }), showValidationIcon && !isValid && h(kendo_vue_common_1.Icon, {
256
- name: 'warning',
259
+ name: 'exclamation-circle',
257
260
  attrs: this.v3 ? undefined : {
258
- name: 'warning'
261
+ name: 'exclamation-circle',
262
+ icon: kendo_svg_icons_1.exclamationCircleIcon
259
263
  },
264
+ icon: kendo_svg_icons_1.exclamationCircleIcon,
260
265
  "class": "k-input-validation-icon"
261
266
  }), showLoadingIcon && h("span", {
262
267
  "class": "k-input-loading-icon k-icon k-i-loading"
@@ -269,8 +274,10 @@ var InputVue2 = {
269
274
  }, [h(kendo_vue_common_1.Icon, {
270
275
  name: 'x',
271
276
  attrs: this.v3 ? undefined : {
272
- name: 'x'
273
- }
277
+ name: 'x',
278
+ icon: kendo_svg_icons_1.xIcon
279
+ },
280
+ icon: kendo_svg_icons_1.xIcon
274
281
  })])]);
275
282
  return label ?
276
283
  // @ts-ignore function children
@@ -14,6 +14,7 @@ var masking_service_1 = require("./masking.service");
14
14
  var utils_1 = require("./utils");
15
15
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
16
16
  var package_metadata_1 = require("../package-metadata");
17
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
17
18
  /**
18
19
  * @hidden
19
20
  */
@@ -472,14 +473,18 @@ var MaskedTextBoxVue2 = {
472
473
  }, [inputSuffix]), showValidationIcon && isValid && h(kendo_vue_common_1.Icon, {
473
474
  name: 'check',
474
475
  attrs: this.v3 ? undefined : {
475
- name: 'check'
476
+ name: 'check',
477
+ icon: kendo_svg_icons_1.checkIcon
476
478
  },
479
+ icon: kendo_svg_icons_1.checkIcon,
477
480
  "class": "k-input-validation-icon"
478
481
  }), showValidationIcon && !isValid && h(kendo_vue_common_1.Icon, {
479
- name: 'warning',
482
+ name: 'exclamation-circle',
480
483
  attrs: this.v3 ? undefined : {
481
- name: 'warning'
484
+ name: 'exclamation-circle',
485
+ icon: kendo_svg_icons_1.exclamationCircleIcon
482
486
  },
487
+ icon: kendo_svg_icons_1.exclamationCircleIcon,
483
488
  "class": "k-input-validation-icon"
484
489
  }), showLoadingIcon && h("span", {
485
490
  "class": "k-input-loading-icon k-icon k-i-loading"
@@ -492,8 +497,10 @@ var MaskedTextBoxVue2 = {
492
497
  }, [h(kendo_vue_common_1.Icon, {
493
498
  name: 'x',
494
499
  attrs: this.v3 ? undefined : {
495
- name: 'x'
496
- }
500
+ name: 'x',
501
+ icon: kendo_svg_icons_1.xIcon
502
+ },
503
+ icon: kendo_svg_icons_1.xIcon
497
504
  })])]);
498
505
  return this.$props.label ? h("span", {
499
506
  "class": this.spanClassNames,
@@ -18,6 +18,7 @@ var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
18
18
  var main_1 = require("../messages/main");
19
19
  var main_2 = require("./utils/main");
20
20
  var package_metadata_1 = require("../package-metadata");
21
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
21
22
  var VALIDATION_MESSAGE = 'Please enter a valid value!';
22
23
  /**
23
24
  * @hidden
@@ -577,14 +578,18 @@ var NumericTextBoxVue2 = {
577
578
  }, [inputSuffix]), showValidationIcon && isValid && h(kendo_vue_common_1.Icon, {
578
579
  name: 'check',
579
580
  attrs: this.v3 ? undefined : {
580
- name: 'check'
581
+ name: 'check',
582
+ icon: kendo_svg_icons_1.checkIcon
581
583
  },
584
+ icon: kendo_svg_icons_1.checkIcon,
582
585
  "class": "k-input-validation-icon"
583
586
  }), showValidationIcon && !isValid && h(kendo_vue_common_1.Icon, {
584
- name: 'warning',
587
+ name: 'exclamation-circle',
585
588
  attrs: this.v3 ? undefined : {
586
- name: 'warning'
589
+ name: 'exclamation-circle',
590
+ icon: kendo_svg_icons_1.exclamationCircleIcon
587
591
  },
592
+ icon: kendo_svg_icons_1.exclamationCircleIcon,
588
593
  "class": "k-input-validation-icon"
589
594
  }), showLoadingIcon && h("span", {
590
595
  "class": "k-input-loading-icon k-icon k-i-loading"
@@ -597,8 +602,10 @@ var NumericTextBoxVue2 = {
597
602
  }, [h(kendo_vue_common_1.Icon, {
598
603
  name: 'x',
599
604
  attrs: this.v3 ? undefined : {
600
- name: 'x'
601
- }
605
+ name: 'x',
606
+ icon: kendo_svg_icons_1.xIcon
607
+ },
608
+ icon: kendo_svg_icons_1.xIcon
602
609
  })]), defaultSlot, this.$props.spinners && h("span", {
603
610
  "class": "k-input-spinner k-spin-button",
604
611
  onMousedown: this.spinnersWrapperMouseDown,
@@ -613,12 +620,14 @@ var NumericTextBoxVue2 = {
613
620
  type: "button",
614
621
  tabIndex: -1,
615
622
  icon: 'caret-alt-up',
623
+ svgIcon: kendo_svg_icons_1.caretAltUpIcon,
616
624
  rounded: null,
617
625
  "aria-label": localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue]),
618
626
  title: localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue])
619
627
  },
620
628
  tabIndex: -1,
621
629
  icon: 'caret-alt-up',
630
+ svgIcon: kendo_svg_icons_1.caretAltUpIcon,
622
631
  "class": "k-spinner-increase",
623
632
  rounded: null,
624
633
  "aria-label": localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue]),
@@ -635,6 +644,7 @@ var NumericTextBoxVue2 = {
635
644
  type: "button",
636
645
  tabIndex: -1,
637
646
  icon: 'caret-alt-down',
647
+ svgIcon: kendo_svg_icons_1.caretAltDownIcon,
638
648
  rounded: null,
639
649
  "aria-label": localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
640
650
  title: localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue])
@@ -642,6 +652,7 @@ var NumericTextBoxVue2 = {
642
652
  tabIndex: -1,
643
653
  "class": "k-spinner-decrease",
644
654
  icon: 'caret-alt-down',
655
+ svgIcon: kendo_svg_icons_1.caretAltDownIcon,
645
656
  rounded: null,
646
657
  "aria-label": localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
647
658
  title: localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
@@ -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: 1672389639,
11
+ publishDate: 1673512136,
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
  };
@@ -147,6 +147,7 @@ var main_1 = require("../messages/main");
147
147
  var package_metadata_1 = require("../package-metadata");
148
148
  var SignatureCanvas_1 = require("./SignatureCanvas");
149
149
  var utils_1 = require("./utils");
150
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
150
151
  var DEFAULT_WIDTH = 250;
151
152
  var DEFAULT_HEIGHT = 84;
152
153
  var DEFAULT_POPUP_SCALE = 3;
@@ -361,12 +362,14 @@ var SignatureVue2 = {
361
362
  icon: 'hyperlink-open',
362
363
  attrs: this.v3 ? undefined : {
363
364
  icon: 'hyperlink-open',
365
+ svgIcon: kendo_svg_icons_1.hyperlinkOpenIcon,
364
366
  shape: null,
365
367
  fillMode: 'flat',
366
368
  size: this.$props.size,
367
369
  "aria-label": maximizeTitle,
368
370
  title: maximizeTitle
369
371
  },
372
+ svgIcon: kendo_svg_icons_1.hyperlinkOpenIcon,
370
373
  shape: null,
371
374
  fillMode: 'flat',
372
375
  size: this.$props.size,
@@ -384,12 +387,14 @@ var SignatureVue2 = {
384
387
  icon: 'hyperlink-open',
385
388
  attrs: this.v3 ? undefined : {
386
389
  icon: 'hyperlink-open',
390
+ svgIcon: kendo_svg_icons_1.hyperlinkOpenIcon,
387
391
  shape: null,
388
392
  fillMode: 'flat',
389
393
  size: this.$props.size,
390
394
  "aria-label": minimizeTitle,
391
395
  title: minimizeTitle
392
396
  },
397
+ svgIcon: kendo_svg_icons_1.hyperlinkOpenIcon,
393
398
  shape: null,
394
399
  fillMode: 'flat',
395
400
  size: this.$props.size,
@@ -413,15 +418,17 @@ var SignatureVue2 = {
413
418
  // @ts-ignore
414
419
  h(kendo_vue_buttons_1.Button, {
415
420
  "class": 'k-signature-action k-signature-clear',
416
- icon: 'close',
421
+ icon: 'x',
417
422
  attrs: this.v3 ? undefined : {
418
- icon: 'close',
423
+ icon: 'x',
424
+ svgIcon: kendo_svg_icons_1.xIcon,
419
425
  shape: null,
420
426
  fillMode: 'flat',
421
427
  size: this.$props.size,
422
428
  "aria-label": clearTitle,
423
429
  title: clearTitle
424
430
  },
431
+ svgIcon: kendo_svg_icons_1.xIcon,
425
432
  shape: null,
426
433
  fillMode: 'flat',
427
434
  size: this.$props.size,
@@ -17,6 +17,7 @@ var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
17
17
  var main_1 = require("../messages/main");
18
18
  var SliderLabel_1 = require("./SliderLabel");
19
19
  var package_metadata_1 = require("../package-metadata");
20
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
20
21
  /**
21
22
  * @hidden
22
23
  */
@@ -175,11 +176,13 @@ var SliderVue2 = {
175
176
  type: "button",
176
177
  tabindex: -1,
177
178
  icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
179
+ svgIcon: this.$props.vertical ? kendo_svg_icons_1.caretAltDownIcon : kendo_svg_icons_1.caretAltLeftIcon,
178
180
  rounded: 'full',
179
181
  title: lS.toLanguageString(main_1.sliderDecreaseValue, main_1.messages[main_1.sliderDecreaseValue])
180
182
  },
181
183
  tabindex: -1,
182
184
  icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
185
+ svgIcon: this.$props.vertical ? kendo_svg_icons_1.caretAltDownIcon : kendo_svg_icons_1.caretAltLeftIcon,
183
186
  style: {
184
187
  position: 'relative'
185
188
  },
@@ -292,11 +295,13 @@ var SliderVue2 = {
292
295
  type: "button",
293
296
  tabindex: -1,
294
297
  icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
298
+ svgIcon: this.$props.vertical ? kendo_svg_icons_1.caretAltUpIcon : kendo_svg_icons_1.caretAltRightIcon,
295
299
  rounded: 'full',
296
300
  title: lS.toLanguageString(main_1.sliderIncreaseValue, main_1.messages[main_1.sliderIncreaseValue])
297
301
  },
298
302
  tabindex: -1,
299
303
  icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
304
+ svgIcon: this.$props.vertical ? kendo_svg_icons_1.caretAltUpIcon : kendo_svg_icons_1.caretAltRightIcon,
300
305
  rounded: 'full',
301
306
  style: {
302
307
  position: 'relative'
@@ -23,6 +23,7 @@ var gh = allVue.h;
23
23
  var isV3 = allVue.version && allVue.version[0] === '3';
24
24
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
25
25
  var package_metadata_1 = require("../package-metadata");
26
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
26
27
  /**
27
28
  * @hidden
28
29
  */
@@ -308,10 +309,12 @@ var TextAreaVue2 = {
308
309
  })]), showValidationIcon && !this.isValid && h("span", {
309
310
  "class": this.suffixIconWrapClass
310
311
  }, [h(kendo_vue_common_1.Icon, {
311
- name: 'warning',
312
+ name: 'exclamation-circle',
312
313
  attrs: this.v3 ? undefined : {
313
- name: 'warning'
314
+ name: 'exclamation-circle',
315
+ icon: kendo_svg_icons_1.exclamationCircleIcon
314
316
  },
317
+ icon: kendo_svg_icons_1.exclamationCircleIcon,
315
318
  "class": "k-input-validation-icon"
316
319
  })]), showLoadingIcon && h("span", {
317
320
  "class": this.suffixIconWrapClass
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.7.4-dev.202212300853",
4
+ "version": "3.7.4-dev.202301120847",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -39,31 +39,33 @@
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@progress/kendo-drawing": "^1.8.0",
42
- "@progress/kendo-licensing": "^1.1.0",
42
+ "@progress/kendo-licensing": "^1.3.0",
43
+ "@progress/kendo-svg-icons": "^1.0.0",
43
44
  "@progress/kendo-vue-intl": "^3.6.0",
44
45
  "vue": "^2.6.12 || ^3.0.2"
45
46
  },
46
47
  "dependencies": {
47
48
  "@progress/kendo-inputs-common": "^3.1.0",
48
- "@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
49
- "@progress/kendo-vue-common": "3.7.4-dev.202212300853",
50
- "@progress/kendo-vue-dialogs": "3.7.4-dev.202212300853",
51
- "@progress/kendo-vue-labels": "3.7.4-dev.202212300853",
52
- "@progress/kendo-vue-popup": "3.7.4-dev.202212300853"
49
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301120847",
50
+ "@progress/kendo-vue-common": "3.7.4-dev.202301120847",
51
+ "@progress/kendo-vue-dialogs": "3.7.4-dev.202301120847",
52
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301120847",
53
+ "@progress/kendo-vue-popup": "3.7.4-dev.202301120847"
53
54
  },
54
55
  "devDependencies": {
55
56
  "@progress/kendo-data-query": "^1.5.5",
56
57
  "@progress/kendo-date-math": "^1.5.4",
57
58
  "@progress/kendo-drawing": "^1.8.0",
58
59
  "@progress/kendo-file-saver": "^1.1.1",
59
- "@progress/kendo-licensing": "^1.1.0",
60
- "@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
61
- "@progress/kendo-vue-dropdowns": "3.7.4-dev.202212300853",
62
- "@progress/kendo-vue-form": "3.7.4-dev.202212300853",
63
- "@progress/kendo-vue-intl": "3.7.4-dev.202212300853",
64
- "@progress/kendo-vue-labels": "3.7.4-dev.202212300853",
65
- "@progress/kendo-vue-tooltip": "3.7.4-dev.202212300853",
66
- "@progress/kendo-vue-upload": "3.7.4-dev.202212300853",
60
+ "@progress/kendo-licensing": "^1.3.0",
61
+ "@progress/kendo-svg-icons": "^1.0.0",
62
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301120847",
63
+ "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301120847",
64
+ "@progress/kendo-vue-form": "3.7.4-dev.202301120847",
65
+ "@progress/kendo-vue-intl": "3.7.4-dev.202301120847",
66
+ "@progress/kendo-vue-labels": "3.7.4-dev.202301120847",
67
+ "@progress/kendo-vue-tooltip": "3.7.4-dev.202301120847",
68
+ "@progress/kendo-vue-upload": "3.7.4-dev.202301120847",
67
69
  "cldr-core": "^41.0.0",
68
70
  "cldr-dates-full": "^41.0.0",
69
71
  "cldr-numbers-full": "^41.0.0"