@progress/kendo-vue-inputs 6.1.0-develop.6 → 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.mts +23 -18
- package/index.d.ts +23 -18
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
package/index.d.mts
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
|
|
@@ -465,7 +470,7 @@ declare interface ColorGradientChangeEvent {
|
|
|
465
470
|
/**
|
|
466
471
|
* Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
|
|
467
472
|
*/
|
|
468
|
-
declare interface
|
|
473
|
+
declare interface ColorGradientProps_2 {
|
|
469
474
|
/**
|
|
470
475
|
* The model value of the ColorGradient.
|
|
471
476
|
*/
|
|
@@ -677,7 +682,7 @@ export declare interface ColorPaletteProps {
|
|
|
677
682
|
* Specifies the size of a color cell in px.
|
|
678
683
|
* Defaults to `24`.
|
|
679
684
|
*/
|
|
680
|
-
tileSize?: number |
|
|
685
|
+
tileSize?: number | TileSize_2;
|
|
681
686
|
/**
|
|
682
687
|
* The default value of the ColorPalette.
|
|
683
688
|
*/
|
|
@@ -771,7 +776,7 @@ type: PropType<boolean>;
|
|
|
771
776
|
default: boolean;
|
|
772
777
|
};
|
|
773
778
|
paletteSettings: {
|
|
774
|
-
type: PropType<
|
|
779
|
+
type: PropType<ColorPickerPaletteSettings_2>;
|
|
775
780
|
default: () => {
|
|
776
781
|
palette: string;
|
|
777
782
|
};
|
|
@@ -789,7 +794,7 @@ icon: PropType<string>;
|
|
|
789
794
|
svgIcon: PropType<SVGIcon>;
|
|
790
795
|
iconClassName: PropType<string>;
|
|
791
796
|
popupSettings: {
|
|
792
|
-
type: PropType<
|
|
797
|
+
type: PropType<ColorPickerPopupSettings_2>;
|
|
793
798
|
default: () => {};
|
|
794
799
|
};
|
|
795
800
|
gradientSettings: {
|
|
@@ -799,7 +804,7 @@ opacity: boolean;
|
|
|
799
804
|
};
|
|
800
805
|
};
|
|
801
806
|
flatColorPickerSettings: {
|
|
802
|
-
type: PropType<
|
|
807
|
+
type: PropType<FlatColorPickerProps_2>;
|
|
803
808
|
default: () => {};
|
|
804
809
|
};
|
|
805
810
|
open: {
|
|
@@ -919,7 +924,7 @@ type: PropType<boolean>;
|
|
|
919
924
|
default: boolean;
|
|
920
925
|
};
|
|
921
926
|
paletteSettings: {
|
|
922
|
-
type: PropType<
|
|
927
|
+
type: PropType<ColorPickerPaletteSettings_2>;
|
|
923
928
|
default: () => {
|
|
924
929
|
palette: string;
|
|
925
930
|
};
|
|
@@ -937,7 +942,7 @@ icon: PropType<string>;
|
|
|
937
942
|
svgIcon: PropType<SVGIcon>;
|
|
938
943
|
iconClassName: PropType<string>;
|
|
939
944
|
popupSettings: {
|
|
940
|
-
type: PropType<
|
|
945
|
+
type: PropType<ColorPickerPopupSettings_2>;
|
|
941
946
|
default: () => {};
|
|
942
947
|
};
|
|
943
948
|
gradientSettings: {
|
|
@@ -947,7 +952,7 @@ opacity: boolean;
|
|
|
947
952
|
};
|
|
948
953
|
};
|
|
949
954
|
flatColorPickerSettings: {
|
|
950
|
-
type: PropType<
|
|
955
|
+
type: PropType<FlatColorPickerProps_2>;
|
|
951
956
|
default: () => {};
|
|
952
957
|
};
|
|
953
958
|
open: {
|
|
@@ -1006,14 +1011,14 @@ fillMode: string;
|
|
|
1006
1011
|
valid: boolean;
|
|
1007
1012
|
showClearButton: boolean;
|
|
1008
1013
|
open: boolean;
|
|
1009
|
-
popupSettings:
|
|
1014
|
+
popupSettings: ColorPickerPopupSettings_2;
|
|
1010
1015
|
adaptive: boolean;
|
|
1011
1016
|
selectedView: number;
|
|
1012
1017
|
showPreview: boolean;
|
|
1013
1018
|
showButtons: boolean;
|
|
1014
1019
|
gradientSettings: ColorGradientProps;
|
|
1015
|
-
paletteSettings:
|
|
1016
|
-
flatColorPickerSettings:
|
|
1020
|
+
paletteSettings: ColorPickerPaletteSettings_2;
|
|
1021
|
+
flatColorPickerSettings: FlatColorPickerProps_2;
|
|
1017
1022
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1018
1023
|
|
|
1019
1024
|
/**
|
|
@@ -1097,7 +1102,7 @@ export declare interface ColorPickerPaletteSettings {
|
|
|
1097
1102
|
* * (Default) `24`
|
|
1098
1103
|
* * `{ width: number, height: number }`
|
|
1099
1104
|
*/
|
|
1100
|
-
tileSize?: number |
|
|
1105
|
+
tileSize?: number | TileSize_2;
|
|
1101
1106
|
}
|
|
1102
1107
|
|
|
1103
1108
|
/**
|
|
@@ -1203,7 +1208,7 @@ export declare interface ColorPickerProps {
|
|
|
1203
1208
|
/**
|
|
1204
1209
|
* Configures the ColorGradient that is displayed in the ColorPicker popup.
|
|
1205
1210
|
*/
|
|
1206
|
-
gradientSettings?:
|
|
1211
|
+
gradientSettings?: ColorGradientProps_2;
|
|
1207
1212
|
/**
|
|
1208
1213
|
* Configures the FlatColorPicker that is displayed in the ColorPicker popup.
|
|
1209
1214
|
*/
|
|
@@ -1339,7 +1344,7 @@ type: PropType<boolean>;
|
|
|
1339
1344
|
default: boolean;
|
|
1340
1345
|
};
|
|
1341
1346
|
gradientSettings: {
|
|
1342
|
-
type: PropType<
|
|
1347
|
+
type: PropType<ColorGradientProps_2>;
|
|
1343
1348
|
default: () => {
|
|
1344
1349
|
opacity: boolean;
|
|
1345
1350
|
};
|
|
@@ -1432,7 +1437,7 @@ type: PropType<boolean>;
|
|
|
1432
1437
|
default: boolean;
|
|
1433
1438
|
};
|
|
1434
1439
|
gradientSettings: {
|
|
1435
|
-
type: PropType<
|
|
1440
|
+
type: PropType<ColorGradientProps_2>;
|
|
1436
1441
|
default: () => {
|
|
1437
1442
|
opacity: boolean;
|
|
1438
1443
|
};
|
|
@@ -1465,7 +1470,7 @@ showClearButton: boolean;
|
|
|
1465
1470
|
selectedView: number;
|
|
1466
1471
|
showPreview: boolean;
|
|
1467
1472
|
showButtons: boolean;
|
|
1468
|
-
gradientSettings:
|
|
1473
|
+
gradientSettings: ColorGradientProps_2;
|
|
1469
1474
|
paletteSettings: ColorPickerPaletteSettings;
|
|
1470
1475
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1471
1476
|
|
|
@@ -1554,7 +1559,7 @@ export declare interface FlatColorPickerProps {
|
|
|
1554
1559
|
/**
|
|
1555
1560
|
* Configures the ColorGradient that is displayed in the ColorPicker popup.
|
|
1556
1561
|
*/
|
|
1557
|
-
gradientSettings?:
|
|
1562
|
+
gradientSettings?: ColorGradientProps_2;
|
|
1558
1563
|
/**
|
|
1559
1564
|
* Configures the `size` of the FlatColorPicker.
|
|
1560
1565
|
*
|
|
@@ -5540,7 +5545,7 @@ export declare interface TextBoxProps extends FormComponentProps {
|
|
|
5540
5545
|
* * (Default) `number = 24`
|
|
5541
5546
|
* * `{ width: number, height: number }`
|
|
5542
5547
|
*/
|
|
5543
|
-
declare type
|
|
5548
|
+
declare type TileSize_2 = {
|
|
5544
5549
|
width: number;
|
|
5545
5550
|
height: number;
|
|
5546
5551
|
};
|
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
|
|
@@ -465,7 +470,7 @@ declare interface ColorGradientChangeEvent {
|
|
|
465
470
|
/**
|
|
466
471
|
* Represents the props of the [Kendo UI for Vue ColorGradient component]({% slug overview_colorgradient %}).
|
|
467
472
|
*/
|
|
468
|
-
declare interface
|
|
473
|
+
declare interface ColorGradientProps_2 {
|
|
469
474
|
/**
|
|
470
475
|
* The model value of the ColorGradient.
|
|
471
476
|
*/
|
|
@@ -677,7 +682,7 @@ export declare interface ColorPaletteProps {
|
|
|
677
682
|
* Specifies the size of a color cell in px.
|
|
678
683
|
* Defaults to `24`.
|
|
679
684
|
*/
|
|
680
|
-
tileSize?: number |
|
|
685
|
+
tileSize?: number | TileSize_2;
|
|
681
686
|
/**
|
|
682
687
|
* The default value of the ColorPalette.
|
|
683
688
|
*/
|
|
@@ -771,7 +776,7 @@ type: PropType<boolean>;
|
|
|
771
776
|
default: boolean;
|
|
772
777
|
};
|
|
773
778
|
paletteSettings: {
|
|
774
|
-
type: PropType<
|
|
779
|
+
type: PropType<ColorPickerPaletteSettings_2>;
|
|
775
780
|
default: () => {
|
|
776
781
|
palette: string;
|
|
777
782
|
};
|
|
@@ -789,7 +794,7 @@ icon: PropType<string>;
|
|
|
789
794
|
svgIcon: PropType<SVGIcon>;
|
|
790
795
|
iconClassName: PropType<string>;
|
|
791
796
|
popupSettings: {
|
|
792
|
-
type: PropType<
|
|
797
|
+
type: PropType<ColorPickerPopupSettings_2>;
|
|
793
798
|
default: () => {};
|
|
794
799
|
};
|
|
795
800
|
gradientSettings: {
|
|
@@ -799,7 +804,7 @@ opacity: boolean;
|
|
|
799
804
|
};
|
|
800
805
|
};
|
|
801
806
|
flatColorPickerSettings: {
|
|
802
|
-
type: PropType<
|
|
807
|
+
type: PropType<FlatColorPickerProps_2>;
|
|
803
808
|
default: () => {};
|
|
804
809
|
};
|
|
805
810
|
open: {
|
|
@@ -919,7 +924,7 @@ type: PropType<boolean>;
|
|
|
919
924
|
default: boolean;
|
|
920
925
|
};
|
|
921
926
|
paletteSettings: {
|
|
922
|
-
type: PropType<
|
|
927
|
+
type: PropType<ColorPickerPaletteSettings_2>;
|
|
923
928
|
default: () => {
|
|
924
929
|
palette: string;
|
|
925
930
|
};
|
|
@@ -937,7 +942,7 @@ icon: PropType<string>;
|
|
|
937
942
|
svgIcon: PropType<SVGIcon>;
|
|
938
943
|
iconClassName: PropType<string>;
|
|
939
944
|
popupSettings: {
|
|
940
|
-
type: PropType<
|
|
945
|
+
type: PropType<ColorPickerPopupSettings_2>;
|
|
941
946
|
default: () => {};
|
|
942
947
|
};
|
|
943
948
|
gradientSettings: {
|
|
@@ -947,7 +952,7 @@ opacity: boolean;
|
|
|
947
952
|
};
|
|
948
953
|
};
|
|
949
954
|
flatColorPickerSettings: {
|
|
950
|
-
type: PropType<
|
|
955
|
+
type: PropType<FlatColorPickerProps_2>;
|
|
951
956
|
default: () => {};
|
|
952
957
|
};
|
|
953
958
|
open: {
|
|
@@ -1006,14 +1011,14 @@ fillMode: string;
|
|
|
1006
1011
|
valid: boolean;
|
|
1007
1012
|
showClearButton: boolean;
|
|
1008
1013
|
open: boolean;
|
|
1009
|
-
popupSettings:
|
|
1014
|
+
popupSettings: ColorPickerPopupSettings_2;
|
|
1010
1015
|
adaptive: boolean;
|
|
1011
1016
|
selectedView: number;
|
|
1012
1017
|
showPreview: boolean;
|
|
1013
1018
|
showButtons: boolean;
|
|
1014
1019
|
gradientSettings: ColorGradientProps;
|
|
1015
|
-
paletteSettings:
|
|
1016
|
-
flatColorPickerSettings:
|
|
1020
|
+
paletteSettings: ColorPickerPaletteSettings_2;
|
|
1021
|
+
flatColorPickerSettings: FlatColorPickerProps_2;
|
|
1017
1022
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1018
1023
|
|
|
1019
1024
|
/**
|
|
@@ -1097,7 +1102,7 @@ export declare interface ColorPickerPaletteSettings {
|
|
|
1097
1102
|
* * (Default) `24`
|
|
1098
1103
|
* * `{ width: number, height: number }`
|
|
1099
1104
|
*/
|
|
1100
|
-
tileSize?: number |
|
|
1105
|
+
tileSize?: number | TileSize_2;
|
|
1101
1106
|
}
|
|
1102
1107
|
|
|
1103
1108
|
/**
|
|
@@ -1203,7 +1208,7 @@ export declare interface ColorPickerProps {
|
|
|
1203
1208
|
/**
|
|
1204
1209
|
* Configures the ColorGradient that is displayed in the ColorPicker popup.
|
|
1205
1210
|
*/
|
|
1206
|
-
gradientSettings?:
|
|
1211
|
+
gradientSettings?: ColorGradientProps_2;
|
|
1207
1212
|
/**
|
|
1208
1213
|
* Configures the FlatColorPicker that is displayed in the ColorPicker popup.
|
|
1209
1214
|
*/
|
|
@@ -1339,7 +1344,7 @@ type: PropType<boolean>;
|
|
|
1339
1344
|
default: boolean;
|
|
1340
1345
|
};
|
|
1341
1346
|
gradientSettings: {
|
|
1342
|
-
type: PropType<
|
|
1347
|
+
type: PropType<ColorGradientProps_2>;
|
|
1343
1348
|
default: () => {
|
|
1344
1349
|
opacity: boolean;
|
|
1345
1350
|
};
|
|
@@ -1432,7 +1437,7 @@ type: PropType<boolean>;
|
|
|
1432
1437
|
default: boolean;
|
|
1433
1438
|
};
|
|
1434
1439
|
gradientSettings: {
|
|
1435
|
-
type: PropType<
|
|
1440
|
+
type: PropType<ColorGradientProps_2>;
|
|
1436
1441
|
default: () => {
|
|
1437
1442
|
opacity: boolean;
|
|
1438
1443
|
};
|
|
@@ -1465,7 +1470,7 @@ showClearButton: boolean;
|
|
|
1465
1470
|
selectedView: number;
|
|
1466
1471
|
showPreview: boolean;
|
|
1467
1472
|
showButtons: boolean;
|
|
1468
|
-
gradientSettings:
|
|
1473
|
+
gradientSettings: ColorGradientProps_2;
|
|
1469
1474
|
paletteSettings: ColorPickerPaletteSettings;
|
|
1470
1475
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1471
1476
|
|
|
@@ -1554,7 +1559,7 @@ export declare interface FlatColorPickerProps {
|
|
|
1554
1559
|
/**
|
|
1555
1560
|
* Configures the ColorGradient that is displayed in the ColorPicker popup.
|
|
1556
1561
|
*/
|
|
1557
|
-
gradientSettings?:
|
|
1562
|
+
gradientSettings?: ColorGradientProps_2;
|
|
1558
1563
|
/**
|
|
1559
1564
|
* Configures the `size` of the FlatColorPicker.
|
|
1560
1565
|
*
|
|
@@ -5540,7 +5545,7 @@ export declare interface TextBoxProps extends FormComponentProps {
|
|
|
5540
5545
|
* * (Default) `number = 24`
|
|
5541
5546
|
* * `{ width: number, height: number }`
|
|
5542
5547
|
*/
|
|
5543
|
-
declare type
|
|
5548
|
+
declare type TileSize_2 = {
|
|
5544
5549
|
width: number;
|
|
5545
5550
|
height: number;
|
|
5546
5551
|
};
|
package/package-metadata.js
CHANGED
|
@@ -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:
|
|
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;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "6.1.0-develop.
|
|
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.
|
|
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.
|
|
24
|
-
"@progress/kendo-vue-buttons": "6.1.0-develop.
|
|
25
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
26
|
-
"@progress/kendo-vue-dialogs": "6.1.0-develop.
|
|
27
|
-
"@progress/kendo-vue-intl": "6.1.0-develop.
|
|
28
|
-
"@progress/kendo-vue-labels": "6.1.0-develop.
|
|
29
|
-
"@progress/kendo-vue-popup": "6.1.0-develop.
|
|
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":
|
|
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
|
},
|