@progress/kendo-angular-listbox 24.2.2 → 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-listbox.mjs +36 -36
- package/index.d.ts +580 -14
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +4 -4
- package/constants.d.ts +0 -25
- package/data-binding.directive.d.ts +0 -58
- package/directives.d.ts +0 -14
- package/item-selectable.directive.d.ts +0 -18
- package/item-template.directive.d.ts +0 -33
- package/keyboard-navigation.service.d.ts +0 -58
- package/listbox.component.d.ts +0 -242
- package/listbox.module.d.ts +0 -19
- package/localization/custom-messages.component.d.ts +0 -32
- package/localization/localized-messages.directive.d.ts +0 -16
- package/localization/messages.d.ts +0 -45
- package/no-data-template.directive.d.ts +0 -27
- package/package-metadata.d.ts +0 -9
- package/selection-mode.d.ts +0 -12
- package/selection.service.d.ts +0 -45
- package/size.d.ts +0 -9
- package/toolbar.d.ts +0 -36
- package/util.d.ts +0 -35
package/toolbar.d.ts
DELETED
|
@@ -1,36 +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 { SVGIcon } from "@progress/kendo-svg-icons";
|
|
6
|
-
/**
|
|
7
|
-
* Defines the possible toolbar buttons that the ListBox can display.
|
|
8
|
-
*/
|
|
9
|
-
export type ActionName = 'moveUp' | 'moveDown' | 'transferTo' | 'transferFrom' | 'transferAllTo' | 'transferAllFrom' | 'remove';
|
|
10
|
-
/**
|
|
11
|
-
* Defines the possible values for customizing the toolbar position of the ListBox component.
|
|
12
|
-
*/
|
|
13
|
-
export type ListBoxToolbarPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
14
|
-
/**
|
|
15
|
-
* Defines the possible tool and position settings that the ListBox can accept for its built-in toolbar.
|
|
16
|
-
*/
|
|
17
|
-
export interface ListBoxToolbarConfig {
|
|
18
|
-
/**
|
|
19
|
-
* Specifies the set of tools to display in the toolbar.
|
|
20
|
-
* When you omit this setting, all tools are included.
|
|
21
|
-
*/
|
|
22
|
-
tools?: ActionName[];
|
|
23
|
-
/**
|
|
24
|
-
* Specifies the position of the toolbar.
|
|
25
|
-
*/
|
|
26
|
-
position?: ListBoxToolbarPosition;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* @hidden
|
|
30
|
-
*/
|
|
31
|
-
export interface Tool {
|
|
32
|
-
name: ActionName;
|
|
33
|
-
label: string;
|
|
34
|
-
icon: string;
|
|
35
|
-
svgIcon: SVGIcon;
|
|
36
|
-
}
|
package/util.d.ts
DELETED
|
@@ -1,35 +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 { ActionName } from './toolbar';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export declare const isPresent: Function;
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
export declare const isObject: Function;
|
|
14
|
-
/**
|
|
15
|
-
* @hidden
|
|
16
|
-
*/
|
|
17
|
-
export declare const fieldAccessor: (dataItem: any, field: string) => any;
|
|
18
|
-
/**
|
|
19
|
-
* @hidden
|
|
20
|
-
*/
|
|
21
|
-
export declare const defaultItemDisabled: () => boolean;
|
|
22
|
-
/**
|
|
23
|
-
* @hidden
|
|
24
|
-
*/
|
|
25
|
-
export type StringKeyObject = {
|
|
26
|
-
[key: string]: any;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* @hidden
|
|
30
|
-
*/
|
|
31
|
-
export declare const getTools: (names: ActionName[]) => import("./toolbar").Tool[];
|
|
32
|
-
/**
|
|
33
|
-
* @hidden
|
|
34
|
-
*/
|
|
35
|
-
export type Direction = 'rtl' | 'ltr';
|