@progress/kendo-vue-buttons 3.7.4-dev.202212300853 → 3.7.4-dev.202301091431
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/Button.js +4 -1
- package/dist/es/ButtonInterface.d.ts +4 -0
- package/dist/es/Chip/Chip.js +12 -3
- package/dist/es/FloatingActionButton/FloatingActionButton.js +2 -2
- package/dist/es/FloatingActionButton/FloatingActionButtonItem.js +2 -2
- package/dist/es/ListButton/ButtonItem.js +2 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/toolbar/Toolbar.d.ts +12 -0
- package/dist/es/toolbar/Toolbar.js +16 -2
- package/dist/es/toolbar/tools/ToolbarItem.d.ts +2 -8
- package/dist/es/toolbar/tools/ToolbarItem.js +5 -9
- package/dist/es/toolbar/tools/ToolbarSeparator.d.ts +2 -8
- package/dist/es/toolbar/tools/ToolbarSeparator.js +5 -15
- package/dist/es/toolbar/tools/ToolbarSpacer.d.ts +2 -8
- package/dist/es/toolbar/tools/ToolbarSpacer.js +2 -8
- package/dist/esm/Button.js +4 -1
- package/dist/esm/ButtonInterface.d.ts +4 -0
- package/dist/esm/Chip/Chip.js +12 -3
- package/dist/esm/FloatingActionButton/FloatingActionButton.js +2 -2
- package/dist/esm/FloatingActionButton/FloatingActionButtonItem.js +2 -2
- package/dist/esm/ListButton/ButtonItem.js +2 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/toolbar/Toolbar.d.ts +12 -0
- package/dist/esm/toolbar/Toolbar.js +16 -2
- package/dist/esm/toolbar/tools/ToolbarItem.d.ts +2 -8
- package/dist/esm/toolbar/tools/ToolbarItem.js +5 -9
- package/dist/esm/toolbar/tools/ToolbarSeparator.d.ts +2 -8
- package/dist/esm/toolbar/tools/ToolbarSeparator.js +5 -15
- package/dist/esm/toolbar/tools/ToolbarSpacer.d.ts +2 -8
- package/dist/esm/toolbar/tools/ToolbarSpacer.js +2 -8
- package/dist/npm/Button.js +4 -1
- package/dist/npm/ButtonInterface.d.ts +4 -0
- package/dist/npm/Chip/Chip.js +12 -3
- package/dist/npm/FloatingActionButton/FloatingActionButton.js +2 -2
- package/dist/npm/FloatingActionButton/FloatingActionButtonItem.js +2 -2
- package/dist/npm/ListButton/ButtonItem.js +2 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/toolbar/Toolbar.d.ts +12 -0
- package/dist/npm/toolbar/Toolbar.js +15 -1
- package/dist/npm/toolbar/tools/ToolbarItem.d.ts +2 -8
- package/dist/npm/toolbar/tools/ToolbarItem.js +5 -9
- package/dist/npm/toolbar/tools/ToolbarSeparator.d.ts +2 -8
- package/dist/npm/toolbar/tools/ToolbarSeparator.js +5 -15
- package/dist/npm/toolbar/tools/ToolbarSpacer.d.ts +2 -8
- package/dist/npm/toolbar/tools/ToolbarSpacer.js +2 -8
- package/package.json +8 -7
|
@@ -3,7 +3,6 @@ import * as Vue from 'vue';
|
|
|
3
3
|
var allVue = Vue;
|
|
4
4
|
var gh = allVue.h;
|
|
5
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
-
import { ToolbarItem } from './ToolbarItem.js';
|
|
7
6
|
/**
|
|
8
7
|
* @hidden
|
|
9
8
|
*/
|
|
@@ -18,12 +17,9 @@ var ToolbarSeparatorVue2 = {
|
|
|
18
17
|
},
|
|
19
18
|
render: function render(createElement) {
|
|
20
19
|
var h = gh || createElement;
|
|
21
|
-
return (
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"class": "k-separator"
|
|
25
|
-
})
|
|
26
|
-
);
|
|
20
|
+
return h("div", {
|
|
21
|
+
"class": "k-separator"
|
|
22
|
+
});
|
|
27
23
|
}
|
|
28
24
|
};
|
|
29
25
|
/**
|
|
@@ -32,21 +28,15 @@ var ToolbarSeparatorVue2 = {
|
|
|
32
28
|
* ```jsx
|
|
33
29
|
* <template>
|
|
34
30
|
* <Toolbar>
|
|
35
|
-
* <ToolbarItem>
|
|
36
31
|
* <ButtonGroup>
|
|
37
32
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
38
33
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
39
34
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
40
35
|
* </ButtonGroup>
|
|
41
|
-
*
|
|
42
|
-
* <ToolbarSpacer />
|
|
43
|
-
* <ToolbarItem>
|
|
36
|
+
* <ToolbarSpacer />
|
|
44
37
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
45
|
-
*
|
|
46
|
-
* <ToolbarSeparator />
|
|
47
|
-
* <ToolbarItem>
|
|
38
|
+
* <ToolbarSeparator />
|
|
48
39
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
49
|
-
* </ToolbarItem>
|
|
50
40
|
* </Toolbar>
|
|
51
41
|
* </template>
|
|
52
42
|
* ```
|
|
@@ -13,21 +13,15 @@ declare let ToolbarSpacerVue2: ComponentOptions<Vue2type, DefaultData<{}>, Defau
|
|
|
13
13
|
* ```jsx
|
|
14
14
|
* <template>
|
|
15
15
|
* <Toolbar>
|
|
16
|
-
* <ToolbarItem>
|
|
17
16
|
* <ButtonGroup>
|
|
18
17
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
19
18
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
20
19
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
21
20
|
* </ButtonGroup>
|
|
22
|
-
*
|
|
23
|
-
* <ToolbarSpacer />
|
|
24
|
-
* <ToolbarItem>
|
|
21
|
+
* <ToolbarSpacer />
|
|
25
22
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
26
|
-
*
|
|
27
|
-
* <ToolbarSeparator />
|
|
28
|
-
* <ToolbarItem>
|
|
23
|
+
* <ToolbarSeparator />
|
|
29
24
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
30
|
-
* </ToolbarItem>
|
|
31
25
|
* </Toolbar>
|
|
32
26
|
* </template>
|
|
33
27
|
* ```
|
|
@@ -28,21 +28,15 @@ var ToolbarSpacerVue2 = {
|
|
|
28
28
|
* ```jsx
|
|
29
29
|
* <template>
|
|
30
30
|
* <Toolbar>
|
|
31
|
-
* <ToolbarItem>
|
|
32
31
|
* <ButtonGroup>
|
|
33
32
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
34
33
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
35
34
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
36
35
|
* </ButtonGroup>
|
|
37
|
-
*
|
|
38
|
-
* <ToolbarSpacer />
|
|
39
|
-
* <ToolbarItem>
|
|
36
|
+
* <ToolbarSpacer />
|
|
40
37
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
41
|
-
*
|
|
42
|
-
* <ToolbarSeparator />
|
|
43
|
-
* <ToolbarItem>
|
|
38
|
+
* <ToolbarSeparator />
|
|
44
39
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
45
|
-
* </ToolbarItem>
|
|
46
40
|
* </Toolbar>
|
|
47
41
|
* </template>
|
|
48
42
|
* ```
|
package/dist/npm/Button.js
CHANGED
|
@@ -32,6 +32,7 @@ var ButtonVue2 = {
|
|
|
32
32
|
},
|
|
33
33
|
props: {
|
|
34
34
|
ariaLabel: String,
|
|
35
|
+
title: String,
|
|
35
36
|
dir: String,
|
|
36
37
|
selected: {
|
|
37
38
|
type: Boolean,
|
|
@@ -265,12 +266,14 @@ var ButtonVue2 = {
|
|
|
265
266
|
onKeypress: this.handleKeypress,
|
|
266
267
|
onKeydown: this.handleKeydown,
|
|
267
268
|
onContextmenu: this.handleContextmenu,
|
|
268
|
-
|
|
269
|
+
title: this.title,
|
|
269
270
|
attrs: this.v3 ? undefined : {
|
|
271
|
+
title: this.title,
|
|
270
272
|
"aria-label": this.ariaLabel,
|
|
271
273
|
"aria-disabled": this.$props.disabled || undefined,
|
|
272
274
|
"aria-pressed": togglable ? this.currentActive ? true : undefined : undefined
|
|
273
275
|
},
|
|
276
|
+
"aria-label": this.ariaLabel,
|
|
274
277
|
"aria-disabled": this.$props.disabled || undefined,
|
|
275
278
|
"aria-pressed": togglable ? this.currentActive ? true : undefined : undefined
|
|
276
279
|
}, [iconElement.call(this), defaultSlot && h("span", {
|
package/dist/npm/Chip/Chip.js
CHANGED
|
@@ -39,7 +39,7 @@ var ChipVue2 = {
|
|
|
39
39
|
removeIcon: {
|
|
40
40
|
type: String,
|
|
41
41
|
default: function _default() {
|
|
42
|
-
return '
|
|
42
|
+
return 'x-circle';
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
disabled: {
|
|
@@ -137,6 +137,12 @@ var ChipVue2 = {
|
|
|
137
137
|
return this.$props.selected || (Array.isArray(this.kendoSelection.value) ? this.kendoSelection.value.some(function (i) {
|
|
138
138
|
return i === _this.$props.value;
|
|
139
139
|
}) : this.kendoSelection.value === this.$props.value);
|
|
140
|
+
},
|
|
141
|
+
chipLabelClass: function chipLabelClass() {
|
|
142
|
+
return {
|
|
143
|
+
'k-chip-label': true,
|
|
144
|
+
'k-text-ellipsis': true
|
|
145
|
+
};
|
|
140
146
|
}
|
|
141
147
|
},
|
|
142
148
|
methods: {
|
|
@@ -316,13 +322,16 @@ var ChipVue2 = {
|
|
|
316
322
|
attrs: this.v3 ? undefined : {
|
|
317
323
|
"aria-label": this.$props.text
|
|
318
324
|
},
|
|
319
|
-
"class":
|
|
325
|
+
"class": this.chipLabelClass
|
|
320
326
|
}, [this.$props.text])]), this.$props.removable && h("span", {
|
|
321
327
|
"class": "k-chip-actions"
|
|
322
328
|
}, [h("span", {
|
|
323
329
|
"class": "k-chip-action k-chip-remove-action"
|
|
324
330
|
}, [h(kendo_vue_common_1.Icon, {
|
|
325
|
-
|
|
331
|
+
name: this.$props.removeIcon,
|
|
332
|
+
attrs: this.v3 ? undefined : {
|
|
333
|
+
name: this.$props.removeIcon
|
|
334
|
+
},
|
|
326
335
|
onClick: this.handleRemove,
|
|
327
336
|
on: this.v3 ? undefined : {
|
|
328
337
|
"click": this.handleRemove
|
|
@@ -396,9 +396,9 @@ var FloatingActionButtonVue2 = {
|
|
|
396
396
|
name: icon,
|
|
397
397
|
attrs: this.v3 ? undefined : {
|
|
398
398
|
name: icon,
|
|
399
|
-
|
|
399
|
+
icon: svgIcon
|
|
400
400
|
},
|
|
401
|
-
|
|
401
|
+
icon: svgIcon,
|
|
402
402
|
"class": 'k-fab-icon'
|
|
403
403
|
}) : iconClass ? h(kendo_vue_common_1.Icon, {
|
|
404
404
|
"class": iconClass
|
|
@@ -107,9 +107,9 @@ var FloatingActionButtonItemVue2 = {
|
|
|
107
107
|
name: icon,
|
|
108
108
|
attrs: this.v3 ? undefined : {
|
|
109
109
|
name: icon,
|
|
110
|
-
|
|
110
|
+
icon: svgIcon
|
|
111
111
|
},
|
|
112
|
-
|
|
112
|
+
icon: svgIcon,
|
|
113
113
|
"class": "k-fab-item-icon"
|
|
114
114
|
})]);
|
|
115
115
|
item = kendo_vue_common_1.getTemplate.call(this, {
|
|
@@ -82,9 +82,9 @@ var ButtonItemVue2 = {
|
|
|
82
82
|
name: dataItem.icon,
|
|
83
83
|
attrs: this.v3 ? undefined : {
|
|
84
84
|
name: dataItem.icon,
|
|
85
|
-
|
|
85
|
+
icon: dataItem.svgIcon
|
|
86
86
|
},
|
|
87
|
-
|
|
87
|
+
icon: dataItem.svgIcon,
|
|
88
88
|
"class": dataItem.iconClass
|
|
89
89
|
}) : dataItem.iconClass && h("span", {
|
|
90
90
|
"class": dataItem.iconClass,
|
|
@@ -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: 1673273361,
|
|
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
|
};
|
|
@@ -61,6 +61,18 @@ export interface ToolbarProps {
|
|
|
61
61
|
* ].
|
|
62
62
|
*/
|
|
63
63
|
buttons?: string[];
|
|
64
|
+
/**
|
|
65
|
+
* Configures the `size` of the Toolbar.
|
|
66
|
+
*
|
|
67
|
+
* The available options are:
|
|
68
|
+
* - small
|
|
69
|
+
* - medium
|
|
70
|
+
* - large
|
|
71
|
+
* - null—Does not set a size `class`.
|
|
72
|
+
*
|
|
73
|
+
* @default `medium`
|
|
74
|
+
*/
|
|
75
|
+
size?: null | 'small' | 'medium' | 'large' | string;
|
|
64
76
|
}
|
|
65
77
|
/**
|
|
66
78
|
* @hidden
|
|
@@ -44,6 +44,13 @@ var ToolbarVue2 = {
|
|
|
44
44
|
default: function _default() {
|
|
45
45
|
return undefined;
|
|
46
46
|
}
|
|
47
|
+
},
|
|
48
|
+
size: {
|
|
49
|
+
type: String,
|
|
50
|
+
default: 'medium',
|
|
51
|
+
validator: function validator(value) {
|
|
52
|
+
return [null, 'small', 'medium', 'large'].includes(value);
|
|
53
|
+
}
|
|
47
54
|
}
|
|
48
55
|
},
|
|
49
56
|
created: function created() {
|
|
@@ -58,6 +65,13 @@ var ToolbarVue2 = {
|
|
|
58
65
|
computed: {
|
|
59
66
|
selectors: function selectors() {
|
|
60
67
|
return this.$props.buttons || util_1.toolbarButtons;
|
|
68
|
+
},
|
|
69
|
+
wrapperClass: function wrapperClass() {
|
|
70
|
+
var _a;
|
|
71
|
+
var size = this.$props.size;
|
|
72
|
+
return _a = {
|
|
73
|
+
'k-toolbar': true
|
|
74
|
+
}, _a["k-toolbar-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a['k-toolbar-resizable'] = true, _a;
|
|
61
75
|
}
|
|
62
76
|
},
|
|
63
77
|
mounted: function mounted() {
|
|
@@ -100,7 +114,7 @@ var ToolbarVue2 = {
|
|
|
100
114
|
var h = gh || createElement;
|
|
101
115
|
var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
|
|
102
116
|
return h("div", {
|
|
103
|
-
"class":
|
|
117
|
+
"class": this.wrapperClass,
|
|
104
118
|
role: "toolbar",
|
|
105
119
|
attrs: this.v3 ? undefined : {
|
|
106
120
|
role: "toolbar",
|
|
@@ -41,21 +41,15 @@ declare let ToolbarItemVue2: ComponentOptions<ToolbarItemAll, DefaultData<Toolba
|
|
|
41
41
|
* ```jsx
|
|
42
42
|
* <template>
|
|
43
43
|
* <Toolbar>
|
|
44
|
-
* <ToolbarItem>
|
|
45
44
|
* <ButtonGroup>
|
|
46
45
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
47
46
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
48
47
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
49
48
|
* </ButtonGroup>
|
|
50
|
-
*
|
|
51
|
-
* <ToolbarSpacer />
|
|
52
|
-
* <ToolbarItem>
|
|
49
|
+
* <ToolbarSpacer />
|
|
53
50
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
54
|
-
*
|
|
55
|
-
* <ToolbarSeparator />
|
|
56
|
-
* <ToolbarItem>
|
|
51
|
+
* <ToolbarSeparator />
|
|
57
52
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
58
|
-
* </ToolbarItem>
|
|
59
53
|
* </Toolbar>
|
|
60
54
|
* </template>
|
|
61
55
|
* ```
|
|
@@ -30,7 +30,9 @@ var ToolbarItemVue2 = {
|
|
|
30
30
|
render: function render(createElement) {
|
|
31
31
|
var h = gh || createElement;
|
|
32
32
|
var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
|
|
33
|
-
return h("
|
|
33
|
+
return h("div", {
|
|
34
|
+
"class": 'k-toolbar-item'
|
|
35
|
+
}, [defaultSlot]);
|
|
34
36
|
}
|
|
35
37
|
};
|
|
36
38
|
exports.ToolbarItemVue2 = ToolbarItemVue2;
|
|
@@ -40,21 +42,15 @@ exports.ToolbarItemVue2 = ToolbarItemVue2;
|
|
|
40
42
|
* ```jsx
|
|
41
43
|
* <template>
|
|
42
44
|
* <Toolbar>
|
|
43
|
-
* <ToolbarItem>
|
|
44
45
|
* <ButtonGroup>
|
|
45
46
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
46
47
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
47
48
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
48
49
|
* </ButtonGroup>
|
|
49
|
-
*
|
|
50
|
-
* <ToolbarSpacer />
|
|
51
|
-
* <ToolbarItem>
|
|
50
|
+
* <ToolbarSpacer />
|
|
52
51
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
53
|
-
*
|
|
54
|
-
* <ToolbarSeparator />
|
|
55
|
-
* <ToolbarItem>
|
|
52
|
+
* <ToolbarSeparator />
|
|
56
53
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
57
|
-
* </ToolbarItem>
|
|
58
54
|
* </Toolbar>
|
|
59
55
|
* </template>
|
|
60
56
|
* ```
|
|
@@ -13,21 +13,15 @@ declare let ToolbarSeparatorVue2: ComponentOptions<Vue2type, DefaultData<{}>, De
|
|
|
13
13
|
* ```jsx
|
|
14
14
|
* <template>
|
|
15
15
|
* <Toolbar>
|
|
16
|
-
* <ToolbarItem>
|
|
17
16
|
* <ButtonGroup>
|
|
18
17
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
19
18
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
20
19
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
21
20
|
* </ButtonGroup>
|
|
22
|
-
*
|
|
23
|
-
* <ToolbarSpacer />
|
|
24
|
-
* <ToolbarItem>
|
|
21
|
+
* <ToolbarSpacer />
|
|
25
22
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
26
|
-
*
|
|
27
|
-
* <ToolbarSeparator />
|
|
28
|
-
* <ToolbarItem>
|
|
23
|
+
* <ToolbarSeparator />
|
|
29
24
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
30
|
-
* </ToolbarItem>
|
|
31
25
|
* </Toolbar>
|
|
32
26
|
* </template>
|
|
33
27
|
* ```
|
|
@@ -9,7 +9,6 @@ var Vue = require("vue");
|
|
|
9
9
|
var allVue = Vue;
|
|
10
10
|
var gh = allVue.h;
|
|
11
11
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
|
-
var ToolbarItem_1 = require("./ToolbarItem");
|
|
13
12
|
/**
|
|
14
13
|
* @hidden
|
|
15
14
|
*/
|
|
@@ -24,12 +23,9 @@ var ToolbarSeparatorVue2 = {
|
|
|
24
23
|
},
|
|
25
24
|
render: function render(createElement) {
|
|
26
25
|
var h = gh || createElement;
|
|
27
|
-
return (
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"class": "k-separator"
|
|
31
|
-
})
|
|
32
|
-
);
|
|
26
|
+
return h("div", {
|
|
27
|
+
"class": "k-separator"
|
|
28
|
+
});
|
|
33
29
|
}
|
|
34
30
|
};
|
|
35
31
|
exports.ToolbarSeparatorVue2 = ToolbarSeparatorVue2;
|
|
@@ -39,21 +35,15 @@ exports.ToolbarSeparatorVue2 = ToolbarSeparatorVue2;
|
|
|
39
35
|
* ```jsx
|
|
40
36
|
* <template>
|
|
41
37
|
* <Toolbar>
|
|
42
|
-
* <ToolbarItem>
|
|
43
38
|
* <ButtonGroup>
|
|
44
39
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
45
40
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
46
41
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
47
42
|
* </ButtonGroup>
|
|
48
|
-
*
|
|
49
|
-
* <ToolbarSpacer />
|
|
50
|
-
* <ToolbarItem>
|
|
43
|
+
* <ToolbarSpacer />
|
|
51
44
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
52
|
-
*
|
|
53
|
-
* <ToolbarSeparator />
|
|
54
|
-
* <ToolbarItem>
|
|
45
|
+
* <ToolbarSeparator />
|
|
55
46
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
56
|
-
* </ToolbarItem>
|
|
57
47
|
* </Toolbar>
|
|
58
48
|
* </template>
|
|
59
49
|
* ```
|
|
@@ -13,21 +13,15 @@ declare let ToolbarSpacerVue2: ComponentOptions<Vue2type, DefaultData<{}>, Defau
|
|
|
13
13
|
* ```jsx
|
|
14
14
|
* <template>
|
|
15
15
|
* <Toolbar>
|
|
16
|
-
* <ToolbarItem>
|
|
17
16
|
* <ButtonGroup>
|
|
18
17
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
19
18
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
20
19
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
21
20
|
* </ButtonGroup>
|
|
22
|
-
*
|
|
23
|
-
* <ToolbarSpacer />
|
|
24
|
-
* <ToolbarItem>
|
|
21
|
+
* <ToolbarSpacer />
|
|
25
22
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
26
|
-
*
|
|
27
|
-
* <ToolbarSeparator />
|
|
28
|
-
* <ToolbarItem>
|
|
23
|
+
* <ToolbarSeparator />
|
|
29
24
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
30
|
-
* </ToolbarItem>
|
|
31
25
|
* </Toolbar>
|
|
32
26
|
* </template>
|
|
33
27
|
* ```
|
|
@@ -35,21 +35,15 @@ exports.ToolbarSpacerVue2 = ToolbarSpacerVue2;
|
|
|
35
35
|
* ```jsx
|
|
36
36
|
* <template>
|
|
37
37
|
* <Toolbar>
|
|
38
|
-
* <ToolbarItem>
|
|
39
38
|
* <ButtonGroup>
|
|
40
39
|
* <Button :icon="'bold'" :title="'Bold'" :togglable="true" />
|
|
41
40
|
* <Button :icon="'italic'" :title="'Italic'" :togglable="true" />
|
|
42
41
|
* <Button :icon="'underline'" :title="'Underline'" :togglable="true" />
|
|
43
42
|
* </ButtonGroup>
|
|
44
|
-
*
|
|
45
|
-
* <ToolbarSpacer />
|
|
46
|
-
* <ToolbarItem>
|
|
43
|
+
* <ToolbarSpacer />
|
|
47
44
|
* <SplitButton :text="'Insert'" :items="splitItems"> </SplitButton>
|
|
48
|
-
*
|
|
49
|
-
* <ToolbarSeparator />
|
|
50
|
-
* <ToolbarItem>
|
|
45
|
+
* <ToolbarSeparator />
|
|
51
46
|
* <Button :icon="'cut'" :title="'Cut'"> Cut </Button>
|
|
52
|
-
* </ToolbarItem>
|
|
53
47
|
* </Toolbar>
|
|
54
48
|
* </template>
|
|
55
49
|
* ```
|
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.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202301091431",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -35,18 +35,19 @@
|
|
|
35
35
|
"Telerik"
|
|
36
36
|
],
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@progress/kendo-licensing": "^1.
|
|
38
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
39
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
39
40
|
"vue": "^2.6.12 || ^3.0.2"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
43
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
43
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301091431",
|
|
44
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301091431"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@progress/kendo-drawing": "^1.5.12",
|
|
47
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
48
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
49
|
-
"@progress/kendo-vue-layout": "3.7.4-dev.
|
|
48
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202301091431",
|
|
49
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202301091431",
|
|
50
|
+
"@progress/kendo-vue-layout": "3.7.4-dev.202301091431"
|
|
50
51
|
},
|
|
51
52
|
"@progress": {
|
|
52
53
|
"friendlyName": "Buttons",
|