@progress/kendo-vue-inputs 6.1.0-develop.5 → 6.1.0-develop.7

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/index.d.ts CHANGED
@@ -5,11 +5,15 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
+ import { ColorGradientProps } from './interfaces/ColorGradientProps';
9
+ import { ColorPickerPaletteSettings as ColorPickerPaletteSettings_2 } from '..';
10
+ import { ColorPickerPopupSettings as ColorPickerPopupSettings_2 } from '..';
8
11
  import { ComponentOptionsMixin } from 'vue';
9
12
  import { ComponentProvideOptions } from 'vue';
10
13
  import { DefineComponent } from 'vue';
11
14
  import { DraggableDragEvent } from '@progress/kendo-vue-common';
12
15
  import { ExtractPropTypes } from 'vue';
16
+ import { FlatColorPickerProps as FlatColorPickerProps_2 } from './FlatColorPicker';
13
17
  import { FormComponentProps } from '@progress/kendo-vue-common';
14
18
  import { FormComponentValidity } from '@progress/kendo-vue-common';
15
19
  import { NumberFormatOptions } from '@progress/kendo-vue-intl';
@@ -18,6 +22,7 @@ import { PropType } from 'vue';
18
22
  import { PublicProps } from 'vue';
19
23
  import { Ref } from 'vue';
20
24
  import { SVGIcon } from '@progress/kendo-vue-common';
25
+ import { TileSize } from './models/tile-size';
21
26
 
22
27
  /**
23
28
  * @hidden
@@ -358,6 +363,9 @@ innerTabIndex: {
358
363
  type: PropType<number>;
359
364
  default: any;
360
365
  };
366
+ size: PropType<"small" | "medium" | "large">;
367
+ class: PropType<string>;
368
+ adaptive: PropType<boolean>;
361
369
  }>, {}, {
362
370
  currentValue: any;
363
371
  currentBgColor: any;
@@ -429,6 +437,9 @@ innerTabIndex: {
429
437
  type: PropType<number>;
430
438
  default: any;
431
439
  };
440
+ size: PropType<"small" | "medium" | "large">;
441
+ class: PropType<string>;
442
+ adaptive: PropType<boolean>;
432
443
  }>> & Readonly<{
433
444
  onBlur?: (...args: any[] | unknown[]) => any;
434
445
  onChange?: (...args: any[] | unknown[]) => any;
@@ -459,7 +470,7 @@ declare interface ColorGradientChangeEvent {
459
470
  /**
460
471
  * Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
461
472
  */
