@progress/kendo-vue-buttons 3.10.2 → 3.11.0-dev.202305230623
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-buttons.js +1 -1
- package/dist/es/ButtonInterface.d.ts +1 -1
- package/dist/es/Chip/Chip.d.ts +13 -0
- package/dist/es/Chip/Chip.js +43 -15
- package/dist/es/ListButton/DropDownButton.js +3 -0
- package/dist/es/ListButton/SplitButton.js +3 -0
- package/dist/es/ListButton/models/ListButtonProps.d.ts +9 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/ButtonInterface.d.ts +1 -1
- package/dist/esm/Chip/Chip.d.ts +13 -0
- package/dist/esm/Chip/Chip.js +43 -15
- package/dist/esm/ListButton/DropDownButton.js +3 -0
- package/dist/esm/ListButton/SplitButton.js +3 -0
- package/dist/esm/ListButton/models/ListButtonProps.d.ts +9 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/ButtonInterface.d.ts +1 -1
- package/dist/npm/Chip/Chip.d.ts +13 -0
- package/dist/npm/Chip/Chip.js +42 -14
- package/dist/npm/ListButton/DropDownButton.js +3 -0
- package/dist/npm/ListButton/SplitButton.js +3 -0
- package/dist/npm/ListButton/models/ListButtonProps.d.ts +9 -0
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +8 -6
|
@@ -58,6 +58,7 @@ var DropDownButtonVue2 = {
|
|
|
58
58
|
tabIndex: Number,
|
|
59
59
|
disabled: Boolean,
|
|
60
60
|
icon: String,
|
|
61
|
+
svgIcon: Object,
|
|
61
62
|
iconClass: String,
|
|
62
63
|
imageUrl: String,
|
|
63
64
|
popupSettings: Object,
|
|
@@ -280,6 +281,7 @@ var DropDownButtonVue2 = {
|
|
|
280
281
|
tabIndex: tabIndex,
|
|
281
282
|
accessKey: this.$props.accessKey,
|
|
282
283
|
icon: this.$props.icon,
|
|
284
|
+
svgIcon: this.$props.svgIcon,
|
|
283
285
|
iconClass: this.$props.iconClass,
|
|
284
286
|
imageUrl: this.$props.imageUrl,
|
|
285
287
|
look: this.$props.look,
|
|
@@ -307,6 +309,7 @@ var DropDownButtonVue2 = {
|
|
|
307
309
|
tabIndex: tabIndex,
|
|
308
310
|
accessKey: this.$props.accessKey,
|
|
309
311
|
icon: this.$props.icon,
|
|
312
|
+
svgIcon: this.$props.svgIcon,
|
|
310
313
|
iconClass: this.$props.iconClass,
|
|
311
314
|
"class": this.$props.buttonClass,
|
|
312
315
|
imageUrl: this.$props.imageUrl,
|
|
@@ -58,6 +58,7 @@ var SplitButtonVue2 = {
|
|
|
58
58
|
tabIndex: Number,
|
|
59
59
|
disabled: Boolean,
|
|
60
60
|
icon: String,
|
|
61
|
+
svgIcon: Object,
|
|
61
62
|
size: {
|
|
62
63
|
type: String,
|
|
63
64
|
default: 'medium'
|
|
@@ -275,6 +276,7 @@ var SplitButtonVue2 = {
|
|
|
275
276
|
tabIndex: tabIndex,
|
|
276
277
|
accessKey: this.$props.accessKey,
|
|
277
278
|
icon: this.$props.icon,
|
|
279
|
+
svgIcon: this.$props.svgIcon,
|
|
278
280
|
iconClass: this.$props.iconClass,
|
|
279
281
|
imageUrl: this.$props.imageUrl,
|
|
280
282
|
look: this.$props.look,
|
|
@@ -304,6 +306,7 @@ var SplitButtonVue2 = {
|
|
|
304
306
|
accessKey: this.$props.accessKey,
|
|
305
307
|
"class": this.$props.buttonClass,
|
|
306
308
|
icon: this.$props.icon,
|
|
309
|
+
svgIcon: this.$props.svgIcon,
|
|
307
310
|
iconClass: this.$props.iconClass,
|
|
308
311
|
imageUrl: this.$props.imageUrl,
|
|
309
312
|
look: this.$props.look,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ButtonsPopupSettings } from './PopupSettings';
|
|
2
2
|
import { SplitButtonClickEvent, SplitButtonItemClickEvent, SplitButtonFocusEvent, SplitButtonBlurEvent, SplitButtonOpenEvent, SplitButtonCloseEvent, DropDownButtonItemClickEvent, DropDownButtonFocusEvent, DropDownButtonBlurEvent, DropDownButtonOpenEvent, DropDownButtonCloseEvent } from './events';
|
|
3
3
|
import { ButtonLook } from '../../buttonLook';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-vue-common';
|
|
4
5
|
export interface DropDownButtonProps {
|
|
5
6
|
/**
|
|
6
7
|
* Specifies the `accessKey` of the main button.
|
|
@@ -38,6 +39,10 @@ export interface DropDownButtonProps {
|
|
|
38
39
|
* Defines an icon that will be rendered next to the main button text ([see example]({% slug icons_dropdownbutton %})).
|
|
39
40
|
*/
|
|
40
41
|
icon?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Defines an SVGIcon to be rendered within the DropDownButton.
|
|
44
|
+
*/
|
|
45
|
+
svgIcon?: SVGIcon;
|
|
41
46
|
/**
|
|
42
47
|
* Defines an icon with a custom CSS class that will be rendered next to the main button text ([see example]({% slug icons_dropdownbutton %})).
|
|
43
48
|
*/
|
|
@@ -199,6 +204,10 @@ export interface SplitButtonProps {
|
|
|
199
204
|
* Defines an icon that will be rendered next to the main button text ([see example]({% slug icons_splitbutton %})).
|
|
200
205
|
*/
|
|
201
206
|
icon?: string;
|
|
207
|
+
/**
|
|
208
|
+
* Defines an SVGIcon to be rendered within the SplitButton.
|
|
209
|
+
*/
|
|
210
|
+
svgIcon?: SVGIcon;
|
|
202
211
|
/**
|
|
203
212
|
* Defines an icon with a custom CSS class that will be rendered next to the main button text ([see example]({% slug icons_splitbutton %})).
|
|
204
213
|
*/
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-buttons',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1684822292,
|
|
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-buttons",
|
|
3
3
|
"description": "Kendo UI for Vue Buttons package",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.11.0-dev.202305230623",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -37,17 +37,19 @@
|
|
|
37
37
|
],
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@progress/kendo-licensing": "^1.3.0",
|
|
40
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
40
41
|
"vue": "^2.6.12 || ^3.0.2"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@progress/kendo-vue-common": "3.
|
|
44
|
-
"@progress/kendo-vue-popup": "3.
|
|
44
|
+
"@progress/kendo-vue-common": "3.11.0-dev.202305230623",
|
|
45
|
+
"@progress/kendo-vue-popup": "3.11.0-dev.202305230623"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@progress/kendo-drawing": "^1.5.12",
|
|
48
|
-
"@progress/kendo-
|
|
49
|
-
"@progress/kendo-vue-
|
|
50
|
-
"@progress/kendo-vue-
|
|
49
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
50
|
+
"@progress/kendo-vue-dropdowns": "3.11.0-dev.202305230623",
|
|
51
|
+
"@progress/kendo-vue-inputs": "3.11.0-dev.202305230623",
|
|
52
|
+
"@progress/kendo-vue-layout": "3.11.0-dev.202305230623"
|
|
51
53
|
},
|
|
52
54
|
"@progress": {
|
|
53
55
|
"friendlyName": "Buttons",
|