@progress/kendo-angular-inputs 24.0.0-develop.3 → 24.0.0-develop.30
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-inputs.mjs +77 -69
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/switch/switch.component.d.ts +2 -0
- package/textarea/textarea-prefix.component.d.ts +1 -1
- package/textarea/textarea-suffix.component.d.ts +1 -1
- package/textbox/textbox.component.d.ts +0 -1
|
@@ -13,7 +13,7 @@ export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective }
|
|
|
13
13
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
|
|
15
15
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
16
|
-
import {
|
|
16
|
+
import { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, exclamationCircleIcon, checkIcon, caretAltExpandIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon, hyperlinkOpenIcon } from '@progress/kendo-svg-icons';
|
|
17
17
|
import { NgClass, NgTemplateOutlet, NgStyle } from '@angular/common';
|
|
18
18
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
19
19
|
import * as i1$1 from '@progress/kendo-angular-intl';
|
|
@@ -583,8 +583,8 @@ const packageMetadata = {
|
|
|
583
583
|
productName: 'Kendo UI for Angular',
|
|
584
584
|
productCode: 'KENDOUIANGULAR',
|
|
585
585
|
productCodes: ['KENDOUIANGULAR'],
|
|
586
|
-
publishDate:
|
|
587
|
-
version: '24.0.0-develop.
|
|
586
|
+
publishDate: 1778748663,
|
|
587
|
+
version: '24.0.0-develop.30',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -1179,19 +1179,19 @@ class SliderComponent extends SliderBase {
|
|
|
1179
1179
|
/**
|
|
1180
1180
|
* @hidden
|
|
1181
1181
|
*/
|
|
1182
|
-
arrowUpIcon =
|
|
1182
|
+
arrowUpIcon = chevronUpIcon;
|
|
1183
1183
|
/**
|
|
1184
1184
|
* @hidden
|
|
1185
1185
|
*/
|
|
1186
|
-
arrowDownIcon =
|
|
1186
|
+
arrowDownIcon = chevronDownIcon;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* @hidden
|
|
1189
1189
|
*/
|
|
1190
|
-
arrowLeftIcon =
|
|
1190
|
+
arrowLeftIcon = chevronLeftIcon;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* @hidden
|
|
1193
1193
|
*/
|
|
1194
|
-
arrowRightIcon =
|
|
1194
|
+
arrowRightIcon = chevronRightIcon;
|
|
1195
1195
|
draghandle;
|
|
1196
1196
|
decreaseButton;
|
|
1197
1197
|
increaseButton;
|
|
@@ -1514,36 +1514,28 @@ class SliderComponent extends SliderBase {
|
|
|
1514
1514
|
}
|
|
1515
1515
|
};
|
|
1516
1516
|
get decreaseButtonArrowIcon() {
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
'caret-alt-down';
|
|
1522
|
-
return icon;
|
|
1517
|
+
if (this.vertical) {
|
|
1518
|
+
return 'chevron-down';
|
|
1519
|
+
}
|
|
1520
|
+
return this.direction === 'ltr' ? 'chevron-left' : 'chevron-right';
|
|
1523
1521
|
}
|
|
1524
1522
|
get increaseButtonArrowIcon() {
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
'caret-alt-up';
|
|
1530
|
-
return icon;
|
|
1523
|
+
if (this.vertical) {
|
|
1524
|
+
return 'chevron-up';
|
|
1525
|
+
}
|
|
1526
|
+
return this.direction === 'ltr' ? 'chevron-right' : 'chevron-left';
|
|
1531
1527
|
}
|
|
1532
1528
|
get decreaseButtonArrowSVGIcon() {
|
|
1533
|
-
|
|
1534
|
-
this.
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
this.arrowDownIcon;
|
|
1538
|
-
return icon;
|
|
1529
|
+
if (this.vertical) {
|
|
1530
|
+
return this.arrowDownIcon;
|
|
1531
|
+
}
|
|
1532
|
+
return this.direction === 'ltr' ? this.arrowLeftIcon : this.arrowRightIcon;
|
|
1539
1533
|
}
|
|
1540
1534
|
get increaseButtonArrowSVGIcon() {
|
|
1541
|
-
|
|
1542
|
-
this.
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
this.arrowUpIcon;
|
|
1546
|
-
return icon;
|
|
1535
|
+
if (this.vertical) {
|
|
1536
|
+
return this.arrowUpIcon;
|
|
1537
|
+
}
|
|
1538
|
+
return this.direction === 'ltr' ? this.arrowRightIcon : this.arrowLeftIcon;
|
|
1547
1539
|
}
|
|
1548
1540
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SliderComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1549
1541
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: SliderComponent, isStandalone: true, selector: "kendo-slider", inputs: { focusableId: "focusableId", dragHandleTitle: "dragHandleTitle", incrementTitle: "incrementTitle", animate: "animate", decrementTitle: "decrementTitle", showButtons: "showButtons", value: "value", tabIndex: "tabIndex" }, providers: [
|
|
@@ -1632,7 +1624,7 @@ class SliderComponent extends SliderBase {
|
|
|
1632
1624
|
></button>
|
|
1633
1625
|
}
|
|
1634
1626
|
<kendo-resize-sensor (resize)="sizeComponent(false)"></kendo-resize-sensor>
|
|
1635
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedSliderMessagesDirective, selector: "[kendoSliderLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
1627
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedSliderMessagesDirective, selector: "[kendoSliderLocalizedMessages]" }, { 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: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: SliderTicksComponent, selector: "[kendoSliderTicks]", inputs: ["tickTitle", "vertical", "step", "largeStep", "min", "max", "labelTemplate"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }] });
|
|
1636
1628
|
}
|
|
1637
1629
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SliderComponent, decorators: [{
|
|
1638
1630
|
type: Component,
|
|
@@ -2542,11 +2534,19 @@ class SwitchComponent {
|
|
|
2542
2534
|
/**
|
|
2543
2535
|
* @hidden
|
|
2544
2536
|
*/
|
|
2537
|
+
set focusableId(value) {
|
|
2538
|
+
this._focusableId = value;
|
|
2539
|
+
}
|
|
2545
2540
|
get focusableId() {
|
|
2546
|
-
if (this.
|
|
2547
|
-
|
|
2541
|
+
if (!this._focusableId) {
|
|
2542
|
+
if (this.hostElement.nativeElement.hasAttribute('id')) {
|
|
2543
|
+
this._focusableId = this.hostElement.nativeElement.getAttribute('id');
|
|
2544
|
+
}
|
|
2545
|
+
else {
|
|
2546
|
+
this._focusableId = `k-${guid()}`;
|
|
2547
|
+
}
|
|
2548
2548
|
}
|
|
2549
|
-
return
|
|
2549
|
+
return this._focusableId;
|
|
2550
2550
|
}
|
|
2551
2551
|
/**
|
|
2552
2552
|
* Set the **On** label.
|
|
@@ -2674,6 +2674,7 @@ class SwitchComponent {
|
|
|
2674
2674
|
control;
|
|
2675
2675
|
domSubscriptions = [];
|
|
2676
2676
|
_checked = false;
|
|
2677
|
+
_focusableId;
|
|
2677
2678
|
_size;
|
|
2678
2679
|
_trackRounded;
|
|
2679
2680
|
_thumbRounded;
|
|
@@ -4069,11 +4070,11 @@ class NumericTextBoxComponent {
|
|
|
4069
4070
|
/**
|
|
4070
4071
|
* @hidden
|
|
4071
4072
|
*/
|
|
4072
|
-
arrowUpIcon =
|
|
4073
|
+
arrowUpIcon = chevronUpIcon;
|
|
4073
4074
|
/**
|
|
4074
4075
|
* @hidden
|
|
4075
4076
|
*/
|
|
4076
|
-
arrowDownIcon =
|
|
4077
|
+
arrowDownIcon = chevronDownIcon;
|
|
4077
4078
|
subscriptions;
|
|
4078
4079
|
inputValue = '';
|
|
4079
4080
|
spinTimeout;
|
|
@@ -4902,7 +4903,7 @@ class NumericTextBoxComponent {
|
|
|
4902
4903
|
tabindex="-1"
|
|
4903
4904
|
>
|
|
4904
4905
|
<kendo-icon-wrapper
|
|
4905
|
-
name="
|
|
4906
|
+
name="chevron-up"
|
|
4906
4907
|
innerCssClass="k-button-icon"
|
|
4907
4908
|
[svgIcon]="arrowUpIcon"
|
|
4908
4909
|
>
|
|
@@ -4919,7 +4920,7 @@ class NumericTextBoxComponent {
|
|
|
4919
4920
|
tabindex="-1"
|
|
4920
4921
|
>
|
|
4921
4922
|
<kendo-icon-wrapper
|
|
4922
|
-
name="
|
|
4923
|
+
name="chevron-down"
|
|
4923
4924
|
innerCssClass="k-button-icon"
|
|
4924
4925
|
[svgIcon]="arrowDownIcon"
|
|
4925
4926
|
>
|
|
@@ -5017,7 +5018,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
5017
5018
|
tabindex="-1"
|
|
5018
5019
|
>
|
|
5019
5020
|
<kendo-icon-wrapper
|
|
5020
|
-
name="
|
|
5021
|
+
name="chevron-up"
|
|
5021
5022
|
innerCssClass="k-button-icon"
|
|
5022
5023
|
[svgIcon]="arrowUpIcon"
|
|
5023
5024
|
>
|
|
@@ -5034,7 +5035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
5034
5035
|
tabindex="-1"
|
|
5035
5036
|
>
|
|
5036
5037
|
<kendo-icon-wrapper
|
|
5037
|
-
name="
|
|
5038
|
+
name="chevron-down"
|
|
5038
5039
|
innerCssClass="k-button-icon"
|
|
5039
5040
|
[svgIcon]="arrowDownIcon"
|
|
5040
5041
|
>
|
|
@@ -7773,7 +7774,6 @@ class TextBoxComponent {
|
|
|
7773
7774
|
get disabledClass() {
|
|
7774
7775
|
return this.disabled;
|
|
7775
7776
|
}
|
|
7776
|
-
hostClasses = true;
|
|
7777
7777
|
direction;
|
|
7778
7778
|
/**
|
|
7779
7779
|
* @hidden
|
|
@@ -7825,6 +7825,8 @@ class TextBoxComponent {
|
|
|
7825
7825
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
7826
7826
|
}
|
|
7827
7827
|
ngOnInit() {
|
|
7828
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-textbox');
|
|
7829
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
|
|
7828
7830
|
this.control = this.injector.get(NgControl, null);
|
|
7829
7831
|
this.checkClearButton();
|
|
7830
7832
|
this.subscriptions = this.localizationService.changes.subscribe(({ rtl }) => {
|
|
@@ -8170,7 +8172,7 @@ class TextBoxComponent {
|
|
|
8170
8172
|
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
8171
8173
|
}
|
|
8172
8174
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
8173
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TextBoxComponent, isStandalone: true, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "
|
|
8175
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: TextBoxComponent, isStandalone: true, selector: "kendo-textbox", inputs: { focusableId: "focusableId", title: "title", type: "type", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", value: "value", selectOnFocus: "selectOnFocus", showSuccessIcon: "showSuccessIcon", showErrorIcon: "showErrorIcon", clearButton: "clearButton", successIcon: "successIcon", successSvgIcon: "successSvgIcon", errorIcon: "errorIcon", errorSvgIcon: "errorSvgIcon", clearButtonIcon: "clearButtonIcon", clearButtonSvgIcon: "clearButtonSvgIcon", size: "size", rounded: "rounded", fillMode: "fillMode", tabIndex: "tabIndex", placeholder: "placeholder", maxlength: "maxlength", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", inputFocus: "inputFocus", inputBlur: "inputBlur", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "attr.dir": "this.direction" } }, providers: [
|
|
8174
8176
|
LocalizationService,
|
|
8175
8177
|
{ provide: L10N_PREFIX, useValue: 'kendo.textbox' },
|
|
8176
8178
|
{
|
|
@@ -8455,12 +8457,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
8455
8457
|
}], disabledClass: [{
|
|
8456
8458
|
type: HostBinding,
|
|
8457
8459
|
args: ['class.k-disabled']
|
|
8458
|
-
}], hostClasses: [{
|
|
8459
|
-
type: HostBinding,
|
|
8460
|
-
args: ['class.k-textbox']
|
|
8461
|
-
}, {
|
|
8462
|
-
type: HostBinding,
|
|
8463
|
-
args: ['class.k-input']
|
|
8464
8460
|
}], direction: [{
|
|
8465
8461
|
type: HostBinding,
|
|
8466
8462
|
args: ['attr.dir']
|
|
@@ -8792,7 +8788,7 @@ class ColorInputComponent {
|
|
|
8792
8788
|
</div>
|
|
8793
8789
|
}
|
|
8794
8790
|
}
|
|
8795
|
-
`, 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"
|
|
8791
|
+
`, 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: "component", type: NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "focus", "blur", "inputFocus", "inputBlur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: NumericLabelDirective, selector: "[kendoAdditionalNumericLabel]", inputs: ["kendoAdditionalNumericLabel", "localizationService"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: TextLabelDirective, selector: "[kendoTextLabel]", inputs: ["focusableId"] }] });
|
|
8796
8792
|
}
|
|
8797
8793
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorInputComponent, decorators: [{
|
|
8798
8794
|
type: Component,
|
|
@@ -10300,7 +10296,7 @@ class ColorGradientComponent {
|
|
|
10300
10296
|
[ratio]="contrastTool">
|
|
10301
10297
|
</div>
|
|
10302
10298
|
}
|
|
10303
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: ColorContrastSvgComponent, selector: "[kendoColorContrastSvg]", inputs: ["wrapper", "hsva", "backgroundColor"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
10299
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: ColorContrastSvgComponent, selector: "[kendoColorContrastSvg]", inputs: ["wrapper", "hsva", "backgroundColor"] }, { 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: "component", type: SliderComponent, selector: "kendo-slider", inputs: ["focusableId", "dragHandleTitle", "incrementTitle", "animate", "decrementTitle", "showButtons", "value", "tabIndex"], exportAs: ["kendoSlider"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ColorInputComponent, selector: "kendo-colorinput", inputs: ["focusableId", "formatView", "size", "tabindex", "value", "opacity", "disabled", "readonly"], outputs: ["valueChange", "tabOut"] }, { kind: "component", type: ContrastComponent, selector: "[kendoContrastTool]", inputs: ["value", "ratio"] }] });
|
|
10304
10300
|
}
|
|
10305
10301
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorGradientComponent, decorators: [{
|
|
10306
10302
|
type: Component,
|
|
@@ -11575,7 +11571,7 @@ class FlatColorPickerHeaderComponent {
|
|
|
11575
11571
|
</div>
|
|
11576
11572
|
}
|
|
11577
11573
|
</div>
|
|
11578
|
-
`, 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"
|
|
11574
|
+
`, 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: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
11579
11575
|
}
|
|
11580
11576
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FlatColorPickerHeaderComponent, decorators: [{
|
|
11581
11577
|
type: Component,
|
|
@@ -11731,7 +11727,7 @@ class FlatColorPickerActionButtonsComponent {
|
|
|
11731
11727
|
[tabindex]="innerTabIndex.toString()"
|
|
11732
11728
|
(keydown.tab)="$event.preventDefault(); tabOut.emit();"
|
|
11733
11729
|
>{{getText('applyButton')}}</button>
|
|
11734
|
-
`, 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"
|
|
11730
|
+
`, 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"] }] });
|
|
11735
11731
|
}
|
|
11736
11732
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FlatColorPickerActionButtonsComponent, decorators: [{
|
|
11737
11733
|
type: Component,
|
|
@@ -12725,7 +12721,7 @@ class AdaptiveCloseButtonComponent {
|
|
|
12725
12721
|
[tabIndex]="-1"
|
|
12726
12722
|
(click)="close.emit($event)"
|
|
12727
12723
|
></button>
|
|
12728
|
-
`, 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"
|
|
12724
|
+
`, 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"] }] });
|
|
12729
12725
|
}
|
|
12730
12726
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveCloseButtonComponent, decorators: [{
|
|
12731
12727
|
type: Component,
|
|
@@ -12855,7 +12851,7 @@ class AdaptiveRendererComponent {
|
|
|
12855
12851
|
}
|
|
12856
12852
|
</ng-template>
|
|
12857
12853
|
</kendo-actionsheet>
|
|
12858
|
-
`, isInline: true, dependencies: [{ kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
12854
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["actions", "actionsLayout", "overlayClickClose", "title", "subtitle", "items", "cssClass", "cssStyle", "animation", "expanded", "titleId", "initialFocus"], outputs: ["expandedChange", "action", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { 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: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: AdaptiveCloseButtonComponent, selector: "kendo-adaptive-close-button", inputs: ["title", "icon", "svgIcon", "color"], outputs: ["close"] }] });
|
|
12859
12855
|
}
|
|
12860
12856
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveRendererComponent, decorators: [{
|
|
12861
12857
|
type: Component,
|
|
@@ -13320,7 +13316,7 @@ class ColorPickerComponent {
|
|
|
13320
13316
|
/**
|
|
13321
13317
|
* @hidden
|
|
13322
13318
|
*/
|
|
13323
|
-
arrowDownIcon =
|
|
13319
|
+
arrowDownIcon = chevronDownIcon;
|
|
13324
13320
|
popupRef;
|
|
13325
13321
|
_svgIcon;
|
|
13326
13322
|
_value;
|
|
@@ -13906,7 +13902,7 @@ class ColorPickerComponent {
|
|
|
13906
13902
|
kendoButton
|
|
13907
13903
|
tabindex="-1"
|
|
13908
13904
|
type="button"
|
|
13909
|
-
icon="
|
|
13905
|
+
icon="chevron-down"
|
|
13910
13906
|
[size]="size"
|
|
13911
13907
|
[svgIcon]="arrowDownIcon"
|
|
13912
13908
|
[fillMode]="fillMode"
|
|
@@ -13953,7 +13949,7 @@ class ColorPickerComponent {
|
|
|
13953
13949
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
13954
13950
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
13955
13951
|
}
|
|
13956
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { 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: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
13952
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { 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: 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: "component", type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "adaptiveMode", "paletteSettings", "size"], outputs: ["valueChange", "cancel", "activeViewChange", "clearButtonClick", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: AdaptiveRendererComponent, selector: "kendo-adaptive-renderer", inputs: ["title", "subtitle", "actionSheetTemplate", "isActionSheetExpanded", "preview"], outputs: ["actionSheetClose", "onExpand", "onCollapse", "onApply", "onCancel"] }] });
|
|
13957
13953
|
}
|
|
13958
13954
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
13959
13955
|
type: Component,
|
|
@@ -14055,7 +14051,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
14055
14051
|
kendoButton
|
|
14056
14052
|
tabindex="-1"
|
|
14057
14053
|
type="button"
|
|
14058
|
-
icon="
|
|
14054
|
+
icon="chevron-down"
|
|
14059
14055
|
[size]="size"
|
|
14060
14056
|
[svgIcon]="arrowDownIcon"
|
|
14061
14057
|
[fillMode]="fillMode"
|
|
@@ -14410,7 +14406,7 @@ class FormService {
|
|
|
14410
14406
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormService, decorators: [{
|
|
14411
14407
|
type: Injectable,
|
|
14412
14408
|
args: [{
|
|
14413
|
-
providedIn: 'root'
|
|
14409
|
+
providedIn: 'root'
|
|
14414
14410
|
}]
|
|
14415
14411
|
}] });
|
|
14416
14412
|
|
|
@@ -15294,6 +15290,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15294
15290
|
}]
|
|
15295
15291
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
15296
15292
|
|
|
15293
|
+
const ratingStarIcon = {
|
|
15294
|
+
name: 'star',
|
|
15295
|
+
content: '<path d="m22.762 10.668-4.557 3.931 1.389 5.88a1.661 1.661 0 0 1-2.481 1.805L12 19.138l-5.116 3.146a1.661 1.661 0 0 1-2.478-1.805l1.394-5.88-4.557-3.931a1.667 1.667 0 0 1 .943-2.921l5.974-.482 2.304-5.577a1.656 1.656 0 0 1 3.065 0l2.304 5.577 5.973.482a1.667 1.667 0 0 1 .95 2.922z"/>',
|
|
15296
|
+
viewBox: '0 0 24 24'
|
|
15297
|
+
};
|
|
15298
|
+
const ratingStarOutlineIcon = {
|
|
15299
|
+
name: 'star-outline',
|
|
15300
|
+
content: '<path d="M23.065 8.95a1.44 1.44 0 0 0-1.267-1l-6.101-.493-2.351-5.691a1.454 1.454 0 0 0-2.691 0L8.304 7.454l-6.101.496A1.44 1.44 0 0 0 .936 8.951a1.46 1.46 0 0 0 .433 1.562l4.657 4.011-1.417 5.998a1.46 1.46 0 0 0 .567 1.52 1.43 1.43 0 0 0 1.61.061L12 18.898l5.222 3.211a1.43 1.43 0 0 0 1.611-.061 1.46 1.46 0 0 0 .566-1.52l-1.417-5.998 4.65-4.016a1.46 1.46 0 0 0 .433-1.564m-1.229.644-4.929 4.253a.61.61 0 0 0-.195.599l1.506 6.357a.24.24 0 0 1-.096.261.23.23 0 0 1-.262.009l-5.541-3.404a.61.61 0 0 0-.636 0l-5.54 3.403a.23.23 0 0 1-.263-.01.24.24 0 0 1-.101-.26l1.506-6.358a.61.61 0 0 0-.194-.598l-4.93-4.253a.24.24 0 0 1-.074-.269.23.23 0 0 1 .21-.167l6.471-.522a.61.61 0 0 0 .513-.373l2.493-6.035a.238.238 0 0 1 .444 0l2.494 6.035a.61.61 0 0 0 .512.373l6.472.522a.23.23 0 0 1 .21.167.24.24 0 0 1-.068.269z"/>',
|
|
15301
|
+
viewBox: '0 0 24 24'
|
|
15302
|
+
};
|
|
15297
15303
|
/**
|
|
15298
15304
|
* Represents the Kendo UI Rating component for Angular.
|
|
15299
15305
|
* Use this component to let users select a rating value.
|
|
@@ -15385,11 +15391,11 @@ class RatingComponent {
|
|
|
15385
15391
|
/**
|
|
15386
15392
|
* Sets a custom SVG icon for the selected or hovered state of the Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
15387
15393
|
*/
|
|
15388
|
-
svgIcon =
|
|
15394
|
+
svgIcon = ratingStarIcon;
|
|
15389
15395
|
/**
|
|
15390
15396
|
* Sets a custom SVG icon for the default state of the Rating items when not hovered or selected ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
15391
15397
|
*/
|
|
15392
|
-
svgIconOutline =
|
|
15398
|
+
svgIconOutline = ratingStarOutlineIcon;
|
|
15393
15399
|
/**
|
|
15394
15400
|
* Fires when the user selects a new value.
|
|
15395
15401
|
*/
|
|
@@ -15676,7 +15682,7 @@ class RatingComponent {
|
|
|
15676
15682
|
@if (!icon) {
|
|
15677
15683
|
<kendo-icon-wrapper
|
|
15678
15684
|
size="xlarge"
|
|
15679
|
-
[name]="item.selected || item.hovered ? 'star' : 'star
|
|
15685
|
+
[name]="item.selected || item.hovered ? 'star' : 'star'"
|
|
15680
15686
|
[svgIcon]="item.selected || item.hovered ? svgIcon : svgIconOutline"
|
|
15681
15687
|
>
|
|
15682
15688
|
</kendo-icon-wrapper>
|
|
@@ -15717,7 +15723,7 @@ class RatingComponent {
|
|
|
15717
15723
|
@if (!icon) {
|
|
15718
15724
|
<kendo-icon-wrapper
|
|
15719
15725
|
size="xlarge"
|
|
15720
|
-
[name]="'star
|
|
15726
|
+
[name]="'star'"
|
|
15721
15727
|
[svgIcon]="svgIconOutline"
|
|
15722
15728
|
>
|
|
15723
15729
|
</kendo-icon-wrapper>
|
|
@@ -15834,7 +15840,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15834
15840
|
@if (!icon) {
|
|
15835
15841
|
<kendo-icon-wrapper
|
|
15836
15842
|
size="xlarge"
|
|
15837
|
-
[name]="item.selected || item.hovered ? 'star' : 'star
|
|
15843
|
+
[name]="item.selected || item.hovered ? 'star' : 'star'"
|
|
15838
15844
|
[svgIcon]="item.selected || item.hovered ? svgIcon : svgIconOutline"
|
|
15839
15845
|
>
|
|
15840
15846
|
</kendo-icon-wrapper>
|
|
@@ -15875,7 +15881,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15875
15881
|
@if (!icon) {
|
|
15876
15882
|
<kendo-icon-wrapper
|
|
15877
15883
|
size="xlarge"
|
|
15878
|
-
[name]="'star
|
|
15884
|
+
[name]="'star'"
|
|
15879
15885
|
[svgIcon]="svgIconOutline"
|
|
15880
15886
|
>
|
|
15881
15887
|
</kendo-icon-wrapper>
|
|
@@ -16939,7 +16945,7 @@ class SignatureComponent {
|
|
|
16939
16945
|
</kendo-signature>
|
|
16940
16946
|
</kendo-dialog>
|
|
16941
16947
|
}
|
|
16942
|
-
`, isInline: true, dependencies: [{ kind: "component", type: SignatureComponent, selector: "kendo-signature", inputs: ["focusableId", "readonly", "disabled", "width", "height", "value", "tabindex", "size", "rounded", "fillMode", "color", "backgroundColor", "strokeWidth", "smooth", "maximizable", "maximized", "popupScale", "exportScale", "parentLocalization", "hideLine"], outputs: ["valueChange", "open", "close", "focus", "blur", "minimize"], exportAs: ["kendoSignature"] }, { kind: "directive", type: LocalizedSignatureMessagesDirective, selector: "[kendoSignatureLocalizedMessages]" }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"
|
|
16948
|
+
`, isInline: true, dependencies: [{ kind: "component", type: SignatureComponent, selector: "kendo-signature", inputs: ["focusableId", "readonly", "disabled", "width", "height", "value", "tabindex", "size", "rounded", "fillMode", "color", "backgroundColor", "strokeWidth", "smooth", "maximizable", "maximized", "popupScale", "exportScale", "parentLocalization", "hideLine"], outputs: ["valueChange", "open", "close", "focus", "blur", "minimize"], exportAs: ["kendoSignature"] }, { kind: "directive", type: LocalizedSignatureMessagesDirective, selector: "[kendoSignatureLocalizedMessages]" }, { 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: "component", type: DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "closable", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
16943
16949
|
}
|
|
16944
16950
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SignatureComponent, decorators: [{
|
|
16945
16951
|
type: Component,
|
|
@@ -17225,7 +17231,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17225
17231
|
* ```html
|
|
17226
17232
|
* <kendo-textarea>
|
|
17227
17233
|
* <kendo-textarea-prefix>
|
|
17228
|
-
* <button kendoButton
|
|
17234
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17229
17235
|
* </kendo-textarea-prefix>
|
|
17230
17236
|
* </kendo-textarea>
|
|
17231
17237
|
* ```
|
|
@@ -17287,7 +17293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17287
17293
|
* ```html
|
|
17288
17294
|
* <kendo-textarea>
|
|
17289
17295
|
* <kendo-textarea-suffix>
|
|
17290
|
-
* <button kendoButton
|
|
17296
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17291
17297
|
* </kendo-textarea-suffix>
|
|
17292
17298
|
* </kendo-textarea>
|
|
17293
17299
|
* ```
|
|
@@ -19442,6 +19448,7 @@ class FormComponent {
|
|
|
19442
19448
|
}
|
|
19443
19449
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: FormService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19444
19450
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: FormComponent, isStandalone: true, selector: "form[kendoForm]", inputs: { orientation: "orientation", cols: "cols", gutters: "gutters" }, host: { properties: { "class": "this.formClass", "class.k-form-horizontal": "this.horizontalClass", "attr.dir": "this.direction" } }, providers: [
|
|
19451
|
+
FormService,
|
|
19445
19452
|
LocalizationService,
|
|
19446
19453
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19447
19454
|
], exportAs: ["kendoForm"], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -19471,6 +19478,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19471
19478
|
standalone: true,
|
|
19472
19479
|
imports: [NgClass, NgStyle, ResizeSensorComponent, WatermarkOverlayComponent],
|
|
19473
19480
|
providers: [
|
|
19481
|
+
FormService,
|
|
19474
19482
|
LocalizationService,
|
|
19475
19483
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19476
19484
|
],
|
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": 1778748663,
|
|
11
|
+
"version": "24.0.0-develop.30",
|
|
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-inputs",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.30",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"package": {
|
|
56
56
|
"productName": "Kendo UI for Angular",
|
|
57
57
|
"productCode": "KENDOUIANGULAR",
|
|
58
|
-
"publishDate":
|
|
58
|
+
"publishDate": 1778748663,
|
|
59
59
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
@@ -65,22 +65,22 @@
|
|
|
65
65
|
"@angular/core": "19 - 21",
|
|
66
66
|
"@angular/forms": "19 - 21",
|
|
67
67
|
"@angular/platform-browser": "19 - 21",
|
|
68
|
-
"@progress/kendo-drawing": "^1.
|
|
68
|
+
"@progress/kendo-drawing": "^1.25.0",
|
|
69
69
|
"@progress/kendo-licensing": "^1.11.0",
|
|
70
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-navigation": "24.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-dialog": "24.0.0-develop.
|
|
75
|
-
"@progress/kendo-angular-intl": "24.0.0-develop.
|
|
76
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
77
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
78
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
70
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.30",
|
|
71
|
+
"@progress/kendo-angular-common": "24.0.0-develop.30",
|
|
72
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.30",
|
|
73
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.30",
|
|
74
|
+
"@progress/kendo-angular-dialog": "24.0.0-develop.30",
|
|
75
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.30",
|
|
76
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.30",
|
|
77
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.30",
|
|
78
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.30",
|
|
79
79
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"tslib": "^2.3.1",
|
|
83
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
83
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.30",
|
|
84
84
|
"@progress/kendo-common": "^1.0.1",
|
|
85
85
|
"@progress/kendo-draggable": "^3.0.0",
|
|
86
86
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
@@ -31,6 +31,7 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
31
31
|
/**
|
|
32
32
|
* @hidden
|
|
33
33
|
*/
|
|
34
|
+
set focusableId(value: string);
|
|
34
35
|
get focusableId(): string;
|
|
35
36
|
/**
|
|
36
37
|
* Set the **On** label.
|
|
@@ -120,6 +121,7 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
120
121
|
protected control: NgControl;
|
|
121
122
|
private domSubscriptions;
|
|
122
123
|
private _checked;
|
|
124
|
+
private _focusableId;
|
|
123
125
|
private _size;
|
|
124
126
|
private _trackRounded;
|
|
125
127
|
private _thumbRounded;
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* ```html
|
|
13
13
|
* <kendo-textarea>
|
|
14
14
|
* <kendo-textarea-prefix>
|
|
15
|
-
* <button kendoButton
|
|
15
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
16
16
|
* </kendo-textarea-prefix>
|
|
17
17
|
* </kendo-textarea>
|
|
18
18
|
* ```
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* ```html
|
|
13
13
|
* <kendo-textarea>
|
|
14
14
|
* <kendo-textarea-suffix>
|
|
15
|
-
* <button kendoButton
|
|
15
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
16
16
|
* </kendo-textarea-suffix>
|
|
17
17
|
* </kendo-textarea>
|
|
18
18
|
* ```
|