@progress/kendo-vue-buttons 8.0.3-develop.1 → 8.0.3-develop.3
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/Button.d.ts +273 -0
- package/ButtonGroup.d.ts +58 -0
- package/ButtonGroupInterface.d.ts +37 -0
- package/ButtonInterface.d.ts +57 -0
- package/ButtonWrap.d.ts +12 -0
- package/Chip/Chip.d.ts +351 -0
- package/Chip/ChipList.d.ts +278 -0
- package/Chip/ChipList.mjs +4 -4
- package/Chip/data-reducer.d.ts +28 -0
- package/Chip/data-reducer.js +1 -1
- package/Chip/data-reducer.mjs +2 -2
- package/Chip/focus-reducer.d.ts +31 -0
- package/Chip/focus-reducer.js +1 -1
- package/Chip/focus-reducer.mjs +2 -2
- package/Chip/selection-reducer.d.ts +36 -0
- package/Chip/selection-reducer.js +1 -1
- package/Chip/selection-reducer.mjs +3 -3
- package/FloatingActionButton/FloatingActionButton.d.ts +151 -0
- package/FloatingActionButton/FloatingActionButtonItem.d.ts +134 -0
- package/FloatingActionButton/interfaces/FloatingActionButtonHandle.d.ts +20 -0
- package/FloatingActionButton/interfaces/FloatingActionButtonPopupSettings.d.ts +31 -0
- package/FloatingActionButton/interfaces/FloatingActionButtonProps.d.ts +240 -0
- package/FloatingActionButton/models/align-offset.d.ts +27 -0
- package/FloatingActionButton/models/align.d.ts +34 -0
- package/FloatingActionButton/models/events.d.ts +29 -0
- package/FloatingActionButton/models/position-mode.d.ts +16 -0
- package/FloatingActionButton/models/size.d.ts +17 -0
- package/FloatingActionButton/models/theme-color.d.ts +24 -0
- package/FloatingActionButton/utils.d.ts +34 -0
- package/ListButton/ButtonItem.d.ts +57 -0
- package/ListButton/DropDownButton.d.ts +168 -0
- package/ListButton/SplitButton.d.ts +174 -0
- package/ListButton/models/ButtonItemInterface.d.ts +36 -0
- package/ListButton/models/ListButtonProps.d.ts +311 -0
- package/ListButton/models/PopupSettings.d.ts +31 -0
- package/ListButton/models/events.d.ts +118 -0
- package/ListButton/utils/navigation.d.ts +12 -0
- package/ListButton/utils/popup.d.ts +16 -0
- package/SpeechToText/SpeechToTextButton.d.ts +242 -0
- package/SpeechToText/SpeechToTextButton.js +1 -1
- package/SpeechToText/SpeechToTextButton.mjs +2 -2
- package/dist/cdn/js/kendo-vue-buttons.js +1 -1
- package/index.d.mts +31 -2942
- package/index.d.ts +31 -2942
- package/models/ButtonBlurEvent.d.ts +16 -0
- package/models/ButtonFocusEvent.d.ts +16 -0
- package/models/events.d.ts +96 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +13 -7
- package/toolbar/Toolbar.d.ts +170 -0
- package/toolbar/interfaces/ToolbarOverflowProps.d.ts +48 -0
- package/toolbar/interfaces/ToolbarProps.d.ts +93 -0
- package/toolbar/messages/index.d.ts +27 -0
- package/toolbar/tools/ToolbarItem.d.ts +14 -0
- package/toolbar/tools/ToolbarOverflowSection.d.ts +50 -0
- package/toolbar/tools/ToolbarScrollButton.d.ts +47 -0
- package/toolbar/tools/ToolbarScrollable.d.ts +58 -0
- package/toolbar/tools/ToolbarSeparator.d.ts +34 -0
- package/toolbar/tools/ToolbarSpacer.d.ts +48 -0
- package/util.d.ts +37 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { PropType } from 'vue';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface ToolbarScrollableProps {
|
|
13
|
+
scrollButtons: string;
|
|
14
|
+
scrollButtonsPosition: string;
|
|
15
|
+
isOverflowing: boolean;
|
|
16
|
+
buttonScrollSpeed: number;
|
|
17
|
+
dir?: string;
|
|
18
|
+
isScrollStartPosition: boolean;
|
|
19
|
+
isScrollEndPosition: boolean;
|
|
20
|
+
prevButton?: any;
|
|
21
|
+
nextButton?: any;
|
|
22
|
+
toolbarItems?: object;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
declare const ToolbarScrollable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
28
|
+
scrollButtons: PropType<string>;
|
|
29
|
+
scrollButtonsPosition: PropType<string>;
|
|
30
|
+
isOverflowing: PropType<boolean>;
|
|
31
|
+
buttonScrollSpeed: PropType<number>;
|
|
32
|
+
dir: PropType<string>;
|
|
33
|
+
isScrollStartPosition: PropType<boolean>;
|
|
34
|
+
isScrollEndPosition: PropType<boolean>;
|
|
35
|
+
prevButton: PropType<any>;
|
|
36
|
+
nextButton: PropType<any>;
|
|
37
|
+
toolbarItems: PropType<object>;
|
|
38
|
+
}>, {}, {
|
|
39
|
+
scrollContentRef: any;
|
|
40
|
+
}, {}, {
|
|
41
|
+
onContentScroll(ev: any): void;
|
|
42
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
43
|
+
contentscroll: (event: any) => true;
|
|
44
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
45
|
+
scrollButtons: PropType<string>;
|
|
46
|
+
scrollButtonsPosition: PropType<string>;
|
|
47
|
+
isOverflowing: PropType<boolean>;
|
|
48
|
+
buttonScrollSpeed: PropType<number>;
|
|
49
|
+
dir: PropType<string>;
|
|
50
|
+
isScrollStartPosition: PropType<boolean>;
|
|
51
|
+
isScrollEndPosition: PropType<boolean>;
|
|
52
|
+
prevButton: PropType<any>;
|
|
53
|
+
nextButton: PropType<any>;
|
|
54
|
+
toolbarItems: PropType<object>;
|
|
55
|
+
}>> & Readonly<{
|
|
56
|
+
onContentscroll?: (event: any) => any;
|
|
57
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
|
+
export { ToolbarScrollable };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Represents the [Kendo UI for Vue ToolbarSeparator component]({% slug overview_toolbar %}). A separator element for the sub-elements of the Toolbar.
|
|
10
|
+
*
|
|
11
|
+
* ```jsx
|
|
12
|
+
* <template>
|
|
13
|
+
* <div>
|
|
14
|
+
* <Toolbar>
|
|
15
|
+
* <SplitButton
|
|
16
|
+
* :class="'k-toolbar-split-button'"
|
|
17
|
+
* :text="'Insert'"
|
|
18
|
+
* :items="splitItems"
|
|
19
|
+
* >
|
|
20
|
+
* </SplitButton>
|
|
21
|
+
* <ToolbarSeparator />
|
|
22
|
+
* <DropDownButton
|
|
23
|
+
* :text="'Paste'"
|
|
24
|
+
* :svg-icon="clipboardIcon"
|
|
25
|
+
* :items="ddItems"
|
|
26
|
+
* >
|
|
27
|
+
* </DropDownButton>
|
|
28
|
+
* </Toolbar>
|
|
29
|
+
* </div>
|
|
30
|
+
* </template>
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
declare const ToolbarSeparator: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export { ToolbarSeparator };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Represents the [Kendo UI for Vue ToolbarSpacer component]({% slug overview_toolbar %}). A spacer element for the sub-elements of the Toolbar.
|
|
10
|
+
*
|
|
11
|
+
* ```jsx
|
|
12
|
+
* <template>
|
|
13
|
+
* <div>
|
|
14
|
+
* <Toolbar>
|
|
15
|
+
* <ButtonGroup :class="'k-toolbar-button-group'">
|
|
16
|
+
* <Button
|
|
17
|
+
* :class="'k-toolbar-button'"
|
|
18
|
+
* :svg-icon="boldIcon"
|
|
19
|
+
* :title="'Bold'"
|
|
20
|
+
* :togglable="true"
|
|
21
|
+
* />
|
|
22
|
+
* <Button
|
|
23
|
+
* :class="'k-toolbar-button'"
|
|
24
|
+
* :svg-icon="italicIcon"
|
|
25
|
+
* :title="'Italic'"
|
|
26
|
+
* :togglable="true"
|
|
27
|
+
* />
|
|
28
|
+
* <Button
|
|
29
|
+
* :class="'k-toolbar-button'"
|
|
30
|
+
* :svg-icon="underlineIcon"
|
|
31
|
+
* :title="'Underline'"
|
|
32
|
+
* :togglable="true"
|
|
33
|
+
* />
|
|
34
|
+
* </ButtonGroup>
|
|
35
|
+
* <ToolbarSpacer />
|
|
36
|
+
* <Button :class="'k-toolbar-button'" :svg-icon="cutIcon" :title="'Cut'">
|
|
37
|
+
* Cut
|
|
38
|
+
* </Button>
|
|
39
|
+
* <Button :class="'k-toolbar-button'" :svg-icon="copyIcon" :title="'Copy'">
|
|
40
|
+
* Copy
|
|
41
|
+
* </Button>
|
|
42
|
+
* </Toolbar>
|
|
43
|
+
* </div>
|
|
44
|
+
* </template>
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
declare const ToolbarSpacer: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export { ToolbarSpacer };
|
package/util.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare const internalButtons = ".k-dropdownlist > .k-button,.k-colorpicker > .k-button";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const toolbarButtons: string[];
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
declare const _default: {
|
|
20
|
+
styles: {
|
|
21
|
+
button: string;
|
|
22
|
+
flat: string;
|
|
23
|
+
outline: string;
|
|
24
|
+
clear: string;
|
|
25
|
+
'state-selected': string;
|
|
26
|
+
'button-icon': string;
|
|
27
|
+
'button-icontext': string;
|
|
28
|
+
'state-disabled': string;
|
|
29
|
+
'group-start': string;
|
|
30
|
+
'group-end': string;
|
|
31
|
+
'button-group': string;
|
|
32
|
+
'button-group-stretched': string;
|
|
33
|
+
ltr: string;
|
|
34
|
+
rtl: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default _default;
|