462
- declare interface ColorGradientProps {
473
+ declare interface ColorGradientProps_2 {
463
474
  /**
464
475
  * The model value of the ColorGradient.
465
476
  */
@@ -513,6 +524,10 @@ declare interface ColorGradientProps {
513
524
  * Specifies the id of the component.
514
525
  */
515
526
  id?: string;
527
+ /**
528
+ * Sets additional CSS classes to the ColorGradient.
529
+ */
530
+ class?: string;
516
531
  /**
517
532
  * Identifies the element(s) which will describe the component, similar to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
518
533
  * For example these elements could contain error or hint message.
@@ -522,6 +537,23 @@ declare interface ColorGradientProps {
522
537
  * Identifies the element(s) which will label the component.
523
538
  */
524
539
  ariaLabelledBy?: string;
540
+ /**
541
+ * Configures the `size` of the ColorGradient.
542
+ *
543
+ * The available options are:
544
+ * - `small`
545
+ * - `medium`
546
+ * - `large`
547
+ * - `null`&mdash;This option removes the the built-in size styles of the ColorGradient. Allows for custom `padding`.
548
+ *
549
+ * @default `medium`
550
+ */
551
+ size?: null | 'small' | 'medium' | 'large';
552
+ /**
553
+ * @hidden
554
+ * Internal prop that determines whether the ColorGradient is in adaptive state.
555
+ */
556
+ adaptive?: boolean;
525
557
  }
526
558
 
527
559
  /**
@@ -535,7 +567,6 @@ default: string;
535
567
  columns: PropType<number>;
536
568
  tileSize: {
537
569
  type: PropType<number | TileSize>;
538
- default: number;
539
570
  };
540
571
  modelValue: PropType<string>;
541
572
  modelRgbaValue: PropType<string>;
@@ -544,8 +575,13 @@ value: PropType<string>;
544
575
  disabled: PropType<boolean>;
545
576
  tabIndex: PropType<number>;
546
577
  id: PropType<string>;
578
+ class: PropType<string>;
547
579
  ariaLabelledBy: PropType<string>;
548
580
  ariaDescribedBy: PropType<string>;
581
+ size: {
582
+ type: PropType<"small" | "medium" | "large">;
583
+ default: string;
584
+ };
549
585
  }>, {}, {
550
586
  focusedColor: string;
551
587
  currentValue: any;
@@ -583,7 +619,6 @@ default: string;
583
619
  columns: PropType<number>;
584
620
  tileSize: {
585
621
  type: PropType<number | TileSize>;
586
- default: number;
587
622
  };
588
623
  modelValue: PropType<string>;
589
624
  modelRgbaValue: PropType<string>;
@@ -592,8 +627,13 @@ value: PropType<string>;
592
627
  disabled: PropType<boolean>;
593
628
  tabIndex: PropType<number>;
594
629
  id: PropType<string>;
630
+ class: PropType<string>;
595
631
  ariaLabelledBy: PropType<string>;
596
632
  ariaDescribedBy: PropType<string>;
633
+ size: {
634
+ type: PropType<"small" | "medium" | "large">;
635
+ default: string;
636
+ };
597
637
  }>> & Readonly<{
598
638
  onBlur?: (...args: any[] | unknown[]) => any;
599
639
  onChange?: (...args: any[] | unknown[]) => any;
@@ -603,8 +643,8 @@ onChangemodel?: (...args: any[] | unknown[]) => any;
603
643
  "onUpdate:modelValue"?: (...args: any[] | unknown[]) => any;
604
644
  "onUpdate:modelRgbaValue"?: (...args: any[] | unknown[]) => any;
605
645
  }>, {
646
+ size: "small" | "medium" | "large";
606
647
  palette: string | string[];
607
- tileSize: number | TileSize;
608
648
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
609
649
 
610
650
  /**
@@ -642,7 +682,7 @@ export declare interface ColorPaletteProps {
642
682
  * Specifies the size of a color cell in px.
643
683
  * Defaults to `24`.
644
684
  */
645
- tileSize?: number | TileSize;
685
+ tileSize?: number | TileSize_2;
646
686
  /**
647
687
  * The default value of the ColorPalette.
648
688
  */
@@ -672,6 +712,10 @@ export declare interface ColorPaletteProps {
672
712
  * Specifies the id of the component.
673
713
  */
674
714
  id?: string;
715
+ /**
716
+ * Sets additional CSS classes to the ColorPalette.
717
+ */
718
+ class?: string;
675
719
  /**
676
720
  * Identifies the element(s) which will describe the component, similar to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
677
721
  * For example these elements could contain error or hint message.
@@ -681,6 +725,18 @@ export declare interface ColorPaletteProps {
681
725
  * Identifies the element(s) which will label the component.
682
726
  */
683
727
  ariaLabelledBy?: string;
728
+ /**
729
+ * Configures the `size` of the ColorPalette.
730
+ *
731
+ * The available options are:
732
+ * - `small`
733
+ * - `medium`
734
+ * - `large`
735
+ * - `null`&mdash;This option removes the the built-in size styles of the ColorPalette. To set a tile size use the `tileSize` property.
736
+ *
737
+ * @default `medium`
738
+ */
739
+ size?: null | 'small' | 'medium' | 'large';
684
740
  /**
685
741
  * Determines the event handler that will be fired when the user edits the value.
686
742
  */
@@ -720,10 +776,9 @@ type: PropType<boolean>;
720
776
  default: boolean;
721
777
  };
722
778
  paletteSettings: {
723
- type: PropType<ColorPickerPaletteSettings>;
779
+ type: PropType<ColorPickerPaletteSettings_2>;
724
780
  default: () => {
725
781
  palette: string;
726
- tileSize: number;
727
782
  };
728
783
  };
729
784
  valid: {
@@ -739,7 +794,7 @@ icon: PropType<string>;
739
794
  svgIcon: PropType<SVGIcon>;
740
795
  iconClassName: PropType<string>;
741
796
  popupSettings: {
742
- type: PropType<ColorPickerPopupSettings>;
797
+ type: PropType<ColorPickerPopupSettings_2>;
743
798
  default: () => {};
744
799
  };
745
800
  gradientSettings: {
@@ -749,7 +804,7 @@ opacity: boolean;
749
804
  };
750
805
  };
751
806
  flatColorPickerSettings: {
752
- type: PropType<FlatColorPickerProps>;
807
+ type: PropType<FlatColorPickerProps_2>;
753
808
  default: () => {};
754
809
  };
755
810
  open: {
@@ -780,10 +835,20 @@ selectedView: {
780
835
  type: PropType<number>;
781
836
  default: any;
782
837
  };
838
+ adaptive: {
839
+ type: PropType<boolean>;
840
+ default: boolean;
841
+ };
842
+ adaptiveTitle: {
843
+ type: PropType<string>;
844
+ };
783
845
  }>, {}, {
784
846
  focused: boolean;
785
847
  currentValue: string;
786
848
  currentOpen: boolean;
849
+ flatcolorpickerRef: any;
850
+ windowWidth: number;
851
+ observer: any;
787
852
  }, {
788
853
  isValueControlled(): boolean;
789
854
  isOpenControlled(): boolean;
@@ -798,7 +863,15 @@ wrapperClassName(): {
798
863
  'k-disabled': any;
799
864
  'k-focus': any;
800
865
  };
866
+ animationStyles(): {
867
+ top: number;
868
+ width: string;
869
+ height: string;
870
+ };
871
+ classNameAdaptive(): string;
872
+ adaptiveState(): boolean;
801
873
  }, {
874
+ calculateMedia(entries: ResizeObserverEntry[]): void;
802
875
  focusElement(): void;
803
876
  setOpen(nextOpen: boolean, isBlur?: boolean): void;
804
877
  onButtonKeyDown(event: any): void;
@@ -851,10 +924,9 @@ type: PropType<boolean>;
851
924
  default: boolean;
852
925
  };
853
926
  paletteSettings: {
854
- type: PropType<ColorPickerPaletteSettings>;
927
+ type: PropType<ColorPickerPaletteSettings_2>;
855
928
  default: () => {
856
929
  palette: string;
857
- tileSize: number;
858
930
  };
859
931
  };
860
932
  valid: {
@@ -870,7 +942,7 @@ icon: PropType<string>;
870
942
  svgIcon: PropType<SVGIcon>;
871
943
  iconClassName: PropType<string>;
872
944
  popupSettings: {
873
- type: PropType<ColorPickerPopupSettings>;
945
+ type: PropType<ColorPickerPopupSettings_2>;
874
946
  default: () => {};
875
947
  };
876
948
  gradientSettings: {
@@ -880,7 +952,7 @@ opacity: boolean;
880
952
  };
881
953
  };
882
954
  flatColorPickerSettings: {
883
- type: PropType<FlatColorPickerProps>;
955
+ type: PropType<FlatColorPickerProps_2>;
884
956
  default: () => {};
885
957
  };
886
958
  open: {
@@ -911,6 +983,13 @@ selectedView: {
911
983
  type: PropType<number>;
912
984
  default: any;
913
985
  };
986
+ adaptive: {
987
+ type: PropType<boolean>;
988
+ default: boolean;
989
+ };
990
+ adaptiveTitle: {
991
+ type: PropType<string>;
992
+ };
914
993
  }>> & Readonly<{
915
994
  onBlur?: (...args: any[] | unknown[]) => any;
916
995
  onChange?: (...args: any[] | unknown[]) => any;
@@ -932,13 +1011,14 @@ fillMode: string;
932
1011
  valid: boolean;
933
1012
  showClearButton: boolean;
934
1013
  open: boolean;
935
- popupSettings: ColorPickerPopupSettings;
1014
+ popupSettings: ColorPickerPopupSettings_2;
1015
+ adaptive: boolean;
936
1016
  selectedView: number;
937
1017
  showPreview: boolean;
938
1018
  showButtons: boolean;
939
1019
  gradientSettings: ColorGradientProps;
940
- paletteSettings: ColorPickerPaletteSettings;
941
- flatColorPickerSettings: FlatColorPickerProps;
1020
+ paletteSettings: ColorPickerPaletteSettings_2;
1021
+ flatColorPickerSettings: FlatColorPickerProps_2;
942
1022
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
943
1023
 
944
1024
  /**
@@ -1022,7 +1102,7 @@ export declare interface ColorPickerPaletteSettings {
1022
1102
  * * (Default) `24`
1023
1103
  * * `{ width: number, height: number }`
1024
1104
  */
1025
- tileSize?: number | TileSize;
1105
+ tileSize?: number | TileSize_2;
1026
1106
  }
1027
1107
 
1028
1108
  /**
@@ -1128,7 +1208,7 @@ export declare interface ColorPickerProps {
1128
1208
  /**
1129
1209
  * Configures the ColorGradient that is displayed in the ColorPicker popup.
1130
1210
  */
1131
- gradientSettings?: ColorGradientProps;
1211
+ gradientSettings?: ColorGradientProps_2;
1132
1212
  /**
1133
1213
  * Configures the FlatColorPicker that is displayed in the ColorPicker popup.
1134
1214
  */
@@ -1207,6 +1287,14 @@ export declare interface ColorPickerProps {
1207
1287
  * @default `solid`
1208
1288
  */
1209
1289
  fillMode?: null | 'solid' | 'flat' | 'outline' | string;
1290
+ /**
1291
+ * Providing different rendering of the popup element based on the screen dimensions.
1292
+ */
1293
+ adaptive?: boolean;
1294
+ /**
1295
+ * Specifies the text that is rendered as title in the adaptive popup.
1296
+ */
1297
+ adaptiveTitle?: string;
1210
1298
  }
1211
1299
 
1212
1300
  /**
@@ -1256,7 +1344,7 @@ type: PropType<boolean>;
1256
1344
  default: boolean;
1257
1345
  };
1258
1346
  gradientSettings: {
1259
- type: PropType<ColorGradientProps>;
1347
+ type: PropType<ColorGradientProps_2>;
1260
1348
  default: () => {
1261
1349
  opacity: boolean;
1262
1350
  };
@@ -1265,9 +1353,13 @@ paletteSettings: {
1265
1353
  type: PropType<ColorPickerPaletteSettings>;
1266
1354
  default: () => {
1267
1355
  palette: string;
1268
- tileSize: number;
1269
1356
  };
1270
1357
  };
1358
+ size: {
1359
+ type: PropType<"small" | "medium" | "large">;
1360
+ default: string;
1361
+ };
1362
+ adaptive: PropType<boolean>;
1271
1363
  }>, {}, {
1272
1364
  currentView: string;
1273
1365
  colorValue: string | Function;
@@ -1345,7 +1437,7 @@ type: PropType<boolean>;
1345
1437
  default: boolean;
1346
1438
  };
1347
1439
  gradientSettings: {
1348
- type: PropType<ColorGradientProps>;
1440
+ type: PropType<ColorGradientProps_2>;
1349
1441
  default: () => {
1350
1442
  opacity: boolean;
1351
1443
  };
@@ -1354,9 +1446,13 @@ paletteSettings: {
1354
1446
  type: PropType<ColorPickerPaletteSettings>;
1355
1447
  default: () => {
1356
1448
  palette: string;
1357
- tileSize: number;
1358
1449
  };
1359
1450
  };
1451
+ size: {
1452
+ type: PropType<"small" | "medium" | "large">;
1453
+ default: string;
1454
+ };
1455
+ adaptive: PropType<boolean>;
1360
1456
  }>> & Readonly<{
1361
1457
  onBlur?: (...args: any[] | unknown[]) => any;
1362
1458
  onChange?: (...args: any[] | unknown[]) => any;
@@ -1368,12 +1464,13 @@ onChangemodel?: (...args: any[] | unknown[]) => any;
1368
1464
  "onUpdate:modelRgbaValue"?: (...args: any[] | unknown[]) => any;
1369
1465
  onViewchange?: (...args: any[] | unknown[]) => any;
1370
1466
  }>, {
1467
+ size: "small" | "medium" | "large";
1371
1468
  view: string;
1372
1469
  showClearButton: boolean;
1373
1470
  selectedView: number;
1374
1471
  showPreview: boolean;
1375
1472
  showButtons: boolean;
1376
- gradientSettings: ColorGradientProps;
1473
+ gradientSettings: ColorGradientProps_2;
1377
1474
  paletteSettings: ColorPickerPaletteSettings;
1378
1475
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1379
1476
 
@@ -1462,7 +1559,19 @@ export declare interface FlatColorPickerProps {
1462
1559
  /**
1463
1560
  * Configures the ColorGradient that is displayed in the ColorPicker popup.
1464
1561
  */
1465
- gradientSettings?: ColorGradientProps;
1562
+ gradientSettings?: ColorGradientProps_2;
1563
+ /**
1564
+ * Configures the `size` of the FlatColorPicker.
1565
+ *
1566
+ * The available options are:
1567
+ * - `small`
1568
+ * - `medium`
1569
+ * - `large`
1570
+ * - `null`&mdash;This option removes the the built-in size styles of the FlatColorPicker. Allows for custom `padding`.
1571
+ *
1572
+ * @default `medium`
1573
+ */
1574
+ size?: null | 'small' | 'medium' | 'large';
1466
1575
  /**
1467
1576
  * The event handler that will be fired when the view is changed.
1468
1577
  */
@@ -1471,6 +1580,11 @@ export declare interface FlatColorPickerProps {
1471
1580
  * The event handler that will be fired when the user edits the value.
1472
1581
  */
1473
1582
  onChange?: (event: ColorPickerChangeEvent) => void;
1583
+ /**
1584
+ * @hidden
1585
+ * Internal prop that determines whether the ColorGradient is in adaptive state.
1586
+ */
1587
+ adaptive?: boolean;
1474
1588
  }
1475
1589
 
1476
1590
  /**
@@ -5431,7 +5545,7 @@ export declare interface TextBoxProps extends FormComponentProps {
5431
5545
  * * (Default) `number = 24`
5432
5546
  * * `{ width: number, height: number }`
5433
5547
  */
5434
- declare type TileSize = {
5548
+ declare type TileSize_2 = {
5435
5549
  width: number;
5436
5550
  height: number;
5437
5551
  };
package/messages/main.js CHANGED
@@ -5,5 +5,5 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="numerictextbox.increment",o="numerictextbox.decrement",r="slider.increment",t="slider.decrement",a="slider.dragTitle",l="colorGradient.dragHandle",n="colorGradient.r",i="colorGradient.g",c="colorGradient.b",d="colorGradient.a",s="colorGradient.hex",G="colorGradient.hexLabel",u="colorGradient.inputColorButton",b="colorGradient.rLabel",g="colorGradient.gLabel",A="colorGradient.bLabel",p="colorGradient.aLabel",L="colorGradient.contrastRatio",C="colorGradient.colorGradientAALevel",B="colorGradient.colorGradientAAALevel",P="colorGradient.colorGradientPass",h="colorGradient.colorGradientFail",k="colorGradient.hueSliderLabel",x="colorGradient.alphaSliderLabel",m="flatColorPicker.cancelBtn",f="flatColorPicker.applyBtn",V="flatColorPicker.gradientBtn",D="flatColorPicker.paletterBtn",v="flatColorPicker.clearBtn",w="checkbox.validation",H="checkbox.optionalText",I="radioButton.validation",S="switch.validation",T="colorPicker.dropdownButtonAriaLabel",y="colorGradient.toggleInputsButton",z="rating.ariaLabel",R="signature.clear",M="signature.maximize",F="signature.minimize",O={[e]:"Increase value",[o]:"Decrease value",[r]:"Increase",[t]:"Decrease",[a]:"Drag",[l]:`Color well with two-dimensional slider for selecting
9
- saturation and lightness. Selected color is`,[u]:"Change the color input",[n]:"r",[i]:"g",[c]:"b",[d]:"a",[b]:"red chanel",[g]:"green chanel",[A]:"blue chanel",[p]:"alpha chanel",[s]:"hex",[G]:"HEX",[L]:"Contrast ratio",[C]:"AA",[B]:"AAA",[P]:"Pass",[h]:"Fail",[k]:"Hue slider",[x]:"Alpha slider",[y]:"Toggle colorgradient inputs",[m]:"Cancel",[f]:"Apply",[V]:"Gradient",[D]:"Palette",[v]:"Clear",[w]:"Please check this box if you want to proceed!",[H]:"(Optional)",[I]:"Please select option if you want to proceed!",[S]:"Please turn on if you want to proceed!",[T]:"Select",[z]:"Rating",[R]:"Clear",[M]:"Maximize",[F]:"Minimize"};exports.checkboxOptionalText=H;exports.checkboxValidation=w;exports.colorGradientA=d;exports.colorGradientAAALevel=B;exports.colorGradientAALevel=C;exports.colorGradientALabel=p;exports.colorGradientAlphaSliderLabel=x;exports.colorGradientB=c;exports.colorGradientBLabel=A;exports.colorGradientContrastRatio=L;exports.colorGradientDragHandle=l;exports.colorGradientFail=h;exports.colorGradientG=i;exports.colorGradientGLabel=g;exports.colorGradientHex=s;exports.colorGradientHexLabel=G;exports.colorGradientHueSliderLabel=k;exports.colorGradientInputColorButton=u;exports.colorGradientPass=P;exports.colorGradientR=n;exports.colorGradientRLabel=b;exports.colorGradientToggleInputsButton=y;exports.colorPickerDropdownButtonAriaLabel=T;exports.flatColorPickerApplyBtn=f;exports.flatColorPickerCancelBtn=m;exports.flatColorPickerClearBtn=v;exports.flatColorPickerGradientBtn=V;exports.flatColorPickerPaletteBtn=D;exports.messages=O;exports.numericDecreaseValue=o;exports.numericIncreaseValue=e;exports.radioButtonValidation=I;exports.ratingAriaLabel=z;exports.signatureClear=R;exports.signatureMaximize=M;exports.signatureMinimize=F;exports.sliderDecreaseValue=t;exports.sliderDragTitle=a;exports.sliderIncreaseValue=r;exports.switchValidation=S;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="numerictextbox.increment",o="numerictextbox.decrement",r="slider.increment",t="slider.decrement",a="slider.dragTitle",l="colorGradient.dragHandle",n="colorGradient.r",i="colorGradient.g",c="colorGradient.b",d="colorGradient.a",s="colorGradient.hex",G="colorGradient.hexLabel",u="colorGradient.inputColorButton",b="colorGradient.rLabel",g="colorGradient.gLabel",p="colorGradient.bLabel",A="colorGradient.aLabel",C="colorGradient.contrastRatio",L="colorGradient.colorGradientAALevel",P="colorGradient.colorGradientAAALevel",B="colorGradient.colorGradientPass",h="colorGradient.colorGradientFail",k="colorGradient.hueSliderLabel",x="colorGradient.alphaSliderLabel",m="flatColorPicker.cancelBtn",f="flatColorPicker.applyBtn",v="flatColorPicker.gradientBtn",V="flatColorPicker.paletterBtn",D="flatColorPicker.clearBtn",T="colorPicker.adaptiveTitle",w="checkbox.validation",H="checkbox.optionalText",I="radioButton.validation",S="switch.validation",y="colorPicker.dropdownButtonAriaLabel",z="colorGradient.toggleInputsButton",R="rating.ariaLabel",M="signature.clear",F="signature.maximize",O="signature.minimize",j={[e]:"Increase value",[o]:"Decrease value",[r]:"Increase",[t]:"Decrease",[a]:"Drag",[l]:`Color well with two-dimensional slider for selecting
9
+ saturation and lightness. Selected color is`,[u]:"Change the color input",[n]:"r",[i]:"g",[c]:"b",[d]:"a",[b]:"red chanel",[g]:"green chanel",[p]:"blue chanel",[A]:"alpha chanel",[s]:"hex",[G]:"HEX",[C]:"Contrast ratio",[L]:"AA",[P]:"AAA",[B]:"Pass",[h]:"Fail",[k]:"Hue slider",[x]:"Alpha slider",[z]:"Toggle colorgradient inputs",[m]:"Cancel",[f]:"Apply",[v]:"Gradient",[V]:"Palette",[D]:"Clear",[T]:"Choose color",[w]:"Please check this box if you want to proceed!",[H]:"(Optional)",[I]:"Please select option if you want to proceed!",[S]:"Please turn on if you want to proceed!",[y]:"Select",[R]:"Rating",[M]:"Clear",[F]:"Maximize",[O]:"Minimize"};exports.checkboxOptionalText=H;exports.checkboxValidation=w;exports.colorGradientA=d;exports.colorGradientAAALevel=P;exports.colorGradientAALevel=L;exports.colorGradientALabel=A;exports.colorGradientAlphaSliderLabel=x;exports.colorGradientB=c;exports.colorGradientBLabel=p;exports.colorGradientContrastRatio=C;exports.colorGradientDragHandle=l;exports.colorGradientFail=h;exports.colorGradientG=i;exports.colorGradientGLabel=g;exports.colorGradientHex=s;exports.colorGradientHexLabel=G;exports.colorGradientHueSliderLabel=k;exports.colorGradientInputColorButton=u;exports.colorGradientPass=B;exports.colorGradientR=n;exports.colorGradientRLabel=b;exports.colorGradientToggleInputsButton=z;exports.colorPickerAdaptiveTitle=T;exports.colorPickerDropdownButtonAriaLabel=y;exports.flatColorPickerApplyBtn=f;exports.flatColorPickerCancelBtn=m;exports.flatColorPickerClearBtn=D;exports.flatColorPickerGradientBtn=v;exports.flatColorPickerPaletteBtn=V;exports.messages=j;exports.numericDecreaseValue=o;exports.numericIncreaseValue=e;exports.radioButtonValidation=I;exports.ratingAriaLabel=R;exports.signatureClear=M;exports.signatureMaximize=F;exports.signatureMinimize=O;exports.sliderDecreaseValue=t;exports.sliderDragTitle=a;exports.sliderIncreaseValue=r;exports.switchValidation=S;
package/messages/main.mjs CHANGED
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- const e = "numerictextbox.increment", o = "numerictextbox.decrement", t = "slider.increment", r = "slider.decrement", a = "slider.dragTitle", n = "colorGradient.dragHandle", l = "colorGradient.r", i = "colorGradient.g", c = "colorGradient.b", s = "colorGradient.a", d = "colorGradient.hex", G = "colorGradient.hexLabel", u = "colorGradient.inputColorButton", g = "colorGradient.rLabel", b = "colorGradient.gLabel", p = "colorGradient.bLabel", h = "colorGradient.aLabel", A = "colorGradient.contrastRatio", C = "colorGradient.colorGradientAALevel", L = "colorGradient.colorGradientAAALevel", x = "colorGradient.colorGradientPass", B = "colorGradient.colorGradientFail", P = "colorGradient.hueSliderLabel", m = "colorGradient.alphaSliderLabel", k = "flatColorPicker.cancelBtn", f = "flatColorPicker.applyBtn", w = "flatColorPicker.gradientBtn", v = "flatColorPicker.paletterBtn", D = "flatColorPicker.clearBtn", H = "checkbox.validation", I = "checkbox.optionalText", V = "radioButton.validation", y = "switch.validation", z = "colorPicker.dropdownButtonAriaLabel", S = "colorGradient.toggleInputsButton", T = "rating.ariaLabel", R = "signature.clear", M = "signature.maximize", F = "signature.minimize", O = {
8
+ const e = "numerictextbox.increment", o = "numerictextbox.decrement", t = "slider.increment", r = "slider.decrement", a = "slider.dragTitle", n = "colorGradient.dragHandle", l = "colorGradient.r", i = "colorGradient.g", c = "colorGradient.b", s = "colorGradient.a", d = "colorGradient.hex", G = "colorGradient.hexLabel", u = "colorGradient.inputColorButton", g = "colorGradient.rLabel", b = "colorGradient.gLabel", p = "colorGradient.bLabel", h = "colorGradient.aLabel", A = "colorGradient.contrastRatio", C = "colorGradient.colorGradientAALevel", L = "colorGradient.colorGradientAAALevel", P = "colorGradient.colorGradientPass", x = "colorGradient.colorGradientFail", B = "colorGradient.hueSliderLabel", k = "colorGradient.alphaSliderLabel", m = "flatColorPicker.cancelBtn", f = "flatColorPicker.applyBtn", v = "flatColorPicker.gradientBtn", w = "flatColorPicker.paletterBtn", D = "flatColorPicker.clearBtn", T = "colorPicker.adaptiveTitle", H = "checkbox.validation", I = "checkbox.optionalText", V = "radioButton.validation", y = "switch.validation", z = "colorPicker.dropdownButtonAriaLabel", S = "colorGradient.toggleInputsButton", R = "rating.ariaLabel", M = "signature.clear", F = "signature.maximize", O = "signature.minimize", E = {
9
9
  [e]: "Increase value",
10
10
  [o]: "Decrease value",
11
11
  [t]: "Increase",
@@ -27,25 +27,26 @@ const e = "numerictextbox.increment", o = "numerictextbox.decrement", t = "slide
27
27
  [A]: "Contrast ratio",
28
28
  [C]: "AA",
29
29
  [L]: "AAA",
30
- [x]: "Pass",
31
- [B]: "Fail",
32
- [P]: "Hue slider",
33
- [m]: "Alpha slider",
30
+ [P]: "Pass",
31
+ [x]: "Fail",
32
+ [B]: "Hue slider",
33
+ [k]: "Alpha slider",
34
34
  [S]: "Toggle colorgradient inputs",
35
- [k]: "Cancel",
35
+ [m]: "Cancel",
36
36
  [f]: "Apply",
37
- [w]: "Gradient",
38
- [v]: "Palette",
37
+ [v]: "Gradient",
38
+ [w]: "Palette",
39
39
  [D]: "Clear",
40
+ [T]: "Choose color",
40
41
  [H]: "Please check this box if you want to proceed!",
41
42
  [I]: "(Optional)",
42
43
  [V]: "Please select option if you want to proceed!",
43
44
  [y]: "Please turn on if you want to proceed!",
44
45
  [z]: "Select",
45
- [T]: "Rating",
46
- [R]: "Clear",
47
- [M]: "Maximize",
48
- [F]: "Minimize"
46
+ [R]: "Rating",
47
+ [M]: "Clear",
48
+ [F]: "Maximize",
49
+ [O]: "Minimize"
49
50
  };
50
51
  export {
51
52
  I as checkboxOptionalText,
@@ -54,36 +55,37 @@ export {
54
55
  L as colorGradientAAALevel,
55
56
  C as colorGradientAALevel,
56
57
  h as colorGradientALabel,
57
- m as colorGradientAlphaSliderLabel,
58
+ k as colorGradientAlphaSliderLabel,
58
59
  c as colorGradientB,
59
60
  p as colorGradientBLabel,
60
61
  A as colorGradientContrastRatio,
61
62
  n as colorGradientDragHandle,
62
- B as colorGradientFail,
63
+ x as colorGradientFail,
63
64
  i as colorGradientG,
64
65
  b as colorGradientGLabel,
65
66
  d as colorGradientHex,
66
67
  G as colorGradientHexLabel,
67
- P as colorGradientHueSliderLabel,
68
+ B as colorGradientHueSliderLabel,
68
69
  u as colorGradientInputColorButton,
69
- x as colorGradientPass,
70
+ P as colorGradientPass,
70
71
  l as colorGradientR,
71
72
  g as colorGradientRLabel,
72
73
  S as colorGradientToggleInputsButton,
74
+ T as colorPickerAdaptiveTitle,
73
75
  z as colorPickerDropdownButtonAriaLabel,
74
76
  f as flatColorPickerApplyBtn,
75
- k as flatColorPickerCancelBtn,
77
+ m as flatColorPickerCancelBtn,
76
78
  D as flatColorPickerClearBtn,
77
- w as flatColorPickerGradientBtn,
78
- v as flatColorPickerPaletteBtn,
79
- O as messages,
79
+ v as flatColorPickerGradientBtn,
80
+ w as flatColorPickerPaletteBtn,
81
+ E as messages,
80
82
  o as numericDecreaseValue,
81
83
  e as numericIncreaseValue,
82
84
  V as radioButtonValidation,
83
- T as ratingAriaLabel,
84
- R as signatureClear,
85
- M as signatureMaximize,
86
- F as signatureMinimize,
85
+ R as ratingAriaLabel,
86
+ M as signatureClear,
87
+ F as signatureMaximize,
88
+ O as signatureMinimize,
87
89
  r as sliderDecreaseValue,
88
90
  a as sliderDragTitle,
89
91
  t as sliderIncreaseValue,
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-inputs",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738309731,version:"6.1.0-develop.5",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"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-inputs",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738834117,version:"6.1.0-develop.7",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"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1738309731,
14
- version: "6.1.0-develop.5",
13
+ publishDate: 1738834117,
14
+ version: "6.1.0-develop.7",
15
15
  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"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-inputs",
3
- "version": "6.1.0-develop.5",
3
+ "version": "6.1.0-develop.7",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -20,13 +20,13 @@
20
20
  "peerDependencies": {
21
21
  "@progress/kendo-drawing": "^1.21.1",
22
22
  "@progress/kendo-licensing": "^1.3.4",
23
- "@progress/kendo-vue-animation": "6.1.0-develop.5",
24
- "@progress/kendo-vue-buttons": "6.1.0-develop.5",
25
- "@progress/kendo-vue-common": "6.1.0-develop.5",
26
- "@progress/kendo-vue-dialogs": "6.1.0-develop.5",
27
- "@progress/kendo-vue-intl": "6.1.0-develop.5",
28
- "@progress/kendo-vue-labels": "6.1.0-develop.5",
29
- "@progress/kendo-vue-popup": "6.1.0-develop.5",
23
+ "@progress/kendo-vue-animation": "6.1.0-develop.7",
24
+ "@progress/kendo-vue-buttons": "6.1.0-develop.7",
25
+ "@progress/kendo-vue-common": "6.1.0-develop.7",
26
+ "@progress/kendo-vue-dialogs": "6.1.0-develop.7",
27
+ "@progress/kendo-vue-intl": "6.1.0-develop.7",
28
+ "@progress/kendo-vue-labels": "6.1.0-develop.7",
29
+ "@progress/kendo-vue-popup": "6.1.0-develop.7",
30
30
  "@progress/kendo-svg-icons": "^4.0.0",
31
31
  "vue": "^3.0.2"
32
32
  },
@@ -49,7 +49,7 @@
49
49
  "package": {
50
50
  "productName": "Kendo UI for Vue",
51
51
  "productCode": "KENDOUIVUE",
52
- "publishDate": 1738309731,
52
+ "publishDate": 1738834117,
53
53
  "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"
54
54
  }
55
55
  },