@progress/kendo-angular-toolbar 24.0.0-develop.3 → 24.0.0-develop.31
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/NOTICE.txt +2599 -172
- package/fesm2022/progress-kendo-angular-toolbar.mjs +47 -27
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
- package/scrollable-button.component.d.ts +2 -2
- package/toolbar.component.d.ts +9 -0
|
@@ -6,13 +6,13 @@ import * as i0 from '@angular/core';
|
|
|
6
6
|
import { EventEmitter, Injectable, inject, ElementRef, Input, ViewChild, Directive, Output, forwardRef, HostBinding, Component, ViewContainerRef, HostListener, ContentChildren, isDevMode, ViewChildren, NgModule } from '@angular/core';
|
|
7
7
|
import * as i2 from '@progress/kendo-angular-popup';
|
|
8
8
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
9
|
-
import { normalizeKeys, Keys, isPresent as isPresent$1, isDocumentAvailable, guid, parseCSSClassNames, ResizeSensorComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
|
+
import { normalizeKeys, Keys, isPresent as isPresent$1, isDocumentAvailable, getLicenseMessage, shouldShowValidationUI, guid, parseCSSClassNames, ResizeSensorComponent, WatermarkOverlayComponent, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
10
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
12
12
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
13
13
|
import { take, filter, takeUntil } from 'rxjs/operators';
|
|
14
14
|
import { Subject, Subscription, merge, fromEvent } from 'rxjs';
|
|
15
|
-
import {
|
|
15
|
+
import { chevronLeftIcon, chevronRightIcon, moreHorizontalIcon, moreVerticalIcon, chevronDownIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
import { ButtonComponent, ButtonGroupComponent, DropDownButtonComponent, SplitButtonComponent } from '@progress/kendo-angular-buttons';
|
|
17
17
|
import { NgTemplateOutlet, NgClass, NgStyle } from '@angular/common';
|
|
18
18
|
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
@@ -26,8 +26,8 @@ const packageMetadata = {
|
|
|
26
26
|
productName: 'Kendo UI for Angular',
|
|
27
27
|
productCode: 'KENDOUIANGULAR',
|
|
28
28
|
productCodes: ['KENDOUIANGULAR'],
|
|
29
|
-
publishDate:
|
|
30
|
-
version: '24.0.0-develop.
|
|
29
|
+
publishDate: 1778841641,
|
|
30
|
+
version: '24.0.0-develop.31',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -756,6 +756,10 @@ class ToolBarRendererComponent {
|
|
|
756
756
|
this.renderer.setStyle(this.internalComponentRef, 'visibility', this.tool.visibility);
|
|
757
757
|
this.renderer.setStyle(this.internalComponentRef, 'display', this.tool.toolbarDisplay);
|
|
758
758
|
}
|
|
759
|
+
else if (this.location === 'section') {
|
|
760
|
+
this.renderer.setStyle(this.internalComponentRef, 'visibility', 'visible');
|
|
761
|
+
this.renderer.setStyle(this.internalComponentRef, 'display', this.tool.overflows ? 'inline-flex' : 'none');
|
|
762
|
+
}
|
|
759
763
|
else {
|
|
760
764
|
this.renderer.setStyle(this.internalComponentRef, 'display', this.tool.overflowDisplay);
|
|
761
765
|
}
|
|
@@ -979,8 +983,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
979
983
|
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i1.LocalizationService }] });
|
|
980
984
|
|
|
981
985
|
const DIRECTION_CLASSES = {
|
|
982
|
-
left: '
|
|
983
|
-
right: '
|
|
986
|
+
left: 'chevron-left',
|
|
987
|
+
right: 'chevron-right'
|
|
984
988
|
};
|
|
985
989
|
/**
|
|
986
990
|
* @hidden
|
|
@@ -1009,8 +1013,8 @@ class ToolbarScrollableButtonComponent {
|
|
|
1009
1013
|
get svgIcon() {
|
|
1010
1014
|
return this.scrollButtonSVGIcon;
|
|
1011
1015
|
}
|
|
1012
|
-
|
|
1013
|
-
|
|
1016
|
+
chevronLeftIcon = chevronLeftIcon;
|
|
1017
|
+
chevronRightIcon = chevronRightIcon;
|
|
1014
1018
|
subs = new Subscription();
|
|
1015
1019
|
constructor(host, renderer, ngZone, localization) {
|
|
1016
1020
|
this.host = host;
|
|
@@ -1062,11 +1066,11 @@ class ToolbarScrollableButtonComponent {
|
|
|
1062
1066
|
}
|
|
1063
1067
|
get scrollButtonSVGIcon() {
|
|
1064
1068
|
const defaultPrevSVGIcon = !this.localization.rtl ?
|
|
1065
|
-
this.
|
|
1066
|
-
this.
|
|
1069
|
+
this.chevronLeftIcon :
|
|
1070
|
+
this.chevronRightIcon;
|
|
1067
1071
|
const defaultNextSVGIcon = !this.localization.rtl ?
|
|
1068
|
-
this.
|
|
1069
|
-
this.
|
|
1072
|
+
this.chevronRightIcon :
|
|
1073
|
+
this.chevronLeftIcon;
|
|
1070
1074
|
if (typeof this.overflow === 'object') {
|
|
1071
1075
|
const prevIcon = this.overflow.prevSVGButtonIcon !== undefined ? this.overflow.prevSVGButtonIcon : defaultPrevSVGIcon;
|
|
1072
1076
|
const nextIcon = this.overflow.nextSVGButtonIcon !== undefined ? this.overflow.nextSVGButtonIcon : defaultNextSVGIcon;
|
|
@@ -1362,11 +1366,11 @@ class ToolBarComponent {
|
|
|
1362
1366
|
/**
|
|
1363
1367
|
* @hidden
|
|
1364
1368
|
*/
|
|
1365
|
-
prevButtonIcon =
|
|
1369
|
+
prevButtonIcon = chevronLeftIcon;
|
|
1366
1370
|
/**
|
|
1367
1371
|
* @hidden
|
|
1368
1372
|
*/
|
|
1369
|
-
nextButtonIcon =
|
|
1373
|
+
nextButtonIcon = chevronRightIcon;
|
|
1370
1374
|
/**
|
|
1371
1375
|
* @hidden
|
|
1372
1376
|
*/
|
|
@@ -1435,6 +1439,14 @@ class ToolBarComponent {
|
|
|
1435
1439
|
get resizableClass() {
|
|
1436
1440
|
return this.resizable;
|
|
1437
1441
|
}
|
|
1442
|
+
/**
|
|
1443
|
+
* @hidden
|
|
1444
|
+
*/
|
|
1445
|
+
showLicenseWatermark = false;
|
|
1446
|
+
/**
|
|
1447
|
+
* @hidden
|
|
1448
|
+
*/
|
|
1449
|
+
licenseMessage;
|
|
1438
1450
|
constructor(localization, popupService, refreshService, navigationService,
|
|
1439
1451
|
// Needs to be public as it is being accessed in the Editor component
|
|
1440
1452
|
element, zone, renderer, _cdr, toolsService, scrollService) {
|
|
@@ -1448,7 +1460,9 @@ class ToolBarComponent {
|
|
|
1448
1460
|
this._cdr = _cdr;
|
|
1449
1461
|
this.toolsService = toolsService;
|
|
1450
1462
|
this.scrollService = scrollService;
|
|
1451
|
-
validatePackage(packageMetadata);
|
|
1463
|
+
const isValid = validatePackage(packageMetadata);
|
|
1464
|
+
this.licenseMessage = getLicenseMessage(packageMetadata);
|
|
1465
|
+
this.showLicenseWatermark = shouldShowValidationUI(isValid);
|
|
1452
1466
|
this.direction = localization.rtl ? 'rtl' : 'ltr';
|
|
1453
1467
|
this.scrollService.owner = this;
|
|
1454
1468
|
}
|
|
@@ -2230,7 +2244,7 @@ class ToolBarComponent {
|
|
|
2230
2244
|
[attr.aria-haspopup]="normalizedOverflow.mode === 'section' ? null : 'menu'"
|
|
2231
2245
|
[style.visibility]="'hidden'"
|
|
2232
2246
|
[style.position]="'relative'"
|
|
2233
|
-
class="k-toolbar-overflow-button"
|
|
2247
|
+
class="k-toolbar-overflow-button k-rounded-none"
|
|
2234
2248
|
[ngClass]="overflowClass"
|
|
2235
2249
|
(click)="showPopup()"
|
|
2236
2250
|
>
|
|
@@ -2335,7 +2349,10 @@ class ToolBarComponent {
|
|
|
2335
2349
|
@if (overflowEnabled) {
|
|
2336
2350
|
<kendo-resize-sensor #resizeSensor></kendo-resize-sensor>
|
|
2337
2351
|
}
|
|
2338
|
-
|
|
2352
|
+
@if (showLicenseWatermark) {
|
|
2353
|
+
<div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
|
|
2354
|
+
}
|
|
2355
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: LocalizedToolbarMessagesDirective, selector: "[kendoToolbarLocalizedMessages]" }, { kind: "directive", type: ToolBarRendererComponent, selector: "[kendoToolbarRenderer]", inputs: ["tool", "location", "resizable"], outputs: ["rendererClick"] }, { 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: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: ToolbarScrollableButtonComponent, selector: "[kendoToolbarScrollableButton]", inputs: ["prev", "overflow"], outputs: ["onClick"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay], kendo-watermark-overlay", inputs: ["licenseMessage"] }] });
|
|
2339
2356
|
}
|
|
2340
2357
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToolBarComponent, decorators: [{
|
|
2341
2358
|
type: Component,
|
|
@@ -2467,7 +2484,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
2467
2484
|
[attr.aria-haspopup]="normalizedOverflow.mode === 'section' ? null : 'menu'"
|
|
2468
2485
|
[style.visibility]="'hidden'"
|
|
2469
2486
|
[style.position]="'relative'"
|
|
2470
|
-
class="k-toolbar-overflow-button"
|
|
2487
|
+
class="k-toolbar-overflow-button k-rounded-none"
|
|
2471
2488
|
[ngClass]="overflowClass"
|
|
2472
2489
|
(click)="showPopup()"
|
|
2473
2490
|
>
|
|
@@ -2572,9 +2589,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
2572
2589
|
@if (overflowEnabled) {
|
|
2573
2590
|
<kendo-resize-sensor #resizeSensor></kendo-resize-sensor>
|
|
2574
2591
|
}
|
|
2592
|
+
@if (showLicenseWatermark) {
|
|
2593
|
+
<div kendoWatermarkOverlay [licenseMessage]="licenseMessage"></div>
|
|
2594
|
+
}
|
|
2575
2595
|
`,
|
|
2576
2596
|
standalone: true,
|
|
2577
|
-
imports: [NgTemplateOutlet, LocalizedToolbarMessagesDirective, ToolBarRendererComponent, ButtonComponent, NgClass, ResizeSensorComponent, ToolbarScrollableButtonComponent]
|
|
2597
|
+
imports: [NgTemplateOutlet, LocalizedToolbarMessagesDirective, ToolBarRendererComponent, ButtonComponent, NgClass, ResizeSensorComponent, ToolbarScrollableButtonComponent, WatermarkOverlayComponent]
|
|
2578
2598
|
}]
|
|
2579
2599
|
}], ctorParameters: () => [{ type: i1.LocalizationService }, { type: i2.PopupService }, { type: RefreshService }, { type: NavigationService }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: ToolbarToolsService }, { type: ScrollService }], propDecorators: { overflow: [{
|
|
2580
2600
|
type: Input
|
|
@@ -3122,7 +3142,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
3122
3142
|
</button>
|
|
3123
3143
|
}
|
|
3124
3144
|
</ng-template>
|
|
3125
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
3145
|
+
`, isInline: true, dependencies: [{ 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: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: BadgeComponent, selector: "kendo-badge", inputs: ["align", "size", "fill", "themeColor", "rounded", "position", "cutoutBorder"] }, { kind: "component", type: BadgeContainerComponent, selector: "kendo-badge-container" }] });
|
|
3126
3146
|
}
|
|
3127
3147
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToolBarButtonComponent, decorators: [{
|
|
3128
3148
|
type: Component,
|
|
@@ -3564,7 +3584,7 @@ class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
3564
3584
|
[size]="size"
|
|
3565
3585
|
[togglable]="button.togglable"
|
|
3566
3586
|
[selected]="button.selected"
|
|
3567
|
-
[attr.aria-pressed]="button.selected ? true : false"
|
|
3587
|
+
[attr.aria-pressed]="button.togglable ? (button.selected ? true : false) : null"
|
|
3568
3588
|
[fillMode]="button.fillMode"
|
|
3569
3589
|
[themeColor]="button.themeColor"
|
|
3570
3590
|
[icon]="button.toolbarOptions.icon"
|
|
@@ -3632,7 +3652,7 @@ class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
3632
3652
|
[size]="size"
|
|
3633
3653
|
[togglable]="button.togglable"
|
|
3634
3654
|
[selected]="button.selected"
|
|
3635
|
-
[attr.aria-pressed]="button.selected ? true : false"
|
|
3655
|
+
[attr.aria-pressed]="button.togglable ? (button.selected ? true : false) : null"
|
|
3636
3656
|
[fillMode]="button.fillMode"
|
|
3637
3657
|
[themeColor]="button.themeColor"
|
|
3638
3658
|
[icon]="button.toolbarOptions.icon"
|
|
@@ -3648,7 +3668,7 @@ class ToolBarButtonGroupComponent extends ToolBarToolComponent {
|
|
|
3648
3668
|
}
|
|
3649
3669
|
</kendo-buttongroup>
|
|
3650
3670
|
</ng-template>
|
|
3651
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
3671
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { 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: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
3652
3672
|
}
|
|
3653
3673
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToolBarButtonGroupComponent, decorators: [{
|
|
3654
3674
|
type: Component,
|
|
@@ -3680,7 +3700,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
3680
3700
|
[size]="size"
|
|
3681
3701
|
[togglable]="button.togglable"
|
|
3682
3702
|
[selected]="button.selected"
|
|
3683
|
-
[attr.aria-pressed]="button.selected ? true : false"
|
|
3703
|
+
[attr.aria-pressed]="button.togglable ? (button.selected ? true : false) : null"
|
|
3684
3704
|
[fillMode]="button.fillMode"
|
|
3685
3705
|
[themeColor]="button.themeColor"
|
|
3686
3706
|
[icon]="button.toolbarOptions.icon"
|
|
@@ -3748,7 +3768,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
3748
3768
|
[size]="size"
|
|
3749
3769
|
[togglable]="button.togglable"
|
|
3750
3770
|
[selected]="button.selected"
|
|
3751
|
-
[attr.aria-pressed]="button.selected ? true : false"
|
|
3771
|
+
[attr.aria-pressed]="button.togglable ? (button.selected ? true : false) : null"
|
|
3752
3772
|
[fillMode]="button.fillMode"
|
|
3753
3773
|
[themeColor]="button.themeColor"
|
|
3754
3774
|
[icon]="button.toolbarOptions.icon"
|
|
@@ -4509,11 +4529,11 @@ class ToolBarSplitButtonComponent extends ToolBarToolComponent {
|
|
|
4509
4529
|
/**
|
|
4510
4530
|
* Sets the name of the [font icon](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) for the arrow button.
|
|
4511
4531
|
*/
|
|
4512
|
-
arrowButtonIcon = '
|
|
4532
|
+
arrowButtonIcon = 'chevron-down';
|
|
4513
4533
|
/**
|
|
4514
4534
|
* Sets the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) for the arrow button.
|
|
4515
4535
|
*/
|
|
4516
|
-
arrowButtonSvgIcon =
|
|
4536
|
+
arrowButtonSvgIcon = chevronDownIcon;
|
|
4517
4537
|
/**
|
|
4518
4538
|
* Sets the text field for the button-list popup.
|
|
4519
4539
|
* @default 'text'
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778841641,
|
|
11
|
+
"version": "24.0.0-develop.31",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-toolbar",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.31",
|
|
4
4
|
"description": "Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"package": {
|
|
44
44
|
"productName": "Kendo UI for Angular",
|
|
45
45
|
"productCode": "KENDOUIANGULAR",
|
|
46
|
-
"publishDate":
|
|
46
|
+
"publishDate": 1778841641,
|
|
47
47
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"@angular/core": "19 - 21",
|
|
54
54
|
"@angular/platform-browser": "19 - 21",
|
|
55
55
|
"@progress/kendo-licensing": "^1.11.0",
|
|
56
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
57
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
58
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
59
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
60
|
-
"@progress/kendo-angular-indicators": "24.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
56
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.31",
|
|
57
|
+
"@progress/kendo-angular-common": "24.0.0-develop.31",
|
|
58
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.31",
|
|
59
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.31",
|
|
60
|
+
"@progress/kendo-angular-indicators": "24.0.0-develop.31",
|
|
61
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.31",
|
|
62
62
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"tslib": "^2.3.1",
|
|
66
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
66
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.31"
|
|
67
67
|
},
|
|
68
68
|
"schematics": "./schematics/collection.json",
|
|
69
69
|
"module": "fesm2022/progress-kendo-angular-toolbar.mjs",
|
|
@@ -25,8 +25,8 @@ export declare class ToolbarScrollableButtonComponent implements AfterViewInit,
|
|
|
25
25
|
get iconClass(): string;
|
|
26
26
|
get customIconClass(): string;
|
|
27
27
|
get svgIcon(): SVGIcon;
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
chevronLeftIcon: SVGIcon;
|
|
29
|
+
chevronRightIcon: SVGIcon;
|
|
30
30
|
private subs;
|
|
31
31
|
constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService);
|
|
32
32
|
ngAfterViewInit(): void;
|
package/toolbar.component.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { TemplateRef, ElementRef, QueryList, EventEmitter, ViewContainerRef, NgZ
|
|
|
6
6
|
import { PopupService, PopupRef } from '@progress/kendo-angular-popup';
|
|
7
7
|
import { ResizeSensorComponent } from '@progress/kendo-angular-common';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
+
import { LicenseMessage } from '@progress/kendo-licensing';
|
|
9
10
|
import { RefreshService } from './refresh.service';
|
|
10
11
|
import { NavigationService } from './navigation.service';
|
|
11
12
|
import { PopupSettings } from './popup-settings';
|
|
@@ -216,6 +217,14 @@ export declare class ToolBarComponent {
|
|
|
216
217
|
role: string;
|
|
217
218
|
get getDir(): string;
|
|
218
219
|
get resizableClass(): boolean;
|
|
220
|
+
/**
|
|
221
|
+
* @hidden
|
|
222
|
+
*/
|
|
223
|
+
showLicenseWatermark: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* @hidden
|
|
226
|
+
*/
|
|
227
|
+
licenseMessage?: LicenseMessage;
|
|
219
228
|
constructor(localization: LocalizationService, popupService: PopupService, refreshService: RefreshService, navigationService: NavigationService, element: ElementRef, zone: NgZone, renderer: Renderer2, _cdr: ChangeDetectorRef, toolsService: ToolbarToolsService, scrollService: ScrollService);
|
|
220
229
|
ngAfterContentInit(): void;
|
|
221
230
|
ngAfterViewInit(): void;
|