@progress/kendo-vue-layout 3.11.1 → 3.12.0-dev.202307181218
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/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/dist/es/actionsheet/ActionSheet.d.ts +1 -1
- package/dist/es/actionsheet/ActionSheet.js +4 -0
- package/dist/es/actionsheet/ActionSheetItem.js +4 -0
- package/dist/es/actionsheet/interfaces/ActionSheetItemProps.d.ts +8 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/stepper/interfaces/StepProps.d.ts +4 -4
- package/dist/esm/actionsheet/ActionSheet.d.ts +1 -1
- package/dist/esm/actionsheet/ActionSheet.js +4 -0
- package/dist/esm/actionsheet/ActionSheetItem.js +4 -0
- package/dist/esm/actionsheet/interfaces/ActionSheetItemProps.d.ts +8 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/stepper/interfaces/StepProps.d.ts +4 -4
- package/dist/npm/actionsheet/ActionSheet.d.ts +1 -1
- package/dist/npm/actionsheet/ActionSheet.js +4 -0
- package/dist/npm/actionsheet/ActionSheetItem.js +4 -0
- package/dist/npm/actionsheet/interfaces/ActionSheetItemProps.d.ts +8 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/stepper/interfaces/StepProps.d.ts +4 -4
- package/package.json +13 -13
|
@@ -47,7 +47,7 @@ export interface ActionSheetProps {
|
|
|
47
47
|
*/
|
|
48
48
|
navigatableElements?: string[];
|
|
49
49
|
/**
|
|
50
|
-
* Controls the popup animation. By default, the
|
|
50
|
+
* Controls the popup animation. By default, the animation is enabled.
|
|
51
51
|
*/
|
|
52
52
|
animation?: boolean;
|
|
53
53
|
/**
|
|
@@ -210,6 +210,8 @@ var ActionSheetVue2 = {
|
|
|
210
210
|
}, [this.topGroupItems && this.topGroupItems.map(function (item, idx) {
|
|
211
211
|
var itemContent = templateRendering.call(this, this.$props.item || item.content, getListeners.call(this));
|
|
212
212
|
return h(ActionSheetItem, {
|
|
213
|
+
style: item.style,
|
|
214
|
+
"class": item.class,
|
|
213
215
|
title: item.title,
|
|
214
216
|
attrs: this.v3 ? undefined : {
|
|
215
217
|
title: item.title,
|
|
@@ -251,6 +253,8 @@ var ActionSheetVue2 = {
|
|
|
251
253
|
}, [this.bottomGroupItems && this.bottomGroupItems.map(function (item, idx) {
|
|
252
254
|
var _a;
|
|
253
255
|
return h(ActionSheetItem, {
|
|
256
|
+
style: item.style,
|
|
257
|
+
"class": item.class,
|
|
254
258
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
255
259
|
attrs: this.v3 ? undefined : {
|
|
256
260
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
@@ -3,6 +3,14 @@ import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
|
3
3
|
* Represents the props of the Kendo UI for Vue ActionSheetItem.
|
|
4
4
|
*/
|
|
5
5
|
export interface ActionSheetItemProps {
|
|
6
|
+
/**
|
|
7
|
+
* Sets additional CSS classes to the ActionSheetItem.
|
|
8
|
+
*/
|
|
9
|
+
class?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional CSS styles to the ActionSheetItem.
|
|
12
|
+
*/
|
|
13
|
+
style?: object;
|
|
6
14
|
/**
|
|
7
15
|
* Specifies additional text rendered under the item's title.
|
|
8
16
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1689682186,
|
|
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
|
};
|
|
@@ -39,19 +39,19 @@ export interface StepProps {
|
|
|
39
39
|
/**
|
|
40
40
|
* Defines the name for an success icon in a Kendo UI for Vue theme.
|
|
41
41
|
*/
|
|
42
|
-
successIcon
|
|
42
|
+
successIcon?: String;
|
|
43
43
|
/**
|
|
44
44
|
* Defines an success SVGIcon to be rendered within the Step.
|
|
45
45
|
*/
|
|
46
|
-
successSvgIcon
|
|
46
|
+
successSvgIcon?: Object;
|
|
47
47
|
/**
|
|
48
48
|
* Defines the name for an error icon in a Kendo UI for Vue theme.
|
|
49
49
|
*/
|
|
50
|
-
errorIcon
|
|
50
|
+
errorIcon?: String;
|
|
51
51
|
/**
|
|
52
52
|
* Defines an error SVGIcon to be rendered within the Step.
|
|
53
53
|
*/
|
|
54
|
-
errorSvgIcon
|
|
54
|
+
errorSvgIcon?: Object;
|
|
55
55
|
/**
|
|
56
56
|
* Sets the index of the Step that is used to identify it.
|
|
57
57
|
*/
|
|
@@ -47,7 +47,7 @@ export interface ActionSheetProps {
|
|
|
47
47
|
*/
|
|
48
48
|
navigatableElements?: string[];
|
|
49
49
|
/**
|
|
50
|
-
* Controls the popup animation. By default, the
|
|
50
|
+
* Controls the popup animation. By default, the animation is enabled.
|
|
51
51
|
*/
|
|
52
52
|
animation?: boolean;
|
|
53
53
|
/**
|
|
@@ -210,6 +210,8 @@ var ActionSheetVue2 = {
|
|
|
210
210
|
}, [this.topGroupItems && this.topGroupItems.map(function (item, idx) {
|
|
211
211
|
var itemContent = templateRendering.call(this, this.$props.item || item.content, getListeners.call(this));
|
|
212
212
|
return h(ActionSheetItem, {
|
|
213
|
+
style: item.style,
|
|
214
|
+
"class": item.class,
|
|
213
215
|
title: item.title,
|
|
214
216
|
attrs: this.v3 ? undefined : {
|
|
215
217
|
title: item.title,
|
|
@@ -251,6 +253,8 @@ var ActionSheetVue2 = {
|
|
|
251
253
|
}, [this.bottomGroupItems && this.bottomGroupItems.map(function (item, idx) {
|
|
252
254
|
var _a;
|
|
253
255
|
return h(ActionSheetItem, {
|
|
256
|
+
style: item.style,
|
|
257
|
+
"class": item.class,
|
|
254
258
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
255
259
|
attrs: this.v3 ? undefined : {
|
|
256
260
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
@@ -3,6 +3,14 @@ import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
|
3
3
|
* Represents the props of the Kendo UI for Vue ActionSheetItem.
|
|
4
4
|
*/
|
|
5
5
|
export interface ActionSheetItemProps {
|
|
6
|
+
/**
|
|
7
|
+
* Sets additional CSS classes to the ActionSheetItem.
|
|
8
|
+
*/
|
|
9
|
+
class?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional CSS styles to the ActionSheetItem.
|
|
12
|
+
*/
|
|
13
|
+
style?: object;
|
|
6
14
|
/**
|
|
7
15
|
* Specifies additional text rendered under the item's title.
|
|
8
16
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-layout',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1689682186,
|
|
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
|
};
|
|
@@ -39,19 +39,19 @@ export interface StepProps {
|
|
|
39
39
|
/**
|
|
40
40
|
* Defines the name for an success icon in a Kendo UI for Vue theme.
|
|
41
41
|
*/
|
|
42
|
-
successIcon
|
|
42
|
+
successIcon?: String;
|
|
43
43
|
/**
|
|
44
44
|
* Defines an success SVGIcon to be rendered within the Step.
|
|
45
45
|
*/
|
|
46
|
-
successSvgIcon
|
|
46
|
+
successSvgIcon?: Object;
|
|
47
47
|
/**
|
|
48
48
|
* Defines the name for an error icon in a Kendo UI for Vue theme.
|
|
49
49
|
*/
|
|
50
|
-
errorIcon
|
|
50
|
+
errorIcon?: String;
|
|
51
51
|
/**
|
|
52
52
|
* Defines an error SVGIcon to be rendered within the Step.
|
|
53
53
|
*/
|
|
54
|
-
errorSvgIcon
|
|
54
|
+
errorSvgIcon?: Object;
|
|
55
55
|
/**
|
|
56
56
|
* Sets the index of the Step that is used to identify it.
|
|
57
57
|
*/
|
|
@@ -47,7 +47,7 @@ export interface ActionSheetProps {
|
|
|
47
47
|
*/
|
|
48
48
|
navigatableElements?: string[];
|
|
49
49
|
/**
|
|
50
|
-
* Controls the popup animation. By default, the
|
|
50
|
+
* Controls the popup animation. By default, the animation is enabled.
|
|
51
51
|
*/
|
|
52
52
|
animation?: boolean;
|
|
53
53
|
/**
|
|
@@ -216,6 +216,8 @@ var ActionSheetVue2 = {
|
|
|
216
216
|
}, [this.topGroupItems && this.topGroupItems.map(function (item, idx) {
|
|
217
217
|
var itemContent = kendo_vue_common_1.templateRendering.call(this, this.$props.item || item.content, kendo_vue_common_1.getListeners.call(this));
|
|
218
218
|
return h(ActionSheetItem_1.ActionSheetItem, {
|
|
219
|
+
style: item.style,
|
|
220
|
+
"class": item.class,
|
|
219
221
|
title: item.title,
|
|
220
222
|
attrs: this.v3 ? undefined : {
|
|
221
223
|
title: item.title,
|
|
@@ -257,6 +259,8 @@ var ActionSheetVue2 = {
|
|
|
257
259
|
}, [this.bottomGroupItems && this.bottomGroupItems.map(function (item, idx) {
|
|
258
260
|
var _a;
|
|
259
261
|
return h(ActionSheetItem_1.ActionSheetItem, {
|
|
262
|
+
style: item.style,
|
|
263
|
+
"class": item.class,
|
|
260
264
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
261
265
|
attrs: this.v3 ? undefined : {
|
|
262
266
|
id: idx + (((_a = this.topGroupItems) === null || _a === void 0 ? void 0 : _a.length) || 0),
|
|
@@ -3,6 +3,14 @@ import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
|
3
3
|
* Represents the props of the Kendo UI for Vue ActionSheetItem.
|
|
4
4
|
*/
|
|
5
5
|
export interface ActionSheetItemProps {
|
|
6
|
+
/**
|
|
7
|
+
* Sets additional CSS classes to the ActionSheetItem.
|
|
8
|
+
*/
|
|
9
|
+
class?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Sets additional CSS styles to the ActionSheetItem.
|
|
12
|
+
*/
|
|
13
|
+
style?: object;
|
|
6
14
|
/**
|
|
7
15
|
* Specifies additional text rendered under the item's title.
|
|
8
16
|
*/
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-layout',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1689682186,
|
|
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
|
};
|
|
@@ -39,19 +39,19 @@ export interface StepProps {
|
|
|
39
39
|
/**
|
|
40
40
|
* Defines the name for an success icon in a Kendo UI for Vue theme.
|
|
41
41
|
*/
|
|
42
|
-
successIcon
|
|
42
|
+
successIcon?: String;
|
|
43
43
|
/**
|
|
44
44
|
* Defines an success SVGIcon to be rendered within the Step.
|
|
45
45
|
*/
|
|
46
|
-
successSvgIcon
|
|
46
|
+
successSvgIcon?: Object;
|
|
47
47
|
/**
|
|
48
48
|
* Defines the name for an error icon in a Kendo UI for Vue theme.
|
|
49
49
|
*/
|
|
50
|
-
errorIcon
|
|
50
|
+
errorIcon?: String;
|
|
51
51
|
/**
|
|
52
52
|
* Defines an error SVGIcon to be rendered within the Step.
|
|
53
53
|
*/
|
|
54
|
-
errorSvgIcon
|
|
54
|
+
errorSvgIcon?: Object;
|
|
55
55
|
/**
|
|
56
56
|
* Sets the index of the Step that is used to identify it.
|
|
57
57
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-layout",
|
|
3
3
|
"description": "Kendo UI for Vue Layouts package",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.12.0-dev.202307181218",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"vue": "^2.6.12 || ^3.0.2"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@progress/kendo-vue-animation": "3.
|
|
49
|
-
"@progress/kendo-vue-common": "3.
|
|
50
|
-
"@progress/kendo-vue-popup": "3.
|
|
48
|
+
"@progress/kendo-vue-animation": "3.12.0-dev.202307181218",
|
|
49
|
+
"@progress/kendo-vue-common": "3.12.0-dev.202307181218",
|
|
50
|
+
"@progress/kendo-vue-popup": "3.12.0-dev.202307181218"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@progress/kendo-data-query": "^1.5.0",
|
|
@@ -55,15 +55,15 @@
|
|
|
55
55
|
"@progress/kendo-drawing": "^1.8.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.3.0",
|
|
57
57
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
58
|
-
"@progress/kendo-vue-buttons": "3.
|
|
59
|
-
"@progress/kendo-vue-charts": "3.
|
|
60
|
-
"@progress/kendo-vue-dateinputs": "3.
|
|
61
|
-
"@progress/kendo-vue-dropdowns": "3.
|
|
62
|
-
"@progress/kendo-vue-grid": "3.
|
|
63
|
-
"@progress/kendo-vue-indicators": "3.
|
|
64
|
-
"@progress/kendo-vue-inputs": "3.
|
|
65
|
-
"@progress/kendo-vue-intl": "3.
|
|
66
|
-
"@progress/kendo-vue-progressbars": "3.
|
|
58
|
+
"@progress/kendo-vue-buttons": "3.12.0-dev.202307181218",
|
|
59
|
+
"@progress/kendo-vue-charts": "3.12.0-dev.202307181218",
|
|
60
|
+
"@progress/kendo-vue-dateinputs": "3.12.0-dev.202307181218",
|
|
61
|
+
"@progress/kendo-vue-dropdowns": "3.12.0-dev.202307181218",
|
|
62
|
+
"@progress/kendo-vue-grid": "3.12.0-dev.202307181218",
|
|
63
|
+
"@progress/kendo-vue-indicators": "3.12.0-dev.202307181218",
|
|
64
|
+
"@progress/kendo-vue-inputs": "3.12.0-dev.202307181218",
|
|
65
|
+
"@progress/kendo-vue-intl": "3.12.0-dev.202307181218",
|
|
66
|
+
"@progress/kendo-vue-progressbars": "3.12.0-dev.202307181218"
|
|
67
67
|
},
|
|
68
68
|
"@progress": {
|
|
69
69
|
"friendlyName": "Layouts",
|