@progress/kendo-angular-listbox 11.0.0-develop.97 → 11.0.0-develop.99
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/esm2020/constants.mjs
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretDoubleAltLeftIcon, caretDoubleAltRightIcon, xIcon } from "@progress/kendo-svg-icons";
|
|
5
6
|
/**
|
|
6
7
|
* @hidden
|
|
7
8
|
*/
|
|
@@ -13,37 +14,44 @@ export const allTools = [
|
|
|
13
14
|
{
|
|
14
15
|
name: 'moveUp',
|
|
15
16
|
label: 'Move Up',
|
|
16
|
-
icon: '
|
|
17
|
+
icon: 'caret-alt-up',
|
|
18
|
+
svgIcon: caretAltUpIcon
|
|
17
19
|
},
|
|
18
20
|
{
|
|
19
21
|
name: 'moveDown',
|
|
20
22
|
label: 'Move Down',
|
|
21
|
-
icon: '
|
|
23
|
+
icon: 'caret-alt-down',
|
|
24
|
+
svgIcon: caretAltDownIcon
|
|
22
25
|
},
|
|
23
26
|
{
|
|
24
27
|
name: 'transferTo',
|
|
25
28
|
label: 'Transfer From',
|
|
26
|
-
icon: '
|
|
29
|
+
icon: 'caret-alt-left',
|
|
30
|
+
svgIcon: caretAltLeftIcon
|
|
27
31
|
},
|
|
28
32
|
{
|
|
29
33
|
name: 'transferFrom',
|
|
30
34
|
label: 'Transfer To',
|
|
31
|
-
icon: '
|
|
35
|
+
icon: 'caret-alt-right',
|
|
36
|
+
svgIcon: caretAltRightIcon
|
|
32
37
|
},
|
|
33
38
|
{
|
|
34
39
|
name: 'transferAllTo',
|
|
35
40
|
label: 'Transfer All To',
|
|
36
|
-
icon: '
|
|
41
|
+
icon: 'caret-double-alt-right',
|
|
42
|
+
svgIcon: caretDoubleAltRightIcon
|
|
37
43
|
},
|
|
38
44
|
{
|
|
39
45
|
name: 'transferAllFrom',
|
|
40
46
|
label: 'Transfer All From',
|
|
41
|
-
icon: '
|
|
47
|
+
icon: 'caret-double-alt-left',
|
|
48
|
+
svgIcon: caretDoubleAltLeftIcon
|
|
42
49
|
},
|
|
43
50
|
{
|
|
44
51
|
name: 'remove',
|
|
45
52
|
label: 'Remove',
|
|
46
|
-
icon: 'x'
|
|
53
|
+
icon: 'x',
|
|
54
|
+
svgIcon: xIcon
|
|
47
55
|
}
|
|
48
56
|
];
|
|
49
57
|
/**
|
|
@@ -157,6 +157,7 @@ ListBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
157
157
|
kendoButton
|
|
158
158
|
[size]="this.size"
|
|
159
159
|
[icon]="tool.icon"
|
|
160
|
+
[svgIcon]="tool.svgIcon"
|
|
160
161
|
(click)="performAction(tool.name)"
|
|
161
162
|
role="button"
|
|
162
163
|
></button>
|
|
@@ -199,6 +200,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
199
200
|
kendoButton
|
|
200
201
|
[size]="this.size"
|
|
201
202
|
[icon]="tool.icon"
|
|
203
|
+
[svgIcon]="tool.svgIcon"
|
|
202
204
|
(click)="performAction(tool.name)"
|
|
203
205
|
role="button"
|
|
204
206
|
></button>
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-listbox',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1673466830,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -7,6 +7,7 @@ import { EventEmitter, Injectable, Directive, Input, HostBinding, HostListener,
|
|
|
7
7
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
8
8
|
import { Subscription } from 'rxjs';
|
|
9
9
|
import { getter } from '@progress/kendo-common';
|
|
10
|
+
import { caretAltUpIcon, caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretDoubleAltRightIcon, caretDoubleAltLeftIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
10
11
|
import * as i2 from '@progress/kendo-angular-buttons';
|
|
11
12
|
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
12
13
|
import * as i3 from '@angular/common';
|
|
@@ -20,7 +21,7 @@ const packageMetadata = {
|
|
|
20
21
|
name: '@progress/kendo-angular-listbox',
|
|
21
22
|
productName: 'Kendo UI for Angular',
|
|
22
23
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
23
|
-
publishDate:
|
|
24
|
+
publishDate: 1673466830,
|
|
24
25
|
version: '',
|
|
25
26
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
26
27
|
};
|
|
@@ -94,37 +95,44 @@ const allTools = [
|
|
|
94
95
|
{
|
|
95
96
|
name: 'moveUp',
|
|
96
97
|
label: 'Move Up',
|
|
97
|
-
icon: '
|
|
98
|
+
icon: 'caret-alt-up',
|
|
99
|
+
svgIcon: caretAltUpIcon
|
|
98
100
|
},
|
|
99
101
|
{
|
|
100
102
|
name: 'moveDown',
|
|
101
103
|
label: 'Move Down',
|
|
102
|
-
icon: '
|
|
104
|
+
icon: 'caret-alt-down',
|
|
105
|
+
svgIcon: caretAltDownIcon
|
|
103
106
|
},
|
|
104
107
|
{
|
|
105
108
|
name: 'transferTo',
|
|
106
109
|
label: 'Transfer From',
|
|
107
|
-
icon: '
|
|
110
|
+
icon: 'caret-alt-left',
|
|
111
|
+
svgIcon: caretAltLeftIcon
|
|
108
112
|
},
|
|
109
113
|
{
|
|
110
114
|
name: 'transferFrom',
|
|
111
115
|
label: 'Transfer To',
|
|
112
|
-
icon: '
|
|
116
|
+
icon: 'caret-alt-right',
|
|
117
|
+
svgIcon: caretAltRightIcon
|
|
113
118
|
},
|
|
114
119
|
{
|
|
115
120
|
name: 'transferAllTo',
|
|
116
121
|
label: 'Transfer All To',
|
|
117
|
-
icon: '
|
|
122
|
+
icon: 'caret-double-alt-right',
|
|
123
|
+
svgIcon: caretDoubleAltRightIcon
|
|
118
124
|
},
|
|
119
125
|
{
|
|
120
126
|
name: 'transferAllFrom',
|
|
121
127
|
label: 'Transfer All From',
|
|
122
|
-
icon: '
|
|
128
|
+
icon: 'caret-double-alt-left',
|
|
129
|
+
svgIcon: caretDoubleAltLeftIcon
|
|
123
130
|
},
|
|
124
131
|
{
|
|
125
132
|
name: 'remove',
|
|
126
133
|
label: 'Remove',
|
|
127
|
-
icon: 'x'
|
|
134
|
+
icon: 'x',
|
|
135
|
+
svgIcon: xIcon
|
|
128
136
|
}
|
|
129
137
|
];
|
|
130
138
|
/**
|
|
@@ -352,6 +360,7 @@ ListBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
352
360
|
kendoButton
|
|
353
361
|
[size]="this.size"
|
|
354
362
|
[icon]="tool.icon"
|
|
363
|
+
[svgIcon]="tool.svgIcon"
|
|
355
364
|
(click)="performAction(tool.name)"
|
|
356
365
|
role="button"
|
|
357
366
|
></button>
|
|
@@ -394,6 +403,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
394
403
|
kendoButton
|
|
395
404
|
[size]="this.size"
|
|
396
405
|
[icon]="tool.icon"
|
|
406
|
+
[svgIcon]="tool.svgIcon"
|
|
397
407
|
(click)="performAction(tool.name)"
|
|
398
408
|
role="button"
|
|
399
409
|
></button>
|
|
@@ -7,6 +7,7 @@ import { EventEmitter, Injectable, Directive, Input, HostBinding, HostListener,
|
|
|
7
7
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
8
8
|
import { Subscription } from 'rxjs';
|
|
9
9
|
import { getter } from '@progress/kendo-common';
|
|
10
|
+
import { caretAltUpIcon, caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretDoubleAltRightIcon, caretDoubleAltLeftIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
10
11
|
import * as i2 from '@progress/kendo-angular-buttons';
|
|
11
12
|
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
12
13
|
import * as i3 from '@angular/common';
|
|
@@ -20,7 +21,7 @@ const packageMetadata = {
|
|
|
20
21
|
name: '@progress/kendo-angular-listbox',
|
|
21
22
|
productName: 'Kendo UI for Angular',
|
|
22
23
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
23
|
-
publishDate:
|
|
24
|
+
publishDate: 1673466830,
|
|
24
25
|
version: '',
|
|
25
26
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
26
27
|
};
|
|
@@ -94,37 +95,44 @@ const allTools = [
|
|
|
94
95
|
{
|
|
95
96
|
name: 'moveUp',
|
|
96
97
|
label: 'Move Up',
|
|
97
|
-
icon: '
|
|
98
|
+
icon: 'caret-alt-up',
|
|
99
|
+
svgIcon: caretAltUpIcon
|
|
98
100
|
},
|
|
99
101
|
{
|
|
100
102
|
name: 'moveDown',
|
|
101
103
|
label: 'Move Down',
|
|
102
|
-
icon: '
|
|
104
|
+
icon: 'caret-alt-down',
|
|
105
|
+
svgIcon: caretAltDownIcon
|
|
103
106
|
},
|
|
104
107
|
{
|
|
105
108
|
name: 'transferTo',
|
|
106
109
|
label: 'Transfer From',
|
|
107
|
-
icon: '
|
|
110
|
+
icon: 'caret-alt-left',
|
|
111
|
+
svgIcon: caretAltLeftIcon
|
|
108
112
|
},
|
|
109
113
|
{
|
|
110
114
|
name: 'transferFrom',
|
|
111
115
|
label: 'Transfer To',
|
|
112
|
-
icon: '
|
|
116
|
+
icon: 'caret-alt-right',
|
|
117
|
+
svgIcon: caretAltRightIcon
|
|
113
118
|
},
|
|
114
119
|
{
|
|
115
120
|
name: 'transferAllTo',
|
|
116
121
|
label: 'Transfer All To',
|
|
117
|
-
icon: '
|
|
122
|
+
icon: 'caret-double-alt-right',
|
|
123
|
+
svgIcon: caretDoubleAltRightIcon
|
|
118
124
|
},
|
|
119
125
|
{
|
|
120
126
|
name: 'transferAllFrom',
|
|
121
127
|
label: 'Transfer All From',
|
|
122
|
-
icon: '
|
|
128
|
+
icon: 'caret-double-alt-left',
|
|
129
|
+
svgIcon: caretDoubleAltLeftIcon
|
|
123
130
|
},
|
|
124
131
|
{
|
|
125
132
|
name: 'remove',
|
|
126
133
|
label: 'Remove',
|
|
127
|
-
icon: 'x'
|
|
134
|
+
icon: 'x',
|
|
135
|
+
svgIcon: xIcon
|
|
128
136
|
}
|
|
129
137
|
];
|
|
130
138
|
/**
|
|
@@ -352,6 +360,7 @@ ListBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
352
360
|
kendoButton
|
|
353
361
|
[size]="this.size"
|
|
354
362
|
[icon]="tool.icon"
|
|
363
|
+
[svgIcon]="tool.svgIcon"
|
|
355
364
|
(click)="performAction(tool.name)"
|
|
356
365
|
role="button"
|
|
357
366
|
></button>
|
|
@@ -394,6 +403,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
394
403
|
kendoButton
|
|
395
404
|
[size]="this.size"
|
|
396
405
|
[icon]="tool.icon"
|
|
406
|
+
[svgIcon]="tool.svgIcon"
|
|
397
407
|
(click)="performAction(tool.name)"
|
|
398
408
|
role="button"
|
|
399
409
|
></button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-listbox",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.99",
|
|
4
4
|
"description": "Kendo UI for Angular ListBox",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"@angular/platform-browser": "13 - 15",
|
|
25
25
|
"@progress/kendo-common": "^0.2.2",
|
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
|
27
|
-
"@progress/kendo-angular-buttons": "11.0.0-develop.
|
|
28
|
-
"@progress/kendo-angular-common": "11.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-popup": "11.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-schematics": "11.0.0-develop.
|
|
27
|
+
"@progress/kendo-angular-buttons": "11.0.0-develop.99",
|
|
28
|
+
"@progress/kendo-angular-common": "11.0.0-develop.99",
|
|
29
|
+
"@progress/kendo-angular-popup": "11.0.0-develop.99",
|
|
30
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.99",
|
|
31
31
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
package/toolbar.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { SVGIcon } from "@progress/kendo-svg-icons";
|
|
5
6
|
/**
|
|
6
7
|
* Represents the possible toolbar buttons that the ListBox can display.
|
|
7
8
|
*/
|
|
@@ -39,4 +40,5 @@ export interface Tool {
|
|
|
39
40
|
name: ActionName;
|
|
40
41
|
label: string;
|
|
41
42
|
icon: string;
|
|
43
|
+
svgIcon: SVGIcon;
|
|
42
44
|
}
|