@progress/kendo-vue-buttons 8.0.3-develop.2 → 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.
Files changed (62) hide show
  1. package/Button.d.ts +273 -0
  2. package/ButtonGroup.d.ts +58 -0
  3. package/ButtonGroupInterface.d.ts +37 -0
  4. package/ButtonInterface.d.ts +57 -0
  5. package/ButtonWrap.d.ts +12 -0
  6. package/Chip/Chip.d.ts +351 -0
  7. package/Chip/ChipList.d.ts +278 -0
  8. package/Chip/ChipList.mjs +4 -4
  9. package/Chip/data-reducer.d.ts +28 -0
  10. package/Chip/data-reducer.js +1 -1
  11. package/Chip/data-reducer.mjs +2 -2
  12. package/Chip/focus-reducer.d.ts +31 -0
  13. package/Chip/focus-reducer.js +1 -1
  14. package/Chip/focus-reducer.mjs +2 -2
  15. package/Chip/selection-reducer.d.ts +36 -0
  16. package/Chip/selection-reducer.js +1 -1
  17. package/Chip/selection-reducer.mjs +3 -3
  18. package/FloatingActionButton/FloatingActionButton.d.ts +151 -0
  19. package/FloatingActionButton/FloatingActionButtonItem.d.ts +134 -0
  20. package/FloatingActionButton/interfaces/FloatingActionButtonHandle.d.ts +20 -0
  21. package/FloatingActionButton/interfaces/FloatingActionButtonPopupSettings.d.ts +31 -0
  22. package/FloatingActionButton/interfaces/FloatingActionButtonProps.d.ts +240 -0
  23. package/FloatingActionButton/models/align-offset.d.ts +27 -0
  24. package/FloatingActionButton/models/align.d.ts +34 -0
  25. package/FloatingActionButton/models/events.d.ts +29 -0
  26. package/FloatingActionButton/models/position-mode.d.ts +16 -0
  27. package/FloatingActionButton/models/size.d.ts +17 -0
  28. package/FloatingActionButton/models/theme-color.d.ts +24 -0
  29. package/FloatingActionButton/utils.d.ts +34 -0
  30. package/ListButton/ButtonItem.d.ts +57 -0
  31. package/ListButton/DropDownButton.d.ts +168 -0
  32. package/ListButton/SplitButton.d.ts +174 -0
  33. package/ListButton/models/ButtonItemInterface.d.ts +36 -0
  34. package/ListButton/models/ListButtonProps.d.ts +311 -0
  35. package/ListButton/models/PopupSettings.d.ts +31 -0
  36. package/ListButton/models/events.d.ts +118 -0
  37. package/ListButton/utils/navigation.d.ts +12 -0
  38. package/ListButton/utils/popup.d.ts +16 -0
  39. package/SpeechToText/SpeechToTextButton.d.ts +242 -0
  40. package/SpeechToText/SpeechToTextButton.js +1 -1
  41. package/SpeechToText/SpeechToTextButton.mjs +2 -2
  42. package/dist/cdn/js/kendo-vue-buttons.js +1 -1
  43. package/index.d.mts +31 -2942
  44. package/index.d.ts +31 -2942
  45. package/models/ButtonBlurEvent.d.ts +16 -0
  46. package/models/ButtonFocusEvent.d.ts +16 -0
  47. package/models/events.d.ts +96 -0
  48. package/package-metadata.d.ts +12 -0
  49. package/package-metadata.js +1 -1
  50. package/package-metadata.mjs +2 -2
  51. package/package.json +13 -7
  52. package/toolbar/Toolbar.d.ts +170 -0
  53. package/toolbar/interfaces/ToolbarOverflowProps.d.ts +48 -0
  54. package/toolbar/interfaces/ToolbarProps.d.ts +93 -0
  55. package/toolbar/messages/index.d.ts +27 -0
  56. package/toolbar/tools/ToolbarItem.d.ts +14 -0
  57. package/toolbar/tools/ToolbarOverflowSection.d.ts +50 -0
  58. package/toolbar/tools/ToolbarScrollButton.d.ts +47 -0
  59. package/toolbar/tools/ToolbarScrollable.d.ts +58 -0
  60. package/toolbar/tools/ToolbarSeparator.d.ts +34 -0
  61. package/toolbar/tools/ToolbarSpacer.d.ts +48 -0
  62. 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;