@progress/kendo-angular-buttons 16.0.0-develop.2 → 16.0.0-develop.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/button/button.component.d.ts +5 -1
- package/buttongroup/buttongroup.component.d.ts +1 -1
- package/chip/chip-list.component.d.ts +1 -1
- package/chip/chip.component.d.ts +1 -1
- package/dropdownbutton/dropdownbutton.component.d.ts +1 -1
- package/esm2020/button/button.component.mjs +15 -7
- package/esm2020/button/button.module.mjs +4 -4
- package/esm2020/button/button.service.mjs +3 -3
- package/esm2020/buttongroup/buttongroup.component.mjs +3 -3
- package/esm2020/buttongroup/buttongroup.module.mjs +4 -4
- package/esm2020/buttons.module.mjs +4 -4
- package/esm2020/chip/chip-list.component.mjs +3 -3
- package/esm2020/chip/chip.component.mjs +8 -8
- package/esm2020/chip/chip.module.mjs +4 -4
- package/esm2020/dropdownbutton/dropdownbutton.component.mjs +6 -6
- package/esm2020/dropdownbutton/dropdownbutton.module.mjs +4 -4
- package/esm2020/floatingactionbutton/dial-item.component.mjs +6 -6
- package/esm2020/floatingactionbutton/dial-list.component.mjs +7 -7
- package/esm2020/floatingactionbutton/floatingactionbutton.component.mjs +8 -8
- package/esm2020/floatingactionbutton/floatingactionbutton.module.mjs +4 -4
- package/esm2020/floatingactionbutton/templates/dial-item-template.directive.mjs +3 -3
- package/esm2020/floatingactionbutton/templates/fab-template.directive.mjs +3 -3
- package/esm2020/focusable/focus.service.mjs +3 -3
- package/esm2020/focusable/focusable.directive.mjs +3 -3
- package/esm2020/listbutton/button-item-template.directive.mjs +3 -3
- package/esm2020/listbutton/container.service.mjs +3 -3
- package/esm2020/listbutton/list-button.mjs +3 -3
- package/esm2020/listbutton/list.component.mjs +6 -6
- package/esm2020/listbutton/list.module.mjs +4 -4
- package/esm2020/listbutton/template-context.directive.mjs +3 -3
- package/esm2020/navigation/navigation.service.mjs +3 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/splitbutton/localization/custom-messages.component.mjs +3 -3
- package/esm2020/splitbutton/localization/localized-messages.directive.mjs +3 -3
- package/esm2020/splitbutton/localization/messages.mjs +3 -3
- package/esm2020/splitbutton/splitbutton.component.mjs +8 -8
- package/esm2020/splitbutton/splitbutton.module.mjs +4 -4
- package/fesm2015/progress-kendo-angular-buttons.mjs +126 -118
- package/fesm2020/progress-kendo-angular-buttons.mjs +126 -118
- package/floatingactionbutton/dial-item.component.d.ts +1 -1
- package/floatingactionbutton/dial-list.component.d.ts +1 -1
- package/floatingactionbutton/floatingactionbutton.component.d.ts +1 -1
- package/floatingactionbutton/templates/dial-item-template.directive.d.ts +1 -1
- package/floatingactionbutton/templates/fab-template.directive.d.ts +1 -1
- package/focusable/focusable.directive.d.ts +1 -1
- package/listbutton/button-item-template.directive.d.ts +1 -1
- package/listbutton/list-button.d.ts +1 -1
- package/listbutton/list.component.d.ts +1 -1
- package/listbutton/template-context.directive.d.ts +1 -1
- package/package.json +12 -12
- package/splitbutton/localization/custom-messages.component.d.ts +1 -1
- package/splitbutton/localization/localized-messages.directive.d.ts +1 -1
- package/splitbutton/localization/messages.d.ts +1 -1
- package/splitbutton/splitbutton.component.d.ts +1 -1
- package/progress-kendo-angular-buttons.d.ts +0 -9
|
@@ -5,17 +5,17 @@
|
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { Injectable, EventEmitter, isDevMode, Component, Optional, Input, Output, HostBinding, HostListener, ContentChildren, NgModule, Directive, InjectionToken, Inject, forwardRef, ElementRef, ViewContainerRef, ContentChild, ViewChild } from '@angular/core';
|
|
7
7
|
import { Subject, Subscription, fromEvent, merge } from 'rxjs';
|
|
8
|
-
import * as
|
|
8
|
+
import * as i7 from '@progress/kendo-angular-common';
|
|
9
9
|
import { isDocumentAvailable, isFirefox, Keys, isSafari, isChanged, hasObservers, guid, anyChanged, ToggleButtonTabStopModule, isPresent as isPresent$1, EventsModule } from '@progress/kendo-angular-common';
|
|
10
10
|
export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
|
|
11
11
|
import { caretAltDownIcon, xCircleIcon, moreVerticalIcon } from '@progress/kendo-svg-icons';
|
|
12
12
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
13
13
|
import { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
15
|
-
import * as i2 from '@
|
|
16
|
-
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
17
|
-
import * as i3 from '@angular/common';
|
|
15
|
+
import * as i2 from '@angular/common';
|
|
18
16
|
import { CommonModule } from '@angular/common';
|
|
17
|
+
import * as i3 from '@progress/kendo-angular-icons';
|
|
18
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
19
19
|
import { filter, tap, take } from 'rxjs/operators';
|
|
20
20
|
import * as i3$1 from '@progress/kendo-angular-popup';
|
|
21
21
|
import { PopupModule } from '@progress/kendo-angular-popup';
|
|
@@ -34,9 +34,9 @@ class KendoButtonService {
|
|
|
34
34
|
this.buttonClicked.next(button);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
KendoButtonService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
38
|
-
KendoButtonService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
37
|
+
KendoButtonService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KendoButtonService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
38
|
+
KendoButtonService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KendoButtonService });
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KendoButtonService, decorators: [{
|
|
40
40
|
type: Injectable
|
|
41
41
|
}] });
|
|
42
42
|
|
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
|
47
47
|
name: '@progress/kendo-angular-buttons',
|
|
48
48
|
productName: 'Kendo UI for Angular',
|
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
50
|
-
publishDate:
|
|
51
|
-
version: '16.0.0-develop.
|
|
50
|
+
publishDate: 1715351157,
|
|
51
|
+
version: '16.0.0-develop.21',
|
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
53
53
|
};
|
|
54
54
|
|
|
@@ -153,6 +153,10 @@ const DEFAULT_THEME_COLOR$2 = 'base';
|
|
|
153
153
|
const DEFAULT_FILL_MODE$3 = 'solid';
|
|
154
154
|
/**
|
|
155
155
|
* Represents the Kendo UI Button component for Angular.
|
|
156
|
+
*
|
|
157
|
+
* As of package v16, the `span[kendoButton]` and `kendo-button` selectors are deprecated and can
|
|
158
|
+
* be removed in a future major version. We recommend using the `button[kendoButton]` selector
|
|
159
|
+
* to avoid discrepancies between the behavior of the `ButtonComponent` and the native HTML Button element.
|
|
156
160
|
*/
|
|
157
161
|
class ButtonComponent {
|
|
158
162
|
constructor(element, renderer, service, localization, ngZone) {
|
|
@@ -254,7 +258,6 @@ class ButtonComponent {
|
|
|
254
258
|
}
|
|
255
259
|
this._icon = name;
|
|
256
260
|
}
|
|
257
|
-
;
|
|
258
261
|
get icon() {
|
|
259
262
|
return this._icon;
|
|
260
263
|
}
|
|
@@ -428,6 +431,11 @@ class ButtonComponent {
|
|
|
428
431
|
if (isSpanOrKendoButton && !this.isDisabled) {
|
|
429
432
|
this.tabIndex = 0;
|
|
430
433
|
}
|
|
434
|
+
if (isDevMode() && isSpanOrKendoButton) {
|
|
435
|
+
console.warn(`As of package v16, the "span[kendoButton]" and "kendo-button" selectors are deprecated and can
|
|
436
|
+
be removed in a future major version. We recommend using the "button[kendoButton]" selector
|
|
437
|
+
to avoid discrepancies between the behavior of the "ButtonComponent" and the native HTML Button element.`);
|
|
438
|
+
}
|
|
431
439
|
this.ngZone.runOutsideAngular(() => {
|
|
432
440
|
this.subs.add(this.renderer.listen(this.element, 'click', this._onButtonClick.bind(this)));
|
|
433
441
|
this.subs.add(this.renderer.listen(this.element, 'keydown', (event) => {
|
|
@@ -571,8 +579,8 @@ class ButtonComponent {
|
|
|
571
579
|
}
|
|
572
580
|
}
|
|
573
581
|
}
|
|
574
|
-
ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
575
|
-
ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
582
|
+
ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: KendoButtonService, optional: true }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
583
|
+
ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: { arrowIcon: "arrowIcon", toggleable: "toggleable", togglable: "togglable", selected: "selected", tabIndex: "tabIndex", imageUrl: "imageUrl", iconClass: "iconClass", icon: "icon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", svgIcon: "svgIcon", role: "role", primary: "primary", look: "look" }, outputs: { selectedChange: "selectedChange", click: "click" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class.k-button": "this.classButton", "class.k-toggle-button": "this.isToggleable", "class.k-icon-button": "this.iconButtonClass", "attr.role": "this.roleSetter", "attr.aria-disabled": "this.classDisabled", "class.k-disabled": "this.classDisabled", "class.k-selected": "this.classActive", "attr.dir": "this.getDirection" } }, providers: [
|
|
576
584
|
LocalizationService,
|
|
577
585
|
{
|
|
578
586
|
provide: L10N_PREFIX,
|
|
@@ -595,8 +603,8 @@ ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
595
603
|
innerCssClass="k-button-icon"
|
|
596
604
|
[name]="$any(arrowIcon).icon || 'caret-alt-down'"
|
|
597
605
|
[svgIcon]="$any(arrowIcon).svgIcon || caretAltDownIcon"></kendo-icon-wrapper>
|
|
598
|
-
`, isInline: true,
|
|
599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
606
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
600
608
|
type: Component,
|
|
601
609
|
args: [{
|
|
602
610
|
exportAs: 'kendoButton',
|
|
@@ -942,8 +950,8 @@ class ButtonGroupComponent {
|
|
|
942
950
|
.subscribe(handler));
|
|
943
951
|
}
|
|
944
952
|
}
|
|
945
|
-
ButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
946
|
-
ButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
953
|
+
ButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupComponent, deps: [{ token: KendoButtonService }, { token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
954
|
+
ButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ButtonGroupComponent, selector: "kendo-buttongroup", inputs: { disabled: "disabled", selection: "selection", width: "width", tabIndex: "tabIndex", navigable: "navigable" }, outputs: { navigate: "navigate" }, host: { properties: { "class.k-button-group": "this.wrapperClass", "class.k-disabled": "this.disabledClass", "class.k-button-group-stretched": "this.stretchedClass", "attr.role": "this.role", "attr.dir": "this.dir", "attr.aria-disabled": "this.ariaDisabled", "style.width": "this.wrapperWidth", "attr.tabindex": "this.wrapperTabIndex" } }, providers: [
|
|
947
955
|
KendoButtonService,
|
|
948
956
|
LocalizationService,
|
|
949
957
|
{
|
|
@@ -953,7 +961,7 @@ ButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
953
961
|
], queries: [{ propertyName: "buttons", predicate: ButtonComponent }], exportAs: ["kendoButtonGroup"], usesOnChanges: true, ngImport: i0, template: `
|
|
954
962
|
<ng-content select="[kendoButton], kendo-button"></ng-content>
|
|
955
963
|
`, isInline: true });
|
|
956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupComponent, decorators: [{
|
|
957
965
|
type: Component,
|
|
958
966
|
args: [{
|
|
959
967
|
exportAs: 'kendoButtonGroup',
|
|
@@ -1047,10 +1055,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1047
1055
|
*/
|
|
1048
1056
|
class ButtonModule {
|
|
1049
1057
|
}
|
|
1050
|
-
ButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1051
|
-
ButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
1052
|
-
ButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1058
|
+
ButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1059
|
+
ButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ButtonModule, declarations: [ButtonComponent], imports: [IconsModule], exports: [ButtonComponent] });
|
|
1060
|
+
ButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonModule, imports: [IconsModule] });
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonModule, decorators: [{
|
|
1054
1062
|
type: NgModule,
|
|
1055
1063
|
args: [{
|
|
1056
1064
|
declarations: [ButtonComponent],
|
|
@@ -1069,10 +1077,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1069
1077
|
*/
|
|
1070
1078
|
class ButtonGroupModule {
|
|
1071
1079
|
}
|
|
1072
|
-
ButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1073
|
-
ButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
1074
|
-
ButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1080
|
+
ButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1081
|
+
ButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupModule, declarations: [ButtonGroupComponent], imports: [CommonModule, ButtonModule], exports: [ButtonGroupComponent] });
|
|
1082
|
+
ButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupModule, imports: [CommonModule, ButtonModule] });
|
|
1083
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonGroupModule, decorators: [{
|
|
1076
1084
|
type: NgModule,
|
|
1077
1085
|
args: [{
|
|
1078
1086
|
declarations: [ButtonGroupComponent],
|
|
@@ -1134,9 +1142,9 @@ class ButtonItemTemplateDirective {
|
|
|
1134
1142
|
this.templateRef = templateRef;
|
|
1135
1143
|
}
|
|
1136
1144
|
}
|
|
1137
|
-
ButtonItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1138
|
-
ButtonItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
1139
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1145
|
+
ButtonItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1146
|
+
ButtonItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ButtonItemTemplateDirective, selector: "[kendoDropDownButtonItemTemplate],[kendoSplitButtonItemTemplate]", ngImport: i0 });
|
|
1147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonItemTemplateDirective, decorators: [{
|
|
1140
1148
|
type: Directive,
|
|
1141
1149
|
args: [{
|
|
1142
1150
|
selector: '[kendoDropDownButtonItemTemplate],[kendoSplitButtonItemTemplate]'
|
|
@@ -1171,9 +1179,9 @@ class FocusService {
|
|
|
1171
1179
|
this.onFocus.emit(index);
|
|
1172
1180
|
}
|
|
1173
1181
|
}
|
|
1174
|
-
FocusService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1175
|
-
FocusService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1182
|
+
FocusService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1183
|
+
FocusService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService });
|
|
1184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusService, decorators: [{
|
|
1177
1185
|
type: Injectable
|
|
1178
1186
|
}] });
|
|
1179
1187
|
|
|
@@ -1219,9 +1227,9 @@ class FocusableDirective {
|
|
|
1219
1227
|
}));
|
|
1220
1228
|
}
|
|
1221
1229
|
}
|
|
1222
|
-
FocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1223
|
-
FocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
1224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1230
|
+
FocusableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusableDirective, deps: [{ token: FocusService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1231
|
+
FocusableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FocusableDirective, selector: "[kendoButtonFocusable]", inputs: { index: "index" }, ngImport: i0 });
|
|
1232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusableDirective, decorators: [{
|
|
1225
1233
|
type: Directive,
|
|
1226
1234
|
args: [{
|
|
1227
1235
|
selector: '[kendoButtonFocusable]'
|
|
@@ -1247,9 +1255,9 @@ class TemplateContextDirective {
|
|
|
1247
1255
|
}
|
|
1248
1256
|
}
|
|
1249
1257
|
}
|
|
1250
|
-
TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1251
|
-
TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
1252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1258
|
+
TemplateContextDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1259
|
+
TemplateContextDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TemplateContextDirective, selector: "[templateContext]", inputs: { templateContext: "templateContext" }, ngImport: i0 });
|
|
1260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplateContextDirective, decorators: [{
|
|
1253
1261
|
type: Directive,
|
|
1254
1262
|
args: [{
|
|
1255
1263
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1296,8 +1304,8 @@ class ListComponent {
|
|
|
1296
1304
|
this.onItemBlur.emit();
|
|
1297
1305
|
}
|
|
1298
1306
|
}
|
|
1299
|
-
ListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1300
|
-
ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1307
|
+
ListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1308
|
+
ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ListComponent, selector: "kendo-button-list", inputs: { data: "data", textField: "textField", itemTemplate: "itemTemplate", size: "size" }, outputs: { onItemClick: "onItemClick", onItemBlur: "onItemBlur" }, ngImport: i0, template: `
|
|
1301
1309
|
<ul class="k-group k-menu-group k-reset" [ngClass]="sizeClass" unselectable="on" role="menu">
|
|
1302
1310
|
<li role="menuitem"
|
|
1303
1311
|
unselectable="on"
|
|
@@ -1343,8 +1351,8 @@ ListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
1343
1351
|
</ng-template>
|
|
1344
1352
|
</li>
|
|
1345
1353
|
</ul>
|
|
1346
|
-
`, isInline: true,
|
|
1347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1354
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoButtonFocusable]", inputs: ["index"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }] });
|
|
1355
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListComponent, decorators: [{
|
|
1348
1356
|
type: Component,
|
|
1349
1357
|
args: [{
|
|
1350
1358
|
selector: 'kendo-button-list',
|
|
@@ -1421,16 +1429,16 @@ const EXPORTED_DIRECTIVES = [
|
|
|
1421
1429
|
*/
|
|
1422
1430
|
class ListModule {
|
|
1423
1431
|
}
|
|
1424
|
-
ListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1425
|
-
ListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
1432
|
+
ListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1433
|
+
ListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ListModule, declarations: [ListComponent,
|
|
1426
1434
|
FocusableDirective,
|
|
1427
1435
|
ButtonItemTemplateDirective,
|
|
1428
1436
|
TemplateContextDirective], imports: [CommonModule, IconsModule], exports: [ListComponent,
|
|
1429
1437
|
FocusableDirective,
|
|
1430
1438
|
ButtonItemTemplateDirective,
|
|
1431
1439
|
TemplateContextDirective] });
|
|
1432
|
-
ListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1440
|
+
ListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListModule, imports: [CommonModule, IconsModule] });
|
|
1441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListModule, decorators: [{
|
|
1434
1442
|
type: NgModule,
|
|
1435
1443
|
args: [{
|
|
1436
1444
|
declarations: [EXPORTED_DIRECTIVES],
|
|
@@ -1562,9 +1570,9 @@ class NavigationService {
|
|
|
1562
1570
|
}
|
|
1563
1571
|
}
|
|
1564
1572
|
}
|
|
1565
|
-
NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1566
|
-
NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1573
|
+
NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService, deps: [{ token: NAVIGATION_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1574
|
+
NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService });
|
|
1575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService, decorators: [{
|
|
1568
1576
|
type: Injectable
|
|
1569
1577
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
1570
1578
|
type: Inject,
|
|
@@ -1576,9 +1584,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1576
1584
|
*/
|
|
1577
1585
|
class PopupContainerService {
|
|
1578
1586
|
}
|
|
1579
|
-
PopupContainerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1580
|
-
PopupContainerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1587
|
+
PopupContainerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1588
|
+
PopupContainerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupContainerService });
|
|
1589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupContainerService, decorators: [{
|
|
1582
1590
|
type: Injectable
|
|
1583
1591
|
}] });
|
|
1584
1592
|
|
|
@@ -1945,9 +1953,9 @@ class ListButton {
|
|
|
1945
1953
|
}
|
|
1946
1954
|
}
|
|
1947
1955
|
}
|
|
1948
|
-
ListButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1949
|
-
ListButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1956
|
+
ListButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListButton, deps: [{ token: FocusService }, { token: NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3$1.PopupService }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: PopupContainerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1957
|
+
ListButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ListButton, selector: "ng-component", inputs: { disabled: "disabled", tabIndex: "tabIndex", buttonClass: "buttonClass", popupSettings: "popupSettings" }, outputs: { open: "open", close: "close" }, usesOnChanges: true, ngImport: i0, template: '', isInline: true });
|
|
1958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ListButton, decorators: [{
|
|
1951
1959
|
type: Component,
|
|
1952
1960
|
args: [{
|
|
1953
1961
|
template: ''
|
|
@@ -1971,9 +1979,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1971
1979
|
*/
|
|
1972
1980
|
class Messages extends ComponentMessages {
|
|
1973
1981
|
}
|
|
1974
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1975
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
1976
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1982
|
+
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1983
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: Messages, selector: "kendo-splitbutton-messages-base", inputs: { splitButtonLabel: "splitButtonLabel" }, usesInheritance: true, ngImport: i0 });
|
|
1984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
|
|
1977
1985
|
type: Directive,
|
|
1978
1986
|
args: [{
|
|
1979
1987
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -1992,14 +2000,14 @@ class LocalizedSplitButtonMessagesDirective extends Messages {
|
|
|
1992
2000
|
this.service = service;
|
|
1993
2001
|
}
|
|
1994
2002
|
}
|
|
1995
|
-
LocalizedSplitButtonMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1996
|
-
LocalizedSplitButtonMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
2003
|
+
LocalizedSplitButtonMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedSplitButtonMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2004
|
+
LocalizedSplitButtonMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedSplitButtonMessagesDirective, selector: "[kendoSplitButtonLocalizedMessages]", providers: [
|
|
1997
2005
|
{
|
|
1998
2006
|
provide: Messages,
|
|
1999
2007
|
useExisting: forwardRef(() => LocalizedSplitButtonMessagesDirective)
|
|
2000
2008
|
}
|
|
2001
2009
|
], usesInheritance: true, ngImport: i0 });
|
|
2002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedSplitButtonMessagesDirective, decorators: [{
|
|
2003
2011
|
type: Directive,
|
|
2004
2012
|
args: [{
|
|
2005
2013
|
providers: [
|
|
@@ -2543,8 +2551,8 @@ class SplitButtonComponent extends ListButton {
|
|
|
2543
2551
|
}
|
|
2544
2552
|
}
|
|
2545
2553
|
}
|
|
2546
|
-
SplitButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2547
|
-
SplitButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2554
|
+
SplitButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonComponent, deps: [{ token: FocusService }, { token: NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3$1.PopupService }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: PopupContainerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2555
|
+
SplitButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SplitButtonComponent, selector: "kendo-splitbutton", inputs: { text: "text", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", type: "type", imageUrl: "imageUrl", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", disabled: "disabled", popupSettings: "popupSettings", tabIndex: "tabIndex", textField: "textField", data: "data", buttonClass: "buttonClass", arrowButtonClass: "arrowButtonClass", arrowButtonIcon: "arrowButtonIcon", arrowButtonSvgIcon: "arrowButtonSvgIcon", buttonAttributes: "buttonAttributes" }, outputs: { buttonClick: "buttonClick", itemClick: "itemClick", onFocus: "focus", onBlur: "blur", open: "open", close: "close" }, host: { listeners: { "keydown": "keydown($event)", "keyup": "keyup($event)" }, properties: { "class.k-focus": "this.isFocused", "class.k-split-button": "this.widgetClasses", "class.k-button-group": "this.widgetClasses", "attr.dir": "this.dir" } }, providers: [
|
|
2548
2556
|
FocusService,
|
|
2549
2557
|
NavigationService,
|
|
2550
2558
|
NAVIGATION_SETTINGS_PROVIDER$2,
|
|
@@ -2623,8 +2631,8 @@ SplitButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
2623
2631
|
</kendo-button-list>
|
|
2624
2632
|
</ng-template>
|
|
2625
2633
|
<ng-container #container></ng-container>
|
|
2626
|
-
`, isInline: true,
|
|
2627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2634
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }, { kind: "directive", type: LocalizedSplitButtonMessagesDirective, selector: "[kendoSplitButtonLocalizedMessages]" }] });
|
|
2635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonComponent, decorators: [{
|
|
2628
2636
|
type: Component,
|
|
2629
2637
|
args: [{
|
|
2630
2638
|
exportAs: 'kendoSplitButton',
|
|
@@ -2813,12 +2821,12 @@ class SplitButtonCustomMessagesComponent extends Messages {
|
|
|
2813
2821
|
return true;
|
|
2814
2822
|
}
|
|
2815
2823
|
}
|
|
2816
|
-
SplitButtonCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2817
|
-
SplitButtonCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2824
|
+
SplitButtonCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2825
|
+
SplitButtonCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SplitButtonCustomMessagesComponent, selector: "kendo-splitbutton-messages", providers: [{
|
|
2818
2826
|
provide: Messages,
|
|
2819
2827
|
useExisting: forwardRef(() => SplitButtonCustomMessagesComponent)
|
|
2820
2828
|
}], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
2821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonCustomMessagesComponent, decorators: [{
|
|
2822
2830
|
type: Component,
|
|
2823
2831
|
args: [{
|
|
2824
2832
|
providers: [{
|
|
@@ -2840,10 +2848,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2840
2848
|
*/
|
|
2841
2849
|
class SplitButtonModule {
|
|
2842
2850
|
}
|
|
2843
|
-
SplitButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2844
|
-
SplitButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
2845
|
-
SplitButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2851
|
+
SplitButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2852
|
+
SplitButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonModule, declarations: [SplitButtonComponent, LocalizedSplitButtonMessagesDirective, SplitButtonCustomMessagesComponent], imports: [CommonModule, PopupModule, ButtonModule, ListModule, ToggleButtonTabStopModule], exports: [SplitButtonComponent, ListModule, LocalizedSplitButtonMessagesDirective, SplitButtonCustomMessagesComponent, ToggleButtonTabStopModule] });
|
|
2853
|
+
SplitButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonModule, imports: [CommonModule, PopupModule, ButtonModule, ListModule, ToggleButtonTabStopModule, ListModule, ToggleButtonTabStopModule] });
|
|
2854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitButtonModule, decorators: [{
|
|
2847
2855
|
type: NgModule,
|
|
2848
2856
|
args: [{
|
|
2849
2857
|
declarations: [SplitButtonComponent, LocalizedSplitButtonMessagesDirective, SplitButtonCustomMessagesComponent],
|
|
@@ -3137,8 +3145,8 @@ class DropDownButtonComponent extends ListButton {
|
|
|
3137
3145
|
}
|
|
3138
3146
|
}
|
|
3139
3147
|
}
|
|
3140
|
-
DropDownButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3141
|
-
DropDownButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3148
|
+
DropDownButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonComponent, deps: [{ token: FocusService }, { token: NavigationService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i3$1.PopupService }, { token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: PopupContainerService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
3149
|
+
DropDownButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DropDownButtonComponent, selector: "kendo-dropdownbutton", inputs: { arrowIcon: "arrowIcon", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", imageUrl: "imageUrl", textField: "textField", data: "data", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor", buttonAttributes: "buttonAttributes" }, outputs: { itemClick: "itemClick", onFocus: "focus", onBlur: "blur" }, host: { listeners: { "keydown": "keydown($event)", "keyup": "keyup($event)", "mousedown": "mousedown($event)", "mouseup": "mouseup($event)" }, properties: { "class.k-focus": "this.focused", "class.k-dropdown-button": "this.widgetClasses", "attr.dir": "this.dir" } }, providers: [
|
|
3142
3150
|
FocusService,
|
|
3143
3151
|
NavigationService,
|
|
3144
3152
|
NAVIGATION_SETTINGS_PROVIDER$1,
|
|
@@ -3192,8 +3200,8 @@ DropDownButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
3192
3200
|
</kendo-button-list>
|
|
3193
3201
|
</ng-template>
|
|
3194
3202
|
<ng-container #container></ng-container>
|
|
3195
|
-
`, isInline: true,
|
|
3196
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3203
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ListComponent, selector: "kendo-button-list", inputs: ["data", "textField", "itemTemplate", "size"], outputs: ["onItemClick", "onItemBlur"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
3204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonComponent, decorators: [{
|
|
3197
3205
|
type: Component,
|
|
3198
3206
|
args: [{
|
|
3199
3207
|
exportAs: 'kendoDropDownButton',
|
|
@@ -3335,10 +3343,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3335
3343
|
*/
|
|
3336
3344
|
class DropDownButtonModule {
|
|
3337
3345
|
}
|
|
3338
|
-
DropDownButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3339
|
-
DropDownButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
3340
|
-
DropDownButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3346
|
+
DropDownButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3347
|
+
DropDownButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonModule, declarations: [DropDownButtonComponent], imports: [CommonModule, PopupModule, ListModule, ButtonModule], exports: [DropDownButtonComponent, ListModule] });
|
|
3348
|
+
DropDownButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonModule, imports: [CommonModule, PopupModule, ListModule, ButtonModule, ListModule] });
|
|
3349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownButtonModule, decorators: [{
|
|
3342
3350
|
type: NgModule,
|
|
3343
3351
|
args: [{
|
|
3344
3352
|
declarations: [DropDownButtonComponent],
|
|
@@ -3658,8 +3666,8 @@ class ChipComponent {
|
|
|
3658
3666
|
}
|
|
3659
3667
|
}
|
|
3660
3668
|
}
|
|
3661
|
-
ChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3662
|
-
ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3669
|
+
ChipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3670
|
+
ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChipComponent, selector: "kendo-chip", inputs: { label: "label", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", avatarClass: "avatarClass", selected: "selected", removable: "removable", removeIcon: "removeIcon", removeSvgIcon: "removeSvgIcon", hasMenu: "hasMenu", menuIcon: "menuIcon", menuSvgIcon: "menuSvgIcon", disabled: "disabled", size: "size", rounded: "rounded", fillMode: "fillMode", themeColor: "themeColor" }, outputs: { remove: "remove", menuToggle: "menuToggle", contentClick: "contentClick" }, host: { properties: { "attr.tabindex": "this.tabIndex", "class.k-chip": "this.hostClass", "class.k-chip-has-icon": "this.hasIconClass", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-selected": "this.selectedClass", "class.k-focus": "this.focusedClass", "attr.dir": "this.direction" } }, providers: [
|
|
3663
3671
|
LocalizationService,
|
|
3664
3672
|
{
|
|
3665
3673
|
provide: L10N_PREFIX,
|
|
@@ -3692,7 +3700,7 @@ ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
3692
3700
|
<ng-content *ngIf="!label"></ng-content>
|
|
3693
3701
|
</span>
|
|
3694
3702
|
|
|
3695
|
-
<span class="k-chip-actions">
|
|
3703
|
+
<span class="k-chip-actions" *ngIf="hasMenu || removable">
|
|
3696
3704
|
<span class="k-chip-action"
|
|
3697
3705
|
*ngIf="hasMenu"
|
|
3698
3706
|
(click)="onMenuClick($event)">
|
|
@@ -3712,8 +3720,8 @@ ChipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
|
|
|
3712
3720
|
[customFontClass]="removeIcon"></kendo-icon-wrapper>
|
|
3713
3721
|
</span>
|
|
3714
3722
|
</span>
|
|
3715
|
-
`, isInline: true,
|
|
3716
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3723
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
3724
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipComponent, decorators: [{
|
|
3717
3725
|
type: Component,
|
|
3718
3726
|
args: [{
|
|
3719
3727
|
selector: 'kendo-chip',
|
|
@@ -3744,7 +3752,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3744
3752
|
<ng-content *ngIf="!label"></ng-content>
|
|
3745
3753
|
</span>
|
|
3746
3754
|
|
|
3747
|
-
<span class="k-chip-actions">
|
|
3755
|
+
<span class="k-chip-actions" *ngIf="hasMenu || removable">
|
|
3748
3756
|
<span class="k-chip-action"
|
|
3749
3757
|
*ngIf="hasMenu"
|
|
3750
3758
|
(click)="onMenuClick($event)">
|
|
@@ -4079,8 +4087,8 @@ class ChipListComponent {
|
|
|
4079
4087
|
}
|
|
4080
4088
|
}
|
|
4081
4089
|
}
|
|
4082
|
-
ChipListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4083
|
-
ChipListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
4090
|
+
ChipListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipListComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
4091
|
+
ChipListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: { selection: "selection", size: "size", role: "role", navigable: "navigable" }, outputs: { selectedChange: "selectedChange", remove: "remove" }, host: { listeners: { "click": "onClick($event)" }, properties: { "class.k-chip-list": "this.hostClass", "attr.aria-orientation": "this.orientation", "attr.dir": "this.direction", "class.k-selection-single": "this.single", "attr.aria-multiselectable": "this.multiple", "class.k-selection-multiple": "this.multiple", "attr.role": "this.role" } }, providers: [
|
|
4084
4092
|
LocalizationService,
|
|
4085
4093
|
{
|
|
4086
4094
|
provide: L10N_PREFIX,
|
|
@@ -4089,7 +4097,7 @@ ChipListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
4089
4097
|
], queries: [{ propertyName: "chips", predicate: ChipComponent }], ngImport: i0, template: `
|
|
4090
4098
|
<ng-content></ng-content>
|
|
4091
4099
|
`, isInline: true });
|
|
4092
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipListComponent, decorators: [{
|
|
4093
4101
|
type: Component,
|
|
4094
4102
|
args: [{
|
|
4095
4103
|
selector: 'kendo-chiplist, kendo-chip-list',
|
|
@@ -4182,12 +4190,12 @@ const declarations$1 = [
|
|
|
4182
4190
|
*/
|
|
4183
4191
|
class ChipModule {
|
|
4184
4192
|
}
|
|
4185
|
-
ChipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4186
|
-
ChipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
4193
|
+
ChipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4194
|
+
ChipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChipModule, declarations: [ChipComponent,
|
|
4187
4195
|
ChipListComponent], imports: [CommonModule, IconsModule], exports: [ChipComponent,
|
|
4188
4196
|
ChipListComponent] });
|
|
4189
|
-
ChipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4197
|
+
ChipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipModule, imports: [CommonModule, IconsModule] });
|
|
4198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipModule, decorators: [{
|
|
4191
4199
|
type: NgModule,
|
|
4192
4200
|
args: [{
|
|
4193
4201
|
declarations: [declarations$1],
|
|
@@ -4271,9 +4279,9 @@ class DialItemTemplateDirective {
|
|
|
4271
4279
|
this.templateRef = templateRef;
|
|
4272
4280
|
}
|
|
4273
4281
|
}
|
|
4274
|
-
DialItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4275
|
-
DialItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
4276
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4282
|
+
DialItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialItemTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4283
|
+
DialItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DialItemTemplateDirective, selector: "[kendoDialItemTemplate]", ngImport: i0 });
|
|
4284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialItemTemplateDirective, decorators: [{
|
|
4277
4285
|
type: Directive,
|
|
4278
4286
|
args: [{
|
|
4279
4287
|
selector: '[kendoDialItemTemplate]'
|
|
@@ -4293,9 +4301,9 @@ class FloatingActionButtonTemplateDirective {
|
|
|
4293
4301
|
this.templateRef = templateRef;
|
|
4294
4302
|
}
|
|
4295
4303
|
}
|
|
4296
|
-
FloatingActionButtonTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4297
|
-
FloatingActionButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
4298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4304
|
+
FloatingActionButtonTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4305
|
+
FloatingActionButtonTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FloatingActionButtonTemplateDirective, selector: "[kendoFloatingActionButtonTemplate]", ngImport: i0 });
|
|
4306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonTemplateDirective, decorators: [{
|
|
4299
4307
|
type: Directive,
|
|
4300
4308
|
args: [{
|
|
4301
4309
|
selector: '[kendoFloatingActionButtonTemplate]'
|
|
@@ -4356,8 +4364,8 @@ class DialItemComponent {
|
|
|
4356
4364
|
return directions[dir][align];
|
|
4357
4365
|
}
|
|
4358
4366
|
}
|
|
4359
|
-
DialItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4360
|
-
DialItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
4367
|
+
DialItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialItemComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4368
|
+
DialItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DialItemComponent, selector: "[kendoDialItem]", inputs: { cssClass: "cssClass", cssStyle: "cssStyle", isFocused: "isFocused", index: "index", item: "item", dialItemTemplate: "dialItemTemplate", align: "align" }, host: { properties: { "class.k-fab-item": "this.hostClass", "attr.role": "this.role", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.title": "this.title", "attr.aria-label": "this.title", "attr.data-fab-item-index": "this.indexAttr" } }, ngImport: i0, template: `
|
|
4361
4369
|
<ng-template *ngIf="dialItemTemplate"
|
|
4362
4370
|
[ngTemplateOutlet]="dialItemTemplate"
|
|
4363
4371
|
[ngTemplateOutletContext]="{ $implicit: item, index: index, isFocused: isFocused }"
|
|
@@ -4373,8 +4381,8 @@ DialItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
4373
4381
|
[customFontClass]="item.iconClass"
|
|
4374
4382
|
[svgIcon]="item.svgIcon"></kendo-icon-wrapper>
|
|
4375
4383
|
</ng-container>
|
|
4376
|
-
`, isInline: true,
|
|
4377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4384
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
4385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialItemComponent, decorators: [{
|
|
4378
4386
|
type: Component,
|
|
4379
4387
|
args: [{
|
|
4380
4388
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
@@ -4458,8 +4466,8 @@ class DialListComponent {
|
|
|
4458
4466
|
this.subscriptions.unsubscribe();
|
|
4459
4467
|
}
|
|
4460
4468
|
}
|
|
4461
|
-
DialListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4462
|
-
DialListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
4469
|
+
DialListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialListComponent, deps: [{ token: FocusService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4470
|
+
DialListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DialListComponent, selector: "[kendoDialList]", inputs: { dialItems: "dialItems", dialItemTemplate: "dialItemTemplate", align: "align" }, host: { properties: { "class.k-fab-items": "this.hostClass", "class.k-fab-items-bottom": "this.bottomClass", "class.k-fab-items-top": "this.topClass" } }, ngImport: i0, template: `
|
|
4463
4471
|
<ng-container *ngFor='let item of dialItems; let idx = index'>
|
|
4464
4472
|
<li
|
|
4465
4473
|
kendoButtonFocusable
|
|
@@ -4474,8 +4482,8 @@ DialListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
4474
4482
|
>
|
|
4475
4483
|
</li>
|
|
4476
4484
|
</ng-container>
|
|
4477
|
-
`, isInline: true,
|
|
4478
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4485
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: FocusableDirective, selector: "[kendoButtonFocusable]", inputs: ["index"] }, { kind: "component", type: DialItemComponent, selector: "[kendoDialItem]", inputs: ["cssClass", "cssStyle", "isFocused", "index", "item", "dialItemTemplate", "align"] }] });
|
|
4486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DialListComponent, decorators: [{
|
|
4479
4487
|
type: Component,
|
|
4480
4488
|
args: [{
|
|
4481
4489
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
@@ -5172,8 +5180,8 @@ class FloatingActionButtonComponent {
|
|
|
5172
5180
|
return DEFAULT_DURATION;
|
|
5173
5181
|
}
|
|
5174
5182
|
}
|
|
5175
|
-
FloatingActionButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5176
|
-
FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
5183
|
+
FloatingActionButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: FocusService }, { token: NavigationService }, { token: i0.NgZone }, { token: i3$1.PopupService }, { token: i4.AnimationBuilder }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5184
|
+
FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FloatingActionButtonComponent, selector: "kendo-floatingactionbutton", inputs: { themeColor: "themeColor", size: "size", rounded: "rounded", disabled: "disabled", align: "align", offset: "offset", positionMode: "positionMode", icon: "icon", svgIcon: "svgIcon", iconClass: "iconClass", buttonClass: "buttonClass", dialClass: "dialClass", text: "text", dialItemAnimation: "dialItemAnimation", tabIndex: "tabIndex", dialItems: "dialItems" }, outputs: { onBlur: "blur", onFocus: "focus", dialItemClick: "dialItemClick", open: "open", close: "close" }, host: { properties: { "class.k-pos-fixed": "this.fixedClass", "class.k-pos-absolute": "this.absoluteClass", "attr.dir": "this.direction" } }, providers: [
|
|
5177
5185
|
FocusService,
|
|
5178
5186
|
NavigationService,
|
|
5179
5187
|
NAVIGATION_SETTINGS_PROVIDER,
|
|
@@ -5234,8 +5242,8 @@ FloatingActionButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
5234
5242
|
>
|
|
5235
5243
|
</ul>
|
|
5236
5244
|
</ng-template>
|
|
5237
|
-
`, isInline: true,
|
|
5238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5245
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i7.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: DialListComponent, selector: "[kendoDialList]", inputs: ["dialItems", "dialItemTemplate", "align"] }] });
|
|
5246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonComponent, decorators: [{
|
|
5239
5247
|
type: Component,
|
|
5240
5248
|
args: [{
|
|
5241
5249
|
selector: 'kendo-floatingactionbutton',
|
|
@@ -5411,15 +5419,15 @@ const declarations = [
|
|
|
5411
5419
|
*/
|
|
5412
5420
|
class FloatingActionButtonModule {
|
|
5413
5421
|
}
|
|
5414
|
-
FloatingActionButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5415
|
-
FloatingActionButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
5422
|
+
FloatingActionButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5423
|
+
FloatingActionButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonModule, declarations: [FloatingActionButtonComponent,
|
|
5416
5424
|
DialItemTemplateDirective,
|
|
5417
5425
|
FloatingActionButtonTemplateDirective, DialListComponent,
|
|
5418
5426
|
DialItemComponent], imports: [CommonModule, PopupModule, ListModule, EventsModule, IconsModule], exports: [FloatingActionButtonComponent,
|
|
5419
5427
|
DialItemTemplateDirective,
|
|
5420
5428
|
FloatingActionButtonTemplateDirective] });
|
|
5421
|
-
FloatingActionButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
5422
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5429
|
+
FloatingActionButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonModule, imports: [CommonModule, PopupModule, ListModule, EventsModule, IconsModule] });
|
|
5430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FloatingActionButtonModule, decorators: [{
|
|
5423
5431
|
type: NgModule,
|
|
5424
5432
|
args: [{
|
|
5425
5433
|
declarations: [declarations],
|
|
@@ -5461,10 +5469,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5461
5469
|
*/
|
|
5462
5470
|
class ButtonsModule {
|
|
5463
5471
|
}
|
|
5464
|
-
ButtonsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5465
|
-
ButtonsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
5466
|
-
ButtonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
5467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5472
|
+
ButtonsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5473
|
+
ButtonsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ButtonsModule, exports: [ButtonGroupModule, ButtonModule, SplitButtonModule, DropDownButtonModule, ChipModule, FloatingActionButtonModule] });
|
|
5474
|
+
ButtonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonsModule, imports: [ButtonGroupModule, ButtonModule, SplitButtonModule, DropDownButtonModule, ChipModule, FloatingActionButtonModule] });
|
|
5475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ButtonsModule, decorators: [{
|
|
5468
5476
|
type: NgModule,
|
|
5469
5477
|
args: [{
|
|
5470
5478
|
exports: [ButtonGroupModule, ButtonModule, SplitButtonModule, DropDownButtonModule, ChipModule, FloatingActionButtonModule]
|