@progress/kendo-angular-toolbar 24.2.2-develop.9 → 25.0.0-develop.1
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/fesm2022/progress-kendo-angular-toolbar.mjs +60 -60
- package/index.d.ts +1529 -21
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/common/fillmode.d.ts +0 -8
- package/common/overflow-mode.d.ts +0 -8
- package/common/overflow-settings.d.ts +0 -45
- package/common/preventable-event.d.ts +0 -21
- package/common/renderer-click.d.ts +0 -12
- package/common/scroll-buttons.d.ts +0 -22
- package/common/size.d.ts +0 -8
- package/direction.d.ts +0 -8
- package/directives.d.ts +0 -35
- package/display-mode.d.ts +0 -16
- package/group-selection-settings.d.ts +0 -9
- package/localization/custom-messages.component.d.ts +0 -30
- package/localization/localized-toolbar-messages.directive.d.ts +0 -16
- package/localization/messages.d.ts +0 -25
- package/navigation.service.d.ts +0 -36
- package/package-metadata.d.ts +0 -9
- package/popup-settings.d.ts +0 -60
- package/refresh.service.d.ts +0 -16
- package/render-location.d.ts +0 -8
- package/renderer.component.d.ts +0 -47
- package/renderer.service.d.ts +0 -24
- package/scroll.service.d.ts +0 -43
- package/scrollable-button.component.d.ts +0 -40
- package/tool-options.d.ts +0 -15
- package/toolbar.component.d.ts +0 -316
- package/toolbar.module.d.ts +0 -32
- package/tools/toolbar-button.component.d.ts +0 -198
- package/tools/toolbar-buttongroup.component.d.ts +0 -117
- package/tools/toolbar-dropdownbutton.component.d.ts +0 -195
- package/tools/toolbar-separator.component.d.ts +0 -40
- package/tools/toolbar-spacer.component.d.ts +0 -43
- package/tools/toolbar-splitbutton.component.d.ts +0 -194
- package/tools/toolbar-tool.component.d.ts +0 -77
- package/tools/tools.service.d.ts +0 -21
- package/util.d.ts +0 -115
package/util.d.ts
DELETED
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Keys } from '@progress/kendo-angular-common';
|
|
6
|
-
import { DisplayMode } from './display-mode';
|
|
7
|
-
import { ToolbarOverflowSettings } from './common/overflow-settings';
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export interface ToolbarStylingClasses {
|
|
12
|
-
toRemove?: string;
|
|
13
|
-
toAdd?: string;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @hidden
|
|
17
|
-
*/
|
|
18
|
-
export declare function outerWidth(element: HTMLElement): number;
|
|
19
|
-
/**
|
|
20
|
-
* @hidden
|
|
21
|
-
*/
|
|
22
|
-
export declare function innerWidth(element: HTMLElement): number;
|
|
23
|
-
/**
|
|
24
|
-
* @hidden
|
|
25
|
-
*/
|
|
26
|
-
export declare function outerHeight(element: any): number;
|
|
27
|
-
/**
|
|
28
|
-
* @hidden
|
|
29
|
-
*/
|
|
30
|
-
export declare const closest: (node: any, predicate: any) => any;
|
|
31
|
-
/**
|
|
32
|
-
* @hidden
|
|
33
|
-
*/
|
|
34
|
-
export declare const isSmartBoxInput: (target: any) => boolean;
|
|
35
|
-
/**
|
|
36
|
-
* @hidden
|
|
37
|
-
*/
|
|
38
|
-
export declare const isVisible: (element: any) => boolean;
|
|
39
|
-
/**
|
|
40
|
-
* @hidden
|
|
41
|
-
*/
|
|
42
|
-
export declare const findElement: (node: any, predicate: (element: any) => boolean, matchSelf?: boolean) => any;
|
|
43
|
-
/**
|
|
44
|
-
* @hidden
|
|
45
|
-
*/
|
|
46
|
-
export declare const isFocusable: (element: any, checkVisibility?: boolean) => boolean;
|
|
47
|
-
/**
|
|
48
|
-
* @hidden
|
|
49
|
-
*/
|
|
50
|
-
export declare const findFocusable: (element: any, checkVisibility?: boolean) => any;
|
|
51
|
-
/**
|
|
52
|
-
* @hidden
|
|
53
|
-
*/
|
|
54
|
-
export declare const findFocusableChild: (element: any, checkVisibility?: boolean) => any;
|
|
55
|
-
/**
|
|
56
|
-
* @hidden
|
|
57
|
-
*/
|
|
58
|
-
export declare const findFocusableSibling: (element: any, checkVisibility?: boolean, reverse?: boolean) => any;
|
|
59
|
-
/**
|
|
60
|
-
* @hidden
|
|
61
|
-
*/
|
|
62
|
-
export declare const isPresent: Function;
|
|
63
|
-
/**
|
|
64
|
-
* @hidden
|
|
65
|
-
*/
|
|
66
|
-
export declare const makePeeker: (collection: any[]) => (index: number) => boolean;
|
|
67
|
-
/**
|
|
68
|
-
* @hidden
|
|
69
|
-
*/
|
|
70
|
-
export declare const getIndexOfFocused: (prevKeyCode: string, nextKeyCode: string, collection: HTMLElement[]) => (ev: any) => number;
|
|
71
|
-
/**
|
|
72
|
-
* @hidden
|
|
73
|
-
*/
|
|
74
|
-
export declare const seekFocusedIndex: (prevKeyCode: string, nextKeyCode: string, seeker: (i: number) => boolean) => (startIndex: number, ev: any) => number;
|
|
75
|
-
/**
|
|
76
|
-
* @hidden
|
|
77
|
-
*/
|
|
78
|
-
export declare const areEqual: (first: number) => (second: number) => boolean;
|
|
79
|
-
/**
|
|
80
|
-
* @hidden
|
|
81
|
-
*/
|
|
82
|
-
export declare const getNextKey: (rtl?: boolean) => (overflows?: boolean) => Keys.ArrowDown | Keys.ArrowLeft | Keys.ArrowRight;
|
|
83
|
-
/**
|
|
84
|
-
* @hidden
|
|
85
|
-
*/
|
|
86
|
-
export declare const getPrevKey: (rtl?: boolean) => (overflows?: boolean) => Keys.ArrowLeft | Keys.ArrowRight | Keys.ArrowUp;
|
|
87
|
-
/**
|
|
88
|
-
* @hidden
|
|
89
|
-
*/
|
|
90
|
-
export declare const getValueForLocation: (property: any, displayMode: DisplayMode, overflows: boolean) => any;
|
|
91
|
-
/**
|
|
92
|
-
* @hidden
|
|
93
|
-
*/
|
|
94
|
-
export declare const SIZES: {
|
|
95
|
-
small: string;
|
|
96
|
-
medium: string;
|
|
97
|
-
large: string;
|
|
98
|
-
};
|
|
99
|
-
/**
|
|
100
|
-
* @hidden
|
|
101
|
-
*
|
|
102
|
-
* Returns the styling classes to be added and removed
|
|
103
|
-
*/
|
|
104
|
-
export declare const getStylingClasses: (componentType: any, stylingOption: string, previousValue: any, newValue: any) => ToolbarStylingClasses;
|
|
105
|
-
/**
|
|
106
|
-
* @hidden
|
|
107
|
-
*
|
|
108
|
-
* Checks whether a Node is Text or Element node.
|
|
109
|
-
* nodeType 1 is Element, nodeType 3 is Text
|
|
110
|
-
*/
|
|
111
|
-
export declare const isElementOrTextNode: (n: Node) => boolean;
|
|
112
|
-
/**
|
|
113
|
-
* @hidden
|
|
114
|
-
*/
|
|
115
|
-
export declare const normalizeOverflowSettings: (overflow: any) => ToolbarOverflowSettings;
|