@progress/kendo-angular-buttons 23.3.0-develop.10 → 23.3.0-develop.11
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.
|
@@ -6,7 +6,7 @@ import { SimpleChanges, ElementRef, EventEmitter, Renderer2, OnDestroy, NgZone,
|
|
|
6
6
|
import { KendoButtonService } from './button.service';
|
|
7
7
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '../common/models';
|
|
9
|
+
import { ButtonFillMode, ButtonIconPosition, ButtonRounded, ButtonSize, ButtonThemeColor } from '../common/models';
|
|
10
10
|
import { ArrowIconSettings } from '../common/models/arrow-settings';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
@@ -64,6 +64,12 @@ export declare class ButtonComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
64
64
|
* The URL can be relative or absolute. If relative, it is evaluated with relation to the web page URL.
|
|
65
65
|
*/
|
|
66
66
|
imageUrl: string;
|
|
67
|
+
/**
|
|
68
|
+
* Sets the icon position relative to the button text.
|
|
69
|
+
* @hidden
|
|
70
|
+
* @default 'start'
|
|
71
|
+
*/
|
|
72
|
+
iconPosition: ButtonIconPosition;
|
|
67
73
|
/**
|
|
68
74
|
* Defines a CSS class, or multiple classes separated by spaces applied to a `span` element inside the Button. Use the `iconClass` to add custom icons.
|
|
69
75
|
*/
|
|
@@ -200,5 +206,5 @@ export declare class ButtonComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
200
206
|
private handleClasses;
|
|
201
207
|
private handleThemeColor;
|
|
202
208
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, [null, null, { optional: true; }, null, null]>;
|
|
203
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[kendoButton]", ["kendoButton"], { "arrowIcon": { "alias": "arrowIcon"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "togglable": { "alias": "togglable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "primary": { "alias": "primary"; "required": false; }; "look": { "alias": "look"; "required": false; }; }, { "selectedChange": "selectedChange"; "click": "click"; }, never, ["*"], true, never>;
|
|
209
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[kendoButton]", ["kendoButton"], { "arrowIcon": { "alias": "arrowIcon"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "togglable": { "alias": "togglable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "primary": { "alias": "primary"; "required": false; }; "look": { "alias": "look"; "required": false; }; }, { "selectedChange": "selectedChange"; "click": "click"; }, never, ["*"], true, never>;
|
|
204
210
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
/**
|
|
6
|
+
* Defines the position of the icon relative to the button text.
|
|
7
|
+
*
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
export type ButtonIconPosition = 'start' | 'end';
|
package/common/models.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as i1 from '@progress/kendo-angular-l10n';
|
|
|
13
13
|
import { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
15
15
|
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
16
|
-
import { NgClass,
|
|
16
|
+
import { NgClass, NgTemplateOutlet, NgStyle } from '@angular/common';
|
|
17
17
|
import { filter, tap, take } from 'rxjs/operators';
|
|
18
18
|
import * as i3 from '@progress/kendo-angular-popup';
|
|
19
19
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
|
52
|
-
publishDate:
|
|
53
|
-
version: '23.3.0-develop.
|
|
52
|
+
publishDate: 1774361676,
|
|
53
|
+
version: '23.3.0-develop.11',
|
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
55
55
|
};
|
|
56
56
|
|
|
@@ -239,6 +239,12 @@ class ButtonComponent {
|
|
|
239
239
|
* The URL can be relative or absolute. If relative, it is evaluated with relation to the web page URL.
|
|
240
240
|
*/
|
|
241
241
|
imageUrl;
|
|
242
|
+
/**
|
|
243
|
+
* Sets the icon position relative to the button text.
|
|
244
|
+
* @hidden
|
|
245
|
+
* @default 'start'
|
|
246
|
+
*/
|
|
247
|
+
iconPosition = 'start';
|
|
242
248
|
/**
|
|
243
249
|
* Defines a CSS class, or multiple classes separated by spaces applied to a `span` element inside the Button. Use the `iconClass` to add custom icons.
|
|
244
250
|
*/
|
|
@@ -547,40 +553,52 @@ class ButtonComponent {
|
|
|
547
553
|
}
|
|
548
554
|
}
|
|
549
555
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: KendoButtonService, optional: true }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
550
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ButtonComponent, isStandalone: true, selector: "button[kendoButton]", inputs: { arrowIcon: "arrowIcon", toggleable: "toggleable", togglable: "togglable", selected: "selected", tabIndex: "tabIndex", imageUrl: "imageUrl", iconClass: "iconClass", icon: "icon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", svgIcon: "svgIcon", primary: "primary", look: "look" }, outputs: { selectedChange: "selectedChange", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-button": "this.classButton", "class.k-toggle-button": "this.isToggleable", "class.k-icon-button": "this.iconButtonClass", "class.k-disabled": "this.classDisabled", "class.k-selected": "this.classActive", "attr.dir": "this.getDirection" } }, providers: [
|
|
556
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: ButtonComponent, isStandalone: true, selector: "button[kendoButton]", inputs: { arrowIcon: "arrowIcon", toggleable: "toggleable", togglable: "togglable", selected: "selected", tabIndex: "tabIndex", imageUrl: "imageUrl", iconPosition: "iconPosition", iconClass: "iconClass", icon: "icon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", svgIcon: "svgIcon", primary: "primary", look: "look" }, outputs: { selectedChange: "selectedChange", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-button": "this.classButton", "class.k-toggle-button": "this.isToggleable", "class.k-icon-button": "this.iconButtonClass", "class.k-disabled": "this.classDisabled", "class.k-selected": "this.classActive", "attr.dir": "this.getDirection" } }, providers: [
|
|
551
557
|
LocalizationService,
|
|
552
558
|
{
|
|
553
559
|
provide: L10N_PREFIX,
|
|
554
560
|
useValue: 'kendo.button'
|
|
555
561
|
}
|
|
556
562
|
], exportAs: ["kendoButton"], usesOnChanges: true, ngImport: i0, template: `
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
563
|
+
<ng-template #iconTemplate>
|
|
564
|
+
@if (icon || svgIcon) {
|
|
565
|
+
<kendo-icon-wrapper
|
|
566
|
+
innerCssClass="k-button-icon"
|
|
567
|
+
[name]="icon"
|
|
568
|
+
[svgIcon]="svgIcon">
|
|
569
|
+
</kendo-icon-wrapper>
|
|
570
|
+
}
|
|
571
|
+
@if (imageUrl) {
|
|
572
|
+
<span class="k-button-icon k-icon">
|
|
573
|
+
<img [src]="imageUrl" class="k-image" role="presentation" />
|
|
574
|
+
</span>
|
|
575
|
+
}
|
|
576
|
+
@if (iconClass) {
|
|
577
|
+
<span class="k-button-icon" [ngClass]="iconClass"></span>
|
|
578
|
+
}
|
|
579
|
+
</ng-template>
|
|
580
|
+
@if (iconPosition === 'start') {
|
|
581
|
+
<ng-container *ngTemplateOutlet="iconTemplate"></ng-container>
|
|
567
582
|
}
|
|
568
|
-
|
|
569
|
-
|
|
583
|
+
<span class="k-button-text">
|
|
584
|
+
<ng-content></ng-content>
|
|
585
|
+
</span>
|
|
586
|
+
@if (iconPosition === 'end') {
|
|
587
|
+
<ng-container *ngTemplateOutlet="iconTemplate"></ng-container>
|
|
570
588
|
}
|
|
571
|
-
<span class="k-button-text"><ng-content></ng-content></span>
|
|
572
589
|
@if ($any(arrowIcon).iconClass) {
|
|
573
|
-
|
|
590
|
+
<span class="k-button-icon" [ngClass]="$any(arrowIcon).iconClass"></span>
|
|
574
591
|
}
|
|
575
592
|
@if (arrowIcon && !$any(arrowIcon).iconClass) {
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
593
|
+
<span class="k-button-arrow">
|
|
594
|
+
<kendo-icon-wrapper
|
|
595
|
+
[name]="$any(arrowIcon).icon || 'caret-alt-down'"
|
|
596
|
+
[svgIcon]="$any(arrowIcon).svgIcon || caretAltDownIcon">
|
|
597
|
+
</kendo-icon-wrapper>
|
|
598
|
+
</span>
|
|
581
599
|
}
|
|
582
600
|
|
|
583
|
-
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
601
|
+
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
584
602
|
}
|
|
585
603
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
586
604
|
type: Component,
|
|
@@ -595,35 +613,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
595
613
|
],
|
|
596
614
|
selector: 'button[kendoButton]',
|
|
597
615
|
template: `
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
616
|
+
<ng-template #iconTemplate>
|
|
617
|
+
@if (icon || svgIcon) {
|
|
618
|
+
<kendo-icon-wrapper
|
|
619
|
+
innerCssClass="k-button-icon"
|
|
620
|
+
[name]="icon"
|
|
621
|
+
[svgIcon]="svgIcon">
|
|
622
|
+
</kendo-icon-wrapper>
|
|
623
|
+
}
|
|
624
|
+
@if (imageUrl) {
|
|
625
|
+
<span class="k-button-icon k-icon">
|
|
626
|
+
<img [src]="imageUrl" class="k-image" role="presentation" />
|
|
627
|
+
</span>
|
|
628
|
+
}
|
|
629
|
+
@if (iconClass) {
|
|
630
|
+
<span class="k-button-icon" [ngClass]="iconClass"></span>
|
|
631
|
+
}
|
|
632
|
+
</ng-template>
|
|
633
|
+
@if (iconPosition === 'start') {
|
|
634
|
+
<ng-container *ngTemplateOutlet="iconTemplate"></ng-container>
|
|
608
635
|
}
|
|
609
|
-
|
|
610
|
-
|
|
636
|
+
<span class="k-button-text">
|
|
637
|
+
<ng-content></ng-content>
|
|
638
|
+
</span>
|
|
639
|
+
@if (iconPosition === 'end') {
|
|
640
|
+
<ng-container *ngTemplateOutlet="iconTemplate"></ng-container>
|
|
611
641
|
}
|
|
612
|
-
<span class="k-button-text"><ng-content></ng-content></span>
|
|
613
642
|
@if ($any(arrowIcon).iconClass) {
|
|
614
|
-
|
|
643
|
+
<span class="k-button-icon" [ngClass]="$any(arrowIcon).iconClass"></span>
|
|
615
644
|
}
|
|
616
645
|
@if (arrowIcon && !$any(arrowIcon).iconClass) {
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
646
|
+
<span class="k-button-arrow">
|
|
647
|
+
<kendo-icon-wrapper
|
|
648
|
+
[name]="$any(arrowIcon).icon || 'caret-alt-down'"
|
|
649
|
+
[svgIcon]="$any(arrowIcon).svgIcon || caretAltDownIcon">
|
|
650
|
+
</kendo-icon-wrapper>
|
|
651
|
+
</span>
|
|
622
652
|
}
|
|
623
653
|
|
|
624
654
|
`,
|
|
625
655
|
standalone: true,
|
|
626
|
-
imports: [IconWrapperComponent, NgClass]
|
|
656
|
+
imports: [IconWrapperComponent, NgClass, NgTemplateOutlet]
|
|
627
657
|
}]
|
|
628
658
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: KendoButtonService, decorators: [{
|
|
629
659
|
type: Optional
|
|
@@ -639,6 +669,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
639
669
|
type: Input
|
|
640
670
|
}], imageUrl: [{
|
|
641
671
|
type: Input
|
|
672
|
+
}], iconPosition: [{
|
|
673
|
+
type: Input
|
|
642
674
|
}], iconClass: [{
|
|
643
675
|
type: Input
|
|
644
676
|
}], icon: [{
|
|
@@ -3142,7 +3174,7 @@ class DropDownButtonComponent extends ListButton {
|
|
|
3142
3174
|
</kendo-button-list>
|
|
3143
3175
|
</ng-template>
|
|
3144
3176
|
<ng-container #container></ng-container>
|
|
3145
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }] });
|
|
3177
|
+
`, 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", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }] });
|
|
3146
3178
|
}
|
|
3147
3179
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DropDownButtonComponent, decorators: [{
|
|
3148
3180
|
type: Component,
|
|
@@ -5209,7 +5241,7 @@ class SplitButtonComponent extends ListButton {
|
|
|
5209
5241
|
</kendo-button-list>
|
|
5210
5242
|
</ng-template>
|
|
5211
5243
|
<ng-container #container></ng-container>
|
|
5212
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedSplitButtonMessagesDirective, selector: "[kendoSplitButtonLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }] });
|
|
5244
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedSplitButtonMessagesDirective, selector: "[kendoSplitButtonLocalizedMessages]" }, { 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: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }] });
|
|
5213
5245
|
}
|
|
5214
5246
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SplitButtonComponent, decorators: [{
|
|
5215
5247
|
type: Component,
|
package/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export { SpeechToTextButtonModule } from './speechtotextbutton/speechtotextbutto
|
|
|
47
47
|
export { SmartPasteButtonComponent } from './smartpastebutton/smartpastebutton.component';
|
|
48
48
|
export { SmartPasteButtonModule } from './smartpastebutton/smartpastebutton.module';
|
|
49
49
|
export { SmartPasteFormField, SmartPasteType, SmartPasteAIRequestData, SmartPasteAIResponse, SmartPasteAIRequestOptions, SmartPasteRequestStartEvent, SmartPasteRequestEndEvent } from './smartpastebutton/models';
|
|
50
|
-
export { ButtonSize, ChipSize, ButtonRounded, ChipRounded, ButtonFillMode, ChipFillMode, ButtonThemeColor, ChipThemeColor, ArrowIconSettings } from './common/models';
|
|
50
|
+
export { ButtonSize, ChipSize, ButtonRounded, ChipRounded, ButtonFillMode, ChipFillMode, ButtonThemeColor, ChipThemeColor, ArrowIconSettings, ButtonIconPosition } from './common/models';
|
|
51
51
|
export { FocusableDirective } from './focusable/focusable.directive';
|
|
52
52
|
export { PreventableEvent } from './preventable-event';
|
|
53
53
|
export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.3.0-develop.
|
|
10
|
+
"publishDate": 1774361676,
|
|
11
|
+
"version": "23.3.0-develop.11",
|
|
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-buttons",
|
|
3
|
-
"version": "23.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.11",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"package": {
|
|
22
22
|
"productName": "Kendo UI for Angular",
|
|
23
23
|
"productCode": "KENDOUIANGULAR",
|
|
24
|
-
"publishDate":
|
|
24
|
+
"publishDate": 1774361676,
|
|
25
25
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"@angular/core": "19 - 21",
|
|
32
32
|
"@angular/platform-browser": "19 - 21",
|
|
33
33
|
"@progress/kendo-licensing": "^1.10.0",
|
|
34
|
-
"@progress/kendo-angular-common": "23.3.0-develop.
|
|
35
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
36
|
-
"@progress/kendo-angular-popup": "23.3.0-develop.
|
|
37
|
-
"@progress/kendo-angular-icons": "23.3.0-develop.
|
|
34
|
+
"@progress/kendo-angular-common": "23.3.0-develop.11",
|
|
35
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.11",
|
|
36
|
+
"@progress/kendo-angular-popup": "23.3.0-develop.11",
|
|
37
|
+
"@progress/kendo-angular-icons": "23.3.0-develop.11",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "23.3.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.11",
|
|
43
43
|
"@progress/kendo-common": "^1.0.1",
|
|
44
44
|
"@progress/kendo-webspeech-common": "1.0.1",
|
|
45
45
|
"@progress/kendo-smartpaste-common": "1.0.0"
|