@progress/kendo-angular-listbox 24.0.0-develop.20 → 24.0.0-develop.21

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.
@@ -7,7 +7,7 @@ import { EventEmitter, Injectable, Directive, HostListener, HostBinding, Input,
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, caretAltRightIcon, caretAltLeftIcon, caretDoubleAltRightIcon, caretDoubleAltLeftIcon, xIcon } from '@progress/kendo-svg-icons';
10
+ import { chevronUpIcon, chevronDownIcon, chevronRightIcon, chevronLeftIcon, chevronDoubleRightIcon, chevronDoubleLeftIcon, xIcon } from '@progress/kendo-svg-icons';
11
11
  import { ButtonComponent } from '@progress/kendo-angular-buttons';
12
12
  import { normalizeKeys, Keys, isPresent as isPresent$1, TemplateContextDirective, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';
13
13
  import { take } from 'rxjs/operators';
@@ -24,8 +24,8 @@ const packageMetadata = {
24
24
  productName: 'Kendo UI for Angular',
25
25
  productCode: 'KENDOUIANGULAR',
26
26
  productCodes: ['KENDOUIANGULAR'],
27
- publishDate: 1778149621,
28
- version: '24.0.0-develop.20',
27
+ publishDate: 1778161179,
28
+ version: '24.0.0-develop.21',
29
29
  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'
30
30
  };
31
31
 
@@ -238,38 +238,38 @@ const allTools = [
238
238
  {
239
239
  name: 'moveUp',
240
240
  label: 'Move Up',
241
- icon: 'caret-alt-up',
242
- svgIcon: caretAltUpIcon
241
+ icon: 'chevron-up',
242
+ svgIcon: chevronUpIcon
243
243
  },
244
244
  {
245
245
  name: 'moveDown',
246
246
  label: 'Move Down',
247
- icon: 'caret-alt-down',
248
- svgIcon: caretAltDownIcon
247
+ icon: 'chevron-down',
248
+ svgIcon: chevronDownIcon
249
249
  },
250
250
  {
251
251
  name: 'transferTo',
252
252
  label: 'Transfer To',
253
- icon: 'caret-alt-right',
254
- svgIcon: caretAltRightIcon
253
+ icon: 'chevron-right',
254
+ svgIcon: chevronRightIcon
255
255
  },
256
256
  {
257
257
  name: 'transferFrom',
258
258
  label: 'Transfer From',
259
- icon: 'caret-alt-left',
260
- svgIcon: caretAltLeftIcon
259
+ icon: 'chevron-left',
260
+ svgIcon: chevronLeftIcon
261
261
  },
262
262
  {
263
263
  name: 'transferAllTo',
264
264
  label: 'Transfer All To',
265
- icon: 'caret-double-alt-right',
266
- svgIcon: caretDoubleAltRightIcon
265
+ icon: 'chevron-double-right',
266
+ svgIcon: chevronDoubleRightIcon
267
267
  },
268
268
  {
269
269
  name: 'transferAllFrom',
270
270
  label: 'Transfer All From',
271
- icon: 'caret-double-alt-left',
272
- svgIcon: caretDoubleAltLeftIcon
271
+ icon: 'chevron-double-left',
272
+ svgIcon: chevronDoubleLeftIcon
273
273
  },
274
274
  {
275
275
  name: 'remove',
@@ -1027,11 +1027,11 @@ class ListBoxComponent {
1027
1027
  /**
1028
1028
  * @hidden
1029
1029
  */
1030
- caretAltLeftIcon = caretAltLeftIcon;
1030
+ chevronLeftIcon = chevronLeftIcon;
1031
1031
  /**
1032
1032
  * @hidden
1033
1033
  */
1034
- caretAltRightIcon = caretAltRightIcon;
1034
+ chevronRightIcon = chevronRightIcon;
1035
1035
  localizationSubscription;
1036
1036
  _size;
1037
1037
  subs = new Subscription();
@@ -1155,25 +1155,31 @@ class ListBoxComponent {
1155
1155
  * @hidden
1156
1156
  */
1157
1157
  toolIcon(icon) {
1158
- return this.direction === 'ltr' ?
1159
- icon :
1160
- icon === 'caret-alt-left' ?
1161
- 'caret-alt-right' :
1162
- icon === 'caret-alt-right' ?
1163
- 'caret-alt-left' :
1164
- icon;
1158
+ if (this.direction === 'ltr') {
1159
+ return icon;
1160
+ }
1161
+ if (icon === 'chevron-left') {
1162
+ return 'chevron-right';
1163
+ }
1164
+ if (icon === 'chevron-right') {
1165
+ return 'chevron-left';
1166
+ }
1167
+ return icon;
1165
1168
  }
1166
1169
  /**
1167
1170
  * @hidden
1168
1171
  */
1169
1172
  toolSVGIcon(icon) {
1170
- return this.direction === 'ltr' ?
1171
- icon :
1172
- icon === this.caretAltLeftIcon ?
1173
- this.caretAltRightIcon :
1174
- icon === this.caretAltRightIcon ?
1175
- this.caretAltLeftIcon :
1176
- icon;
1173
+ if (this.direction === 'ltr') {
1174
+ return icon;
1175
+ }
1176
+ if (icon === this.chevronLeftIcon) {
1177
+ return this.chevronRightIcon;
1178
+ }
1179
+ if (icon === this.chevronRightIcon) {
1180
+ return this.chevronLeftIcon;
1181
+ }
1182
+ return icon;
1177
1183
  }
1178
1184
  initSubscriptions(navService, hostEl, toolsRef) {
1179
1185
  this.subs.add(navService.onShiftSelectedItem.subscribe((actionToPerform) => this.performAction(actionToPerform)));
@@ -1450,7 +1456,7 @@ class ListBoxComponent {
1450
1456
  }
1451
1457
  </div>
1452
1458
  </div>
1453
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoListBoxLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: ItemSelectableDirective, selector: "[kendoListBoxItemSelectable]", inputs: ["index"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
1459
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoListBoxLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: ItemSelectableDirective, selector: "[kendoListBoxItemSelectable]", inputs: ["index"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
1454
1460
  }
1455
1461
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ListBoxComponent, decorators: [{
1456
1462
  type: Component,
@@ -174,11 +174,11 @@ export declare class ListBoxComponent implements OnInit, AfterViewInit, OnDestro
174
174
  /**
175
175
  * @hidden
176
176
  */
177
- caretAltLeftIcon: SVGIcon;
177
+ chevronLeftIcon: SVGIcon;
178
178
  /**
179
179
  * @hidden
180
180
  */
181
- caretAltRightIcon: SVGIcon;
181
+ chevronRightIcon: SVGIcon;
182
182
  private localizationSubscription;
183
183
  private _size;
184
184
  private subs;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1778149621,
11
- "version": "24.0.0-develop.20",
10
+ "publishDate": 1778161179,
11
+ "version": "24.0.0-develop.21",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-listbox",
3
- "version": "24.0.0-develop.20",
3
+ "version": "24.0.0-develop.21",
4
4
  "description": "Kendo UI for Angular ListBox",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -41,7 +41,7 @@
41
41
  "package": {
42
42
  "productName": "Kendo UI for Angular",
43
43
  "productCode": "KENDOUIANGULAR",
44
- "publishDate": 1778149621,
44
+ "publishDate": 1778161179,
45
45
  "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"
46
46
  }
47
47
  },
@@ -51,14 +51,14 @@
51
51
  "@angular/core": "19 - 21",
52
52
  "@angular/platform-browser": "19 - 21",
53
53
  "@progress/kendo-licensing": "^1.11.0",
54
- "@progress/kendo-angular-buttons": "24.0.0-develop.20",
55
- "@progress/kendo-angular-common": "24.0.0-develop.20",
56
- "@progress/kendo-angular-popup": "24.0.0-develop.20",
54
+ "@progress/kendo-angular-buttons": "24.0.0-develop.21",
55
+ "@progress/kendo-angular-common": "24.0.0-develop.21",
56
+ "@progress/kendo-angular-popup": "24.0.0-develop.21",
57
57
  "rxjs": "^6.5.3 || ^7.0.0"
58
58
  },
59
59
  "dependencies": {
60
60
  "tslib": "^2.3.1",
61
- "@progress/kendo-angular-schematics": "24.0.0-develop.20",
61
+ "@progress/kendo-angular-schematics": "24.0.0-develop.21",
62
62
  "@progress/kendo-common": "^1.0.1"
63
63
  },
64
64
  "schematics": "./schematics/collection.json",
@@ -11,11 +11,11 @@ function default_1(options) {
11
11
  // Additional dependencies to install.
12
12
  // See https://github.com/telerik/kendo-schematics/issues/28
13
13
  peerDependencies: {
14
- '@progress/kendo-angular-buttons': '24.0.0-develop.20',
15
- '@progress/kendo-angular-common': '24.0.0-develop.20',
16
- '@progress/kendo-angular-l10n': '24.0.0-develop.20',
14
+ '@progress/kendo-angular-buttons': '24.0.0-develop.21',
15
+ '@progress/kendo-angular-common': '24.0.0-develop.21',
16
+ '@progress/kendo-angular-l10n': '24.0.0-develop.21',
17
17
  // Peer of kendo-angular-buttons
18
- '@progress/kendo-angular-popup': '24.0.0-develop.20'
18
+ '@progress/kendo-angular-popup': '24.0.0-develop.21'
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }