@progress/kendo-angular-inputs 25.0.0-develop.7 → 25.0.0
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 +33 -34
- package/codemods/libs/common/src/codemods/utils.js +15 -0
- package/codemods/libs/inputs/codemods/v25/inputs-rendering-changes.js +35 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +539 -441
- package/index.d.ts +37 -14
- package/package-metadata.mjs +2 -2
- package/package.json +19 -12
|
@@ -8,12 +8,12 @@ import { NgControl, NG_VALUE_ACCESSOR, NG_VALIDATORS, RadioControlValueAccessor
|
|
|
8
8
|
import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } from 'rxjs';
|
|
9
9
|
import { take, tap, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
|
|
10
10
|
import * as i8 from '@progress/kendo-angular-common';
|
|
11
|
-
import { isDocumentAvailable, Keys, guid, anyChanged, normalizeKeys, hasObservers, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, KendoInput, KENDO_WEBMCP_HOST, hasFocusableParent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, processCssValue, replaceMessagePlaceholder, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
11
|
+
import { isDocumentAvailable, Keys, guid, anyChanged, normalizeKeys, hasObservers, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, KendoInput, KENDO_WEBMCP_HOST, provideComponentName, hasFocusableParent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, processCssValue, replaceMessagePlaceholder, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
12
12
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective } from '@progress/kendo-angular-common';
|
|
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 { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, exclamationCircleIcon, checkIcon, caretAltExpandIcon,
|
|
16
|
+
import { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, exclamationCircleIcon, checkIcon, caretAltExpandIcon, 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: '25.0.0
|
|
586
|
+
publishDate: 1786525865,
|
|
587
|
+
version: '25.0.0',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -607,10 +607,10 @@ class LabelTemplateDirective {
|
|
|
607
607
|
constructor(templateRef) {
|
|
608
608
|
this.templateRef = templateRef;
|
|
609
609
|
}
|
|
610
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
611
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
610
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LabelTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
611
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LabelTemplateDirective, isStandalone: true, selector: "[kendoSliderLabelTemplate]", ngImport: i0 });
|
|
612
612
|
}
|
|
613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LabelTemplateDirective, decorators: [{
|
|
614
614
|
type: Directive,
|
|
615
615
|
args: [{
|
|
616
616
|
selector: '[kendoSliderLabelTemplate]',
|
|
@@ -829,10 +829,10 @@ class SliderBase {
|
|
|
829
829
|
}
|
|
830
830
|
});
|
|
831
831
|
}
|
|
832
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
833
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
832
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderBase, deps: [{ token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
833
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: SliderBase, isStandalone: true, selector: "kendo-slider-base", inputs: { title: "title", tickPlacement: "tickPlacement", vertical: "vertical", min: "min", max: "max", smallStep: "smallStep", largeStep: "largeStep", fixedTickWidth: "fixedTickWidth", disabled: "disabled", readonly: "readonly", tabindex: "tabindex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-slider-horizontal": "this.horizontalClass", "class.k-slider-vertical": "this.verticalClass", "class.k-slider": "this.sliderClass", "class.k-disabled": "this.disabledClass" } }, queries: [{ propertyName: "labelTemplate", first: true, predicate: LabelTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrap"], descendants: true, static: true }, { propertyName: "track", first: true, predicate: ["track"], descendants: true, static: true }, { propertyName: "sliderSelection", first: true, predicate: ["sliderSelection"], descendants: true, static: true }, { propertyName: "ticksContainer", first: true, predicate: ["ticks"], descendants: true, read: ElementRef }, { propertyName: "ticks", first: true, predicate: ["ticks"], descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
834
834
|
}
|
|
835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderBase, decorators: [{
|
|
836
836
|
type: Component,
|
|
837
837
|
args: [{
|
|
838
838
|
selector: 'kendo-slider-base',
|
|
@@ -964,8 +964,8 @@ class SliderTicksComponent {
|
|
|
964
964
|
'k-last': (!first && !this.vertical) || (first && this.vertical)
|
|
965
965
|
};
|
|
966
966
|
}
|
|
967
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
968
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
967
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderTicksComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
968
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: SliderTicksComponent, isStandalone: true, selector: "[kendoSliderTicks]", inputs: { tickTitle: "tickTitle", vertical: "vertical", step: "step", largeStep: "largeStep", min: "min", max: "max", labelTemplate: "labelTemplate" }, host: { properties: { "class": "this.wrapperClasses" } }, viewQueries: [{ propertyName: "tickElements", predicate: ["tickElement"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
969
969
|
@for (tick of ticks; track tick) {
|
|
970
970
|
<li #tickElement
|
|
971
971
|
[ngClass]="tick.classes"
|
|
@@ -991,7 +991,7 @@ class SliderTicksComponent {
|
|
|
991
991
|
</ng-template>
|
|
992
992
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
993
993
|
}
|
|
994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderTicksComponent, decorators: [{
|
|
995
995
|
type: Component,
|
|
996
996
|
args: [{
|
|
997
997
|
selector: '[kendoSliderTicks]',
|
|
@@ -1061,10 +1061,10 @@ class SliderMessages extends ComponentMessages {
|
|
|
1061
1061
|
* The title of the drag handle of the Slider.
|
|
1062
1062
|
*/
|
|
1063
1063
|
dragHandle;
|
|
1064
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1065
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1064
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1065
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: SliderMessages, isStandalone: true, selector: "kendo-slider-messages-base", inputs: { decrement: "decrement", increment: "increment", dragHandle: "dragHandle" }, usesInheritance: true, ngImport: i0 });
|
|
1066
1066
|
}
|
|
1067
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1067
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderMessages, decorators: [{
|
|
1068
1068
|
type: Directive,
|
|
1069
1069
|
args: [{
|
|
1070
1070
|
selector: 'kendo-slider-messages-base'
|
|
@@ -1086,15 +1086,15 @@ class LocalizedSliderMessagesDirective extends SliderMessages {
|
|
|
1086
1086
|
super();
|
|
1087
1087
|
this.service = service;
|
|
1088
1088
|
}
|
|
1089
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1090
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1089
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSliderMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1090
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedSliderMessagesDirective, isStandalone: true, selector: "[kendoSliderLocalizedMessages]", providers: [
|
|
1091
1091
|
{
|
|
1092
1092
|
provide: SliderMessages,
|
|
1093
1093
|
useExisting: forwardRef(() => LocalizedSliderMessagesDirective)
|
|
1094
1094
|
}
|
|
1095
1095
|
], usesInheritance: true, ngImport: i0 });
|
|
1096
1096
|
}
|
|
1097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSliderMessagesDirective, decorators: [{
|
|
1098
1098
|
type: Directive,
|
|
1099
1099
|
args: [{
|
|
1100
1100
|
providers: [
|
|
@@ -1176,6 +1176,12 @@ class SliderComponent extends SliderBase {
|
|
|
1176
1176
|
get currentValue() {
|
|
1177
1177
|
return isPresent(this.value) ? this.value.toString() : '';
|
|
1178
1178
|
}
|
|
1179
|
+
/**
|
|
1180
|
+
* @hidden
|
|
1181
|
+
*/
|
|
1182
|
+
get hostAriaLabel() {
|
|
1183
|
+
return this.hostElement.nativeElement.getAttribute('aria-label');
|
|
1184
|
+
}
|
|
1179
1185
|
/**
|
|
1180
1186
|
* @hidden
|
|
1181
1187
|
*/
|
|
@@ -1248,6 +1254,9 @@ class SliderComponent extends SliderBase {
|
|
|
1248
1254
|
}
|
|
1249
1255
|
this.attachElementEventHandlers();
|
|
1250
1256
|
this.isSliderInvalid();
|
|
1257
|
+
if (this.control) {
|
|
1258
|
+
this.subscriptions.add(this.control.statusChanges.subscribe(() => this.isSliderInvalid()));
|
|
1259
|
+
}
|
|
1251
1260
|
}
|
|
1252
1261
|
ngOnDestroy() {
|
|
1253
1262
|
if (this.subscriptions) {
|
|
@@ -1449,9 +1458,13 @@ class SliderComponent extends SliderBase {
|
|
|
1449
1458
|
};
|
|
1450
1459
|
}
|
|
1451
1460
|
isSliderInvalid() {
|
|
1452
|
-
|
|
1453
|
-
this.isInvalid
|
|
1454
|
-
|
|
1461
|
+
this.isInvalid = !!(this.control?.invalid && (this.control?.touched || this.control?.dirty));
|
|
1462
|
+
if (this.isInvalid) {
|
|
1463
|
+
this.renderer.setAttribute(this.draghandle.nativeElement, 'aria-invalid', 'true');
|
|
1464
|
+
}
|
|
1465
|
+
else {
|
|
1466
|
+
this.renderer.removeAttribute(this.draghandle.nativeElement, 'aria-invalid');
|
|
1467
|
+
}
|
|
1455
1468
|
}
|
|
1456
1469
|
attachElementEventHandlers() {
|
|
1457
1470
|
const hostElement = this.hostElement.nativeElement;
|
|
@@ -1507,6 +1520,7 @@ class SliderComponent extends SliderBase {
|
|
|
1507
1520
|
if (hasObservers(this.onBlur) || requiresZoneOnBlur(this.control)) {
|
|
1508
1521
|
this.ngZone.run(() => {
|
|
1509
1522
|
this.ngTouched();
|
|
1523
|
+
this.isSliderInvalid();
|
|
1510
1524
|
if (!this.focusChangedProgrammatically) {
|
|
1511
1525
|
this.onBlur.emit();
|
|
1512
1526
|
}
|
|
@@ -1537,13 +1551,14 @@ class SliderComponent extends SliderBase {
|
|
|
1537
1551
|
}
|
|
1538
1552
|
return this.direction === 'ltr' ? this.arrowRightIcon : this.arrowLeftIcon;
|
|
1539
1553
|
}
|
|
1540
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1541
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
1554
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", 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 });
|
|
1555
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", 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: [
|
|
1542
1556
|
LocalizationService,
|
|
1543
1557
|
{ provide: L10N_PREFIX, useValue: 'kendo.slider' },
|
|
1544
1558
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SliderComponent) },
|
|
1545
1559
|
{ provide: KendoInput, useExisting: forwardRef(() => SliderComponent) },
|
|
1546
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SliderComponent) }
|
|
1560
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SliderComponent) },
|
|
1561
|
+
provideComponentName('slider')
|
|
1547
1562
|
], viewQueries: [{ propertyName: "draghandle", first: true, predicate: ["draghandle"], descendants: true, static: true }, { propertyName: "decreaseButton", first: true, predicate: ["decreaseButton"], descendants: true, read: ElementRef }, { propertyName: "increaseButton", first: true, predicate: ["increaseButton"], descendants: true, read: ElementRef }], exportAs: ["kendoSlider"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
1548
1563
|
<ng-container kendoSliderLocalizedMessages
|
|
1549
1564
|
i18n-increment="kendo.slider.increment|The title of the **Increase** button of the Slider."
|
|
@@ -1595,10 +1610,10 @@ class SliderComponent extends SliderBase {
|
|
|
1595
1610
|
[attr.aria-valuemin]="min"
|
|
1596
1611
|
[attr.aria-valuemax]="max"
|
|
1597
1612
|
[attr.aria-valuenow]="currentValue"
|
|
1598
|
-
[attr.aria-valuetext]="currentValue"
|
|
1599
1613
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
1600
1614
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
1601
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
1615
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
1616
|
+
[attr.aria-label]="hostAriaLabel"
|
|
1602
1617
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
1603
1618
|
class="k-draghandle k-draghandle-end"
|
|
1604
1619
|
[title]="dragHandleMessage"
|
|
@@ -1627,7 +1642,7 @@ class SliderComponent extends SliderBase {
|
|
|
1627
1642
|
<kendo-resize-sensor (resize)="sizeComponent(false)"></kendo-resize-sensor>
|
|
1628
1643
|
`, 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"] }] });
|
|
1629
1644
|
}
|
|
1630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderComponent, decorators: [{
|
|
1631
1646
|
type: Component,
|
|
1632
1647
|
args: [{
|
|
1633
1648
|
exportAs: 'kendoSlider',
|
|
@@ -1636,7 +1651,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1636
1651
|
{ provide: L10N_PREFIX, useValue: 'kendo.slider' },
|
|
1637
1652
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SliderComponent) },
|
|
1638
1653
|
{ provide: KendoInput, useExisting: forwardRef(() => SliderComponent) },
|
|
1639
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SliderComponent) }
|
|
1654
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SliderComponent) },
|
|
1655
|
+
provideComponentName('slider')
|
|
1640
1656
|
],
|
|
1641
1657
|
selector: 'kendo-slider',
|
|
1642
1658
|
template: `
|
|
@@ -1690,10 +1706,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
1690
1706
|
[attr.aria-valuemin]="min"
|
|
1691
1707
|
[attr.aria-valuemax]="max"
|
|
1692
1708
|
[attr.aria-valuenow]="currentValue"
|
|
1693
|
-
[attr.aria-valuetext]="currentValue"
|
|
1694
1709
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
1695
1710
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
1696
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
1711
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
1712
|
+
[attr.aria-label]="hostAriaLabel"
|
|
1697
1713
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
1698
1714
|
class="k-draghandle k-draghandle-end"
|
|
1699
1715
|
[title]="dragHandleMessage"
|
|
@@ -1810,10 +1826,10 @@ class RangeSliderMessages extends ComponentMessages {
|
|
|
1810
1826
|
* The title of the range `end` drag handle.
|
|
1811
1827
|
*/
|
|
1812
1828
|
dragHandleEnd;
|
|
1813
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1814
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1829
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1830
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: RangeSliderMessages, isStandalone: true, selector: "kendo-rangeslider-messages-base", inputs: { dragHandleStart: "dragHandleStart", dragHandleEnd: "dragHandleEnd" }, usesInheritance: true, ngImport: i0 });
|
|
1815
1831
|
}
|
|
1816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderMessages, decorators: [{
|
|
1817
1833
|
type: Directive,
|
|
1818
1834
|
args: [{
|
|
1819
1835
|
selector: 'kendo-rangeslider-messages-base'
|
|
@@ -1833,15 +1849,15 @@ class LocalizedRangeSliderMessagesDirective extends RangeSliderMessages {
|
|
|
1833
1849
|
super();
|
|
1834
1850
|
this.service = service;
|
|
1835
1851
|
}
|
|
1836
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1837
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1852
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedRangeSliderMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1853
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedRangeSliderMessagesDirective, isStandalone: true, selector: "[kendoSliderLocalizedMessages]", providers: [
|
|
1838
1854
|
{
|
|
1839
1855
|
provide: RangeSliderMessages,
|
|
1840
1856
|
useExisting: forwardRef(() => LocalizedRangeSliderMessagesDirective)
|
|
1841
1857
|
}
|
|
1842
1858
|
], usesInheritance: true, ngImport: i0 });
|
|
1843
1859
|
}
|
|
1844
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedRangeSliderMessagesDirective, decorators: [{
|
|
1845
1861
|
type: Directive,
|
|
1846
1862
|
args: [{
|
|
1847
1863
|
providers: [
|
|
@@ -1899,6 +1915,20 @@ class RangeSliderComponent extends SliderBase {
|
|
|
1899
1915
|
activeHandle = 'startHandle';
|
|
1900
1916
|
focusChangedProgrammatically = false;
|
|
1901
1917
|
isInvalid;
|
|
1918
|
+
/**
|
|
1919
|
+
* @hidden
|
|
1920
|
+
*/
|
|
1921
|
+
get startHandleAriaLabel() {
|
|
1922
|
+
const hostLabel = this.hostElement?.nativeElement?.getAttribute('aria-label');
|
|
1923
|
+
return hostLabel ? `${hostLabel} start` : null;
|
|
1924
|
+
}
|
|
1925
|
+
/**
|
|
1926
|
+
* @hidden
|
|
1927
|
+
*/
|
|
1928
|
+
get endHandleAriaLabel() {
|
|
1929
|
+
const hostLabel = this.hostElement?.nativeElement?.getAttribute('aria-label');
|
|
1930
|
+
return hostLabel ? `${hostLabel} end` : null;
|
|
1931
|
+
}
|
|
1902
1932
|
constructor(localization, injector, renderer, ngZone, changeDetector, hostElement) {
|
|
1903
1933
|
super(localization, injector, renderer, ngZone, changeDetector, hostElement);
|
|
1904
1934
|
this.localization = localization;
|
|
@@ -1956,6 +1986,9 @@ class RangeSliderComponent extends SliderBase {
|
|
|
1956
1986
|
}
|
|
1957
1987
|
this.isRangeSliderInvalid();
|
|
1958
1988
|
this.attachElementEventHandlers();
|
|
1989
|
+
if (this.control) {
|
|
1990
|
+
this.subscriptions.add(this.control.statusChanges.subscribe(() => this.isRangeSliderInvalid()));
|
|
1991
|
+
}
|
|
1959
1992
|
}
|
|
1960
1993
|
ngOnDestroy() {
|
|
1961
1994
|
if (this.subscriptions) {
|
|
@@ -2213,10 +2246,15 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2213
2246
|
};
|
|
2214
2247
|
}
|
|
2215
2248
|
isRangeSliderInvalid() {
|
|
2216
|
-
|
|
2217
|
-
this.isInvalid
|
|
2218
|
-
|
|
2219
|
-
|
|
2249
|
+
this.isInvalid = !!(this.control?.invalid && (this.control?.touched || this.control?.dirty));
|
|
2250
|
+
if (this.isInvalid) {
|
|
2251
|
+
this.renderer.setAttribute(this.draghandleStart.nativeElement, 'aria-invalid', 'true');
|
|
2252
|
+
this.renderer.setAttribute(this.draghandleEnd.nativeElement, 'aria-invalid', 'true');
|
|
2253
|
+
}
|
|
2254
|
+
else {
|
|
2255
|
+
this.renderer.removeAttribute(this.draghandleStart.nativeElement, 'aria-invalid');
|
|
2256
|
+
this.renderer.removeAttribute(this.draghandleEnd.nativeElement, 'aria-invalid');
|
|
2257
|
+
}
|
|
2220
2258
|
}
|
|
2221
2259
|
attachElementEventHandlers() {
|
|
2222
2260
|
const hostElement = this.hostElement.nativeElement;
|
|
@@ -2272,14 +2310,15 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2272
2310
|
if (hasObservers(this.onBlur) || requiresZoneOnBlur(this.control)) {
|
|
2273
2311
|
this.ngZone.run(() => {
|
|
2274
2312
|
this.ngTouched();
|
|
2313
|
+
this.isRangeSliderInvalid();
|
|
2275
2314
|
if (!this.focusChangedProgrammatically) {
|
|
2276
2315
|
this.onBlur.emit();
|
|
2277
2316
|
}
|
|
2278
2317
|
});
|
|
2279
2318
|
}
|
|
2280
2319
|
};
|
|
2281
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2282
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
2320
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2321
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: RangeSliderComponent, isStandalone: true, selector: "kendo-rangeslider", inputs: { value: "value" }, providers: [
|
|
2283
2322
|
LocalizationService,
|
|
2284
2323
|
{ provide: L10N_PREFIX, useValue: 'kendo.rangeslider' },
|
|
2285
2324
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => RangeSliderComponent) },
|
|
@@ -2324,12 +2363,12 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2324
2363
|
[attr.aria-valuemin]="min"
|
|
2325
2364
|
[attr.aria-valuemax]="max"
|
|
2326
2365
|
[attr.aria-valuenow]="value ? value[0] : null"
|
|
2327
|
-
[attr.aria-valuetext]="valueText"
|
|
2328
2366
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
2329
2367
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
2330
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
2368
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
2369
|
+
[attr.aria-label]="startHandleAriaLabel"
|
|
2331
2370
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
2332
|
-
class="k-draghandle"
|
|
2371
|
+
class="k-draghandle k-draghandle-start"
|
|
2333
2372
|
[title]="textFor('dragHandleStart')"
|
|
2334
2373
|
kendoDraggable
|
|
2335
2374
|
(kendoPress)="ifEnabled(handleDragPress ,$event)"
|
|
@@ -2343,12 +2382,12 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2343
2382
|
[attr.aria-valuemin]="min"
|
|
2344
2383
|
[attr.aria-valuemax]="max"
|
|
2345
2384
|
[attr.aria-valuenow]="value ? value[1] : null"
|
|
2346
|
-
[attr.aria-valuetext]="valueText"
|
|
2347
2385
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
2348
2386
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
2349
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
2387
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
2388
|
+
[attr.aria-label]="endHandleAriaLabel"
|
|
2350
2389
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
2351
|
-
class="k-draghandle"
|
|
2390
|
+
class="k-draghandle k-draghandle-end"
|
|
2352
2391
|
[title]="textFor('dragHandleEnd')"
|
|
2353
2392
|
kendoDraggable
|
|
2354
2393
|
(kendoPress)="ifEnabled(handleDragPress ,$event)"
|
|
@@ -2360,7 +2399,7 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2360
2399
|
<kendo-resize-sensor (resize)="sizeComponent()"></kendo-resize-sensor>
|
|
2361
2400
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedRangeSliderMessagesDirective, selector: "[kendoSliderLocalizedMessages]" }, { 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"] }] });
|
|
2362
2401
|
}
|
|
2363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderComponent, decorators: [{
|
|
2364
2403
|
type: Component,
|
|
2365
2404
|
args: [{
|
|
2366
2405
|
exportAs: 'kendoRangeSlider',
|
|
@@ -2411,12 +2450,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
2411
2450
|
[attr.aria-valuemin]="min"
|
|
2412
2451
|
[attr.aria-valuemax]="max"
|
|
2413
2452
|
[attr.aria-valuenow]="value ? value[0] : null"
|
|
2414
|
-
[attr.aria-valuetext]="valueText"
|
|
2415
2453
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
2416
2454
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
2417
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
2455
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
2456
|
+
[attr.aria-label]="startHandleAriaLabel"
|
|
2418
2457
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
2419
|
-
class="k-draghandle"
|
|
2458
|
+
class="k-draghandle k-draghandle-start"
|
|
2420
2459
|
[title]="textFor('dragHandleStart')"
|
|
2421
2460
|
kendoDraggable
|
|
2422
2461
|
(kendoPress)="ifEnabled(handleDragPress ,$event)"
|
|
@@ -2430,12 +2469,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
2430
2469
|
[attr.aria-valuemin]="min"
|
|
2431
2470
|
[attr.aria-valuemax]="max"
|
|
2432
2471
|
[attr.aria-valuenow]="value ? value[1] : null"
|
|
2433
|
-
[attr.aria-valuetext]="valueText"
|
|
2434
2472
|
[attr.aria-disabled]="disabled ? true : undefined"
|
|
2435
2473
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
2436
|
-
[attr.aria-orientation]="vertical ? 'vertical' :
|
|
2474
|
+
[attr.aria-orientation]="vertical ? 'vertical' : null"
|
|
2475
|
+
[attr.aria-label]="endHandleAriaLabel"
|
|
2437
2476
|
[style.touch-action]="isDisabled ? '' : 'none'"
|
|
2438
|
-
class="k-draghandle"
|
|
2477
|
+
class="k-draghandle k-draghandle-end"
|
|
2439
2478
|
[title]="textFor('dragHandleEnd')"
|
|
2440
2479
|
kendoDraggable
|
|
2441
2480
|
(kendoPress)="ifEnabled(handleDragPress ,$event)"
|
|
@@ -2471,10 +2510,10 @@ class Messages extends ComponentMessages {
|
|
|
2471
2510
|
* The title of the **Off** button of the Switch.
|
|
2472
2511
|
*/
|
|
2473
2512
|
off;
|
|
2474
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2475
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
2513
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2514
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: Messages, isStandalone: true, selector: "kendo-switch-messages-base", inputs: { on: "on", off: "off" }, usesInheritance: true, ngImport: i0 });
|
|
2476
2515
|
}
|
|
2477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: Messages, decorators: [{
|
|
2478
2517
|
type: Directive,
|
|
2479
2518
|
args: [{
|
|
2480
2519
|
selector: 'kendo-switch-messages-base'
|
|
@@ -2494,15 +2533,15 @@ class LocalizedSwitchMessagesDirective extends Messages {
|
|
|
2494
2533
|
super();
|
|
2495
2534
|
this.service = service;
|
|
2496
2535
|
}
|
|
2497
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2498
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
2536
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSwitchMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2537
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedSwitchMessagesDirective, isStandalone: true, selector: "[kendoSwitchLocalizedMessages]", providers: [
|
|
2499
2538
|
{
|
|
2500
2539
|
provide: Messages,
|
|
2501
2540
|
useExisting: forwardRef(() => LocalizedSwitchMessagesDirective)
|
|
2502
2541
|
}
|
|
2503
2542
|
], usesInheritance: true, ngImport: i0 });
|
|
2504
2543
|
}
|
|
2505
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSwitchMessagesDirective, decorators: [{
|
|
2506
2545
|
type: Directive,
|
|
2507
2546
|
args: [{
|
|
2508
2547
|
providers: [
|
|
@@ -2661,7 +2700,7 @@ class SwitchComponent {
|
|
|
2661
2700
|
return this.disabled ? true : undefined;
|
|
2662
2701
|
}
|
|
2663
2702
|
get ariaReadonly() {
|
|
2664
|
-
return this.readonly;
|
|
2703
|
+
return this.readonly || null;
|
|
2665
2704
|
}
|
|
2666
2705
|
hostClasses = true;
|
|
2667
2706
|
get disabledClass() {
|
|
@@ -2934,8 +2973,8 @@ class SwitchComponent {
|
|
|
2934
2973
|
this.renderer.addClass(thumb, classes.toAdd);
|
|
2935
2974
|
}
|
|
2936
2975
|
}
|
|
2937
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2938
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
2976
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2977
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: SwitchComponent, isStandalone: true, selector: "kendo-switch", inputs: { focusableId: "focusableId", onLabel: "onLabel", offLabel: "offLabel", checked: "checked", disabled: "disabled", readonly: "readonly", tabindex: "tabindex", size: "size", thumbRounded: "thumbRounded", trackRounded: "trackRounded", tabIndex: "tabIndex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "attr.role": "this.hostRole", "attr.id": "this.hostId", "attr.aria-checked": "this.ariaChecked", "attr.aria-invalid": "this.ariaInvalid", "attr.tabindex": "this.hostTabIndex", "attr.aria-disabled": "this.ariaDisabled", "attr.aria-readonly": "this.ariaReadonly", "class.k-switch": "this.hostClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
2939
2978
|
LocalizationService,
|
|
2940
2979
|
{ provide: L10N_PREFIX, useValue: 'kendo.switch' },
|
|
2941
2980
|
{
|
|
@@ -2974,7 +3013,7 @@ class SwitchComponent {
|
|
|
2974
3013
|
</span>
|
|
2975
3014
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedSwitchMessagesDirective, selector: "[kendoSwitchLocalizedMessages]" }] });
|
|
2976
3015
|
}
|
|
2977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchComponent, decorators: [{
|
|
2978
3017
|
type: Component,
|
|
2979
3018
|
args: [{
|
|
2980
3019
|
exportAs: 'kendoSwitch',
|
|
@@ -3177,13 +3216,13 @@ class TextBoxDirective {
|
|
|
3177
3216
|
ngOnDestroy() {
|
|
3178
3217
|
this.listeners.forEach(listener => listener());
|
|
3179
3218
|
}
|
|
3180
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3181
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
3219
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3220
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextBoxDirective, isStandalone: true, selector: "input[kendoTextBox]", inputs: { value: "value" }, providers: [{
|
|
3182
3221
|
provide: KendoInput,
|
|
3183
3222
|
useExisting: forwardRef(() => TextBoxDirective)
|
|
3184
3223
|
}], ngImport: i0 });
|
|
3185
3224
|
}
|
|
3186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxDirective, decorators: [{
|
|
3187
3226
|
type: Directive,
|
|
3188
3227
|
args: [{
|
|
3189
3228
|
selector: 'input[kendoTextBox]',
|
|
@@ -3417,8 +3456,8 @@ class TextAreaDirective {
|
|
|
3417
3456
|
});
|
|
3418
3457
|
}
|
|
3419
3458
|
}
|
|
3420
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3421
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
3459
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Injector }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3460
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextAreaDirective, isStandalone: true, selector: "textarea[kendoTextArea]", inputs: { autoSize: "autoSize", value: "value" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-autofill": "this.autofillClass", "attr.dir": "this.direction" } }, providers: [{
|
|
3422
3461
|
provide: NG_VALUE_ACCESSOR,
|
|
3423
3462
|
useExisting: forwardRef(() => TextAreaDirective),
|
|
3424
3463
|
multi: true
|
|
@@ -3427,7 +3466,7 @@ class TextAreaDirective {
|
|
|
3427
3466
|
useExisting: forwardRef(() => TextAreaDirective)
|
|
3428
3467
|
}], usesOnChanges: true, ngImport: i0 });
|
|
3429
3468
|
}
|
|
3430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3469
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaDirective, decorators: [{
|
|
3431
3470
|
type: Directive,
|
|
3432
3471
|
args: [{
|
|
3433
3472
|
providers: [{
|
|
@@ -3643,10 +3682,10 @@ class InputSeparatorComponent {
|
|
|
3643
3682
|
return this.orientation === 'horizontal';
|
|
3644
3683
|
}
|
|
3645
3684
|
hostClass = true;
|
|
3646
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3647
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
3685
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputSeparatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3686
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: InputSeparatorComponent, isStandalone: true, selector: "kendo-input-separator, kendo-textbox-separator", inputs: { orientation: "orientation" }, host: { properties: { "class.k-input-separator-vertical": "this.vertical", "class.k-input-separator-horizontal": "this.horizontal", "class.k-input-separator": "this.hostClass" } }, ngImport: i0, template: ``, isInline: true });
|
|
3648
3687
|
}
|
|
3649
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3688
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputSeparatorComponent, decorators: [{
|
|
3650
3689
|
type: Component,
|
|
3651
3690
|
args: [{
|
|
3652
3691
|
selector: 'kendo-input-separator, kendo-textbox-separator',
|
|
@@ -3758,10 +3797,10 @@ class SharedInputEventsDirective {
|
|
|
3758
3797
|
ngOnDestroy() {
|
|
3759
3798
|
this.subscriptions.unsubscribe();
|
|
3760
3799
|
}
|
|
3761
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3762
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
3800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SharedInputEventsDirective, deps: [{ token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3801
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: SharedInputEventsDirective, isStandalone: true, selector: "[kendoInputSharedEvents]", inputs: { hostElement: "hostElement", clearButtonClicked: "clearButtonClicked", isFocused: "isFocused" }, outputs: { isFocusedChange: "isFocusedChange", onFocus: "onFocus", handleBlur: "handleBlur" }, ngImport: i0 });
|
|
3763
3802
|
}
|
|
3764
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SharedInputEventsDirective, decorators: [{
|
|
3765
3804
|
type: Directive,
|
|
3766
3805
|
args: [{
|
|
3767
3806
|
selector: '[kendoInputSharedEvents]',
|
|
@@ -3793,10 +3832,10 @@ class NumericTextBoxMessages extends ComponentMessages {
|
|
|
3793
3832
|
* Sets the title of the **Increment** button in the NumericTextBox.
|
|
3794
3833
|
*/
|
|
3795
3834
|
increment;
|
|
3796
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3797
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
3835
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3836
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: NumericTextBoxMessages, isStandalone: true, selector: "kendo-numerictextbox-messages-base", inputs: { decrement: "decrement", increment: "increment" }, usesInheritance: true, ngImport: i0 });
|
|
3798
3837
|
}
|
|
3799
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxMessages, decorators: [{
|
|
3800
3839
|
type: Directive,
|
|
3801
3840
|
args: [{
|
|
3802
3841
|
selector: 'kendo-numerictextbox-messages-base'
|
|
@@ -3816,15 +3855,15 @@ class LocalizedNumericTextBoxMessagesDirective extends NumericTextBoxMessages {
|
|
|
3816
3855
|
super();
|
|
3817
3856
|
this.service = service;
|
|
3818
3857
|
}
|
|
3819
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
3820
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
3858
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedNumericTextBoxMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3859
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedNumericTextBoxMessagesDirective, isStandalone: true, selector: "[kendoNumericTextBoxLocalizedMessages]", providers: [
|
|
3821
3860
|
{
|
|
3822
3861
|
provide: NumericTextBoxMessages,
|
|
3823
3862
|
useExisting: forwardRef(() => LocalizedNumericTextBoxMessagesDirective)
|
|
3824
3863
|
}
|
|
3825
3864
|
], usesInheritance: true, ngImport: i0 });
|
|
3826
3865
|
}
|
|
3827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
3866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedNumericTextBoxMessagesDirective, decorators: [{
|
|
3828
3867
|
type: Directive,
|
|
3829
3868
|
args: [{
|
|
3830
3869
|
providers: [
|
|
@@ -4824,14 +4863,15 @@ class NumericTextBoxComponent {
|
|
|
4824
4863
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
4825
4864
|
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement, this.injector);
|
|
4826
4865
|
}
|
|
4827
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
4828
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
4866
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i1$1.IntlService }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4867
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: NumericTextBoxComponent, isStandalone: true, selector: "kendo-numerictextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", autoCorrect: "autoCorrect", format: "format", max: "max", min: "min", decimals: "decimals", placeholder: "placeholder", step: "step", spinners: "spinners", rangeValidation: "rangeValidation", tabindex: "tabindex", tabIndex: "tabIndex", changeValueOnScroll: "changeValueOnScroll", selectOnFocus: "selectOnFocus", value: "value", maxlength: "maxlength", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-disabled": "this.disableClass" } }, providers: [
|
|
4829
4868
|
LocalizationService,
|
|
4830
4869
|
{ provide: L10N_PREFIX, useValue: 'kendo.numerictextbox' },
|
|
4831
4870
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => NumericTextBoxComponent), multi: true },
|
|
4832
4871
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => NumericTextBoxComponent), multi: true },
|
|
4833
4872
|
{ provide: KendoInput, useExisting: forwardRef(() => NumericTextBoxComponent) },
|
|
4834
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NumericTextBoxComponent) }
|
|
4873
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NumericTextBoxComponent) },
|
|
4874
|
+
provideComponentName('numerictextbox')
|
|
4835
4875
|
], queries: [{ propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "numericInput", first: true, predicate: ["numericInput"], descendants: true, static: true }], exportAs: ["kendoNumericTextBox"], usesOnChanges: true, ngImport: i0, template: `
|
|
4836
4876
|
<ng-container kendoNumericTextBoxLocalizedMessages
|
|
4837
4877
|
i18n-increment="kendo.numerictextbox.increment|The title for the **Increment** button in the NumericTextBox"
|
|
@@ -4899,11 +4939,11 @@ class NumericTextBoxComponent {
|
|
|
4899
4939
|
<button
|
|
4900
4940
|
type="button"
|
|
4901
4941
|
[kendoEventsOutsideAngular]="{ mousedown: increasePress }"
|
|
4902
|
-
[attr.aria-hidden]="true"
|
|
4903
4942
|
[attr.aria-label]="incrementTitle"
|
|
4904
4943
|
[title]="incrementTitle"
|
|
4905
4944
|
class="k-spinner-increase k-button k-icon-button"
|
|
4906
4945
|
[class.k-active]="arrowDirection === ArrowDirection.Up"
|
|
4946
|
+
[class.k-disabled]="disabled"
|
|
4907
4947
|
tabindex="-1"
|
|
4908
4948
|
>
|
|
4909
4949
|
<kendo-icon-wrapper
|
|
@@ -4916,10 +4956,10 @@ class NumericTextBoxComponent {
|
|
|
4916
4956
|
<button
|
|
4917
4957
|
type="button"
|
|
4918
4958
|
[kendoEventsOutsideAngular]="{ mousedown: decreasePress }"
|
|
4919
|
-
[attr.aria-hidden]="true"
|
|
4920
4959
|
[attr.aria-label]="decrementTitle"
|
|
4921
4960
|
[title]="decrementTitle"
|
|
4922
4961
|
[class.k-active]="arrowDirection === ArrowDirection.Down"
|
|
4962
|
+
[class.k-disabled]="disabled"
|
|
4923
4963
|
class="k-spinner-decrease k-button k-icon-button"
|
|
4924
4964
|
tabindex="-1"
|
|
4925
4965
|
>
|
|
@@ -4935,7 +4975,7 @@ class NumericTextBoxComponent {
|
|
|
4935
4975
|
</ng-container>
|
|
4936
4976
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedNumericTextBoxMessagesDirective, selector: "[kendoNumericTextBoxLocalizedMessages]" }, { kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: InputSeparatorComponent, selector: "kendo-input-separator, kendo-textbox-separator", inputs: ["orientation"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4937
4977
|
}
|
|
4938
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
4978
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxComponent, decorators: [{
|
|
4939
4979
|
type: Component,
|
|
4940
4980
|
args: [{
|
|
4941
4981
|
exportAs: 'kendoNumericTextBox',
|
|
@@ -4945,7 +4985,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
4945
4985
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => NumericTextBoxComponent), multi: true },
|
|
4946
4986
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => NumericTextBoxComponent), multi: true },
|
|
4947
4987
|
{ provide: KendoInput, useExisting: forwardRef(() => NumericTextBoxComponent) },
|
|
4948
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NumericTextBoxComponent) }
|
|
4988
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => NumericTextBoxComponent) },
|
|
4989
|
+
provideComponentName('numerictextbox')
|
|
4949
4990
|
],
|
|
4950
4991
|
selector: 'kendo-numerictextbox',
|
|
4951
4992
|
template: `
|
|
@@ -5015,11 +5056,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
5015
5056
|
<button
|
|
5016
5057
|
type="button"
|
|
5017
5058
|
[kendoEventsOutsideAngular]="{ mousedown: increasePress }"
|
|
5018
|
-
[attr.aria-hidden]="true"
|
|
5019
5059
|
[attr.aria-label]="incrementTitle"
|
|
5020
5060
|
[title]="incrementTitle"
|
|
5021
5061
|
class="k-spinner-increase k-button k-icon-button"
|
|
5022
5062
|
[class.k-active]="arrowDirection === ArrowDirection.Up"
|
|
5063
|
+
[class.k-disabled]="disabled"
|
|
5023
5064
|
tabindex="-1"
|
|
5024
5065
|
>
|
|
5025
5066
|
<kendo-icon-wrapper
|
|
@@ -5032,10 +5073,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
5032
5073
|
<button
|
|
5033
5074
|
type="button"
|
|
5034
5075
|
[kendoEventsOutsideAngular]="{ mousedown: decreasePress }"
|
|
5035
|
-
[attr.aria-hidden]="true"
|
|
5036
5076
|
[attr.aria-label]="decrementTitle"
|
|
5037
5077
|
[title]="decrementTitle"
|
|
5038
5078
|
[class.k-active]="arrowDirection === ArrowDirection.Down"
|
|
5079
|
+
[class.k-disabled]="disabled"
|
|
5039
5080
|
class="k-spinner-decrease k-button k-icon-button"
|
|
5040
5081
|
tabindex="-1"
|
|
5041
5082
|
>
|
|
@@ -5155,15 +5196,15 @@ class NumericTextBoxCustomMessagesComponent extends NumericTextBoxMessages {
|
|
|
5155
5196
|
get override() {
|
|
5156
5197
|
return true;
|
|
5157
5198
|
}
|
|
5158
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5159
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
5199
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: NumericTextBoxCustomMessagesComponent, isStandalone: true, selector: "kendo-numerictextbox-messages", providers: [
|
|
5160
5201
|
{
|
|
5161
5202
|
provide: NumericTextBoxMessages,
|
|
5162
5203
|
useExisting: forwardRef(() => NumericTextBoxCustomMessagesComponent)
|
|
5163
5204
|
}
|
|
5164
5205
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
5165
5206
|
}
|
|
5166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxCustomMessagesComponent, decorators: [{
|
|
5167
5208
|
type: Component,
|
|
5168
5209
|
args: [{
|
|
5169
5210
|
providers: [
|
|
@@ -5598,10 +5639,10 @@ class MaskingService {
|
|
|
5598
5639
|
this.validationTokens = tokens;
|
|
5599
5640
|
});
|
|
5600
5641
|
}
|
|
5601
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
5602
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
5642
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5643
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskingService });
|
|
5603
5644
|
}
|
|
5604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
5645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskingService, decorators: [{
|
|
5605
5646
|
type: Injectable
|
|
5606
5647
|
}] });
|
|
5607
5648
|
|
|
@@ -5815,6 +5856,9 @@ class MaskedTextBoxComponent {
|
|
|
5815
5856
|
get hostDisabledClass() {
|
|
5816
5857
|
return this.disabled;
|
|
5817
5858
|
}
|
|
5859
|
+
get hostInvalidClass() {
|
|
5860
|
+
return this.isControlInvalid;
|
|
5861
|
+
}
|
|
5818
5862
|
/**
|
|
5819
5863
|
* Returns the `ElementRef` of the visible `input` element.
|
|
5820
5864
|
*/
|
|
@@ -6244,8 +6288,8 @@ class MaskedTextBoxComponent {
|
|
|
6244
6288
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
6245
6289
|
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.injector);
|
|
6246
6290
|
}
|
|
6247
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6248
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
6291
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: MaskingService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
6292
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: MaskedTextBoxComponent, isStandalone: true, selector: "kendo-maskedtextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", size: "size", rounded: "rounded", fillMode: "fillMode", mask: "mask", value: "value", rules: "rules", prompt: "prompt", promptPlaceholder: "promptPlaceholder", includeLiterals: "includeLiterals", maskOnFocus: "maskOnFocus", maskValidation: "maskValidation", tabindex: "tabindex", tabIndex: "tabIndex", inputAttributes: "inputAttributes" }, outputs: { onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur", valueChange: "valueChange" }, host: { listeners: { "paste": "pasteHandler($event)", "input": "inputHandler($event)" }, properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-disabled": "this.hostDisabledClass", "class.k-invalid": "this.hostInvalidClass" } }, providers: [
|
|
6249
6293
|
MaskingService,
|
|
6250
6294
|
{
|
|
6251
6295
|
multi: true,
|
|
@@ -6316,7 +6360,7 @@ class MaskedTextBoxComponent {
|
|
|
6316
6360
|
</ng-container>
|
|
6317
6361
|
`, isInline: true, dependencies: [{ kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: InputSeparatorComponent, selector: "kendo-input-separator, kendo-textbox-separator", inputs: ["orientation"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
6318
6362
|
}
|
|
6319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxComponent, decorators: [{
|
|
6320
6364
|
type: Component,
|
|
6321
6365
|
args: [{
|
|
6322
6366
|
exportAs: 'kendoMaskedTextBox',
|
|
@@ -6457,6 +6501,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
6457
6501
|
}], hostDisabledClass: [{
|
|
6458
6502
|
type: HostBinding,
|
|
6459
6503
|
args: ['class.k-disabled']
|
|
6504
|
+
}], hostInvalidClass: [{
|
|
6505
|
+
type: HostBinding,
|
|
6506
|
+
args: ['class.k-invalid']
|
|
6460
6507
|
}], input: [{
|
|
6461
6508
|
type: ViewChild,
|
|
6462
6509
|
args: ['input', { static: true }]
|
|
@@ -6724,10 +6771,10 @@ class RadioCheckBoxBase {
|
|
|
6724
6771
|
setInputAttributes() {
|
|
6725
6772
|
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.injector);
|
|
6726
6773
|
}
|
|
6727
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6728
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
6774
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioCheckBoxBase, deps: [{ token: COMPONENT_TYPE }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
6775
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: RadioCheckBoxBase, isStandalone: true, selector: "ng-component", inputs: { focusableId: "focusableId", title: "title", name: "name", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", value: "value", size: "size", inputAttributes: "inputAttributes" }, outputs: { onFocus: "focus", onBlur: "blur" }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], ngImport: i0, template: '', isInline: true });
|
|
6729
6776
|
}
|
|
6730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioCheckBoxBase, decorators: [{
|
|
6731
6778
|
type: Component,
|
|
6732
6779
|
args: [{
|
|
6733
6780
|
template: ''
|
|
@@ -6876,8 +6923,8 @@ class CheckBoxComponent extends RadioCheckBoxBase {
|
|
|
6876
6923
|
this.checkedState = value;
|
|
6877
6924
|
this.cdr.markForCheck();
|
|
6878
6925
|
}
|
|
6879
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
6880
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
6926
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
6927
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: CheckBoxComponent, isStandalone: true, selector: "kendo-checkbox", inputs: { checkedState: "checkedState", rounded: "rounded" }, outputs: { checkedStateChange: "checkedStateChange" }, host: { properties: { "class.k-checkbox-wrap": "this.hostClass" } }, providers: [
|
|
6881
6928
|
LocalizationService,
|
|
6882
6929
|
{ provide: L10N_PREFIX, useValue: 'kendo.checkbox' },
|
|
6883
6930
|
{
|
|
@@ -6917,7 +6964,7 @@ class CheckBoxComponent extends RadioCheckBoxBase {
|
|
|
6917
6964
|
</ng-container>
|
|
6918
6965
|
`, isInline: true, dependencies: [{ kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
6919
6966
|
}
|
|
6920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
6967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxComponent, decorators: [{
|
|
6921
6968
|
type: Component,
|
|
6922
6969
|
args: [{
|
|
6923
6970
|
exportAs: 'kendoCheckBox',
|
|
@@ -7037,10 +7084,10 @@ class CheckBoxDirective {
|
|
|
7037
7084
|
this.renderer.addClass(elem, classes.toAdd);
|
|
7038
7085
|
}
|
|
7039
7086
|
}
|
|
7040
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7041
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7087
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7088
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-disabled": "this.isDisabled" } }, ngImport: i0 });
|
|
7042
7089
|
}
|
|
7043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxDirective, decorators: [{
|
|
7044
7091
|
type: Directive,
|
|
7045
7092
|
args: [{
|
|
7046
7093
|
selector: 'input[kendoCheckBox]',
|
|
@@ -7303,10 +7350,10 @@ class ColorPickerLocalizationService extends LocalizationService {
|
|
|
7303
7350
|
constructor(prefix, messageService, _rtl) {
|
|
7304
7351
|
super(prefix, messageService, _rtl);
|
|
7305
7352
|
}
|
|
7306
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7307
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7353
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7354
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerLocalizationService });
|
|
7308
7355
|
}
|
|
7309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerLocalizationService, decorators: [{
|
|
7310
7357
|
type: Injectable
|
|
7311
7358
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
7312
7359
|
type: Inject,
|
|
@@ -7335,10 +7382,10 @@ class FlatColorPickerLocalizationService extends LocalizationService {
|
|
|
7335
7382
|
}
|
|
7336
7383
|
return super.get(shortKey);
|
|
7337
7384
|
}
|
|
7338
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7339
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7385
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }, { token: ColorPickerLocalizationService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7386
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerLocalizationService });
|
|
7340
7387
|
}
|
|
7341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerLocalizationService, decorators: [{
|
|
7342
7389
|
type: Injectable
|
|
7343
7390
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
7344
7391
|
type: Inject,
|
|
@@ -7372,10 +7419,10 @@ class ColorGradientLocalizationService extends LocalizationService {
|
|
|
7372
7419
|
}
|
|
7373
7420
|
return super.get(shortKey);
|
|
7374
7421
|
}
|
|
7375
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7376
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
7422
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorGradientLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }, { token: FlatColorPickerLocalizationService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7423
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorGradientLocalizationService });
|
|
7377
7424
|
}
|
|
7378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorGradientLocalizationService, decorators: [{
|
|
7379
7426
|
type: Injectable
|
|
7380
7427
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
7381
7428
|
type: Inject,
|
|
@@ -7408,10 +7455,10 @@ class NumericLabelDirective {
|
|
|
7408
7455
|
const localizationToken = `${this.kendoAdditionalNumericLabel}ChannelLabel`;
|
|
7409
7456
|
this.host.numericInput.nativeElement.setAttribute('aria-label', this.localizationService.get(localizationToken));
|
|
7410
7457
|
}
|
|
7411
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7412
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7458
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericLabelDirective, deps: [{ token: NumericTextBoxComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7459
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: NumericLabelDirective, isStandalone: true, selector: "[kendoAdditionalNumericLabel]", inputs: { kendoAdditionalNumericLabel: "kendoAdditionalNumericLabel", localizationService: "localizationService" }, ngImport: i0 });
|
|
7413
7460
|
}
|
|
7414
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericLabelDirective, decorators: [{
|
|
7415
7462
|
type: Directive,
|
|
7416
7463
|
args: [{
|
|
7417
7464
|
selector: '[kendoAdditionalNumericLabel]',
|
|
@@ -7462,10 +7509,10 @@ class TextBoxSuffixTemplateDirective {
|
|
|
7462
7509
|
constructor(templateRef) {
|
|
7463
7510
|
this.templateRef = templateRef;
|
|
7464
7511
|
}
|
|
7465
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7466
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7512
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxSuffixTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7513
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextBoxSuffixTemplateDirective, isStandalone: true, selector: "[kendoTextBoxSuffixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
7467
7514
|
}
|
|
7468
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxSuffixTemplateDirective, decorators: [{
|
|
7469
7516
|
type: Directive,
|
|
7470
7517
|
args: [{
|
|
7471
7518
|
selector: '[kendoTextBoxSuffixTemplate]',
|
|
@@ -7507,10 +7554,10 @@ class TextBoxPrefixTemplateDirective {
|
|
|
7507
7554
|
constructor(templateRef) {
|
|
7508
7555
|
this.templateRef = templateRef;
|
|
7509
7556
|
}
|
|
7510
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7511
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7557
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxPrefixTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7558
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextBoxPrefixTemplateDirective, isStandalone: true, selector: "[kendoTextBoxPrefixTemplate]", inputs: { showSeparator: "showSeparator" }, ngImport: i0 });
|
|
7512
7559
|
}
|
|
7513
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxPrefixTemplateDirective, decorators: [{
|
|
7514
7561
|
type: Directive,
|
|
7515
7562
|
args: [{
|
|
7516
7563
|
selector: '[kendoTextBoxPrefixTemplate]',
|
|
@@ -7530,10 +7577,10 @@ class TextBoxMessages extends ComponentMessages {
|
|
|
7530
7577
|
* The title of the **Clear** button of the TextBox.
|
|
7531
7578
|
*/
|
|
7532
7579
|
clear;
|
|
7533
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7534
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7580
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
7581
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextBoxMessages, isStandalone: true, selector: "kendo-textbox-messages-base", inputs: { clear: "clear" }, usesInheritance: true, ngImport: i0 });
|
|
7535
7582
|
}
|
|
7536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxMessages, decorators: [{
|
|
7537
7584
|
type: Directive,
|
|
7538
7585
|
args: [{
|
|
7539
7586
|
selector: 'kendo-textbox-messages-base'
|
|
@@ -7551,15 +7598,15 @@ class LocalizedTextBoxMessagesDirective extends TextBoxMessages {
|
|
|
7551
7598
|
super();
|
|
7552
7599
|
this.service = service;
|
|
7553
7600
|
}
|
|
7554
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
7555
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
7601
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedTextBoxMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7602
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedTextBoxMessagesDirective, isStandalone: true, selector: "[kendoTextBoxLocalizedMessages]", providers: [
|
|
7556
7603
|
{
|
|
7557
7604
|
provide: TextBoxMessages,
|
|
7558
7605
|
useExisting: forwardRef(() => LocalizedTextBoxMessagesDirective)
|
|
7559
7606
|
}
|
|
7560
7607
|
], usesInheritance: true, ngImport: i0 });
|
|
7561
7608
|
}
|
|
7562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
7609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedTextBoxMessagesDirective, decorators: [{
|
|
7563
7610
|
type: Directive,
|
|
7564
7611
|
args: [{
|
|
7565
7612
|
providers: [
|
|
@@ -8187,8 +8234,8 @@ class TextBoxComponent {
|
|
|
8187
8234
|
setInputAttributes() {
|
|
8188
8235
|
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.injector);
|
|
8189
8236
|
}
|
|
8190
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8191
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
8237
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", 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 });
|
|
8238
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", 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: [
|
|
8192
8239
|
LocalizationService,
|
|
8193
8240
|
{ provide: L10N_PREFIX, useValue: 'kendo.textbox' },
|
|
8194
8241
|
{
|
|
@@ -8197,7 +8244,8 @@ class TextBoxComponent {
|
|
|
8197
8244
|
multi: true
|
|
8198
8245
|
},
|
|
8199
8246
|
{ provide: KendoInput, useExisting: forwardRef(() => TextBoxComponent) },
|
|
8200
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => TextBoxComponent) }
|
|
8247
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => TextBoxComponent) },
|
|
8248
|
+
provideComponentName('textbox')
|
|
8201
8249
|
], queries: [{ propertyName: "suffixTemplate", first: true, predicate: SuffixTemplateDirective, descendants: true }, { propertyName: "prefixTemplate", first: true, predicate: PrefixTemplateDirective, descendants: true }, { propertyName: "textBoxSuffixTemplate", predicate: TextBoxSuffixTemplateDirective }, { propertyName: "textBoxPrefixTemplate", predicate: TextBoxPrefixTemplateDirective }], viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], exportAs: ["kendoTextBox"], usesOnChanges: true, ngImport: i0, template: `
|
|
8202
8250
|
<ng-container kendoTextBoxLocalizedMessages
|
|
8203
8251
|
i18n-clear="kendo.textbox.clear|The title for the **Clear** button in the TextBox."
|
|
@@ -8287,7 +8335,7 @@ class TextBoxComponent {
|
|
|
8287
8335
|
<ng-container>
|
|
8288
8336
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedTextBoxMessagesDirective, selector: "[kendoTextBoxLocalizedMessages]" }, { kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: InputSeparatorComponent, selector: "kendo-input-separator, kendo-textbox-separator", inputs: ["orientation"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
8289
8337
|
}
|
|
8290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxComponent, decorators: [{
|
|
8291
8339
|
type: Component,
|
|
8292
8340
|
args: [{
|
|
8293
8341
|
exportAs: 'kendoTextBox',
|
|
@@ -8300,7 +8348,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
8300
8348
|
multi: true
|
|
8301
8349
|
},
|
|
8302
8350
|
{ provide: KendoInput, useExisting: forwardRef(() => TextBoxComponent) },
|
|
8303
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => TextBoxComponent) }
|
|
8351
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => TextBoxComponent) },
|
|
8352
|
+
provideComponentName('textbox')
|
|
8304
8353
|
],
|
|
8305
8354
|
selector: 'kendo-textbox',
|
|
8306
8355
|
template: `
|
|
@@ -8494,10 +8543,10 @@ class TextLabelDirective {
|
|
|
8494
8543
|
ngOnInit() {
|
|
8495
8544
|
this.renderer.setAttribute(this.textBox.input.nativeElement, 'id', this.focusableId);
|
|
8496
8545
|
}
|
|
8497
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8498
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
8546
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextLabelDirective, deps: [{ token: TextBoxComponent }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8547
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: TextLabelDirective, isStandalone: true, selector: "[kendoTextLabel]", inputs: { focusableId: "focusableId" }, ngImport: i0 });
|
|
8499
8548
|
}
|
|
8500
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextLabelDirective, decorators: [{
|
|
8501
8550
|
type: Directive,
|
|
8502
8551
|
args: [{
|
|
8503
8552
|
selector: '[kendoTextLabel]',
|
|
@@ -8676,8 +8725,8 @@ class ColorInputComponent {
|
|
|
8676
8725
|
lastInput() {
|
|
8677
8726
|
return this.hexInput?.nativeElement || this.opacityInput || this.blueInput;
|
|
8678
8727
|
}
|
|
8679
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
8680
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
8728
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorInputComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8729
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColorInputComponent, isStandalone: true, selector: "kendo-colorinput", inputs: { focusableId: "focusableId", formatView: "formatView", size: "size", tabindex: "tabindex", value: "value", opacity: "opacity", disabled: "disabled", readonly: "readonly" }, outputs: { valueChange: "valueChange", tabOut: "tabOut" }, host: { properties: { "class.k-colorgradient-inputs": "this.colorInputClass", "class.k-hstack": "this.colorInputClass" } }, viewQueries: [{ propertyName: "opacityInput", first: true, predicate: ["opacityInput"], descendants: true }, { propertyName: "hexInput", first: true, predicate: ["hexInput"], descendants: true }, { propertyName: "blueInput", first: true, predicate: ["blue"], descendants: true }, { propertyName: "toggleFormatButton", first: true, predicate: ["toggleFormatButton"], descendants: true, read: ElementRef }], usesOnChanges: true, ngImport: i0, template: `
|
|
8681
8730
|
<div class="k-vstack">
|
|
8682
8731
|
<button
|
|
8683
8732
|
kendoButton
|
|
@@ -8808,7 +8857,7 @@ class ColorInputComponent {
|
|
|
8808
8857
|
}
|
|
8809
8858
|
`, 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"] }] });
|
|
8810
8859
|
}
|
|
8811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
8860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorInputComponent, decorators: [{
|
|
8812
8861
|
type: Component,
|
|
8813
8862
|
args: [{
|
|
8814
8863
|
selector: 'kendo-colorinput',
|
|
@@ -9031,7 +9080,7 @@ class ContrastValidationComponent {
|
|
|
9031
9080
|
pass;
|
|
9032
9081
|
value;
|
|
9033
9082
|
checkIcon = checkIcon;
|
|
9034
|
-
|
|
9083
|
+
xIcon = xIcon;
|
|
9035
9084
|
constructor(localization) {
|
|
9036
9085
|
this.localization = localization;
|
|
9037
9086
|
}
|
|
@@ -9045,25 +9094,25 @@ class ContrastValidationComponent {
|
|
|
9045
9094
|
const ratio = this.type === 'AA' ? AA_RATIO : AAA_RATIO;
|
|
9046
9095
|
return `${this.type}: ${ratio.toFixed(1)}`;
|
|
9047
9096
|
}
|
|
9048
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9049
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
9097
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ContrastValidationComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9098
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ContrastValidationComponent, isStandalone: true, selector: "[kendoContrastValidation]", inputs: { type: "type", pass: "pass", value: "value" }, ngImport: i0, template: `
|
|
9050
9099
|
<span>{{contrastText}}</span>
|
|
9051
9100
|
@if (value) {
|
|
9052
9101
|
@if (pass) {
|
|
9053
|
-
<span class="k-contrast-validation k-text-success">
|
|
9102
|
+
<span class="k-contrast-validation !k-text-success">
|
|
9054
9103
|
{{passMessage}}
|
|
9055
9104
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9056
9105
|
</span>
|
|
9057
9106
|
} @else {
|
|
9058
|
-
<span class="k-contrast-validation k-text-error">
|
|
9107
|
+
<span class="k-contrast-validation !k-text-error">
|
|
9059
9108
|
{{failMessage}}
|
|
9060
|
-
<kendo-icon-wrapper name="x" [svgIcon]="
|
|
9109
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
9061
9110
|
</span>
|
|
9062
9111
|
}
|
|
9063
9112
|
}
|
|
9064
9113
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
9065
9114
|
}
|
|
9066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ContrastValidationComponent, decorators: [{
|
|
9067
9116
|
type: Component,
|
|
9068
9117
|
args: [{
|
|
9069
9118
|
selector: '[kendoContrastValidation]',
|
|
@@ -9071,14 +9120,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
9071
9120
|
<span>{{contrastText}}</span>
|
|
9072
9121
|
@if (value) {
|
|
9073
9122
|
@if (pass) {
|
|
9074
|
-
<span class="k-contrast-validation k-text-success">
|
|
9123
|
+
<span class="k-contrast-validation !k-text-success">
|
|
9075
9124
|
{{passMessage}}
|
|
9076
9125
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9077
9126
|
</span>
|
|
9078
9127
|
} @else {
|
|
9079
|
-
<span class="k-contrast-validation k-text-error">
|
|
9128
|
+
<span class="k-contrast-validation !k-text-error">
|
|
9080
9129
|
{{failMessage}}
|
|
9081
|
-
<kendo-icon-wrapper name="x" [svgIcon]="
|
|
9130
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
9082
9131
|
</span>
|
|
9083
9132
|
}
|
|
9084
9133
|
}
|
|
@@ -9102,7 +9151,7 @@ class ContrastComponent {
|
|
|
9102
9151
|
value;
|
|
9103
9152
|
ratio;
|
|
9104
9153
|
checkIcon = checkIcon;
|
|
9105
|
-
|
|
9154
|
+
xIcon = xIcon;
|
|
9106
9155
|
constructor(localization) {
|
|
9107
9156
|
this.localization = localization;
|
|
9108
9157
|
}
|
|
@@ -9122,21 +9171,21 @@ class ContrastComponent {
|
|
|
9122
9171
|
const contrast = getContrastFromTwoRGBAs(getRGBA(this.value), getRGBA(this.ratio));
|
|
9123
9172
|
return contrast;
|
|
9124
9173
|
}
|
|
9125
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9126
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
9174
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ContrastComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9175
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ContrastComponent, isStandalone: true, selector: "[kendoContrastTool]", inputs: { value: "value", ratio: "ratio" }, ngImport: i0, template: `
|
|
9127
9176
|
<div class="k-contrast-ratio">
|
|
9128
9177
|
<span class="k-contrast-ratio-text">{{contrastRatioText}}</span>
|
|
9129
9178
|
@if (value) {
|
|
9130
9179
|
@if (satisfiesAACondition) {
|
|
9131
|
-
<span class="k-contrast-validation k-text-success">
|
|
9180
|
+
<span class="k-contrast-validation !k-text-success">
|
|
9132
9181
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9133
9182
|
@if (satisfiesAAACondition) {
|
|
9134
9183
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9135
9184
|
}
|
|
9136
9185
|
</span>
|
|
9137
9186
|
} @else {
|
|
9138
|
-
<span class="k-contrast-validation k-text-error">
|
|
9139
|
-
<kendo-icon-wrapper name="x" [svgIcon]="
|
|
9187
|
+
<span class="k-contrast-validation !k-text-error">
|
|
9188
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
9140
9189
|
</span>
|
|
9141
9190
|
}
|
|
9142
9191
|
}
|
|
@@ -9153,7 +9202,7 @@ class ContrastComponent {
|
|
|
9153
9202
|
</div>
|
|
9154
9203
|
`, isInline: true, dependencies: [{ kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ContrastValidationComponent, selector: "[kendoContrastValidation]", inputs: ["type", "pass", "value"] }] });
|
|
9155
9204
|
}
|
|
9156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ContrastComponent, decorators: [{
|
|
9157
9206
|
type: Component,
|
|
9158
9207
|
args: [{
|
|
9159
9208
|
selector: '[kendoContrastTool]',
|
|
@@ -9162,15 +9211,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
9162
9211
|
<span class="k-contrast-ratio-text">{{contrastRatioText}}</span>
|
|
9163
9212
|
@if (value) {
|
|
9164
9213
|
@if (satisfiesAACondition) {
|
|
9165
|
-
<span class="k-contrast-validation k-text-success">
|
|
9214
|
+
<span class="k-contrast-validation !k-text-success">
|
|
9166
9215
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9167
9216
|
@if (satisfiesAAACondition) {
|
|
9168
9217
|
<kendo-icon-wrapper name="check" [svgIcon]="checkIcon"></kendo-icon-wrapper>
|
|
9169
9218
|
}
|
|
9170
9219
|
</span>
|
|
9171
9220
|
} @else {
|
|
9172
|
-
<span class="k-contrast-validation k-text-error">
|
|
9173
|
-
<kendo-icon-wrapper name="x" [svgIcon]="
|
|
9221
|
+
<span class="k-contrast-validation !k-text-error">
|
|
9222
|
+
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
9174
9223
|
</span>
|
|
9175
9224
|
}
|
|
9176
9225
|
}
|
|
@@ -9208,6 +9257,7 @@ class ColorContrastSvgComponent {
|
|
|
9208
9257
|
oldH;
|
|
9209
9258
|
oldA;
|
|
9210
9259
|
metrics;
|
|
9260
|
+
hsvaSub;
|
|
9211
9261
|
ngAfterViewInit() {
|
|
9212
9262
|
if (!isDocumentAvailable()) {
|
|
9213
9263
|
return;
|
|
@@ -9215,7 +9265,7 @@ class ColorContrastSvgComponent {
|
|
|
9215
9265
|
this.metrics = this.wrapper.getBoundingClientRect();
|
|
9216
9266
|
this.oldA = this.hsva.value.a;
|
|
9217
9267
|
this.oldH = this.hsva.value.h;
|
|
9218
|
-
this.hsva.subscribe((value) => {
|
|
9268
|
+
this.hsvaSub = this.hsva.subscribe((value) => {
|
|
9219
9269
|
if (value.h !== this.oldH || value.a !== this.oldA) {
|
|
9220
9270
|
this.oldH = value.h;
|
|
9221
9271
|
this.oldA = value.a;
|
|
@@ -9228,6 +9278,9 @@ class ColorContrastSvgComponent {
|
|
|
9228
9278
|
this.setPaths();
|
|
9229
9279
|
}
|
|
9230
9280
|
}
|
|
9281
|
+
ngOnDestroy() {
|
|
9282
|
+
this.hsvaSub?.unsubscribe();
|
|
9283
|
+
}
|
|
9231
9284
|
setPaths() {
|
|
9232
9285
|
const bezierCommandCalc = bezierCommand(controlPoint(line));
|
|
9233
9286
|
this.paths = [svgPath(this.getPaths(AA_RATIO, STEP_COUNT), bezierCommandCalc),
|
|
@@ -9254,6 +9307,10 @@ class ColorContrastSvgComponent {
|
|
|
9254
9307
|
}
|
|
9255
9308
|
getPaths(contrast, stepCount, reversed = false) {
|
|
9256
9309
|
const points = [];
|
|
9310
|
+
const hasDimensionts = this.metrics.width && this.metrics.height;
|
|
9311
|
+
if (!hasDimensionts) {
|
|
9312
|
+
return points;
|
|
9313
|
+
}
|
|
9257
9314
|
for (let i = 0; i <= this.metrics.width; i += this.metrics.width / stepCount) {
|
|
9258
9315
|
const value = this.findValue(contrast, i, 0, this.metrics.height, reversed ? ((a, b) => a < b) : ((a, b) => a > b));
|
|
9259
9316
|
if (value !== null) {
|
|
@@ -9262,14 +9319,14 @@ class ColorContrastSvgComponent {
|
|
|
9262
9319
|
}
|
|
9263
9320
|
return points;
|
|
9264
9321
|
}
|
|
9265
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9266
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
9322
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorContrastSvgComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9323
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColorContrastSvgComponent, isStandalone: true, selector: "[kendoColorContrastSvg]", inputs: { wrapper: "wrapper", hsva: "hsva", backgroundColor: "backgroundColor" }, host: { properties: { "class.k-color-contrast-svg": "this.hostClass" } }, usesOnChanges: true, ngImport: i0, template: `
|
|
9267
9324
|
@for (path of paths; track path) {
|
|
9268
9325
|
<svg:path [attr.d]="path" fill="none" stroke="white" stroke-width="1"></svg:path>
|
|
9269
9326
|
}
|
|
9270
9327
|
`, isInline: true });
|
|
9271
9328
|
}
|
|
9272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorContrastSvgComponent, decorators: [{
|
|
9273
9330
|
type: Component,
|
|
9274
9331
|
args: [{
|
|
9275
9332
|
selector: '[kendoColorContrastSvg]',
|
|
@@ -9416,10 +9473,10 @@ class ColorPickerMessages extends ComponentMessages {
|
|
|
9416
9473
|
* Sets the aria-label attribute of the ColorPicker toggle button.
|
|
9417
9474
|
*/
|
|
9418
9475
|
toggleButtonLabel;
|
|
9419
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9420
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
9476
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
9477
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: ColorPickerMessages, isStandalone: true, selector: "kendo-colorpicker-messages-base", inputs: { colorPaletteNoColor: "colorPaletteNoColor", colorGradientNoColor: "colorGradientNoColor", flatColorPickerNoColor: "flatColorPickerNoColor", colorPickerNoColor: "colorPickerNoColor", colorGradientHandle: "colorGradientHandle", clearButton: "clearButton", hueSliderHandle: "hueSliderHandle", opacitySliderHandle: "opacitySliderHandle", hexInputPlaceholder: "hexInputPlaceholder", redInputPlaceholder: "redInputPlaceholder", greenInputPlaceholder: "greenInputPlaceholder", blueInputPlaceholder: "blueInputPlaceholder", alphaInputPlaceholder: "alphaInputPlaceholder", redChannelLabel: "redChannelLabel", greenChannelLabel: "greenChannelLabel", blueChannelLabel: "blueChannelLabel", alphaChannelLabel: "alphaChannelLabel", passContrast: "passContrast", failContrast: "failContrast", contrastRatio: "contrastRatio", previewColor: "previewColor", revertSelection: "revertSelection", gradientView: "gradientView", paletteView: "paletteView", formatButton: "formatButton", applyButton: "applyButton", cancelButton: "cancelButton", adaptiveCloseButtonTitle: "adaptiveCloseButtonTitle", adaptiveTitle: "adaptiveTitle", toggleButtonLabel: "toggleButtonLabel" }, usesInheritance: true, ngImport: i0 });
|
|
9421
9478
|
}
|
|
9422
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerMessages, decorators: [{
|
|
9423
9480
|
type: Directive,
|
|
9424
9481
|
args: [{
|
|
9425
9482
|
selector: 'kendo-colorpicker-messages-base'
|
|
@@ -9495,15 +9552,15 @@ class LocalizedColorPickerMessagesDirective extends ColorPickerMessages {
|
|
|
9495
9552
|
super();
|
|
9496
9553
|
this.service = service;
|
|
9497
9554
|
}
|
|
9498
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
9499
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
9555
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedColorPickerMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
9556
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedColorPickerMessagesDirective, isStandalone: true, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]", providers: [
|
|
9500
9557
|
{
|
|
9501
9558
|
provide: ColorPickerMessages,
|
|
9502
9559
|
useExisting: forwardRef(() => LocalizedColorPickerMessagesDirective)
|
|
9503
9560
|
}
|
|
9504
9561
|
], usesInheritance: true, ngImport: i0 });
|
|
9505
9562
|
}
|
|
9506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
9563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedColorPickerMessagesDirective, decorators: [{
|
|
9507
9564
|
type: Directive,
|
|
9508
9565
|
args: [{
|
|
9509
9566
|
providers: [
|
|
@@ -9540,7 +9597,7 @@ class ColorGradientComponent {
|
|
|
9540
9597
|
injector;
|
|
9541
9598
|
hostClasses = true;
|
|
9542
9599
|
get readonlyAttribute() {
|
|
9543
|
-
return this.ariaAttributesEnabled ? this.readonly : undefined;
|
|
9600
|
+
return this.ariaAttributesEnabled ? (this.readonly || null) : undefined;
|
|
9544
9601
|
}
|
|
9545
9602
|
get disabledClass() {
|
|
9546
9603
|
return this.disabled;
|
|
@@ -9553,13 +9610,13 @@ class ColorGradientComponent {
|
|
|
9553
9610
|
return this.tabindex?.toString() || '0';
|
|
9554
9611
|
}
|
|
9555
9612
|
get ariaRole() {
|
|
9556
|
-
return this.ariaAttributesEnabled ? 'textbox' :
|
|
9613
|
+
return this.ariaAttributesEnabled ? 'textbox' : 'none';
|
|
9557
9614
|
}
|
|
9558
9615
|
get isControlInvalid() {
|
|
9559
|
-
return this.ariaAttributesEnabled ? (this.control?.invalid)?.toString() : undefined;
|
|
9616
|
+
return this.ariaAttributesEnabled ? (this.control?.invalid && (this.control?.touched || this.control?.dirty))?.toString() : undefined;
|
|
9560
9617
|
}
|
|
9561
9618
|
get isDisabled() {
|
|
9562
|
-
return this.disabled
|
|
9619
|
+
return this.disabled ? this.disabled.toString() : null;
|
|
9563
9620
|
}
|
|
9564
9621
|
/**
|
|
9565
9622
|
* @hidden
|
|
@@ -9766,6 +9823,12 @@ class ColorGradientComponent {
|
|
|
9766
9823
|
get hsvSliderValueText() {
|
|
9767
9824
|
return `X: ${this.hsvHandleCoordinates.x} Y: ${this.hsvHandleCoordinates.y}`;
|
|
9768
9825
|
}
|
|
9826
|
+
/**
|
|
9827
|
+
* @hidden
|
|
9828
|
+
*/
|
|
9829
|
+
get hsvSliderValueNow() {
|
|
9830
|
+
return Math.round((1 - this.hsva.value.v) * 100);
|
|
9831
|
+
}
|
|
9769
9832
|
/**
|
|
9770
9833
|
* @hidden
|
|
9771
9834
|
*/
|
|
@@ -10130,8 +10193,8 @@ class ColorGradientComponent {
|
|
|
10130
10193
|
this.renderer.addClass(elem, classes.toAdd);
|
|
10131
10194
|
}
|
|
10132
10195
|
}
|
|
10133
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10134
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
10196
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorGradientComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
10197
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColorGradientComponent, isStandalone: true, selector: "kendo-colorgradient", inputs: { adaptiveMode: "adaptiveMode", id: "id", opacity: "opacity", size: "size", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format", gradientSliderStep: "gradientSliderStep", gradientSliderSmallStep: "gradientSliderSmallStep", ariaAttributesEnabled: "ariaAttributesEnabled" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler($event)", "focusin": "focusHandler($event)" }, properties: { "class.k-colorgradient": "this.hostClasses", "attr.aria-readonly": "this.readonlyAttribute", "class.k-disabled": "this.disabledClass", "attr.id": "this.gradientId", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-disabled": "this.isDisabled", "class.k-readonly": "this.readonly" } }, providers: [
|
|
10135
10198
|
{
|
|
10136
10199
|
multi: true,
|
|
10137
10200
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -10149,7 +10212,8 @@ class ColorGradientComponent {
|
|
|
10149
10212
|
{
|
|
10150
10213
|
provide: L10N_PREFIX,
|
|
10151
10214
|
useValue: 'kendo.colorgradient'
|
|
10152
|
-
}
|
|
10215
|
+
},
|
|
10216
|
+
provideComponentName('colorgradient')
|
|
10153
10217
|
], viewQueries: [{ propertyName: "gradientDragHandle", first: true, predicate: ["gradientDragHandle"], descendants: true }, { propertyName: "inputs", first: true, predicate: ["inputs"], descendants: true }, { propertyName: "alphaSlider", first: true, predicate: ["alphaSlider"], descendants: true }, { propertyName: "gradientWrapper", first: true, predicate: ["gradientWrapper"], descendants: true }, { propertyName: "hsvRectangle", first: true, predicate: ["hsvRectangle"], descendants: true }], exportAs: ["kendoColorGradient"], usesOnChanges: true, ngImport: i0, template: `
|
|
10154
10218
|
<ng-container kendoColorGradientLocalizedMessages
|
|
10155
10219
|
i18n-colorGradientNoColor="kendo.colorgradient.colorGradientNoColor|The aria-label applied to the ColorGradient component when the value is empty."
|
|
@@ -10213,7 +10277,9 @@ class ColorGradientComponent {
|
|
|
10213
10277
|
[attr.aria-readonly]="readonly ? readonly : undefined"
|
|
10214
10278
|
[attr.aria-disabled]="disabled ? disabled : undefined"
|
|
10215
10279
|
[attr.aria-orientation]="'undefined'"
|
|
10216
|
-
[attr.aria-valuenow]="
|
|
10280
|
+
[attr.aria-valuenow]="hsvSliderValueNow"
|
|
10281
|
+
aria-valuemin="0"
|
|
10282
|
+
aria-valuemax="100"
|
|
10217
10283
|
(keydown.shift.tab)="$event.preventDefault(); inputs.focusLast();">
|
|
10218
10284
|
</div>
|
|
10219
10285
|
</div>
|
|
@@ -10257,6 +10323,7 @@ class ColorGradientComponent {
|
|
|
10257
10323
|
[style.height.px]="clearButton ? '140' : null"
|
|
10258
10324
|
class="k-hue-slider k-colorgradient-slider"
|
|
10259
10325
|
[dragHandleTitle]="hueSliderTitle"
|
|
10326
|
+
[attr.aria-label]="hueSliderTitle"
|
|
10260
10327
|
[tabindex]="innerTabIndex"
|
|
10261
10328
|
[disabled]="disabled"
|
|
10262
10329
|
[readonly]="readonly"
|
|
@@ -10279,6 +10346,7 @@ class ColorGradientComponent {
|
|
|
10279
10346
|
[style.height.px]="clearButton ? '140' : null"
|
|
10280
10347
|
class="k-alpha-slider k-colorgradient-slider"
|
|
10281
10348
|
[dragHandleTitle]="opacitySliderTitle"
|
|
10349
|
+
[attr.aria-label]="opacitySliderTitle"
|
|
10282
10350
|
[disabled]="disabled"
|
|
10283
10351
|
[readonly]="readonly"
|
|
10284
10352
|
[showButtons]="false"
|
|
@@ -10316,7 +10384,7 @@ class ColorGradientComponent {
|
|
|
10316
10384
|
}
|
|
10317
10385
|
`, 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"] }] });
|
|
10318
10386
|
}
|
|
10319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorGradientComponent, decorators: [{
|
|
10320
10388
|
type: Component,
|
|
10321
10389
|
args: [{
|
|
10322
10390
|
exportAs: 'kendoColorGradient',
|
|
@@ -10339,7 +10407,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
10339
10407
|
{
|
|
10340
10408
|
provide: L10N_PREFIX,
|
|
10341
10409
|
useValue: 'kendo.colorgradient'
|
|
10342
|
-
}
|
|
10410
|
+
},
|
|
10411
|
+
provideComponentName('colorgradient')
|
|
10343
10412
|
],
|
|
10344
10413
|
template: `
|
|
10345
10414
|
<ng-container kendoColorGradientLocalizedMessages
|
|
@@ -10404,7 +10473,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
10404
10473
|
[attr.aria-readonly]="readonly ? readonly : undefined"
|
|
10405
10474
|
[attr.aria-disabled]="disabled ? disabled : undefined"
|
|
10406
10475
|
[attr.aria-orientation]="'undefined'"
|
|
10407
|
-
[attr.aria-valuenow]="
|
|
10476
|
+
[attr.aria-valuenow]="hsvSliderValueNow"
|
|
10477
|
+
aria-valuemin="0"
|
|
10478
|
+
aria-valuemax="100"
|
|
10408
10479
|
(keydown.shift.tab)="$event.preventDefault(); inputs.focusLast();">
|
|
10409
10480
|
</div>
|
|
10410
10481
|
</div>
|
|
@@ -10448,6 +10519,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
10448
10519
|
[style.height.px]="clearButton ? '140' : null"
|
|
10449
10520
|
class="k-hue-slider k-colorgradient-slider"
|
|
10450
10521
|
[dragHandleTitle]="hueSliderTitle"
|
|
10522
|
+
[attr.aria-label]="hueSliderTitle"
|
|
10451
10523
|
[tabindex]="innerTabIndex"
|
|
10452
10524
|
[disabled]="disabled"
|
|
10453
10525
|
[readonly]="readonly"
|
|
@@ -10470,6 +10542,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
10470
10542
|
[style.height.px]="clearButton ? '140' : null"
|
|
10471
10543
|
class="k-alpha-slider k-colorgradient-slider"
|
|
10472
10544
|
[dragHandleTitle]="opacitySliderTitle"
|
|
10545
|
+
[attr.aria-label]="opacitySliderTitle"
|
|
10473
10546
|
[disabled]="disabled"
|
|
10474
10547
|
[readonly]="readonly"
|
|
10475
10548
|
[showButtons]="false"
|
|
@@ -10612,10 +10685,10 @@ class ColorPaletteLocalizationService extends LocalizationService {
|
|
|
10612
10685
|
}
|
|
10613
10686
|
return super.get(shortKey);
|
|
10614
10687
|
}
|
|
10615
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10616
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10688
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1.MessageService, optional: true }, { token: RTL, optional: true }, { token: FlatColorPickerLocalizationService, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10689
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteLocalizationService });
|
|
10617
10690
|
}
|
|
10618
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteLocalizationService, decorators: [{
|
|
10619
10692
|
type: Injectable
|
|
10620
10693
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
10621
10694
|
type: Inject,
|
|
@@ -10745,10 +10818,10 @@ class ColorPaletteService {
|
|
|
10745
10818
|
}
|
|
10746
10819
|
return index;
|
|
10747
10820
|
}
|
|
10748
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
10749
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10822
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteService });
|
|
10750
10823
|
}
|
|
10751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
10824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteService, decorators: [{
|
|
10752
10825
|
type: Injectable
|
|
10753
10826
|
}] });
|
|
10754
10827
|
|
|
@@ -10920,6 +10993,10 @@ class ColorPaletteComponent {
|
|
|
10920
10993
|
* @hidden
|
|
10921
10994
|
*/
|
|
10922
10995
|
hostClasses = true;
|
|
10996
|
+
/**
|
|
10997
|
+
* @hidden
|
|
10998
|
+
*/
|
|
10999
|
+
get ariaDisabled() { return this.disabled || null; }
|
|
10923
11000
|
/**
|
|
10924
11001
|
* @hidden
|
|
10925
11002
|
*/
|
|
@@ -10927,7 +11004,7 @@ class ColorPaletteComponent {
|
|
|
10927
11004
|
/**
|
|
10928
11005
|
* @hidden
|
|
10929
11006
|
*/
|
|
10930
|
-
get readonlyAttribute() { return this.readonly; }
|
|
11007
|
+
get readonlyAttribute() { return this.readonly || null; }
|
|
10931
11008
|
/**
|
|
10932
11009
|
* @hidden
|
|
10933
11010
|
*/
|
|
@@ -11183,8 +11260,8 @@ class ColorPaletteComponent {
|
|
|
11183
11260
|
}
|
|
11184
11261
|
notifyNgTouched = () => { };
|
|
11185
11262
|
notifyNgChanged = () => { };
|
|
11186
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11187
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
11263
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteComponent, deps: [{ token: i0.ElementRef }, { token: ColorPaletteService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
11264
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColorPaletteComponent, isStandalone: true, selector: "kendo-colorpalette", inputs: { id: "id", format: "format", value: "value", columns: "columns", palette: "palette", size: "size", tabindex: "tabindex", disabled: "disabled", readonly: "readonly", tileSize: "tileSize" }, outputs: { selectionChange: "selectionChange", valueChange: "valueChange", cellSelection: "cellSelection" }, host: { properties: { "attr.dir": "this.direction", "attr.role": "this.role", "attr.aria-activedescendant": "this.activeDescendant", "attr.id": "this.paletteId", "class.k-readonly": "this.readonly", "attr.tabindex": "this.hostTabindex", "class.k-colorpalette": "this.hostClasses", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.disabledClass", "attr.aria-readonly": "this.readonlyAttribute" } }, providers: [
|
|
11188
11265
|
{
|
|
11189
11266
|
multi: true,
|
|
11190
11267
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -11237,7 +11314,7 @@ class ColorPaletteComponent {
|
|
|
11237
11314
|
</table>
|
|
11238
11315
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
11239
11316
|
}
|
|
11240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
11317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPaletteComponent, decorators: [{
|
|
11241
11318
|
type: Component,
|
|
11242
11319
|
args: [{
|
|
11243
11320
|
exportAs: 'kendoColorPalette',
|
|
@@ -11345,10 +11422,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
11345
11422
|
}], hostClasses: [{
|
|
11346
11423
|
type: HostBinding,
|
|
11347
11424
|
args: ['class.k-colorpalette']
|
|
11348
|
-
}],
|
|
11425
|
+
}], ariaDisabled: [{
|
|
11349
11426
|
type: HostBinding,
|
|
11350
11427
|
args: ['attr.aria-disabled']
|
|
11351
|
-
}, {
|
|
11428
|
+
}], disabledClass: [{
|
|
11352
11429
|
type: HostBinding,
|
|
11353
11430
|
args: ['class.k-disabled']
|
|
11354
11431
|
}], readonlyAttribute: [{
|
|
@@ -11381,10 +11458,10 @@ class FlatColorPickerService {
|
|
|
11381
11458
|
height: tileSize?.height ? tileSize?.height : tileSize?.width
|
|
11382
11459
|
};
|
|
11383
11460
|
}
|
|
11384
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11385
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
11461
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
11462
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerService });
|
|
11386
11463
|
}
|
|
11387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
11464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerService, decorators: [{
|
|
11388
11465
|
type: Injectable
|
|
11389
11466
|
}] });
|
|
11390
11467
|
|
|
@@ -11527,15 +11604,15 @@ class FlatColorPickerHeaderComponent {
|
|
|
11527
11604
|
this.tabOut.emit(ev);
|
|
11528
11605
|
}
|
|
11529
11606
|
}
|
|
11530
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11531
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
11607
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerHeaderComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
11608
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: FlatColorPickerHeaderComponent, isStandalone: true, selector: "[kendoFlatColorPickerHeader]", inputs: { clearButton: "clearButton", activeView: "activeView", views: "views", preview: "preview", innerTabIndex: "innerTabIndex", value: "value", selection: "selection", size: "size" }, outputs: { viewChange: "viewChange", valuePaneClick: "valuePaneClick", clearButtonClick: "clearButtonClick", tabOut: "tabOut" }, host: { properties: { "class.k-coloreditor-header": "this.hostClasses", "class.k-hstack": "this.hostClasses" } }, viewQueries: [{ propertyName: "clearButtonElement", first: true, predicate: ["clearButton"], descendants: true, read: ElementRef }, { propertyName: "viewButtonsCollection", predicate: ["viewButtons"], descendants: true, read: ElementRef }], ngImport: i0, template: `
|
|
11532
11609
|
<div class="k-coloreditor-header-actions k-hstack">
|
|
11533
11610
|
@if (viewButtons) {
|
|
11534
11611
|
<div
|
|
11535
11612
|
class="k-button-group k-button-group-flat"
|
|
11536
11613
|
role="group"
|
|
11537
11614
|
>
|
|
11538
|
-
@for (view of views; track view; let i = $index) {
|
|
11615
|
+
@for (view of views; track view; let i = $index; let isFirst = $first; let isLast = $last) {
|
|
11539
11616
|
<button
|
|
11540
11617
|
kendoButton
|
|
11541
11618
|
type="button"
|
|
@@ -11550,6 +11627,8 @@ class FlatColorPickerHeaderComponent {
|
|
|
11550
11627
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
11551
11628
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
11552
11629
|
[attr.aria-pressed]="activeView === view"
|
|
11630
|
+
[class.k-group-start]="isFirst"
|
|
11631
|
+
[class.k-group-end]="isLast"
|
|
11553
11632
|
[ngClass]="activeView === view ? 'k-selected' : ''">
|
|
11554
11633
|
</button>
|
|
11555
11634
|
}
|
|
@@ -11568,7 +11647,6 @@ class FlatColorPickerHeaderComponent {
|
|
|
11568
11647
|
fillMode="flat"
|
|
11569
11648
|
icon="reset-color"
|
|
11570
11649
|
[svgIcon]="dropletSlashIcon"
|
|
11571
|
-
class="k-coloreditor-reset"
|
|
11572
11650
|
[attr.aria-label]="getText('clearButton')"
|
|
11573
11651
|
[attr.title]="getText('clearButton')"
|
|
11574
11652
|
(click)="clearButtonClick.emit()">
|
|
@@ -11578,20 +11656,24 @@ class FlatColorPickerHeaderComponent {
|
|
|
11578
11656
|
<div class="k-coloreditor-preview k-vstack" aria-hidden="true">
|
|
11579
11657
|
<span
|
|
11580
11658
|
class="k-coloreditor-preview-color k-color-preview"
|
|
11659
|
+
[class.k-no-color]="!selection"
|
|
11581
11660
|
[attr.title]="getText('previewColor')"
|
|
11582
11661
|
[style.background-color]="selection">
|
|
11662
|
+
<span class="k-color-preview-mask" [style.background-color]="selection"></span>
|
|
11583
11663
|
</span>
|
|
11584
11664
|
<span class="k-coloreditor-current-color k-color-preview"
|
|
11665
|
+
[class.k-no-color]="!value"
|
|
11585
11666
|
[style.background-color]="value"
|
|
11586
11667
|
[attr.title]="getText('revertSelection')"
|
|
11587
11668
|
(click)="valuePaneClick.emit($event)">
|
|
11669
|
+
<span class="k-color-preview-mask" [style.background-color]="value"></span>
|
|
11588
11670
|
</span>
|
|
11589
11671
|
</div>
|
|
11590
11672
|
}
|
|
11591
11673
|
</div>
|
|
11592
11674
|
`, 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"] }] });
|
|
11593
11675
|
}
|
|
11594
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
11676
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerHeaderComponent, decorators: [{
|
|
11595
11677
|
type: Component,
|
|
11596
11678
|
args: [{
|
|
11597
11679
|
selector: '[kendoFlatColorPickerHeader]',
|
|
@@ -11602,7 +11684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
11602
11684
|
class="k-button-group k-button-group-flat"
|
|
11603
11685
|
role="group"
|
|
11604
11686
|
>
|
|
11605
|
-
@for (view of views; track view; let i = $index) {
|
|
11687
|
+
@for (view of views; track view; let i = $index; let isFirst = $first; let isLast = $last) {
|
|
11606
11688
|
<button
|
|
11607
11689
|
kendoButton
|
|
11608
11690
|
type="button"
|
|
@@ -11617,6 +11699,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
11617
11699
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
11618
11700
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
11619
11701
|
[attr.aria-pressed]="activeView === view"
|
|
11702
|
+
[class.k-group-start]="isFirst"
|
|
11703
|
+
[class.k-group-end]="isLast"
|
|
11620
11704
|
[ngClass]="activeView === view ? 'k-selected' : ''">
|
|
11621
11705
|
</button>
|
|
11622
11706
|
}
|
|
@@ -11635,7 +11719,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
11635
11719
|
fillMode="flat"
|
|
11636
11720
|
icon="reset-color"
|
|
11637
11721
|
[svgIcon]="dropletSlashIcon"
|
|
11638
|
-
class="k-coloreditor-reset"
|
|
11639
11722
|
[attr.aria-label]="getText('clearButton')"
|
|
11640
11723
|
[attr.title]="getText('clearButton')"
|
|
11641
11724
|
(click)="clearButtonClick.emit()">
|
|
@@ -11645,13 +11728,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
11645
11728
|
<div class="k-coloreditor-preview k-vstack" aria-hidden="true">
|
|
11646
11729
|
<span
|
|
11647
11730
|
class="k-coloreditor-preview-color k-color-preview"
|
|
11731
|
+
[class.k-no-color]="!selection"
|
|
11648
11732
|
[attr.title]="getText('previewColor')"
|
|
11649
11733
|
[style.background-color]="selection">
|
|
11734
|
+
<span class="k-color-preview-mask" [style.background-color]="selection"></span>
|
|
11650
11735
|
</span>
|
|
11651
11736
|
<span class="k-coloreditor-current-color k-color-preview"
|
|
11737
|
+
[class.k-no-color]="!value"
|
|
11652
11738
|
[style.background-color]="value"
|
|
11653
11739
|
[attr.title]="getText('revertSelection')"
|
|
11654
11740
|
(click)="valuePaneClick.emit($event)">
|
|
11741
|
+
<span class="k-color-preview-mask" [style.background-color]="value"></span>
|
|
11655
11742
|
</span>
|
|
11656
11743
|
</div>
|
|
11657
11744
|
}
|
|
@@ -11723,8 +11810,8 @@ class FlatColorPickerActionButtonsComponent {
|
|
|
11723
11810
|
};
|
|
11724
11811
|
this.actionButtonClick.emit(args);
|
|
11725
11812
|
}
|
|
11726
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11727
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
11813
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerActionButtonsComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
11814
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: FlatColorPickerActionButtonsComponent, isStandalone: true, selector: "[kendoFlatColorPickerActionButtons]", inputs: { innerTabIndex: "innerTabIndex", size: "size" }, outputs: { actionButtonClick: "actionButtonClick", tabOut: "tabOut" }, host: { properties: { "class.k-coloreditor-footer": "this.hostClasses", "class.k-actions": "this.hostClasses", "class.k-actions-horizontal": "this.hostClasses" } }, viewQueries: [{ propertyName: "firstButton", first: true, predicate: ["first"], descendants: true, read: ElementRef }, { propertyName: "lastButton", first: true, predicate: ["last"], descendants: true, read: ElementRef }], ngImport: i0, template: `
|
|
11728
11815
|
<button #first
|
|
11729
11816
|
kendoButton
|
|
11730
11817
|
class="k-coloreditor-cancel"
|
|
@@ -11747,7 +11834,7 @@ class FlatColorPickerActionButtonsComponent {
|
|
|
11747
11834
|
>{{getText('applyButton')}}</button>
|
|
11748
11835
|
`, 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"] }] });
|
|
11749
11836
|
}
|
|
11750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
11837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerActionButtonsComponent, decorators: [{
|
|
11751
11838
|
type: Component,
|
|
11752
11839
|
args: [{
|
|
11753
11840
|
selector: '[kendoFlatColorPickerActionButtons]',
|
|
@@ -11826,8 +11913,11 @@ class FlatColorPickerComponent {
|
|
|
11826
11913
|
get disabledClass() {
|
|
11827
11914
|
return this.disabled;
|
|
11828
11915
|
}
|
|
11916
|
+
get ariaDisabled() {
|
|
11917
|
+
return this.disabled || null;
|
|
11918
|
+
}
|
|
11829
11919
|
get ariaReadonly() {
|
|
11830
|
-
return this.readonly;
|
|
11920
|
+
return this.readonly || null;
|
|
11831
11921
|
}
|
|
11832
11922
|
direction;
|
|
11833
11923
|
get hostTabindex() {
|
|
@@ -11835,10 +11925,7 @@ class FlatColorPickerComponent {
|
|
|
11835
11925
|
}
|
|
11836
11926
|
ariaRole = 'textbox';
|
|
11837
11927
|
get isControlInvalid() {
|
|
11838
|
-
return (this.control?.invalid)?.toString();
|
|
11839
|
-
}
|
|
11840
|
-
get isDisabled() {
|
|
11841
|
-
return this.disabled?.toString() || undefined;
|
|
11928
|
+
return (this.control?.invalid && (this.control?.touched || this.control?.dirty))?.toString();
|
|
11842
11929
|
}
|
|
11843
11930
|
/**
|
|
11844
11931
|
* @hidden
|
|
@@ -12321,13 +12408,13 @@ class FlatColorPickerComponent {
|
|
|
12321
12408
|
}));
|
|
12322
12409
|
this.subscriptions.add(this.renderer.listen(hostElement, 'blur', () => {
|
|
12323
12410
|
this.focused = false;
|
|
12324
|
-
this.notifyNgTouched();
|
|
12411
|
+
this.ngZone.run(() => this.notifyNgTouched());
|
|
12325
12412
|
}));
|
|
12326
12413
|
});
|
|
12327
12414
|
}
|
|
12328
12415
|
removeGradientAttributes() {
|
|
12329
12416
|
if (this.gradientElement) {
|
|
12330
|
-
this.renderer.
|
|
12417
|
+
this.renderer.setAttribute(this.gradientElement.nativeElement, 'role', 'none');
|
|
12331
12418
|
this.renderer.removeAttribute(this.gradientElement.nativeElement, 'aria-label');
|
|
12332
12419
|
}
|
|
12333
12420
|
}
|
|
@@ -12341,8 +12428,8 @@ class FlatColorPickerComponent {
|
|
|
12341
12428
|
this.renderer.addClass(elem, classes.toAdd);
|
|
12342
12429
|
}
|
|
12343
12430
|
}
|
|
12344
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12345
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
12431
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: FlatColorPickerService }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
12432
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: FlatColorPickerComponent, isStandalone: true, selector: "kendo-flatcolorpicker", inputs: { readonly: "readonly", disabled: "disabled", format: "format", value: "value", tabindex: "tabindex", clearButton: "clearButton", preview: "preview", actionsLayout: "actionsLayout", activeView: "activeView", views: "views", gradientSettings: "gradientSettings", adaptiveMode: "adaptiveMode", paletteSettings: "paletteSettings", size: "size" }, outputs: { valueChange: "valueChange", cancel: "cancel", activeViewChange: "activeViewChange", clearButtonClick: "clearButtonClick", actionButtonClick: "actionButtonClick" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.ariaDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "class.k-readonly": "this.readonly" } }, providers: [
|
|
12346
12433
|
{
|
|
12347
12434
|
multi: true,
|
|
12348
12435
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -12361,7 +12448,8 @@ class FlatColorPickerComponent {
|
|
|
12361
12448
|
{
|
|
12362
12449
|
provide: L10N_PREFIX,
|
|
12363
12450
|
useValue: 'kendo.flatcolorpicker'
|
|
12364
|
-
}
|
|
12451
|
+
},
|
|
12452
|
+
provideComponentName('flatcolorpicker')
|
|
12365
12453
|
], viewQueries: [{ propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "headerElement", first: true, predicate: ["header"], descendants: true, read: ElementRef }, { propertyName: "gradient", first: true, predicate: ["gradient"], descendants: true }, { propertyName: "gradientElement", first: true, predicate: ["gradient"], descendants: true, read: ElementRef }, { propertyName: "palette", first: true, predicate: ["palette"], descendants: true }, { propertyName: "footer", first: true, predicate: ["footer"], descendants: true }], exportAs: ["kendoFlatColorPicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
12366
12454
|
<ng-container kendoFlatColorPickerLocalizedMessages
|
|
12367
12455
|
i18n-flatColorPickerNoColor="kendo.flatcolorpicker.flatColorPickerNoColor|The aria-label applied to the FlatColorPicker component when the value is empty."
|
|
@@ -12466,14 +12554,14 @@ class FlatColorPickerComponent {
|
|
|
12466
12554
|
kendoFlatColorPickerActionButtons
|
|
12467
12555
|
[innerTabIndex]="innerTabIndex"
|
|
12468
12556
|
[size]="size"
|
|
12469
|
-
[ngClass]="'k-
|
|
12557
|
+
[ngClass]="'k-actions-' + actionsLayout"
|
|
12470
12558
|
(actionButtonClick)="onAction($event)"
|
|
12471
12559
|
(tabOut)="firstFocusable.focus()">
|
|
12472
12560
|
</div>
|
|
12473
12561
|
}
|
|
12474
12562
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection", "size"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["adaptiveMode", "id", "opacity", "size", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep", "ariaAttributesEnabled"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "size", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex", "size"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
12475
12563
|
}
|
|
12476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FlatColorPickerComponent, decorators: [{
|
|
12477
12565
|
type: Component,
|
|
12478
12566
|
args: [{
|
|
12479
12567
|
exportAs: 'kendoFlatColorPicker',
|
|
@@ -12497,7 +12585,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
12497
12585
|
{
|
|
12498
12586
|
provide: L10N_PREFIX,
|
|
12499
12587
|
useValue: 'kendo.flatcolorpicker'
|
|
12500
|
-
}
|
|
12588
|
+
},
|
|
12589
|
+
provideComponentName('flatcolorpicker')
|
|
12501
12590
|
],
|
|
12502
12591
|
template: `
|
|
12503
12592
|
<ng-container kendoFlatColorPickerLocalizedMessages
|
|
@@ -12603,7 +12692,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
12603
12692
|
kendoFlatColorPickerActionButtons
|
|
12604
12693
|
[innerTabIndex]="innerTabIndex"
|
|
12605
12694
|
[size]="size"
|
|
12606
|
-
[ngClass]="'k-
|
|
12695
|
+
[ngClass]="'k-actions-' + actionsLayout"
|
|
12607
12696
|
(actionButtonClick)="onAction($event)"
|
|
12608
12697
|
(tabOut)="firstFocusable.focus()">
|
|
12609
12698
|
</div>
|
|
@@ -12621,7 +12710,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
12621
12710
|
}], disabledClass: [{
|
|
12622
12711
|
type: HostBinding,
|
|
12623
12712
|
args: ['class.k-disabled']
|
|
12624
|
-
}, {
|
|
12713
|
+
}], ariaDisabled: [{
|
|
12625
12714
|
type: HostBinding,
|
|
12626
12715
|
args: ['attr.aria-disabled']
|
|
12627
12716
|
}], ariaReadonly: [{
|
|
@@ -12639,9 +12728,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
12639
12728
|
}], isControlInvalid: [{
|
|
12640
12729
|
type: HostBinding,
|
|
12641
12730
|
args: ['attr.aria-invalid']
|
|
12642
|
-
}], isDisabled: [{
|
|
12643
|
-
type: HostBinding,
|
|
12644
|
-
args: ['attr.aria-disabled']
|
|
12645
12731
|
}], enterHandler: [{
|
|
12646
12732
|
type: HostListener,
|
|
12647
12733
|
args: ['keydown.enter', ['$event']]
|
|
@@ -12726,8 +12812,8 @@ class AdaptiveCloseButtonComponent {
|
|
|
12726
12812
|
svgIcon;
|
|
12727
12813
|
color;
|
|
12728
12814
|
close = new EventEmitter();
|
|
12729
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12730
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
12815
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdaptiveCloseButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12816
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: AdaptiveCloseButtonComponent, isStandalone: true, selector: "kendo-adaptive-close-button", inputs: { title: "title", icon: "icon", svgIcon: "svgIcon", color: "color" }, outputs: { close: "close" }, ngImport: i0, template: `
|
|
12731
12817
|
<button kendoButton
|
|
12732
12818
|
type="button"
|
|
12733
12819
|
[title]="title"
|
|
@@ -12741,7 +12827,7 @@ class AdaptiveCloseButtonComponent {
|
|
|
12741
12827
|
></button>
|
|
12742
12828
|
`, 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"] }] });
|
|
12743
12829
|
}
|
|
12744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdaptiveCloseButtonComponent, decorators: [{
|
|
12745
12831
|
type: Component,
|
|
12746
12832
|
args: [{
|
|
12747
12833
|
selector: 'kendo-adaptive-close-button',
|
|
@@ -12805,8 +12891,8 @@ class AdaptiveRendererComponent {
|
|
|
12805
12891
|
get windowSize() {
|
|
12806
12892
|
return this.adaptiveService.size;
|
|
12807
12893
|
}
|
|
12808
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
12809
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
12894
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdaptiveRendererComponent, deps: [{ token: i1.LocalizationService }, { token: i2.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
12895
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: AdaptiveRendererComponent, isStandalone: true, selector: "kendo-adaptive-renderer", inputs: { title: "title", subtitle: "subtitle", actionSheetTemplate: "actionSheetTemplate", isActionSheetExpanded: "isActionSheetExpanded", preview: "preview" }, outputs: { actionSheetClose: "actionSheetClose", onExpand: "onExpand", onCollapse: "onCollapse", onApply: "onApply", onCancel: "onCancel" }, viewQueries: [{ propertyName: "actionSheet", first: true, predicate: ActionSheetComponent, descendants: true }, { propertyName: "actionSheetSearchBar", first: true, predicate: ["actionSheetSearchBar"], descendants: true }, { propertyName: "cancelButton", first: true, predicate: ["cancel"], descendants: true }, { propertyName: "applyButton", first: true, predicate: ["apply"], descendants: true }], ngImport: i0, template: `
|
|
12810
12896
|
<kendo-actionsheet
|
|
12811
12897
|
#actionSheet
|
|
12812
12898
|
[animation]="{ duration: animationDuration }"
|
|
@@ -12871,7 +12957,7 @@ class AdaptiveRendererComponent {
|
|
|
12871
12957
|
</kendo-actionsheet>
|
|
12872
12958
|
`, 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"] }] });
|
|
12873
12959
|
}
|
|
12874
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
12960
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: AdaptiveRendererComponent, decorators: [{
|
|
12875
12961
|
type: Component,
|
|
12876
12962
|
args: [{
|
|
12877
12963
|
selector: 'kendo-adaptive-renderer',
|
|
@@ -13008,12 +13094,12 @@ class ColorPickerComponent {
|
|
|
13008
13094
|
get focusedClass() {
|
|
13009
13095
|
return this.isFocused;
|
|
13010
13096
|
}
|
|
13011
|
-
get disabledClass() {
|
|
13012
|
-
return this.disabled;
|
|
13013
|
-
}
|
|
13014
13097
|
get ariaDisabled() {
|
|
13015
13098
|
return this.disabled || null;
|
|
13016
13099
|
}
|
|
13100
|
+
get disabledClass() {
|
|
13101
|
+
return this.disabled;
|
|
13102
|
+
}
|
|
13017
13103
|
get ariaReadonly() {
|
|
13018
13104
|
return this.readonly || null;
|
|
13019
13105
|
}
|
|
@@ -13027,7 +13113,7 @@ class ColorPickerComponent {
|
|
|
13027
13113
|
role = 'combobox';
|
|
13028
13114
|
hasPopup = 'dialog';
|
|
13029
13115
|
get isControlInvalid() {
|
|
13030
|
-
return (this.control?.invalid)?.toString();
|
|
13116
|
+
return (this.control?.invalid && (this.control?.touched || this.control?.dirty))?.toString();
|
|
13031
13117
|
}
|
|
13032
13118
|
/**
|
|
13033
13119
|
* @hidden
|
|
@@ -13829,8 +13915,8 @@ class ColorPickerComponent {
|
|
|
13829
13915
|
this.focusableId = id;
|
|
13830
13916
|
}
|
|
13831
13917
|
}
|
|
13832
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
13833
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
13918
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1$2.PopupService }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i2.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
13919
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: ColorPickerComponent, isStandalone: true, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", adaptiveMode: "adaptiveMode", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", clearButton: "clearButton", tabindex: "tabindex", preview: "preview", actionsLayout: "actionsLayout", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", cancel: "cancel", activeColorClick: "activeColorClick", clearButtonClick: "clearButtonClick", activeViewChange: "activeViewChange" }, host: { properties: { "class.k-colorpicker": "this.hostClasses", "class.k-icon-picker": "this.hostClasses", "class.k-picker": "this.hostClasses", "class.k-focus": "this.focusedClass", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.disabledClass", "attr.aria-readonly": "this.ariaReadonly", "attr.aria-expanded": "this.ariaExpanded", "attr.tabindex": "this.hostTabindex", "attr.dir": "this.direction", "attr.role": "this.role", "attr.aria-haspopup": "this.hasPopup", "attr.aria-invalid": "this.isControlInvalid", "class.k-readonly": "this.readonly" } }, providers: [{
|
|
13834
13920
|
multi: true,
|
|
13835
13921
|
provide: NG_VALUE_ACCESSOR,
|
|
13836
13922
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
@@ -13850,7 +13936,8 @@ class ColorPickerComponent {
|
|
|
13850
13936
|
{
|
|
13851
13937
|
provide: KENDO_WEBMCP_HOST,
|
|
13852
13938
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
13853
|
-
}
|
|
13939
|
+
},
|
|
13940
|
+
provideComponentName('colorpicker')
|
|
13854
13941
|
], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "activeColor", first: true, predicate: ["activeColor"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "flatColorPicker", first: true, predicate: ["flatColorPicker"], descendants: true }, { propertyName: "adaptiveRenderer", first: true, predicate: AdaptiveRendererComponent, descendants: true }], exportAs: ["kendoColorPicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
13855
13942
|
<ng-container kendoColorPickerLocalizedMessages
|
|
13856
13943
|
i18n-colorPickerNoColor="kendo.colorpicker.colorPickerNoColor|The aria-label applied to the ColorPicker component when the value is empty."
|
|
@@ -13978,7 +14065,7 @@ class ColorPickerComponent {
|
|
|
13978
14065
|
}
|
|
13979
14066
|
`, 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"] }] });
|
|
13980
14067
|
}
|
|
13981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
13982
14069
|
type: Component,
|
|
13983
14070
|
args: [{
|
|
13984
14071
|
exportAs: 'kendoColorPicker',
|
|
@@ -14003,8 +14090,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
14003
14090
|
{
|
|
14004
14091
|
provide: KENDO_WEBMCP_HOST,
|
|
14005
14092
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
14006
|
-
}
|
|
14007
|
-
|
|
14093
|
+
},
|
|
14094
|
+
provideComponentName('colorpicker')],
|
|
14008
14095
|
template: `
|
|
14009
14096
|
<ng-container kendoColorPickerLocalizedMessages
|
|
14010
14097
|
i18n-colorPickerNoColor="kendo.colorpicker.colorPickerNoColor|The aria-label applied to the ColorPicker component when the value is empty."
|
|
@@ -14146,12 +14233,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
14146
14233
|
}], focusedClass: [{
|
|
14147
14234
|
type: HostBinding,
|
|
14148
14235
|
args: ['class.k-focus']
|
|
14149
|
-
}], disabledClass: [{
|
|
14150
|
-
type: HostBinding,
|
|
14151
|
-
args: ['class.k-disabled']
|
|
14152
14236
|
}], ariaDisabled: [{
|
|
14153
14237
|
type: HostBinding,
|
|
14154
14238
|
args: ['attr.aria-disabled']
|
|
14239
|
+
}], disabledClass: [{
|
|
14240
|
+
type: HostBinding,
|
|
14241
|
+
args: ['class.k-disabled']
|
|
14155
14242
|
}], ariaReadonly: [{
|
|
14156
14243
|
type: HostBinding,
|
|
14157
14244
|
args: ['attr.aria-readonly']
|
|
@@ -14279,15 +14366,15 @@ class ColorPickerCustomMessagesComponent extends ColorPickerMessages {
|
|
|
14279
14366
|
get override() {
|
|
14280
14367
|
return true;
|
|
14281
14368
|
}
|
|
14282
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14283
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
14369
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
14370
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: ColorPickerCustomMessagesComponent, isStandalone: true, selector: "kendo-colorpicker-messages, kendo-flatcolorpicker-messages, kendo-colorgradient-messages, kendo-colorpalette-messages", providers: [
|
|
14284
14371
|
{
|
|
14285
14372
|
provide: ColorPickerMessages,
|
|
14286
14373
|
useExisting: forwardRef(() => ColorPickerCustomMessagesComponent)
|
|
14287
14374
|
}
|
|
14288
14375
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
14289
14376
|
}
|
|
14290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerCustomMessagesComponent, decorators: [{
|
|
14291
14378
|
type: Component,
|
|
14292
14379
|
args: [{
|
|
14293
14380
|
providers: [
|
|
@@ -14334,12 +14421,12 @@ class ErrorComponent {
|
|
|
14334
14421
|
get idAttribute() {
|
|
14335
14422
|
return this.id;
|
|
14336
14423
|
}
|
|
14337
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14338
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
14424
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14425
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: ErrorComponent, isStandalone: true, selector: "kendo-formerror", inputs: { align: "align" }, host: { properties: { "class.k-form-error": "this.hostClass", "attr.role": "this.roleAttribute", "class.k-text-start": "this.startClass", "class.k-text-end": "this.endClass", "attr.id": "this.idAttribute" } }, ngImport: i0, template: `
|
|
14339
14426
|
<ng-content></ng-content>
|
|
14340
14427
|
`, isInline: true });
|
|
14341
14428
|
}
|
|
14342
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ErrorComponent, decorators: [{
|
|
14343
14430
|
type: Component,
|
|
14344
14431
|
args: [{
|
|
14345
14432
|
selector: 'kendo-formerror',
|
|
@@ -14397,12 +14484,12 @@ class HintComponent {
|
|
|
14397
14484
|
get idAttribute() {
|
|
14398
14485
|
return this.id;
|
|
14399
14486
|
}
|
|
14400
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14401
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
14487
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: HintComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14488
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: HintComponent, isStandalone: true, selector: "kendo-formhint", inputs: { align: "align" }, host: { properties: { "class.k-form-hint": "this.hostClass", "class.k-text-start": "this.startClass", "class.k-text-end": "this.endClass", "attr.id": "this.idAttribute" } }, ngImport: i0, template: `
|
|
14402
14489
|
<ng-content></ng-content>
|
|
14403
14490
|
`, isInline: true });
|
|
14404
14491
|
}
|
|
14405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: HintComponent, decorators: [{
|
|
14406
14493
|
type: Component,
|
|
14407
14494
|
args: [{
|
|
14408
14495
|
selector: 'kendo-formhint',
|
|
@@ -14432,10 +14519,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
14432
14519
|
*/
|
|
14433
14520
|
class FormService {
|
|
14434
14521
|
formWidth = new BehaviorSubject(null);
|
|
14435
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14436
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
14522
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14523
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormService, providedIn: 'root' });
|
|
14437
14524
|
}
|
|
14438
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormService, decorators: [{
|
|
14439
14526
|
type: Injectable,
|
|
14440
14527
|
args: [{
|
|
14441
14528
|
providedIn: 'root'
|
|
@@ -14837,8 +14924,8 @@ class FormFieldComponent {
|
|
|
14837
14924
|
this._previousColSpan = newColSpan;
|
|
14838
14925
|
}
|
|
14839
14926
|
}
|
|
14840
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
14841
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
14927
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldComponent, deps: [{ token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.ElementRef }, { token: FormService }], target: i0.ɵɵFactoryTarget.Component });
|
|
14928
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: FormFieldComponent, isStandalone: true, selector: "kendo-formfield", inputs: { showHints: "showHints", orientation: "orientation", showErrors: "showErrors", colSpan: "colSpan" }, host: { properties: { "class.k-form-field": "this.hostClass", "attr.dir": "this.direction", "class.k-form-field-error": "this.errorClass", "class.k-form-field-disabled": "this.disabledClass" } }, providers: [
|
|
14842
14929
|
LocalizationService,
|
|
14843
14930
|
{
|
|
14844
14931
|
provide: L10N_PREFIX,
|
|
@@ -14857,7 +14944,7 @@ class FormFieldComponent {
|
|
|
14857
14944
|
</div>
|
|
14858
14945
|
`, isInline: true });
|
|
14859
14946
|
}
|
|
14860
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
14947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldComponent, decorators: [{
|
|
14861
14948
|
type: Component,
|
|
14862
14949
|
args: [{
|
|
14863
14950
|
selector: 'kendo-formfield',
|
|
@@ -15017,8 +15104,8 @@ class RadioButtonComponent extends RadioCheckBoxBase {
|
|
|
15017
15104
|
this.checked = value === this.value;
|
|
15018
15105
|
this.cdr.markForCheck();
|
|
15019
15106
|
}
|
|
15020
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15021
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
15107
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
15108
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: RadioButtonComponent, isStandalone: true, selector: "kendo-radiobutton", inputs: { checked: "checked" }, outputs: { checkedChange: "checkedChange" }, host: { properties: { "class.k-radio-wrap": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
15022
15109
|
LocalizationService,
|
|
15023
15110
|
{ provide: L10N_PREFIX, useValue: 'kendo.radiobutton' },
|
|
15024
15111
|
{
|
|
@@ -15058,7 +15145,7 @@ class RadioButtonComponent extends RadioCheckBoxBase {
|
|
|
15058
15145
|
</ng-container>
|
|
15059
15146
|
`, isInline: true, dependencies: [{ kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
15060
15147
|
}
|
|
15061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonComponent, decorators: [{
|
|
15062
15149
|
type: Component,
|
|
15063
15150
|
args: [{
|
|
15064
15151
|
exportAs: 'kendoRadioButton',
|
|
@@ -15168,10 +15255,10 @@ class RadioButtonDirective {
|
|
|
15168
15255
|
this.renderer.addClass(elem, classes.toAdd);
|
|
15169
15256
|
}
|
|
15170
15257
|
}
|
|
15171
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15172
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
15258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15259
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: RadioButtonDirective, isStandalone: true, selector: "input[kendoRadioButton]", inputs: { size: "size" }, host: { properties: { "class.k-radio": "this.kendoClass", "class.k-disabled": "this.isDisabled" } }, ngImport: i0 });
|
|
15173
15260
|
}
|
|
15174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonDirective, decorators: [{
|
|
15175
15262
|
type: Directive,
|
|
15176
15263
|
args: [{
|
|
15177
15264
|
selector: 'input[kendoRadioButton]',
|
|
@@ -15209,15 +15296,15 @@ class RangeSliderCustomMessagesComponent extends RangeSliderMessages {
|
|
|
15209
15296
|
get override() {
|
|
15210
15297
|
return true;
|
|
15211
15298
|
}
|
|
15212
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15213
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
15299
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
15300
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: RangeSliderCustomMessagesComponent, isStandalone: true, selector: "kendo-rangeslider-messages", providers: [
|
|
15214
15301
|
{
|
|
15215
15302
|
provide: RangeSliderMessages,
|
|
15216
15303
|
useExisting: forwardRef(() => RangeSliderCustomMessagesComponent)
|
|
15217
15304
|
}
|
|
15218
15305
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
15219
15306
|
}
|
|
15220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderCustomMessagesComponent, decorators: [{
|
|
15221
15308
|
type: Component,
|
|
15222
15309
|
args: [{
|
|
15223
15310
|
providers: [
|
|
@@ -15251,10 +15338,10 @@ class RatingHoveredItemTemplateDirective {
|
|
|
15251
15338
|
constructor(templateRef) {
|
|
15252
15339
|
this.templateRef = templateRef;
|
|
15253
15340
|
}
|
|
15254
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15255
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
15341
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingHoveredItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15342
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: RatingHoveredItemTemplateDirective, isStandalone: true, selector: "[kendoRatingHoveredItemTemplate]", ngImport: i0 });
|
|
15256
15343
|
}
|
|
15257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingHoveredItemTemplateDirective, decorators: [{
|
|
15258
15345
|
type: Directive,
|
|
15259
15346
|
args: [{
|
|
15260
15347
|
selector: '[kendoRatingHoveredItemTemplate]',
|
|
@@ -15280,10 +15367,10 @@ class RatingItemTemplateDirective {
|
|
|
15280
15367
|
constructor(templateRef) {
|
|
15281
15368
|
this.templateRef = templateRef;
|
|
15282
15369
|
}
|
|
15283
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15284
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
15370
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15371
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: RatingItemTemplateDirective, isStandalone: true, selector: "[kendoRatingItemTemplate]", ngImport: i0 });
|
|
15285
15372
|
}
|
|
15286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingItemTemplateDirective, decorators: [{
|
|
15287
15374
|
type: Directive,
|
|
15288
15375
|
args: [{
|
|
15289
15376
|
selector: '[kendoRatingItemTemplate]',
|
|
@@ -15311,10 +15398,10 @@ class RatingSelectedItemTemplateDirective {
|
|
|
15311
15398
|
constructor(templateRef) {
|
|
15312
15399
|
this.templateRef = templateRef;
|
|
15313
15400
|
}
|
|
15314
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15315
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
15401
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingSelectedItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15402
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: RatingSelectedItemTemplateDirective, isStandalone: true, selector: "[kendoRatingSelectedItemTemplate]", ngImport: i0 });
|
|
15316
15403
|
}
|
|
15317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingSelectedItemTemplateDirective, decorators: [{
|
|
15318
15405
|
type: Directive,
|
|
15319
15406
|
args: [{
|
|
15320
15407
|
selector: '[kendoRatingSelectedItemTemplate]',
|
|
@@ -15358,6 +15445,9 @@ class RatingComponent {
|
|
|
15358
15445
|
* @default false
|
|
15359
15446
|
*/
|
|
15360
15447
|
disabled = false;
|
|
15448
|
+
get ariaDisabled() {
|
|
15449
|
+
return this.disabled ? true : undefined;
|
|
15450
|
+
}
|
|
15361
15451
|
/**
|
|
15362
15452
|
* When `true`, sets the Rating to read-only ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/readonly)).
|
|
15363
15453
|
|
|
@@ -15365,6 +15455,9 @@ class RatingComponent {
|
|
|
15365
15455
|
* @default false
|
|
15366
15456
|
*/
|
|
15367
15457
|
readonly = false;
|
|
15458
|
+
get ariaReadonly() {
|
|
15459
|
+
return this.readonly ? true : undefined;
|
|
15460
|
+
}
|
|
15368
15461
|
/**
|
|
15369
15462
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Rating.
|
|
15370
15463
|
*
|
|
@@ -15682,8 +15775,8 @@ class RatingComponent {
|
|
|
15682
15775
|
break;
|
|
15683
15776
|
}
|
|
15684
15777
|
}
|
|
15685
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
15686
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
15778
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
15779
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: RatingComponent, isStandalone: true, selector: "kendo-rating", inputs: { disabled: "disabled", readonly: "readonly", tabindex: "tabindex", itemsCount: "itemsCount", value: "value", selection: "selection", precision: "precision", label: "label", icon: "icon", svgIcon: "svgIcon", svgIconOutline: "svgIconOutline" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-disabled": "this.disabled", "attr.aria-disabled": "this.ariaDisabled", "class.k-readonly": "this.readonly", "attr.aria-readonly": "this.ariaReadonly", "attr.tabindex": "this.tabindex", "class.k-rating": "this.hostClass", "attr.dir": "this.direction", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-valuemin": "this.valueMin", "attr.aria-valuemax": "this.valueMax", "attr.aria-valuenow": "this.valueNow", "attr.role": "this.ariaRole" } }, providers: [
|
|
15687
15780
|
LocalizationService,
|
|
15688
15781
|
{ provide: L10N_PREFIX, useValue: 'kendo.rating' },
|
|
15689
15782
|
{
|
|
@@ -15698,7 +15791,8 @@ class RatingComponent {
|
|
|
15698
15791
|
{
|
|
15699
15792
|
provide: KENDO_WEBMCP_HOST,
|
|
15700
15793
|
useExisting: forwardRef(() => RatingComponent)
|
|
15701
|
-
}
|
|
15794
|
+
},
|
|
15795
|
+
provideComponentName('rating')
|
|
15702
15796
|
], queries: [{ propertyName: "itemTemplate", first: true, predicate: RatingItemTemplateDirective, descendants: true }, { propertyName: "hoveredItemTemplate", first: true, predicate: RatingHoveredItemTemplateDirective, descendants: true }, { propertyName: "selectedItemTemplate", first: true, predicate: RatingSelectedItemTemplateDirective, descendants: true }], exportAs: ["kendoRating"], ngImport: i0, template: `
|
|
15703
15797
|
<span class="k-rating-container">
|
|
15704
15798
|
@for (item of ratingItems; track item; let i = $index) {
|
|
@@ -15839,7 +15933,7 @@ class RatingComponent {
|
|
|
15839
15933
|
}
|
|
15840
15934
|
`, isInline: true, dependencies: [{ 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: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
15841
15935
|
}
|
|
15842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
15936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingComponent, decorators: [{
|
|
15843
15937
|
type: Component,
|
|
15844
15938
|
args: [{
|
|
15845
15939
|
exportAs: 'kendoRating',
|
|
@@ -15858,7 +15952,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
15858
15952
|
{
|
|
15859
15953
|
provide: KENDO_WEBMCP_HOST,
|
|
15860
15954
|
useExisting: forwardRef(() => RatingComponent)
|
|
15861
|
-
}
|
|
15955
|
+
},
|
|
15956
|
+
provideComponentName('rating')
|
|
15862
15957
|
],
|
|
15863
15958
|
selector: 'kendo-rating',
|
|
15864
15959
|
template: `
|
|
@@ -16014,20 +16109,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
16014
16109
|
args: [RatingSelectedItemTemplateDirective]
|
|
16015
16110
|
}], disabled: [{
|
|
16016
16111
|
type: Input
|
|
16017
|
-
}, {
|
|
16018
|
-
type: HostBinding,
|
|
16019
|
-
args: ['attr.aria-disabled']
|
|
16020
16112
|
}, {
|
|
16021
16113
|
type: HostBinding,
|
|
16022
16114
|
args: ['class.k-disabled']
|
|
16115
|
+
}], ariaDisabled: [{
|
|
16116
|
+
type: HostBinding,
|
|
16117
|
+
args: ['attr.aria-disabled']
|
|
16023
16118
|
}], readonly: [{
|
|
16024
16119
|
type: Input
|
|
16025
|
-
}, {
|
|
16026
|
-
type: HostBinding,
|
|
16027
|
-
args: ['attr.aria-readonly']
|
|
16028
16120
|
}, {
|
|
16029
16121
|
type: HostBinding,
|
|
16030
16122
|
args: ['class.k-readonly']
|
|
16123
|
+
}], ariaReadonly: [{
|
|
16124
|
+
type: HostBinding,
|
|
16125
|
+
args: ['attr.aria-readonly']
|
|
16031
16126
|
}], tabindex: [{
|
|
16032
16127
|
type: Input
|
|
16033
16128
|
}, {
|
|
@@ -16101,10 +16196,10 @@ class InputSpacerComponent {
|
|
|
16101
16196
|
* If not set, the Input Spacer takes all available space.
|
|
16102
16197
|
*/
|
|
16103
16198
|
width;
|
|
16104
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
16105
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
16199
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputSpacerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
16200
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: InputSpacerComponent, isStandalone: true, selector: "kendo-input-spacer, kendo-textbox-spacer", inputs: { width: "width" }, host: { properties: { "class.k-spacer": "this.hostClass", "class.k-spacer-sized": "this.sizedClass", "style.flexBasis": "this.flexBasisStyle" } }, ngImport: i0, template: ``, isInline: true });
|
|
16106
16201
|
}
|
|
16107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
16202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputSpacerComponent, decorators: [{
|
|
16108
16203
|
type: Component,
|
|
16109
16204
|
args: [{
|
|
16110
16205
|
selector: 'kendo-input-spacer, kendo-textbox-spacer',
|
|
@@ -16144,10 +16239,10 @@ class SignatureMessages extends ComponentMessages {
|
|
|
16144
16239
|
* The value of the Signature canvas element aria-label attribute.
|
|
16145
16240
|
*/
|
|
16146
16241
|
canvasLabel;
|
|
16147
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
16148
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
16242
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
16243
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: SignatureMessages, isStandalone: true, selector: "kendo-signature-messages-base", inputs: { clear: "clear", minimize: "minimize", maximize: "maximize", canvasLabel: "canvasLabel" }, usesInheritance: true, ngImport: i0 });
|
|
16149
16244
|
}
|
|
16150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
16245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureMessages, decorators: [{
|
|
16151
16246
|
type: Directive,
|
|
16152
16247
|
args: [{
|
|
16153
16248
|
selector: 'kendo-signature-messages-base'
|
|
@@ -16174,15 +16269,15 @@ class SignatureCustomMessagesComponent extends SignatureMessages {
|
|
|
16174
16269
|
get override() {
|
|
16175
16270
|
return true;
|
|
16176
16271
|
}
|
|
16177
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
16178
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
16272
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
16273
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: SignatureCustomMessagesComponent, isStandalone: true, selector: "kendo-signature-messages", providers: [
|
|
16179
16274
|
{
|
|
16180
16275
|
provide: SignatureMessages,
|
|
16181
16276
|
useExisting: forwardRef(() => SignatureCustomMessagesComponent)
|
|
16182
16277
|
}
|
|
16183
16278
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
16184
16279
|
}
|
|
16185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
16280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureCustomMessagesComponent, decorators: [{
|
|
16186
16281
|
type: Component,
|
|
16187
16282
|
args: [{
|
|
16188
16283
|
providers: [
|
|
@@ -16218,15 +16313,15 @@ class LocalizedSignatureMessagesDirective extends SignatureMessages {
|
|
|
16218
16313
|
super();
|
|
16219
16314
|
this.service = service;
|
|
16220
16315
|
}
|
|
16221
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
16222
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
16316
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSignatureMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
16317
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedSignatureMessagesDirective, isStandalone: true, selector: "[kendoSignatureLocalizedMessages]", providers: [
|
|
16223
16318
|
{
|
|
16224
16319
|
provide: SignatureMessages,
|
|
16225
16320
|
useExisting: forwardRef(() => LocalizedSignatureMessagesDirective)
|
|
16226
16321
|
}
|
|
16227
16322
|
], usesInheritance: true, ngImport: i0 });
|
|
16228
16323
|
}
|
|
16229
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
16324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedSignatureMessagesDirective, decorators: [{
|
|
16230
16325
|
type: Directive,
|
|
16231
16326
|
args: [{
|
|
16232
16327
|
providers: [
|
|
@@ -16877,12 +16972,13 @@ class SignatureComponent {
|
|
|
16877
16972
|
}
|
|
16878
16973
|
return this.localization.get(key);
|
|
16879
16974
|
}
|
|
16880
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
16881
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
16975
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
16976
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: SignatureComponent, isStandalone: true, selector: "kendo-signature", inputs: { focusableId: "focusableId", readonly: "readonly", disabled: "disabled", width: "width", height: "height", value: "value", tabindex: "tabindex", size: "size", rounded: "rounded", fillMode: "fillMode", color: "color", backgroundColor: "backgroundColor", strokeWidth: "strokeWidth", smooth: "smooth", maximizable: "maximizable", maximized: "maximized", popupScale: "popupScale", exportScale: "exportScale", parentLocalization: "parentLocalization", hideLine: "hideLine" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "attr.dir": "this.direction", "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabled", "style.width.px": "this.width", "style.height.px": "this.height", "class.k-signature-maximized": "this.maximized" } }, providers: [
|
|
16882
16977
|
LocalizationService,
|
|
16883
16978
|
{ provide: L10N_PREFIX, useValue: 'kendo.signature' },
|
|
16884
16979
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SignatureComponent) },
|
|
16885
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SignatureComponent) }
|
|
16980
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SignatureComponent) },
|
|
16981
|
+
provideComponentName('signature')
|
|
16886
16982
|
], viewQueries: [{ propertyName: "canvas", first: true, predicate: ["canvas"], descendants: true }, { propertyName: "minimizeButton", first: true, predicate: ["minimize"], descendants: true, read: ElementRef }, { propertyName: "maximizeButton", first: true, predicate: ["maximize"], descendants: true, read: ElementRef }], exportAs: ["kendoSignature"], usesOnChanges: true, ngImport: i0, template: `
|
|
16887
16983
|
<ng-container kendoSignatureLocalizedMessages
|
|
16888
16984
|
i18n-clear="kendo.signature.clear|The message for the Clear button."
|
|
@@ -16989,7 +17085,7 @@ class SignatureComponent {
|
|
|
16989
17085
|
}
|
|
16990
17086
|
`, 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 });
|
|
16991
17087
|
}
|
|
16992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureComponent, decorators: [{
|
|
16993
17089
|
type: Component,
|
|
16994
17090
|
args: [{
|
|
16995
17091
|
exportAs: 'kendoSignature',
|
|
@@ -16999,7 +17095,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
16999
17095
|
LocalizationService,
|
|
17000
17096
|
{ provide: L10N_PREFIX, useValue: 'kendo.signature' },
|
|
17001
17097
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SignatureComponent) },
|
|
17002
|
-
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SignatureComponent) }
|
|
17098
|
+
{ provide: KENDO_WEBMCP_HOST, useExisting: forwardRef(() => SignatureComponent) },
|
|
17099
|
+
provideComponentName('signature')
|
|
17003
17100
|
],
|
|
17004
17101
|
template: `
|
|
17005
17102
|
<ng-container kendoSignatureLocalizedMessages
|
|
@@ -17155,6 +17252,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
17155
17252
|
}], maximizable: [{
|
|
17156
17253
|
type: Input
|
|
17157
17254
|
}], maximized: [{
|
|
17255
|
+
type: HostBinding,
|
|
17256
|
+
args: ['class.k-signature-maximized']
|
|
17257
|
+
}, {
|
|
17158
17258
|
type: Input
|
|
17159
17259
|
}], popupScale: [{
|
|
17160
17260
|
type: Input
|
|
@@ -17201,15 +17301,15 @@ class SliderCustomMessagesComponent extends SliderMessages {
|
|
|
17201
17301
|
get override() {
|
|
17202
17302
|
return true;
|
|
17203
17303
|
}
|
|
17204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
17205
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
17304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: SliderCustomMessagesComponent, isStandalone: true, selector: "kendo-slider-messages", providers: [
|
|
17206
17306
|
{
|
|
17207
17307
|
provide: SliderMessages,
|
|
17208
17308
|
useExisting: forwardRef(() => SliderCustomMessagesComponent)
|
|
17209
17309
|
}
|
|
17210
17310
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
17211
17311
|
}
|
|
17212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17312
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderCustomMessagesComponent, decorators: [{
|
|
17213
17313
|
type: Component,
|
|
17214
17314
|
args: [{
|
|
17215
17315
|
providers: [
|
|
@@ -17236,15 +17336,15 @@ class SwitchCustomMessagesComponent extends Messages {
|
|
|
17236
17336
|
get override() {
|
|
17237
17337
|
return true;
|
|
17238
17338
|
}
|
|
17239
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
17240
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
17339
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
17340
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: SwitchCustomMessagesComponent, isStandalone: true, selector: "kendo-switch-messages", providers: [
|
|
17241
17341
|
{
|
|
17242
17342
|
provide: Messages,
|
|
17243
17343
|
useExisting: forwardRef(() => SwitchCustomMessagesComponent)
|
|
17244
17344
|
}
|
|
17245
17345
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
17246
17346
|
}
|
|
17247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchCustomMessagesComponent, decorators: [{
|
|
17248
17348
|
type: Component,
|
|
17249
17349
|
args: [{
|
|
17250
17350
|
providers: [
|
|
@@ -17292,10 +17392,10 @@ class TextAreaPrefixComponent {
|
|
|
17292
17392
|
get alignItems() {
|
|
17293
17393
|
return this.flow === this.orientation;
|
|
17294
17394
|
}
|
|
17295
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
17296
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
17395
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaPrefixComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
17396
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: TextAreaPrefixComponent, isStandalone: true, selector: "kendo-textarea-prefix", inputs: { flow: "flow", orientation: "orientation" }, host: { properties: { "class.k-input-prefix": "this.hostClass", "class.k-input-prefix-vertical": "this.verticalOrientation", "class.k-input-prefix-horizontal": "this.horizontalOrientation", "class.!k-align-items-start": "this.alignItems" } }, exportAs: ["kendoTextAreaPrefix"], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
|
|
17297
17397
|
}
|
|
17298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaPrefixComponent, decorators: [{
|
|
17299
17399
|
type: Component,
|
|
17300
17400
|
args: [{
|
|
17301
17401
|
exportAs: 'kendoTextAreaPrefix',
|
|
@@ -17354,10 +17454,10 @@ class TextAreaSuffixComponent {
|
|
|
17354
17454
|
get alignItems() {
|
|
17355
17455
|
return this.flow === this.orientation;
|
|
17356
17456
|
}
|
|
17357
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
17358
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
17457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaSuffixComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
17458
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: TextAreaSuffixComponent, isStandalone: true, selector: "kendo-textarea-suffix", inputs: { flow: "flow", orientation: "orientation" }, host: { properties: { "class.k-input-suffix": "this.hostClass", "class.k-input-suffix-vertical": "this.verticalOrientation", "class.k-input-suffix-horizontal": "this.horizontalOrientation", "class.!k-align-items-start": "this.alignItems" } }, exportAs: ["kendoTextAreaSuffix"], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
|
|
17359
17459
|
}
|
|
17360
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaSuffixComponent, decorators: [{
|
|
17361
17461
|
type: Component,
|
|
17362
17462
|
args: [{
|
|
17363
17463
|
exportAs: 'kendoTextAreaSuffix',
|
|
@@ -17493,10 +17593,10 @@ class TextFieldsBase {
|
|
|
17493
17593
|
}
|
|
17494
17594
|
ngChange = (_) => { };
|
|
17495
17595
|
ngTouched = () => { };
|
|
17496
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
17497
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
17596
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextFieldsBase, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
17597
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: TextFieldsBase, isStandalone: true, selector: "kendo-textfield-base", inputs: { title: "title", disabled: "disabled", readonly: "readonly", value: "value", selectOnFocus: "selectOnFocus", placeholder: "placeholder" }, outputs: { inputFocus: "inputFocus", inputBlur: "inputBlur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass", "attr.dir": "this.direction" } }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true, static: true }], ngImport: i0, template: ``, isInline: true });
|
|
17498
17598
|
}
|
|
17499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
17599
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextFieldsBase, decorators: [{
|
|
17500
17600
|
type: Component,
|
|
17501
17601
|
args: [{
|
|
17502
17602
|
selector: 'kendo-textfield-base',
|
|
@@ -17738,17 +17838,11 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17738
17838
|
maxlength: this.maxlength,
|
|
17739
17839
|
rows: this.rows,
|
|
17740
17840
|
cols: this.cols,
|
|
17741
|
-
'aria-disabled': this.disabled ? true : undefined,
|
|
17742
17841
|
'aria-readonly': this.readonly ? true : undefined,
|
|
17743
17842
|
'aria-invalid': this.isControlInvalid,
|
|
17744
17843
|
required: this.isControlRequired ? '' : null
|
|
17745
17844
|
};
|
|
17746
17845
|
}
|
|
17747
|
-
get mutableAttributes() {
|
|
17748
|
-
return {
|
|
17749
|
-
'aria-multiline': 'true'
|
|
17750
|
-
};
|
|
17751
|
-
}
|
|
17752
17846
|
constructor(localizationService, ngZone, changeDetector, renderer, injector, hostElement) {
|
|
17753
17847
|
super(localizationService, ngZone, changeDetector, renderer, injector, hostElement);
|
|
17754
17848
|
this.localizationService = localizationService;
|
|
@@ -18061,11 +18155,11 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
18061
18155
|
this.renderer[isVertical ? 'addClass' : 'removeClass'](element, '\!k-flex-none');
|
|
18062
18156
|
}
|
|
18063
18157
|
setInputAttributes() {
|
|
18064
|
-
const attributesToRender =
|
|
18158
|
+
const attributesToRender = { ...this.parsedAttributes };
|
|
18065
18159
|
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.injector);
|
|
18066
18160
|
}
|
|
18067
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
18068
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
18161
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
18162
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: TextAreaComponent, isStandalone: true, selector: "kendo-textarea", inputs: { focusableId: "focusableId", flow: "flow", inputAttributes: "inputAttributes", adornmentsOrientation: "adornmentsOrientation", rows: "rows", cols: "cols", maxlength: "maxlength", maxResizableRows: "maxResizableRows", tabindex: "tabindex", tabIndex: "tabIndex", resizable: "resizable", size: "size", rounded: "rounded", fillMode: "fillMode", showPrefixSeparator: "showPrefixSeparator", showSuffixSeparator: "showSuffixSeparator" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "class.!k-flex-col": "this.flowCol", "class.!k-flex-row": "this.flowRow" } }, providers: [
|
|
18069
18163
|
LocalizationService,
|
|
18070
18164
|
{ provide: L10N_PREFIX, useValue: 'kendo.textarea' },
|
|
18071
18165
|
{
|
|
@@ -18091,8 +18185,6 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
18091
18185
|
}
|
|
18092
18186
|
<textarea #input
|
|
18093
18187
|
class="k-input-inner !k-overflow-auto"
|
|
18094
|
-
[attr.aria-multiline]="true"
|
|
18095
|
-
[attr.aria-disabled]="disabled ? true : undefined"
|
|
18096
18188
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
18097
18189
|
[attr.aria-invalid]="isControlInvalid"
|
|
18098
18190
|
[id]="focusableId"
|
|
@@ -18122,7 +18214,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
18122
18214
|
</ng-container>
|
|
18123
18215
|
`, isInline: true, dependencies: [{ kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { kind: "component", type: InputSeparatorComponent, selector: "kendo-input-separator, kendo-textbox-separator", inputs: ["orientation"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
|
|
18124
18216
|
}
|
|
18125
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
18217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaComponent, decorators: [{
|
|
18126
18218
|
type: Component,
|
|
18127
18219
|
args: [{
|
|
18128
18220
|
exportAs: 'kendoTextArea',
|
|
@@ -18154,8 +18246,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
18154
18246
|
}
|
|
18155
18247
|
<textarea #input
|
|
18156
18248
|
class="k-input-inner !k-overflow-auto"
|
|
18157
|
-
[attr.aria-multiline]="true"
|
|
18158
|
-
[attr.aria-disabled]="disabled ? true : undefined"
|
|
18159
18249
|
[attr.aria-readonly]="readonly ? true : undefined"
|
|
18160
18250
|
[attr.aria-invalid]="isControlInvalid"
|
|
18161
18251
|
[id]="focusableId"
|
|
@@ -18253,15 +18343,15 @@ class TextBoxCustomMessagesComponent extends TextBoxMessages {
|
|
|
18253
18343
|
get override() {
|
|
18254
18344
|
return true;
|
|
18255
18345
|
}
|
|
18256
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
18257
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
18346
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
18347
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: TextBoxCustomMessagesComponent, isStandalone: true, selector: "kendo-textbox-messages", providers: [
|
|
18258
18348
|
{
|
|
18259
18349
|
provide: TextBoxMessages,
|
|
18260
18350
|
useExisting: forwardRef(() => TextBoxCustomMessagesComponent)
|
|
18261
18351
|
}
|
|
18262
18352
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
18263
18353
|
}
|
|
18264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
18354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxCustomMessagesComponent, decorators: [{
|
|
18265
18355
|
type: Component,
|
|
18266
18356
|
args: [{
|
|
18267
18357
|
providers: [
|
|
@@ -18316,8 +18406,8 @@ class OTPInputSeparatorComponent {
|
|
|
18316
18406
|
this.hasIconClass = false;
|
|
18317
18407
|
this.hasSVGIcon = false;
|
|
18318
18408
|
}
|
|
18319
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
18320
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
18409
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputSeparatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18410
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: OTPInputSeparatorComponent, isStandalone: true, selector: "kendo-otpinput-separator", inputs: { separator: "separator" }, host: { properties: { "class.k-otp-separator": "this.wrapperClass" } }, exportAs: ["kendoOTPInputSeparator"], ngImport: i0, template: `
|
|
18321
18411
|
@if (hasText) {
|
|
18322
18412
|
{{this.separator}}
|
|
18323
18413
|
}
|
|
@@ -18332,7 +18422,7 @@ class OTPInputSeparatorComponent {
|
|
|
18332
18422
|
}
|
|
18333
18423
|
`, isInline: true, dependencies: [{ 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"] }] });
|
|
18334
18424
|
}
|
|
18335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
18425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputSeparatorComponent, decorators: [{
|
|
18336
18426
|
type: Component,
|
|
18337
18427
|
args: [{
|
|
18338
18428
|
exportAs: 'kendoOTPInputSeparator',
|
|
@@ -18366,20 +18456,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
18366
18456
|
*/
|
|
18367
18457
|
class OTPInputMessages extends ComponentMessages {
|
|
18368
18458
|
/**
|
|
18369
|
-
* The aria-label of the OTP Input. Follows the pattern **
|
|
18370
|
-
*
|
|
18371
|
-
* **
|
|
18459
|
+
* The aria-label of the OTP Input fields. Follows the pattern **Digit {currentInput} of {totalInputs}** by default.
|
|
18460
|
+
* The default label text when the current input is 1 and the total number of inputs is 6 will be
|
|
18461
|
+
* **Digit 1 of 6**.
|
|
18372
18462
|
*
|
|
18373
|
-
* The message consists of
|
|
18374
|
-
* To allow for reordering its parts, the `ariaLabel` input accepts a string with placeholders for the current input
|
|
18375
|
-
* total number of inputs
|
|
18463
|
+
* The message consists of two parts — the current input number and the total number of inputs.
|
|
18464
|
+
* To allow for reordering its parts, the `ariaLabel` input accepts a string with placeholders for the current input
|
|
18465
|
+
* and total number of inputs. The `{currentInput}` and `{totalInputs}` placeholders will be
|
|
18376
18466
|
* replaced internally with the respective actual values.
|
|
18377
18467
|
*/
|
|
18378
18468
|
ariaLabel;
|
|
18379
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
18380
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
18469
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
18470
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OTPInputMessages, isStandalone: true, selector: "kendo-otpinput-messages-base", inputs: { ariaLabel: "ariaLabel" }, usesInheritance: true, ngImport: i0 });
|
|
18381
18471
|
}
|
|
18382
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
18472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputMessages, decorators: [{
|
|
18383
18473
|
type: Directive,
|
|
18384
18474
|
args: [{
|
|
18385
18475
|
selector: 'kendo-otpinput-messages-base'
|
|
@@ -18397,15 +18487,15 @@ class LocalizedOTPInputMessagesDirective extends OTPInputMessages {
|
|
|
18397
18487
|
super();
|
|
18398
18488
|
this.service = service;
|
|
18399
18489
|
}
|
|
18400
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
18401
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
18490
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedOTPInputMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18491
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: LocalizedOTPInputMessagesDirective, isStandalone: true, selector: "[kendoOTPInputLocalizedMessages]", providers: [
|
|
18402
18492
|
{
|
|
18403
18493
|
provide: OTPInputMessages,
|
|
18404
18494
|
useExisting: forwardRef(() => LocalizedOTPInputMessagesDirective)
|
|
18405
18495
|
}
|
|
18406
18496
|
], usesInheritance: true, ngImport: i0 });
|
|
18407
18497
|
}
|
|
18408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
18498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: LocalizedOTPInputMessagesDirective, decorators: [{
|
|
18409
18499
|
type: Directive,
|
|
18410
18500
|
args: [{
|
|
18411
18501
|
providers: [
|
|
@@ -18606,6 +18696,9 @@ class OTPInputComponent {
|
|
|
18606
18696
|
*/
|
|
18607
18697
|
onBlur = new EventEmitter();
|
|
18608
18698
|
wrapperClass = true;
|
|
18699
|
+
get disabledClass() {
|
|
18700
|
+
return this.disabled;
|
|
18701
|
+
}
|
|
18609
18702
|
get invalidClass() {
|
|
18610
18703
|
return this.isControlInvalid;
|
|
18611
18704
|
}
|
|
@@ -19124,8 +19217,8 @@ class OTPInputComponent {
|
|
|
19124
19217
|
}
|
|
19125
19218
|
return true;
|
|
19126
19219
|
}
|
|
19127
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
19128
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
19220
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
19221
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: OTPInputComponent, isStandalone: true, selector: "kendo-otpinput", inputs: { length: "length", type: "type", spacing: "spacing", separator: "separator", disabled: "disabled", readonly: "readonly", placeholder: "placeholder", groupLength: "groupLength", value: "value", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-otp": "this.wrapperClass", "class.k-disabled": "this.disabledClass", "class.k-invalid": "this.invalidClass", "attr.dir": "this.direction", "attr.role": "this.role" } }, providers: [
|
|
19129
19222
|
LocalizationService,
|
|
19130
19223
|
{ provide: L10N_PREFIX, useValue: 'kendo.otpinput' },
|
|
19131
19224
|
{
|
|
@@ -19133,11 +19226,12 @@ class OTPInputComponent {
|
|
|
19133
19226
|
useExisting: forwardRef(() => OTPInputComponent),
|
|
19134
19227
|
multi: true
|
|
19135
19228
|
},
|
|
19136
|
-
{ provide: KendoInput, useExisting: forwardRef(() => OTPInputComponent) }
|
|
19229
|
+
{ provide: KendoInput, useExisting: forwardRef(() => OTPInputComponent) },
|
|
19230
|
+
provideComponentName('otpinput')
|
|
19137
19231
|
], viewQueries: [{ propertyName: "inputFields", predicate: TextBoxComponent, descendants: true }, { propertyName: "inputGroups", predicate: ["inputGroup"], descendants: true }], exportAs: ["kendoOTPInput"], usesOnChanges: true, ngImport: i0, template: `
|
|
19138
19232
|
<ng-container kendoOTPInputLocalizedMessages
|
|
19139
19233
|
i18n-ariaLabel="kendo.otpinput.ariaLabel|The value of the aria-label attribute of the input fields."
|
|
19140
|
-
ariaLabel="
|
|
19234
|
+
ariaLabel="Digit [[currentInput]] of [[totalInputs]]"
|
|
19141
19235
|
></ng-container>
|
|
19142
19236
|
<ng-container
|
|
19143
19237
|
kendoInputSharedEvents
|
|
@@ -19196,7 +19290,7 @@ class OTPInputComponent {
|
|
|
19196
19290
|
<ng-container>
|
|
19197
19291
|
`, isInline: true, dependencies: [{ kind: "directive", type: SharedInputEventsDirective, selector: "[kendoInputSharedEvents]", inputs: ["hostElement", "clearButtonClicked", "isFocused"], outputs: ["isFocusedChange", "onFocus", "handleBlur"] }, { 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: "component", type: OTPInputSeparatorComponent, selector: "kendo-otpinput-separator", inputs: ["separator"], exportAs: ["kendoOTPInputSeparator"] }, { kind: "directive", type: LocalizedOTPInputMessagesDirective, selector: "[kendoOTPInputLocalizedMessages]" }] });
|
|
19198
19292
|
}
|
|
19199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
19293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputComponent, decorators: [{
|
|
19200
19294
|
type: Component,
|
|
19201
19295
|
args: [{
|
|
19202
19296
|
exportAs: 'kendoOTPInput',
|
|
@@ -19208,13 +19302,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
19208
19302
|
useExisting: forwardRef(() => OTPInputComponent),
|
|
19209
19303
|
multi: true
|
|
19210
19304
|
},
|
|
19211
|
-
{ provide: KendoInput, useExisting: forwardRef(() => OTPInputComponent) }
|
|
19305
|
+
{ provide: KendoInput, useExisting: forwardRef(() => OTPInputComponent) },
|
|
19306
|
+
provideComponentName('otpinput')
|
|
19212
19307
|
],
|
|
19213
19308
|
selector: 'kendo-otpinput',
|
|
19214
19309
|
template: `
|
|
19215
19310
|
<ng-container kendoOTPInputLocalizedMessages
|
|
19216
19311
|
i18n-ariaLabel="kendo.otpinput.ariaLabel|The value of the aria-label attribute of the input fields."
|
|
19217
|
-
ariaLabel="
|
|
19312
|
+
ariaLabel="Digit [[currentInput]] of [[totalInputs]]"
|
|
19218
19313
|
></ng-container>
|
|
19219
19314
|
<ng-container
|
|
19220
19315
|
kendoInputSharedEvents
|
|
@@ -19312,6 +19407,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
19312
19407
|
}], wrapperClass: [{
|
|
19313
19408
|
type: HostBinding,
|
|
19314
19409
|
args: ['class.k-otp']
|
|
19410
|
+
}], disabledClass: [{
|
|
19411
|
+
type: HostBinding,
|
|
19412
|
+
args: ['class.k-disabled']
|
|
19315
19413
|
}], invalidClass: [{
|
|
19316
19414
|
type: HostBinding,
|
|
19317
19415
|
args: ['class.k-invalid']
|
|
@@ -19343,15 +19441,15 @@ class OTPInputCustomMessagesComponent extends OTPInputMessages {
|
|
|
19343
19441
|
get override() {
|
|
19344
19442
|
return true;
|
|
19345
19443
|
}
|
|
19346
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
19347
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
19444
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19445
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: OTPInputCustomMessagesComponent, isStandalone: true, selector: "kendo-otpinput-messages", providers: [
|
|
19348
19446
|
{
|
|
19349
19447
|
provide: OTPInputMessages,
|
|
19350
19448
|
useExisting: forwardRef(() => OTPInputCustomMessagesComponent)
|
|
19351
19449
|
}
|
|
19352
19450
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
19353
19451
|
}
|
|
19354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
19452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputCustomMessagesComponent, decorators: [{
|
|
19355
19453
|
type: Component,
|
|
19356
19454
|
args: [{
|
|
19357
19455
|
providers: [
|
|
@@ -19410,7 +19508,7 @@ class FormComponent {
|
|
|
19410
19508
|
*/
|
|
19411
19509
|
licenseMessage;
|
|
19412
19510
|
get formClass() {
|
|
19413
|
-
return 'k-form
|
|
19511
|
+
return 'k-form';
|
|
19414
19512
|
}
|
|
19415
19513
|
get horizontalClass() {
|
|
19416
19514
|
return this.orientation === 'horizontal';
|
|
@@ -19486,8 +19584,8 @@ class FormComponent {
|
|
|
19486
19584
|
ngOnDestroy() {
|
|
19487
19585
|
this.subscriptions.unsubscribe();
|
|
19488
19586
|
}
|
|
19489
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
19490
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
19587
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: FormService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19588
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", 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: [
|
|
19491
19589
|
FormService,
|
|
19492
19590
|
LocalizationService,
|
|
19493
19591
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
@@ -19501,7 +19599,7 @@ class FormComponent {
|
|
|
19501
19599
|
}
|
|
19502
19600
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay], kendo-watermark-overlay", inputs: ["licenseMessage"] }] });
|
|
19503
19601
|
}
|
|
19504
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
19602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormComponent, decorators: [{
|
|
19505
19603
|
type: Component,
|
|
19506
19604
|
args: [{
|
|
19507
19605
|
exportAs: 'kendoForm',
|
|
@@ -19590,10 +19688,10 @@ class FormSeparatorComponent {
|
|
|
19590
19688
|
this._previousColSpan = newColSpan;
|
|
19591
19689
|
}
|
|
19592
19690
|
}
|
|
19593
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
19594
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.
|
|
19691
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormSeparatorComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: FormService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19692
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.27", type: FormSeparatorComponent, isStandalone: true, selector: "kendo-form-separator", inputs: { colSpan: "colSpan" }, host: { properties: { "class.k-form-separator": "this.hostClass" } }, exportAs: ["kendoFormSeparator"], usesOnChanges: true, ngImport: i0, template: ``, isInline: true });
|
|
19595
19693
|
}
|
|
19596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
19694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormSeparatorComponent, decorators: [{
|
|
19597
19695
|
type: Component,
|
|
19598
19696
|
args: [{
|
|
19599
19697
|
exportAs: 'kendoFormSeparator',
|
|
@@ -19733,8 +19831,8 @@ class FormFieldSetComponent {
|
|
|
19733
19831
|
this.cdr.detectChanges();
|
|
19734
19832
|
}
|
|
19735
19833
|
}
|
|
19736
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
19737
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.
|
|
19834
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldSetComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FormService }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19835
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.27", type: FormFieldSetComponent, isStandalone: true, selector: "fieldset[kendoFormFieldSet]", inputs: { legend: "legend", cols: "cols", gutters: "gutters", colSpan: "colSpan" }, host: { properties: { "class.k-form-fieldset": "this.formFieldSetClass", "attr.dir": "this.direction" } }, providers: [
|
|
19738
19836
|
LocalizationService,
|
|
19739
19837
|
{ provide: L10N_PREFIX, useValue: 'kendo.formfieldset' }
|
|
19740
19838
|
], exportAs: ["kendoFormFieldSet"], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -19748,7 +19846,7 @@ class FormFieldSetComponent {
|
|
|
19748
19846
|
</div>
|
|
19749
19847
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
19750
19848
|
}
|
|
19751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
19849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldSetComponent, decorators: [{
|
|
19752
19850
|
type: Component,
|
|
19753
19851
|
args: [{
|
|
19754
19852
|
exportAs: 'kendoFormFieldSet',
|
|
@@ -20190,11 +20288,11 @@ const KENDO_INPUTS = [
|
|
|
20190
20288
|
* ```
|
|
20191
20289
|
*/
|
|
20192
20290
|
class InputsModule {
|
|
20193
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20194
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20195
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20291
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20292
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: InputsModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, InputSpacerComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, MaskedTextBoxComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i8.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormComponent, FormSeparatorComponent, FormFieldSetComponent, FormFieldComponent, HintComponent, ErrorComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, OTPInputComponent, OTPInputCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, InputSpacerComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, MaskedTextBoxComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i8.SeparatorComponent, CheckBoxComponent, CheckBoxDirective, RadioButtonComponent, RadioButtonDirective, SwitchComponent, SwitchCustomMessagesComponent, FormComponent, FormSeparatorComponent, FormFieldSetComponent, FormFieldComponent, HintComponent, ErrorComponent, FormFieldComponent, HintComponent, ErrorComponent, SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective, RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective, RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective, SignatureComponent, SignatureCustomMessagesComponent, ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent, OTPInputComponent, OTPInputCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent] });
|
|
20293
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService, AdaptiveService], imports: [TextBoxComponent, i8.SeparatorComponent, NumericTextBoxComponent, i8.SeparatorComponent, i8.SeparatorComponent, i8.SeparatorComponent, FormComponent, SliderComponent, RangeSliderComponent, RatingComponent, SignatureComponent, ColorPickerComponent, FlatColorPickerComponent, ColorGradientComponent, OTPInputComponent, i8.SeparatorComponent] });
|
|
20196
20294
|
}
|
|
20197
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: InputsModule, decorators: [{
|
|
20198
20296
|
type: NgModule,
|
|
20199
20297
|
args: [{
|
|
20200
20298
|
imports: [...KENDO_INPUTS, ...KENDO_ADORNMENTS],
|
|
@@ -20226,11 +20324,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20226
20324
|
* ```
|
|
20227
20325
|
*/
|
|
20228
20326
|
class SliderModule {
|
|
20229
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20230
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20231
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20327
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20328
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: SliderModule, imports: [SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective], exports: [SliderComponent, SliderCustomMessagesComponent, LabelTemplateDirective] });
|
|
20329
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [SliderComponent] });
|
|
20232
20330
|
}
|
|
20233
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SliderModule, decorators: [{
|
|
20234
20332
|
type: NgModule,
|
|
20235
20333
|
args: [{
|
|
20236
20334
|
imports: [...KENDO_SLIDER],
|
|
@@ -20262,11 +20360,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20262
20360
|
* ```
|
|
20263
20361
|
*/
|
|
20264
20362
|
class RangeSliderModule {
|
|
20265
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20266
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20267
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20363
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20364
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderModule, imports: [RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective], exports: [RangeSliderComponent, RangeSliderCustomMessagesComponent, LabelTemplateDirective] });
|
|
20365
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderModule, providers: [ResizeBatchService], imports: [RangeSliderComponent] });
|
|
20268
20366
|
}
|
|
20269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20367
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RangeSliderModule, decorators: [{
|
|
20270
20368
|
type: NgModule,
|
|
20271
20369
|
args: [{
|
|
20272
20370
|
imports: [...KENDO_RANGESLIDER],
|
|
@@ -20297,11 +20395,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20297
20395
|
* ```
|
|
20298
20396
|
*/
|
|
20299
20397
|
class SwitchModule {
|
|
20300
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20301
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20302
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20398
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20399
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: SwitchModule, imports: [SwitchComponent, SwitchCustomMessagesComponent], exports: [SwitchComponent, SwitchCustomMessagesComponent] });
|
|
20400
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchModule, providers: [ResizeBatchService] });
|
|
20303
20401
|
}
|
|
20304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SwitchModule, decorators: [{
|
|
20305
20403
|
type: NgModule,
|
|
20306
20404
|
args: [{
|
|
20307
20405
|
imports: [...KENDO_SWITCH],
|
|
@@ -20332,11 +20430,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20332
20430
|
* ```
|
|
20333
20431
|
*/
|
|
20334
20432
|
class OTPInputModule {
|
|
20335
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20336
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20337
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20433
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20434
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: OTPInputModule, imports: [OTPInputComponent, OTPInputCustomMessagesComponent], exports: [OTPInputComponent, OTPInputCustomMessagesComponent] });
|
|
20435
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputModule, providers: [IconsService], imports: [OTPInputComponent] });
|
|
20338
20436
|
}
|
|
20339
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OTPInputModule, decorators: [{
|
|
20340
20438
|
type: NgModule,
|
|
20341
20439
|
args: [{
|
|
20342
20440
|
imports: [...KENDO_OTPINPUT],
|
|
@@ -20367,11 +20465,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20367
20465
|
* ```
|
|
20368
20466
|
*/
|
|
20369
20467
|
class NumericTextBoxModule {
|
|
20370
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20371
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20372
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20468
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20469
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxModule, imports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent], exports: [NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent] });
|
|
20470
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxModule, providers: [IconsService], imports: [NumericTextBoxComponent, i8.SeparatorComponent, i8.SeparatorComponent] });
|
|
20373
20471
|
}
|
|
20374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: NumericTextBoxModule, decorators: [{
|
|
20375
20473
|
type: NgModule,
|
|
20376
20474
|
args: [{
|
|
20377
20475
|
imports: [...KENDO_NUMERICTEXTBOX, ...KENDO_ADORNMENTS],
|
|
@@ -20402,11 +20500,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20402
20500
|
* ```
|
|
20403
20501
|
*/
|
|
20404
20502
|
class MaskedTextBoxModule {
|
|
20405
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20406
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20407
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20503
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20504
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxModule, imports: [MaskedTextBoxComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent], exports: [MaskedTextBoxComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent] });
|
|
20505
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxModule, imports: [i8.SeparatorComponent, i8.SeparatorComponent] });
|
|
20408
20506
|
}
|
|
20409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
|
|
20410
20508
|
type: NgModule,
|
|
20411
20509
|
args: [{
|
|
20412
20510
|
imports: [...KENDO_MASKEDTEXTBOX, ...KENDO_ADORNMENTS],
|
|
@@ -20436,11 +20534,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20436
20534
|
* ```
|
|
20437
20535
|
*/
|
|
20438
20536
|
class TextBoxModule {
|
|
20439
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20440
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20441
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20537
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20538
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: TextBoxModule, imports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, InputSpacerComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent], exports: [TextBoxDirective, TextBoxComponent, InputSeparatorComponent, InputSpacerComponent, TextBoxSuffixTemplateDirective, TextBoxPrefixTemplateDirective, TextBoxCustomMessagesComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent] });
|
|
20539
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxModule, providers: [IconsService], imports: [TextBoxComponent, i8.SeparatorComponent, i8.SeparatorComponent] });
|
|
20442
20540
|
}
|
|
20443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextBoxModule, decorators: [{
|
|
20444
20542
|
type: NgModule,
|
|
20445
20543
|
args: [{
|
|
20446
20544
|
imports: [...KENDO_TEXTBOX, ...KENDO_ADORNMENTS],
|
|
@@ -20471,11 +20569,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20471
20569
|
* ```
|
|
20472
20570
|
*/
|
|
20473
20571
|
class TextAreaModule {
|
|
20474
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20475
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20476
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20572
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20573
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: TextAreaModule, imports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent], exports: [TextAreaComponent, TextAreaDirective, TextAreaPrefixComponent, TextAreaSuffixComponent, i8.SeparatorComponent, i8.PrefixTemplateDirective, i8.SuffixTemplateDirective, i8.SeparatorComponent] });
|
|
20574
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaModule, imports: [i8.SeparatorComponent, i8.SeparatorComponent] });
|
|
20477
20575
|
}
|
|
20478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: TextAreaModule, decorators: [{
|
|
20479
20577
|
type: NgModule,
|
|
20480
20578
|
args: [{
|
|
20481
20579
|
imports: [...KENDO_TEXTAREA, ...KENDO_ADORNMENTS],
|
|
@@ -20505,11 +20603,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20505
20603
|
* ```
|
|
20506
20604
|
*/
|
|
20507
20605
|
class CheckBoxModule {
|
|
20508
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20509
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20510
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20606
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20607
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxModule, imports: [CheckBoxComponent, CheckBoxDirective], exports: [CheckBoxComponent, CheckBoxDirective] });
|
|
20608
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxModule });
|
|
20511
20609
|
}
|
|
20512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20610
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: CheckBoxModule, decorators: [{
|
|
20513
20611
|
type: NgModule,
|
|
20514
20612
|
args: [{
|
|
20515
20613
|
imports: [...KENDO_CHECKBOX],
|
|
@@ -20540,11 +20638,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20540
20638
|
* ```
|
|
20541
20639
|
*/
|
|
20542
20640
|
class RadioButtonModule {
|
|
20543
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20544
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20545
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20641
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20642
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonModule, imports: [RadioButtonComponent, RadioButtonDirective], exports: [RadioButtonComponent, RadioButtonDirective] });
|
|
20643
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonModule });
|
|
20546
20644
|
}
|
|
20547
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RadioButtonModule, decorators: [{
|
|
20548
20646
|
type: NgModule,
|
|
20549
20647
|
args: [{
|
|
20550
20648
|
imports: [...KENDO_RADIOBUTTON],
|
|
@@ -20594,11 +20692,11 @@ class SwitchFocusEvent {
|
|
|
20594
20692
|
* ```
|
|
20595
20693
|
*/
|
|
20596
20694
|
class ColorPickerModule {
|
|
20597
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20598
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20599
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20695
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20696
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerModule, imports: [ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent], exports: [ColorPickerComponent, ColorPickerCustomMessagesComponent, FlatColorPickerComponent, ColorPickerCustomMessagesComponent, ColorGradientComponent, ColorPickerCustomMessagesComponent, ColorPaletteComponent, ColorPickerCustomMessagesComponent] });
|
|
20697
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerModule, providers: [PopupService, IconsService, ResizeBatchService, AdaptiveService], imports: [ColorPickerComponent, FlatColorPickerComponent, ColorGradientComponent] });
|
|
20600
20698
|
}
|
|
20601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ColorPickerModule, decorators: [{
|
|
20602
20700
|
type: NgModule,
|
|
20603
20701
|
args: [{
|
|
20604
20702
|
imports: [...KENDO_COLORPICKER, ...KENDO_FLATCOLORPICKER, ...KENDO_COLORGRADIENT, ...KENDO_COLORPALETTE],
|
|
@@ -20629,11 +20727,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20629
20727
|
* ```
|
|
20630
20728
|
*/
|
|
20631
20729
|
class FormFieldModule {
|
|
20632
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20633
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20634
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20730
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20731
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: FormFieldModule, imports: [FormFieldComponent, HintComponent, ErrorComponent], exports: [FormFieldComponent, HintComponent, ErrorComponent] });
|
|
20732
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldModule });
|
|
20635
20733
|
}
|
|
20636
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormFieldModule, decorators: [{
|
|
20637
20735
|
type: NgModule,
|
|
20638
20736
|
args: [{
|
|
20639
20737
|
imports: [...KENDO_FORMFIELD],
|
|
@@ -20663,11 +20761,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20663
20761
|
* ```
|
|
20664
20762
|
*/
|
|
20665
20763
|
class FormModule {
|
|
20666
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20667
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20668
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20764
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20765
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: FormModule, imports: [FormComponent, FormSeparatorComponent, FormFieldSetComponent, FormFieldComponent, HintComponent, ErrorComponent], exports: [FormComponent, FormSeparatorComponent, FormFieldSetComponent, FormFieldComponent, HintComponent, ErrorComponent] });
|
|
20766
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormModule, imports: [FormComponent] });
|
|
20669
20767
|
}
|
|
20670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20768
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: FormModule, decorators: [{
|
|
20671
20769
|
type: NgModule,
|
|
20672
20770
|
args: [{
|
|
20673
20771
|
imports: [...KENDO_FORM],
|
|
@@ -20697,11 +20795,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20697
20795
|
* ```
|
|
20698
20796
|
*/
|
|
20699
20797
|
class SignatureModule {
|
|
20700
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20701
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20702
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20798
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20799
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: SignatureModule, imports: [SignatureComponent, SignatureCustomMessagesComponent], exports: [SignatureComponent, SignatureCustomMessagesComponent] });
|
|
20800
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [SignatureComponent] });
|
|
20703
20801
|
}
|
|
20704
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: SignatureModule, decorators: [{
|
|
20705
20803
|
type: NgModule,
|
|
20706
20804
|
args: [{
|
|
20707
20805
|
imports: [...KENDO_SIGNATURE],
|
|
@@ -20732,11 +20830,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
20732
20830
|
* ```
|
|
20733
20831
|
*/
|
|
20734
20832
|
class RatingModule {
|
|
20735
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
20736
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
20737
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
20833
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20834
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: RatingModule, imports: [RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective], exports: [RatingComponent, RatingItemTemplateDirective, RatingHoveredItemTemplateDirective, RatingSelectedItemTemplateDirective] });
|
|
20835
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingModule, providers: [IconsService], imports: [RatingComponent] });
|
|
20738
20836
|
}
|
|
20739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
20837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: RatingModule, decorators: [{
|
|
20740
20838
|
type: NgModule,
|
|
20741
20839
|
args: [{
|
|
20742
20840
|
imports: [...KENDO_RATING],
|