@progress/kendo-angular-inputs 18.1.0-develop.30 → 18.1.0-develop.5
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/colorpicker/color-gradient.component.d.ts +1 -19
- package/colorpicker/color-input.component.d.ts +3 -15
- package/colorpicker/color-palette.component.d.ts +6 -16
- package/colorpicker/colorpicker.component.d.ts +8 -55
- package/colorpicker/flatcolorpicker-actions.component.d.ts +1 -3
- package/colorpicker/flatcolorpicker-header.component.d.ts +1 -3
- package/colorpicker/flatcolorpicker.component.d.ts +1 -19
- package/colorpicker/localization/messages.d.ts +1 -9
- package/esm2022/colorpicker/color-gradient.component.mjs +17 -75
- package/esm2022/colorpicker/color-input.component.mjs +23 -56
- package/esm2022/colorpicker/color-palette.component.mjs +15 -45
- package/esm2022/colorpicker/colorpicker.component.mjs +41 -182
- package/esm2022/colorpicker/flatcolorpicker-actions.component.mjs +7 -22
- package/esm2022/colorpicker/flatcolorpicker-header.component.mjs +3 -8
- package/esm2022/colorpicker/flatcolorpicker.component.mjs +17 -72
- package/esm2022/colorpicker/localization/messages.mjs +1 -13
- package/esm2022/colorpicker/services/flatcolorpicker.service.mjs +3 -3
- package/esm2022/colorpicker.module.mjs +2 -3
- package/esm2022/inputs.module.mjs +2 -3
- package/esm2022/otpinput/otpinput.component.mjs +45 -75
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-inputs.mjs +3092 -3765
- package/otpinput/models/separator-icon.d.ts +3 -9
- package/otpinput/otpinput.component.d.ts +7 -4
- package/package.json +11 -13
- package/colorpicker/adaptiveness/adaptive-close-button.component.d.ts +0 -20
- package/colorpicker/adaptiveness/adaptive-renderer.component.d.ts +0 -38
- package/colorpicker/color-gradient-text-label.directive.d.ts +0 -19
- package/colorpicker/models/adaptive-mode.d.ts +0 -23
- package/esm2022/colorpicker/adaptiveness/adaptive-close-button.component.mjs +0 -62
- package/esm2022/colorpicker/adaptiveness/adaptive-renderer.component.mjs +0 -205
- package/esm2022/colorpicker/color-gradient-text-label.directive.mjs +0 -34
- package/esm2022/colorpicker/models/adaptive-mode.mjs +0 -27
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, HostBinding, EventEmitter, Output, ElementRef, ViewChild, Input } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
|
-
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
9
|
/**
|
|
@@ -14,7 +13,6 @@ export class FlatColorPickerActionButtonsComponent {
|
|
|
14
13
|
localizationService;
|
|
15
14
|
hostClasses = true;
|
|
16
15
|
innerTabIndex = -1;
|
|
17
|
-
size;
|
|
18
16
|
actionButtonClick = new EventEmitter();
|
|
19
17
|
tabOut = new EventEmitter();
|
|
20
18
|
firstButton;
|
|
@@ -33,28 +31,23 @@ export class FlatColorPickerActionButtonsComponent {
|
|
|
33
31
|
this.actionButtonClick.emit(args);
|
|
34
32
|
}
|
|
35
33
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerActionButtonsComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
36
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FlatColorPickerActionButtonsComponent, isStandalone: true, selector: "[kendoFlatColorPickerActionButtons]", inputs: { innerTabIndex: "innerTabIndex"
|
|
34
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FlatColorPickerActionButtonsComponent, isStandalone: true, selector: "[kendoFlatColorPickerActionButtons]", inputs: { innerTabIndex: "innerTabIndex" }, 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: `
|
|
37
35
|
<button #first
|
|
38
|
-
|
|
39
|
-
class="k-coloreditor-cancel"
|
|
40
|
-
[size]="size"
|
|
36
|
+
class="k-coloreditor-cancel k-button k-button-md k-button-solid k-button-solid-base"
|
|
41
37
|
[attr.title]="getText('cancelButton')"
|
|
42
38
|
(click)="onActionButtonClick('cancel', $event)"
|
|
43
39
|
type="button"
|
|
44
40
|
[tabindex]="innerTabIndex.toString()"
|
|
45
41
|
>{{getText('cancelButton')}}</button>
|
|
46
42
|
<button #last
|
|
47
|
-
|
|
48
|
-
themeColor="primary"
|
|
49
|
-
[size]="size"
|
|
50
|
-
class="k-coloreditor-apply"
|
|
43
|
+
class="k-coloreditor-apply k-button k-button-md k-button-solid k-button-solid-primary"
|
|
51
44
|
[attr.title]="getText('applyButton')"
|
|
52
45
|
(click)="onActionButtonClick('apply', $event)"
|
|
53
46
|
type="button"
|
|
54
47
|
[tabindex]="innerTabIndex.toString()"
|
|
55
48
|
(keydown.tab)="$event.preventDefault(); tabOut.emit();"
|
|
56
49
|
>{{getText('applyButton')}}</button>
|
|
57
|
-
`, isInline: true
|
|
50
|
+
`, isInline: true });
|
|
58
51
|
}
|
|
59
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerActionButtonsComponent, decorators: [{
|
|
60
53
|
type: Component,
|
|
@@ -63,19 +56,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
63
56
|
selector: '[kendoFlatColorPickerActionButtons]',
|
|
64
57
|
template: `
|
|
65
58
|
<button #first
|
|
66
|
-
|
|
67
|
-
class="k-coloreditor-cancel"
|
|
68
|
-
[size]="size"
|
|
59
|
+
class="k-coloreditor-cancel k-button k-button-md k-button-solid k-button-solid-base"
|
|
69
60
|
[attr.title]="getText('cancelButton')"
|
|
70
61
|
(click)="onActionButtonClick('cancel', $event)"
|
|
71
62
|
type="button"
|
|
72
63
|
[tabindex]="innerTabIndex.toString()"
|
|
73
64
|
>{{getText('cancelButton')}}</button>
|
|
74
65
|
<button #last
|
|
75
|
-
|
|
76
|
-
themeColor="primary"
|
|
77
|
-
[size]="size"
|
|
78
|
-
class="k-coloreditor-apply"
|
|
66
|
+
class="k-coloreditor-apply k-button k-button-md k-button-solid k-button-solid-primary"
|
|
79
67
|
[attr.title]="getText('applyButton')"
|
|
80
68
|
(click)="onActionButtonClick('apply', $event)"
|
|
81
69
|
type="button"
|
|
@@ -83,8 +71,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
83
71
|
(keydown.tab)="$event.preventDefault(); tabOut.emit();"
|
|
84
72
|
>{{getText('applyButton')}}</button>
|
|
85
73
|
`,
|
|
86
|
-
standalone: true
|
|
87
|
-
imports: [ButtonComponent]
|
|
74
|
+
standalone: true
|
|
88
75
|
}]
|
|
89
76
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClasses: [{
|
|
90
77
|
type: HostBinding,
|
|
@@ -97,8 +84,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
97
84
|
args: ['class.k-actions-horizontal']
|
|
98
85
|
}], innerTabIndex: [{
|
|
99
86
|
type: Input
|
|
100
|
-
}], size: [{
|
|
101
|
-
type: Input
|
|
102
87
|
}], actionButtonClick: [{
|
|
103
88
|
type: Output
|
|
104
89
|
}], tabOut: [{
|
|
@@ -24,7 +24,6 @@ export class FlatColorPickerHeaderComponent {
|
|
|
24
24
|
innerTabIndex = -1;
|
|
25
25
|
value;
|
|
26
26
|
selection;
|
|
27
|
-
size;
|
|
28
27
|
viewChange = new EventEmitter();
|
|
29
28
|
valuePaneClick = new EventEmitter();
|
|
30
29
|
clearButtonClick = new EventEmitter();
|
|
@@ -72,7 +71,7 @@ export class FlatColorPickerHeaderComponent {
|
|
|
72
71
|
}
|
|
73
72
|
}
|
|
74
73
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerHeaderComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
75
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FlatColorPickerHeaderComponent, isStandalone: true, selector: "[kendoFlatColorPickerHeader]", inputs: { clearButton: "clearButton", activeView: "activeView", views: "views", preview: "preview", innerTabIndex: "innerTabIndex", value: "value", selection: "selection"
|
|
74
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FlatColorPickerHeaderComponent, isStandalone: true, selector: "[kendoFlatColorPickerHeader]", inputs: { clearButton: "clearButton", activeView: "activeView", views: "views", preview: "preview", innerTabIndex: "innerTabIndex", value: "value", selection: "selection" }, 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: `
|
|
76
75
|
<div class="k-coloreditor-header-actions k-hstack">
|
|
77
76
|
<div
|
|
78
77
|
*ngIf="viewButtons"
|
|
@@ -90,7 +89,7 @@ export class FlatColorPickerHeaderComponent {
|
|
|
90
89
|
[icon]="getViewButtonIcon(view)"
|
|
91
90
|
[svgIcon]="getViewButtonsSVGIcon(view)"
|
|
92
91
|
(keydown.shift.tab)="onHeaderTabOut($event, i)"
|
|
93
|
-
|
|
92
|
+
class="k-button k-button-md k-button-flat k-button-flat-base k-icon-button"
|
|
94
93
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
95
94
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
96
95
|
[attr.aria-pressed]="activeView === view"
|
|
@@ -106,7 +105,6 @@ export class FlatColorPickerHeaderComponent {
|
|
|
106
105
|
[tabindex]="innerTabIndex.toString()"
|
|
107
106
|
*ngIf="clearButton"
|
|
108
107
|
#clearButton
|
|
109
|
-
[size]="size"
|
|
110
108
|
fillMode="flat"
|
|
111
109
|
icon="reset-color"
|
|
112
110
|
[svgIcon]="dropletSlashIcon"
|
|
@@ -153,7 +151,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
153
151
|
[icon]="getViewButtonIcon(view)"
|
|
154
152
|
[svgIcon]="getViewButtonsSVGIcon(view)"
|
|
155
153
|
(keydown.shift.tab)="onHeaderTabOut($event, i)"
|
|
156
|
-
|
|
154
|
+
class="k-button k-button-md k-button-flat k-button-flat-base k-icon-button"
|
|
157
155
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
158
156
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
159
157
|
[attr.aria-pressed]="activeView === view"
|
|
@@ -169,7 +167,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
169
167
|
[tabindex]="innerTabIndex.toString()"
|
|
170
168
|
*ngIf="clearButton"
|
|
171
169
|
#clearButton
|
|
172
|
-
[size]="size"
|
|
173
170
|
fillMode="flat"
|
|
174
171
|
icon="reset-color"
|
|
175
172
|
[svgIcon]="dropletSlashIcon"
|
|
@@ -215,8 +212,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
215
212
|
type: Input
|
|
216
213
|
}], selection: [{
|
|
217
214
|
type: Input
|
|
218
|
-
}], size: [{
|
|
219
|
-
type: Input
|
|
220
215
|
}], viewChange: [{
|
|
221
216
|
type: Output
|
|
222
217
|
}], valuePaneClick: [{
|
|
@@ -15,7 +15,7 @@ import { FlatColorPickerService } from './services/flatcolorpicker.service';
|
|
|
15
15
|
import { packageMetadata } from "../package-metadata";
|
|
16
16
|
import { ColorPickerCancelEvent } from './events';
|
|
17
17
|
import { parseColor } from './utils';
|
|
18
|
-
import {
|
|
18
|
+
import { isPresent } from '../common/utils';
|
|
19
19
|
import { ColorGradientComponent } from './color-gradient.component';
|
|
20
20
|
import { ColorPaletteComponent } from './color-palette.component';
|
|
21
21
|
import { FlatColorPickerHeaderComponent } from './flatcolorpicker-header.component';
|
|
@@ -27,7 +27,6 @@ import { LocalizedColorPickerMessagesDirective } from "./localization/localized-
|
|
|
27
27
|
import * as i0 from "@angular/core";
|
|
28
28
|
import * as i1 from "./services/flatcolorpicker.service";
|
|
29
29
|
import * as i2 from "@progress/kendo-angular-l10n";
|
|
30
|
-
const DEFAULT_SIZE = 'medium';
|
|
31
30
|
/**
|
|
32
31
|
* Represents the [Kendo UI FlatColorPicker component for Angular]({% slug overview_flatcolorpicker %}).
|
|
33
32
|
*
|
|
@@ -178,10 +177,6 @@ export class FlatColorPickerComponent {
|
|
|
178
177
|
get gradientSettings() {
|
|
179
178
|
return this._gradientSettings;
|
|
180
179
|
}
|
|
181
|
-
/**
|
|
182
|
-
* @hidden
|
|
183
|
-
*/
|
|
184
|
-
adaptiveMode = false;
|
|
185
180
|
/**
|
|
186
181
|
* Configures the palette view.
|
|
187
182
|
*/
|
|
@@ -191,23 +186,6 @@ export class FlatColorPickerComponent {
|
|
|
191
186
|
get paletteSettings() {
|
|
192
187
|
return this._paletteSettings;
|
|
193
188
|
}
|
|
194
|
-
/**
|
|
195
|
-
* The size property specifies the padding of the FlatColorPicker internal elements.
|
|
196
|
-
*
|
|
197
|
-
* The possible values are:
|
|
198
|
-
* * `small`
|
|
199
|
-
* * `medium` (default)
|
|
200
|
-
* * `large`
|
|
201
|
-
* * `none`
|
|
202
|
-
*/
|
|
203
|
-
set size(size) {
|
|
204
|
-
const newSize = size || DEFAULT_SIZE;
|
|
205
|
-
this.handleClasses(newSize, 'size');
|
|
206
|
-
this._size = newSize;
|
|
207
|
-
}
|
|
208
|
-
get size() {
|
|
209
|
-
return this._size;
|
|
210
|
-
}
|
|
211
189
|
/**
|
|
212
190
|
* Fires each time the component value is changed.
|
|
213
191
|
*/
|
|
@@ -255,7 +233,6 @@ export class FlatColorPickerComponent {
|
|
|
255
233
|
dynamicRTLSubscription;
|
|
256
234
|
subscriptions = new Subscription();
|
|
257
235
|
internalNavigation = false;
|
|
258
|
-
_size = 'medium';
|
|
259
236
|
control;
|
|
260
237
|
/**
|
|
261
238
|
* @hidden
|
|
@@ -292,10 +269,6 @@ export class FlatColorPickerComponent {
|
|
|
292
269
|
this.setActiveView();
|
|
293
270
|
}
|
|
294
271
|
ngAfterViewInit() {
|
|
295
|
-
const stylingInputs = ['size'];
|
|
296
|
-
stylingInputs.forEach(input => {
|
|
297
|
-
this.handleClasses(this[input], input);
|
|
298
|
-
});
|
|
299
272
|
this.setHostElementAriaLabel();
|
|
300
273
|
this.initDomEvents();
|
|
301
274
|
this.setSizingVariables();
|
|
@@ -483,14 +456,12 @@ export class FlatColorPickerComponent {
|
|
|
483
456
|
setSizingVariables() {
|
|
484
457
|
const paletteTileSize = this.service.paletteTileLayout(this.paletteSettings.tileSize);
|
|
485
458
|
const element = this.host.nativeElement.querySelector('.k-coloreditor-views.k-vstack');
|
|
486
|
-
const cssProperties =
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
}
|
|
493
|
-
this.renderer.setProperty(element, 'style', cssProperties.join(' '));
|
|
459
|
+
const cssProperties = `
|
|
460
|
+
--kendo-color-preview-columns: ${this.paletteSettings.columns};
|
|
461
|
+
--kendo-color-preview-width: ${paletteTileSize.width}px;
|
|
462
|
+
--kendo-color-preview-height: ${paletteTileSize.height}px;
|
|
463
|
+
`;
|
|
464
|
+
this.renderer.setProperty(element, 'style', cssProperties);
|
|
494
465
|
}
|
|
495
466
|
changeCurrentValue(color) {
|
|
496
467
|
this.selection = color;
|
|
@@ -543,18 +514,8 @@ export class FlatColorPickerComponent {
|
|
|
543
514
|
this.gradientElement && this.renderer.removeAttribute(this.gradientElement.nativeElement, 'role');
|
|
544
515
|
this.gradientElement && this.renderer.removeAttribute(this.gradientElement.nativeElement, 'aria-label');
|
|
545
516
|
}
|
|
546
|
-
handleClasses(value, input) {
|
|
547
|
-
const elem = this.host.nativeElement;
|
|
548
|
-
const classes = getStylingClasses('coloreditor', input, this[input], value);
|
|
549
|
-
if (classes.toRemove) {
|
|
550
|
-
this.renderer.removeClass(elem, classes.toRemove);
|
|
551
|
-
}
|
|
552
|
-
if (classes.toAdd) {
|
|
553
|
-
this.renderer.addClass(elem, classes.toAdd);
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
517
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1.FlatColorPickerService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
557
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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",
|
|
518
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", 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", paletteSettings: "paletteSettings" }, 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.isDisabled", "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: [
|
|
558
519
|
{
|
|
559
520
|
multi: true,
|
|
560
521
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -630,7 +591,6 @@ export class FlatColorPickerComponent {
|
|
|
630
591
|
[clearButton]="clearButton"
|
|
631
592
|
[activeView]="activeView"
|
|
632
593
|
[views]="views"
|
|
633
|
-
[size]="size"
|
|
634
594
|
[value]="value"
|
|
635
595
|
[selection]="selection"
|
|
636
596
|
[preview]="preview"
|
|
@@ -643,8 +603,6 @@ export class FlatColorPickerComponent {
|
|
|
643
603
|
[tabindex]="innerTabIndex"
|
|
644
604
|
*ngIf="activeView === 'gradient'"
|
|
645
605
|
[value]="selection"
|
|
646
|
-
[size]="size"
|
|
647
|
-
[adaptiveMode]="adaptiveMode"
|
|
648
606
|
[format]="format"
|
|
649
607
|
[opacity]="gradientSettings.opacity"
|
|
650
608
|
[delay]="gradientSettings.delay"
|
|
@@ -659,7 +617,6 @@ export class FlatColorPickerComponent {
|
|
|
659
617
|
[tabindex]="innerTabIndex"
|
|
660
618
|
*ngIf="activeView === 'palette'"
|
|
661
619
|
[palette]="paletteSettings.palette"
|
|
662
|
-
[size]="size"
|
|
663
620
|
[columns]="paletteSettings.columns"
|
|
664
621
|
[tileSize]="paletteSettings.tileSize"
|
|
665
622
|
[format]="format"
|
|
@@ -668,16 +625,14 @@ export class FlatColorPickerComponent {
|
|
|
668
625
|
(valueChange)="handleValueChange($event)"
|
|
669
626
|
></kendo-colorpalette>
|
|
670
627
|
</div>
|
|
671
|
-
<div
|
|
672
|
-
#footer
|
|
673
|
-
kendoFlatColorPickerActionButtons
|
|
628
|
+
<div kendoFlatColorPickerActionButtons
|
|
674
629
|
[innerTabIndex]="innerTabIndex"
|
|
675
|
-
|
|
630
|
+
*ngIf="preview"
|
|
631
|
+
#footer
|
|
676
632
|
[ngClass]="'k-justify-content-' + actionsLayout"
|
|
677
633
|
(actionButtonClick)="onAction($event)"
|
|
678
|
-
(tabOut)="firstFocusable.focus()">
|
|
679
|
-
|
|
680
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { 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"], 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"] }] });
|
|
634
|
+
(tabOut)="firstFocusable.focus()"></div>
|
|
635
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["id", "opacity", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
681
636
|
}
|
|
682
637
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerComponent, decorators: [{
|
|
683
638
|
type: Component,
|
|
@@ -761,7 +716,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
761
716
|
[clearButton]="clearButton"
|
|
762
717
|
[activeView]="activeView"
|
|
763
718
|
[views]="views"
|
|
764
|
-
[size]="size"
|
|
765
719
|
[value]="value"
|
|
766
720
|
[selection]="selection"
|
|
767
721
|
[preview]="preview"
|
|
@@ -774,8 +728,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
774
728
|
[tabindex]="innerTabIndex"
|
|
775
729
|
*ngIf="activeView === 'gradient'"
|
|
776
730
|
[value]="selection"
|
|
777
|
-
[size]="size"
|
|
778
|
-
[adaptiveMode]="adaptiveMode"
|
|
779
731
|
[format]="format"
|
|
780
732
|
[opacity]="gradientSettings.opacity"
|
|
781
733
|
[delay]="gradientSettings.delay"
|
|
@@ -790,7 +742,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
790
742
|
[tabindex]="innerTabIndex"
|
|
791
743
|
*ngIf="activeView === 'palette'"
|
|
792
744
|
[palette]="paletteSettings.palette"
|
|
793
|
-
[size]="size"
|
|
794
745
|
[columns]="paletteSettings.columns"
|
|
795
746
|
[tileSize]="paletteSettings.tileSize"
|
|
796
747
|
[format]="format"
|
|
@@ -799,15 +750,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
799
750
|
(valueChange)="handleValueChange($event)"
|
|
800
751
|
></kendo-colorpalette>
|
|
801
752
|
</div>
|
|
802
|
-
<div
|
|
803
|
-
#footer
|
|
804
|
-
kendoFlatColorPickerActionButtons
|
|
753
|
+
<div kendoFlatColorPickerActionButtons
|
|
805
754
|
[innerTabIndex]="innerTabIndex"
|
|
806
|
-
|
|
755
|
+
*ngIf="preview"
|
|
756
|
+
#footer
|
|
807
757
|
[ngClass]="'k-justify-content-' + actionsLayout"
|
|
808
758
|
(actionButtonClick)="onAction($event)"
|
|
809
|
-
(tabOut)="firstFocusable.focus()">
|
|
810
|
-
</div>
|
|
759
|
+
(tabOut)="firstFocusable.focus()"></div>
|
|
811
760
|
`,
|
|
812
761
|
standalone: true,
|
|
813
762
|
imports: [LocalizedColorPickerMessagesDirective, NgIf, FlatColorPickerHeaderComponent, ColorGradientComponent, ColorPaletteComponent, FlatColorPickerActionButtonsComponent, NgClass]
|
|
@@ -876,12 +825,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
876
825
|
type: Input
|
|
877
826
|
}], gradientSettings: [{
|
|
878
827
|
type: Input
|
|
879
|
-
}], adaptiveMode: [{
|
|
880
|
-
type: Input
|
|
881
828
|
}], paletteSettings: [{
|
|
882
829
|
type: Input
|
|
883
|
-
}], size: [{
|
|
884
|
-
type: Input
|
|
885
830
|
}], valueChange: [{
|
|
886
831
|
type: Output
|
|
887
832
|
}], cancel: [{
|
|
@@ -117,16 +117,8 @@ export class ColorPickerMessages extends ComponentMessages {
|
|
|
117
117
|
* The message for the Cancel action button.
|
|
118
118
|
*/
|
|
119
119
|
cancelButton;
|
|
120
|
-
/**
|
|
121
|
-
* The title for the Close button in adaptive mode.
|
|
122
|
-
*/
|
|
123
|
-
closeButton;
|
|
124
|
-
/**
|
|
125
|
-
* The title for the ActionSheet when in adaptive mode.
|
|
126
|
-
*/
|
|
127
|
-
adaptiveTitle;
|
|
128
120
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
129
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ColorPickerMessages, 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"
|
|
121
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ColorPickerMessages, 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" }, usesInheritance: true, ngImport: i0 });
|
|
130
122
|
}
|
|
131
123
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerMessages, decorators: [{
|
|
132
124
|
type: Directive,
|
|
@@ -188,8 +180,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
188
180
|
type: Input
|
|
189
181
|
}], cancelButton: [{
|
|
190
182
|
type: Input
|
|
191
|
-
}], closeButton: [{
|
|
192
|
-
type: Input
|
|
193
|
-
}], adaptiveTitle: [{
|
|
194
|
-
type: Input
|
|
195
183
|
}] } });
|
|
@@ -18,7 +18,7 @@ export class FlatColorPickerService {
|
|
|
18
18
|
undefined;
|
|
19
19
|
return {
|
|
20
20
|
palette: settingsPalette || defaultPreset,
|
|
21
|
-
tileSize: settings.tileSize,
|
|
21
|
+
tileSize: settings.tileSize || 24,
|
|
22
22
|
columns: settings.columns || presetColumns || 10
|
|
23
23
|
};
|
|
24
24
|
}
|
|
@@ -27,8 +27,8 @@ export class FlatColorPickerService {
|
|
|
27
27
|
return { width: tileSize, height: tileSize };
|
|
28
28
|
}
|
|
29
29
|
return {
|
|
30
|
-
width: tileSize
|
|
31
|
-
height: tileSize
|
|
30
|
+
width: tileSize.width ? tileSize.width : tileSize.height,
|
|
31
|
+
height: tileSize.height ? tileSize.height : tileSize.width
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -7,7 +7,6 @@ import { KENDO_COLORGRADIENT, KENDO_COLORPALETTE, KENDO_COLORPICKER, KENDO_FLATC
|
|
|
7
7
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
8
8
|
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
9
|
import { IconsService } from '@progress/kendo-angular-icons';
|
|
10
|
-
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
import * as i1 from "./colorpicker/colorpicker.component";
|
|
13
12
|
import * as i2 from "./colorpicker/localization/custom-messages.component";
|
|
@@ -22,13 +21,13 @@ import * as i5 from "./colorpicker/color-palette.component";
|
|
|
22
21
|
export class ColorPickerModule {
|
|
23
22
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
24
23
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerModule, imports: [i1.ColorPickerComponent, i2.ColorPickerCustomMessagesComponent, i3.FlatColorPickerComponent, i2.ColorPickerCustomMessagesComponent, i4.ColorGradientComponent, i2.ColorPickerCustomMessagesComponent, i5.ColorPaletteComponent, i2.ColorPickerCustomMessagesComponent], exports: [i1.ColorPickerComponent, i2.ColorPickerCustomMessagesComponent, i3.FlatColorPickerComponent, i2.ColorPickerCustomMessagesComponent, i4.ColorGradientComponent, i2.ColorPickerCustomMessagesComponent, i5.ColorPaletteComponent, i2.ColorPickerCustomMessagesComponent] });
|
|
25
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerModule, providers: [PopupService, IconsService, ResizeBatchService
|
|
24
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerModule, providers: [PopupService, IconsService, ResizeBatchService], imports: [i1.ColorPickerComponent, i3.FlatColorPickerComponent, i4.ColorGradientComponent] });
|
|
26
25
|
}
|
|
27
26
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorPickerModule, decorators: [{
|
|
28
27
|
type: NgModule,
|
|
29
28
|
args: [{
|
|
30
29
|
imports: [...KENDO_COLORPICKER, ...KENDO_FLATCOLORPICKER, ...KENDO_COLORGRADIENT, ...KENDO_COLORPALETTE],
|
|
31
30
|
exports: [...KENDO_COLORPICKER, ...KENDO_FLATCOLORPICKER, ...KENDO_COLORGRADIENT, ...KENDO_COLORPALETTE],
|
|
32
|
-
providers: [PopupService, IconsService, ResizeBatchService
|
|
31
|
+
providers: [PopupService, IconsService, ResizeBatchService]
|
|
33
32
|
}]
|
|
34
33
|
}] });
|
|
@@ -8,7 +8,6 @@ import { KENDO_ADORNMENTS, ResizeBatchService } from '@progress/kendo-angular-co
|
|
|
8
8
|
import { DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
|
|
9
9
|
import { IconsService } from '@progress/kendo-angular-icons';
|
|
10
10
|
import { PopupService } from '@progress/kendo-angular-popup';
|
|
11
|
-
import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
import * as i1 from "./textbox/textbox.directive";
|
|
14
13
|
import * as i2 from "./textbox/textbox.component";
|
|
@@ -87,13 +86,13 @@ import * as i41 from "./otpinput/localization/custom-messages.component";
|
|
|
87
86
|
export class InputsModule {
|
|
88
87
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
89
88
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: InputsModule, imports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i8.NumericTextBoxComponent, i9.NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i10.MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i7.SeparatorComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent, i40.OTPInputComponent, i41.OTPInputCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent], exports: [i1.TextBoxDirective, i2.TextBoxComponent, i3.InputSeparatorComponent, i4.TextBoxSuffixTemplateDirective, i5.TextBoxPrefixTemplateDirective, i6.TextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i8.NumericTextBoxComponent, i9.NumericTextBoxCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i10.MaskedTextBoxComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent, i11.TextAreaComponent, i12.TextAreaDirective, i13.TextAreaPrefixComponent, i14.TextAreaSuffixComponent, i7.SeparatorComponent, i15.CheckBoxComponent, i16.CheckBoxDirective, i17.RadioButtonComponent, i18.RadioButtonDirective, i19.SwitchComponent, i20.SwitchCustomMessagesComponent, i21.FormFieldComponent, i22.HintComponent, i23.ErrorComponent, i24.SliderComponent, i25.SliderCustomMessagesComponent, i26.LabelTemplateDirective, i27.RangeSliderComponent, i28.RangeSliderCustomMessagesComponent, i26.LabelTemplateDirective, i29.RatingComponent, i30.RatingItemTemplateDirective, i31.RatingHoveredItemTemplateDirective, i32.RatingSelectedItemTemplateDirective, i33.SignatureComponent, i34.SignatureCustomMessagesComponent, i35.ColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i37.FlatColorPickerComponent, i36.ColorPickerCustomMessagesComponent, i38.ColorGradientComponent, i36.ColorPickerCustomMessagesComponent, i39.ColorPaletteComponent, i36.ColorPickerCustomMessagesComponent, i40.OTPInputComponent, i41.OTPInputCustomMessagesComponent, i7.PrefixTemplateDirective, i7.SuffixTemplateDirective, i7.SeparatorComponent] });
|
|
90
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService
|
|
89
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputsModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i2.TextBoxComponent, i7.SeparatorComponent, i8.NumericTextBoxComponent, i7.SeparatorComponent, i7.SeparatorComponent, i7.SeparatorComponent, i24.SliderComponent, i27.RangeSliderComponent, i29.RatingComponent, i33.SignatureComponent, i35.ColorPickerComponent, i37.FlatColorPickerComponent, i38.ColorGradientComponent, i40.OTPInputComponent, i7.SeparatorComponent] });
|
|
91
90
|
}
|
|
92
91
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputsModule, decorators: [{
|
|
93
92
|
type: NgModule,
|
|
94
93
|
args: [{
|
|
95
94
|
imports: [...KENDO_INPUTS, ...KENDO_ADORNMENTS],
|
|
96
95
|
exports: [...KENDO_INPUTS, ...KENDO_ADORNMENTS],
|
|
97
|
-
providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService
|
|
96
|
+
providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
|
|
98
97
|
}]
|
|
99
98
|
}] });
|