@progress/kendo-angular-inputs 24.0.0-develop.2 → 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.
- package/NOTICE.txt +2599 -172
- package/fesm2022/progress-kendo-angular-inputs.mjs +58 -55
- 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
|
@@ -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, starIcon, starOutlineIcon, 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: 1778160977,
|
|
587
|
+
version: '24.0.0-develop.21',
|
|
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
|
>
|
|
@@ -8792,7 +8793,7 @@ class ColorInputComponent {
|
|
|
8792
8793
|
</div>
|
|
8793
8794
|
}
|
|
8794
8795
|
}
|
|
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"
|
|
8796
|
+
`, 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
8797
|
}
|
|
8797
8798
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorInputComponent, decorators: [{
|
|
8798
8799
|
type: Component,
|
|
@@ -10300,7 +10301,7 @@ class ColorGradientComponent {
|
|
|
10300
10301
|
[ratio]="contrastTool">
|
|
10301
10302
|
</div>
|
|
10302
10303
|
}
|
|
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"
|
|
10304
|
+
`, 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
10305
|
}
|
|
10305
10306
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorGradientComponent, decorators: [{
|
|
10306
10307
|
type: Component,
|
|
@@ -11575,7 +11576,7 @@ class FlatColorPickerHeaderComponent {
|
|
|
11575
11576
|
</div>
|
|
11576
11577
|
}
|
|
11577
11578
|
</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"
|
|
11579
|
+
`, 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
11580
|
}
|
|
11580
11581
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FlatColorPickerHeaderComponent, decorators: [{
|
|
11581
11582
|
type: Component,
|
|
@@ -11731,7 +11732,7 @@ class FlatColorPickerActionButtonsComponent {
|
|
|
11731
11732
|
[tabindex]="innerTabIndex.toString()"
|
|
11732
11733
|
(keydown.tab)="$event.preventDefault(); tabOut.emit();"
|
|
11733
11734
|
>{{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"
|
|
11735
|
+
`, 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
11736
|
}
|
|
11736
11737
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FlatColorPickerActionButtonsComponent, decorators: [{
|
|
11737
11738
|
type: Component,
|
|
@@ -12725,7 +12726,7 @@ class AdaptiveCloseButtonComponent {
|
|
|
12725
12726
|
[tabIndex]="-1"
|
|
12726
12727
|
(click)="close.emit($event)"
|
|
12727
12728
|
></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"
|
|
12729
|
+
`, 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
12730
|
}
|
|
12730
12731
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveCloseButtonComponent, decorators: [{
|
|
12731
12732
|
type: Component,
|
|
@@ -12855,7 +12856,7 @@ class AdaptiveRendererComponent {
|
|
|
12855
12856
|
}
|
|
12856
12857
|
</ng-template>
|
|
12857
12858
|
</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"
|
|
12859
|
+
`, 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
12860
|
}
|
|
12860
12861
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AdaptiveRendererComponent, decorators: [{
|
|
12861
12862
|
type: Component,
|
|
@@ -13320,7 +13321,7 @@ class ColorPickerComponent {
|
|
|
13320
13321
|
/**
|
|
13321
13322
|
* @hidden
|
|
13322
13323
|
*/
|
|
13323
|
-
arrowDownIcon =
|
|
13324
|
+
arrowDownIcon = chevronDownIcon;
|
|
13324
13325
|
popupRef;
|
|
13325
13326
|
_svgIcon;
|
|
13326
13327
|
_value;
|
|
@@ -13906,7 +13907,7 @@ class ColorPickerComponent {
|
|
|
13906
13907
|
kendoButton
|
|
13907
13908
|
tabindex="-1"
|
|
13908
13909
|
type="button"
|
|
13909
|
-
icon="
|
|
13910
|
+
icon="chevron-down"
|
|
13910
13911
|
[size]="size"
|
|
13911
13912
|
[svgIcon]="arrowDownIcon"
|
|
13912
13913
|
[fillMode]="fillMode"
|
|
@@ -13953,7 +13954,7 @@ class ColorPickerComponent {
|
|
|
13953
13954
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
13954
13955
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
13955
13956
|
}
|
|
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"
|
|
13957
|
+
`, 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
13958
|
}
|
|
13958
13959
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
13959
13960
|
type: Component,
|
|
@@ -14055,7 +14056,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
14055
14056
|
kendoButton
|
|
14056
14057
|
tabindex="-1"
|
|
14057
14058
|
type="button"
|
|
14058
|
-
icon="
|
|
14059
|
+
icon="chevron-down"
|
|
14059
14060
|
[size]="size"
|
|
14060
14061
|
[svgIcon]="arrowDownIcon"
|
|
14061
14062
|
[fillMode]="fillMode"
|
|
@@ -14410,7 +14411,7 @@ class FormService {
|
|
|
14410
14411
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormService, decorators: [{
|
|
14411
14412
|
type: Injectable,
|
|
14412
14413
|
args: [{
|
|
14413
|
-
providedIn: 'root'
|
|
14414
|
+
providedIn: 'root'
|
|
14414
14415
|
}]
|
|
14415
14416
|
}] });
|
|
14416
14417
|
|
|
@@ -16939,7 +16940,7 @@ class SignatureComponent {
|
|
|
16939
16940
|
</kendo-signature>
|
|
16940
16941
|
</kendo-dialog>
|
|
16941
16942
|
}
|
|
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"
|
|
16943
|
+
`, 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
16944
|
}
|
|
16944
16945
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SignatureComponent, decorators: [{
|
|
16945
16946
|
type: Component,
|
|
@@ -17225,7 +17226,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17225
17226
|
* ```html
|
|
17226
17227
|
* <kendo-textarea>
|
|
17227
17228
|
* <kendo-textarea-prefix>
|
|
17228
|
-
* <button kendoButton
|
|
17229
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17229
17230
|
* </kendo-textarea-prefix>
|
|
17230
17231
|
* </kendo-textarea>
|
|
17231
17232
|
* ```
|
|
@@ -17287,7 +17288,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17287
17288
|
* ```html
|
|
17288
17289
|
* <kendo-textarea>
|
|
17289
17290
|
* <kendo-textarea-suffix>
|
|
17290
|
-
* <button kendoButton
|
|
17291
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17291
17292
|
* </kendo-textarea-suffix>
|
|
17292
17293
|
* </kendo-textarea>
|
|
17293
17294
|
* ```
|
|
@@ -19442,6 +19443,7 @@ class FormComponent {
|
|
|
19442
19443
|
}
|
|
19443
19444
|
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
19445
|
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: [
|
|
19446
|
+
FormService,
|
|
19445
19447
|
LocalizationService,
|
|
19446
19448
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19447
19449
|
], exportAs: ["kendoForm"], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -19471,6 +19473,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19471
19473
|
standalone: true,
|
|
19472
19474
|
imports: [NgClass, NgStyle, ResizeSensorComponent, WatermarkOverlayComponent],
|
|
19473
19475
|
providers: [
|
|
19476
|
+
FormService,
|
|
19474
19477
|
LocalizationService,
|
|
19475
19478
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19476
19479
|
],
|
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": 1778160977,
|
|
11
|
+
"version": "24.0.0-develop.21",
|
|
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.21",
|
|
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": 1778160977,
|
|
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.21",
|
|
71
|
+
"@progress/kendo-angular-common": "24.0.0-develop.21",
|
|
72
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.21",
|
|
73
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.21",
|
|
74
|
+
"@progress/kendo-angular-dialog": "24.0.0-develop.21",
|
|
75
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.21",
|
|
76
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.21",
|
|
77
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.21",
|
|
78
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.21",
|
|
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.21",
|
|
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
|
* ```
|