@progress/kendo-angular-inputs 25.1.1-develop.1 → 25.1.1-develop.3
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/fesm2022/progress-kendo-angular-inputs.mjs +70 -9
- package/index.d.ts +17 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
|
@@ -583,8 +583,8 @@ const packageMetadata = {
|
|
|
583
583
|
productName: 'Kendo UI for Angular',
|
|
584
584
|
productCode: 'KENDOUIANGULAR',
|
|
585
585
|
productCodes: ['KENDOUIANGULAR'],
|
|
586
|
-
publishDate:
|
|
587
|
-
version: '25.1.1-develop.
|
|
586
|
+
publishDate: 1789045361,
|
|
587
|
+
version: '25.1.1-develop.3',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -6118,6 +6118,10 @@ class MaskedTextBoxComponent {
|
|
|
6118
6118
|
get rules() {
|
|
6119
6119
|
return this._rules || this.defaultRules;
|
|
6120
6120
|
}
|
|
6121
|
+
/**
|
|
6122
|
+
* Sets the prompt character for the masked value.
|
|
6123
|
+
* @default '_'
|
|
6124
|
+
*/
|
|
6121
6125
|
set prompt(value) {
|
|
6122
6126
|
this._prompt.set(value);
|
|
6123
6127
|
}
|
|
@@ -14366,7 +14370,6 @@ class ColorPickerComponent {
|
|
|
14366
14370
|
/**
|
|
14367
14371
|
* Indicates whether the ColorPicker wrapper is focused.
|
|
14368
14372
|
*/
|
|
14369
|
-
_isFocused = signal(false, ...(ngDevMode ? [{ debugName: "_isFocused" }] : []));
|
|
14370
14373
|
get isFocused() {
|
|
14371
14374
|
return this._isFocused();
|
|
14372
14375
|
}
|
|
@@ -14475,6 +14478,7 @@ class ColorPickerComponent {
|
|
|
14475
14478
|
_roundedSignal = signal(undefined, ...(ngDevMode ? [{ debugName: "_roundedSignal" }] : []));
|
|
14476
14479
|
_fillModeSignal = signal(undefined, ...(ngDevMode ? [{ debugName: "_fillModeSignal" }] : []));
|
|
14477
14480
|
_isOpen = signal(false, ...(ngDevMode ? [{ debugName: "_isOpen" }] : []));
|
|
14481
|
+
_isFocused = signal(false, ...(ngDevMode ? [{ debugName: "_isFocused" }] : []));
|
|
14478
14482
|
constructor(host, popupService, cdr, localizationService, ngZone, renderer, injector, adaptiveService) {
|
|
14479
14483
|
this.host = host;
|
|
14480
14484
|
this.popupService = popupService;
|
|
@@ -16534,6 +16538,10 @@ class RatingComponent {
|
|
|
16534
16538
|
cdr;
|
|
16535
16539
|
zone;
|
|
16536
16540
|
injector;
|
|
16541
|
+
/**
|
|
16542
|
+
* @hidden
|
|
16543
|
+
*/
|
|
16544
|
+
precisionComplements;
|
|
16537
16545
|
itemTemplate;
|
|
16538
16546
|
hoveredItemTemplate;
|
|
16539
16547
|
selectedItemTemplate;
|
|
@@ -16682,6 +16690,10 @@ class RatingComponent {
|
|
|
16682
16690
|
* @hidden
|
|
16683
16691
|
*/
|
|
16684
16692
|
ratingItems = [];
|
|
16693
|
+
/**
|
|
16694
|
+
* @hidden
|
|
16695
|
+
*/
|
|
16696
|
+
precisionElementDimensions = { width: 0, height: 0 };
|
|
16685
16697
|
control;
|
|
16686
16698
|
ngChange = (_) => { };
|
|
16687
16699
|
ngTouched = () => { };
|
|
@@ -16723,6 +16735,12 @@ class RatingComponent {
|
|
|
16723
16735
|
this.zone.runOutsideAngular(() => {
|
|
16724
16736
|
items.forEach((item, index) => this.subscriptions.add(this.renderer.listen(item, 'mousemove', (event) => this.onMouseMove(index, event))));
|
|
16725
16737
|
});
|
|
16738
|
+
this.subscriptions.add(this.precisionComplements.changes.subscribe(() => {
|
|
16739
|
+
if (this.precisionComplements.length && !this.precisionElementDimensions.width) {
|
|
16740
|
+
this.measurePrecisionElements();
|
|
16741
|
+
}
|
|
16742
|
+
}));
|
|
16743
|
+
this.measurePrecisionElements();
|
|
16726
16744
|
const control = this.control?.control;
|
|
16727
16745
|
if (control && control.events) {
|
|
16728
16746
|
this.subscriptions.add(control.events.subscribe(e => {
|
|
@@ -16829,6 +16847,7 @@ class RatingComponent {
|
|
|
16829
16847
|
item.hovered = false;
|
|
16830
16848
|
item.half = this.isHalf(index, this.value);
|
|
16831
16849
|
});
|
|
16850
|
+
this.measurePrecisionElements();
|
|
16832
16851
|
}
|
|
16833
16852
|
/**
|
|
16834
16853
|
* @hidden
|
|
@@ -16849,6 +16868,23 @@ class RatingComponent {
|
|
|
16849
16868
|
registerOnTouched(fn) {
|
|
16850
16869
|
this.ngTouched = fn;
|
|
16851
16870
|
}
|
|
16871
|
+
measurePrecisionElements() {
|
|
16872
|
+
if (this.precision !== 'half') {
|
|
16873
|
+
return;
|
|
16874
|
+
}
|
|
16875
|
+
afterNextRender(() => {
|
|
16876
|
+
const precisionComplement = this.precisionComplements?.first?.nativeElement;
|
|
16877
|
+
if (!precisionComplement) {
|
|
16878
|
+
return;
|
|
16879
|
+
}
|
|
16880
|
+
const width = precisionComplement.offsetWidth;
|
|
16881
|
+
const height = precisionComplement.offsetHeight;
|
|
16882
|
+
if (width !== this.precisionElementDimensions.width || height !== this.precisionElementDimensions.height) {
|
|
16883
|
+
this.precisionElementDimensions = { width, height };
|
|
16884
|
+
this.cdr.markForCheck();
|
|
16885
|
+
}
|
|
16886
|
+
}, { injector: this.injector });
|
|
16887
|
+
}
|
|
16852
16888
|
isSelected(index, value) {
|
|
16853
16889
|
return this.selection === 'single' ? index === Math.ceil(value - 1) : index <= Math.ceil(value - 1);
|
|
16854
16890
|
}
|
|
@@ -16946,7 +16982,7 @@ class RatingComponent {
|
|
|
16946
16982
|
useExisting: forwardRef(() => RatingComponent)
|
|
16947
16983
|
},
|
|
16948
16984
|
provideComponentName('rating')
|
|
16949
|
-
], queries: [{ propertyName: "itemTemplate", first: true, predicate: RatingItemTemplateDirective, descendants: true }, { propertyName: "hoveredItemTemplate", first: true, predicate: RatingHoveredItemTemplateDirective, descendants: true }, { propertyName: "selectedItemTemplate", first: true, predicate: RatingSelectedItemTemplateDirective, descendants: true }], exportAs: ["kendoRating"], ngImport: i0, template: `
|
|
16985
|
+
], queries: [{ propertyName: "itemTemplate", first: true, predicate: RatingItemTemplateDirective, descendants: true }, { propertyName: "hoveredItemTemplate", first: true, predicate: RatingHoveredItemTemplateDirective, descendants: true }, { propertyName: "selectedItemTemplate", first: true, predicate: RatingSelectedItemTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "precisionComplements", predicate: ["precisionComplement"], descendants: true, read: ElementRef }], exportAs: ["kendoRating"], ngImport: i0, template: `
|
|
16950
16986
|
<span class="k-rating-container">
|
|
16951
16987
|
@for (item of ratingItems; track item; let i = $index) {
|
|
16952
16988
|
<span
|
|
@@ -17002,7 +17038,7 @@ class RatingComponent {
|
|
|
17002
17038
|
}
|
|
17003
17039
|
@if (item.half) {
|
|
17004
17040
|
@if (!itemTemplate) {
|
|
17005
|
-
<span class="k-rating-precision-complement">
|
|
17041
|
+
<span class="k-rating-precision-complement" #precisionComplement>
|
|
17006
17042
|
@if (!icon) {
|
|
17007
17043
|
<kendo-icon-wrapper
|
|
17008
17044
|
size="xlarge"
|
|
@@ -17021,6 +17057,8 @@ class RatingComponent {
|
|
|
17021
17057
|
</span>
|
|
17022
17058
|
<span
|
|
17023
17059
|
class="k-rating-precision-part"
|
|
17060
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17061
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17024
17062
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17025
17063
|
>
|
|
17026
17064
|
@if (!icon) {
|
|
@@ -17042,6 +17080,7 @@ class RatingComponent {
|
|
|
17042
17080
|
}
|
|
17043
17081
|
<span
|
|
17044
17082
|
class="k-rating-precision-complement"
|
|
17083
|
+
#precisionComplement
|
|
17045
17084
|
>
|
|
17046
17085
|
<ng-template
|
|
17047
17086
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
@@ -17052,6 +17091,8 @@ class RatingComponent {
|
|
|
17052
17091
|
@if (hoveredItemTemplate && item.hovered) {
|
|
17053
17092
|
<span
|
|
17054
17093
|
class="k-rating-precision-part"
|
|
17094
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17095
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17055
17096
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17056
17097
|
>
|
|
17057
17098
|
<ng-template
|
|
@@ -17064,6 +17105,8 @@ class RatingComponent {
|
|
|
17064
17105
|
@if (selectedItemTemplate && (item.selected && !item.hovered)) {
|
|
17065
17106
|
<span
|
|
17066
17107
|
class="k-rating-precision-part"
|
|
17108
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17109
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17067
17110
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17068
17111
|
>
|
|
17069
17112
|
<ng-template
|
|
@@ -17073,7 +17116,11 @@ class RatingComponent {
|
|
|
17073
17116
|
</ng-template>
|
|
17074
17117
|
</span>
|
|
17075
17118
|
}
|
|
17076
|
-
<span
|
|
17119
|
+
<span
|
|
17120
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17121
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17122
|
+
[style.display]="'block'"
|
|
17123
|
+
></span>
|
|
17077
17124
|
}
|
|
17078
17125
|
</span>
|
|
17079
17126
|
}
|
|
@@ -17166,7 +17213,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17166
17213
|
}
|
|
17167
17214
|
@if (item.half) {
|
|
17168
17215
|
@if (!itemTemplate) {
|
|
17169
|
-
<span class="k-rating-precision-complement">
|
|
17216
|
+
<span class="k-rating-precision-complement" #precisionComplement>
|
|
17170
17217
|
@if (!icon) {
|
|
17171
17218
|
<kendo-icon-wrapper
|
|
17172
17219
|
size="xlarge"
|
|
@@ -17185,6 +17232,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17185
17232
|
</span>
|
|
17186
17233
|
<span
|
|
17187
17234
|
class="k-rating-precision-part"
|
|
17235
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17236
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17188
17237
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17189
17238
|
>
|
|
17190
17239
|
@if (!icon) {
|
|
@@ -17206,6 +17255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17206
17255
|
}
|
|
17207
17256
|
<span
|
|
17208
17257
|
class="k-rating-precision-complement"
|
|
17258
|
+
#precisionComplement
|
|
17209
17259
|
>
|
|
17210
17260
|
<ng-template
|
|
17211
17261
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
@@ -17216,6 +17266,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17216
17266
|
@if (hoveredItemTemplate && item.hovered) {
|
|
17217
17267
|
<span
|
|
17218
17268
|
class="k-rating-precision-part"
|
|
17269
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17270
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17219
17271
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17220
17272
|
>
|
|
17221
17273
|
<ng-template
|
|
@@ -17228,6 +17280,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17228
17280
|
@if (selectedItemTemplate && (item.selected && !item.hovered)) {
|
|
17229
17281
|
<span
|
|
17230
17282
|
class="k-rating-precision-part"
|
|
17283
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17284
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17231
17285
|
[ngStyle]="{'clipPath': direction === 'rtl' ? 'inset(0 0 0 50%)' : 'inset(0 50% 0 0)'}"
|
|
17232
17286
|
>
|
|
17233
17287
|
<ng-template
|
|
@@ -17237,7 +17291,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17237
17291
|
</ng-template>
|
|
17238
17292
|
</span>
|
|
17239
17293
|
}
|
|
17240
|
-
<span
|
|
17294
|
+
<span
|
|
17295
|
+
[style.width.px]="precisionElementDimensions.width || 24"
|
|
17296
|
+
[style.height.px]="precisionElementDimensions.height || 24"
|
|
17297
|
+
[style.display]="'block'"
|
|
17298
|
+
></span>
|
|
17241
17299
|
}
|
|
17242
17300
|
</span>
|
|
17243
17301
|
}
|
|
@@ -17252,7 +17310,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.30", ngImpo
|
|
|
17252
17310
|
standalone: true,
|
|
17253
17311
|
imports: [NgClass, IconWrapperComponent, NgTemplateOutlet, NgStyle]
|
|
17254
17312
|
}]
|
|
17255
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: {
|
|
17313
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Injector }], propDecorators: { precisionComplements: [{
|
|
17314
|
+
type: ViewChildren,
|
|
17315
|
+
args: ['precisionComplement', { read: ElementRef }]
|
|
17316
|
+
}], itemTemplate: [{
|
|
17256
17317
|
type: ContentChild,
|
|
17257
17318
|
args: [RatingItemTemplateDirective]
|
|
17258
17319
|
}], hoveredItemTemplate: [{
|
package/index.d.ts
CHANGED
|
@@ -1585,6 +1585,10 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, Validator,
|
|
|
1585
1585
|
get rules(): {
|
|
1586
1586
|
[key: string]: RegExp;
|
|
1587
1587
|
};
|
|
1588
|
+
/**
|
|
1589
|
+
* Sets the prompt character for the masked value.
|
|
1590
|
+
* @default '_'
|
|
1591
|
+
*/
|
|
1588
1592
|
set prompt(value: string);
|
|
1589
1593
|
get prompt(): string;
|
|
1590
1594
|
/**
|
|
@@ -3816,6 +3820,10 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3816
3820
|
private cdr;
|
|
3817
3821
|
private zone;
|
|
3818
3822
|
private injector;
|
|
3823
|
+
/**
|
|
3824
|
+
* @hidden
|
|
3825
|
+
*/
|
|
3826
|
+
precisionComplements: QueryList<ElementRef<HTMLElement>>;
|
|
3819
3827
|
itemTemplate: RatingItemTemplateDirective;
|
|
3820
3828
|
hoveredItemTemplate: RatingHoveredItemTemplateDirective;
|
|
3821
3829
|
selectedItemTemplate: RatingSelectedItemTemplateDirective;
|
|
@@ -3907,6 +3915,13 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3907
3915
|
* @hidden
|
|
3908
3916
|
*/
|
|
3909
3917
|
ratingItems: RatingItem[];
|
|
3918
|
+
/**
|
|
3919
|
+
* @hidden
|
|
3920
|
+
*/
|
|
3921
|
+
precisionElementDimensions: {
|
|
3922
|
+
width: number;
|
|
3923
|
+
height: number;
|
|
3924
|
+
};
|
|
3910
3925
|
private control;
|
|
3911
3926
|
private ngChange;
|
|
3912
3927
|
private ngTouched;
|
|
@@ -3979,6 +3994,7 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3979
3994
|
* @hidden
|
|
3980
3995
|
*/
|
|
3981
3996
|
registerOnTouched(fn: () => any): void;
|
|
3997
|
+
private measurePrecisionElements;
|
|
3982
3998
|
private isSelected;
|
|
3983
3999
|
private isHalf;
|
|
3984
4000
|
private isFirstHalf;
|
|
@@ -4904,7 +4920,6 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4904
4920
|
/**
|
|
4905
4921
|
* Indicates whether the ColorPicker wrapper is focused.
|
|
4906
4922
|
*/
|
|
4907
|
-
private _isFocused;
|
|
4908
4923
|
get isFocused(): boolean;
|
|
4909
4924
|
set isFocused(value: boolean);
|
|
4910
4925
|
/**
|
|
@@ -4985,6 +5000,7 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4985
5000
|
private _roundedSignal;
|
|
4986
5001
|
private _fillModeSignal;
|
|
4987
5002
|
private _isOpen;
|
|
5003
|
+
private _isFocused;
|
|
4988
5004
|
constructor(host: ElementRef, popupService: PopupService, cdr: ChangeDetectorRef, localizationService: LocalizationService, ngZone: NgZone, renderer: Renderer2, injector: Injector, adaptiveService: AdaptiveService);
|
|
4989
5005
|
ngOnInit(): void;
|
|
4990
5006
|
ngAfterViewInit(): void;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.1.1-develop.
|
|
10
|
+
"publishDate": 1789045361,
|
|
11
|
+
"version": "25.1.1-develop.3",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "25.1.1-develop.
|
|
3
|
+
"version": "25.1.1-develop.3",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"package": {
|
|
63
63
|
"productName": "Kendo UI for Angular",
|
|
64
64
|
"productCode": "KENDOUIANGULAR",
|
|
65
|
-
"publishDate":
|
|
65
|
+
"publishDate": 1789045361,
|
|
66
66
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
67
67
|
}
|
|
68
68
|
},
|
|
@@ -74,20 +74,20 @@
|
|
|
74
74
|
"@angular/platform-browser": "20 - 22",
|
|
75
75
|
"@progress/kendo-drawing": "^1.25.0",
|
|
76
76
|
"@progress/kendo-licensing": "^1.11.0",
|
|
77
|
-
"@progress/kendo-angular-buttons": "25.1.1-develop.
|
|
78
|
-
"@progress/kendo-angular-common": "25.1.1-develop.
|
|
79
|
-
"@progress/kendo-angular-utils": "25.1.1-develop.
|
|
80
|
-
"@progress/kendo-angular-navigation": "25.1.1-develop.
|
|
81
|
-
"@progress/kendo-angular-dialog": "25.1.1-develop.
|
|
82
|
-
"@progress/kendo-angular-intl": "25.1.1-develop.
|
|
83
|
-
"@progress/kendo-angular-l10n": "25.1.1-develop.
|
|
84
|
-
"@progress/kendo-angular-popup": "25.1.1-develop.
|
|
85
|
-
"@progress/kendo-angular-icons": "25.1.1-develop.
|
|
77
|
+
"@progress/kendo-angular-buttons": "25.1.1-develop.3",
|
|
78
|
+
"@progress/kendo-angular-common": "25.1.1-develop.3",
|
|
79
|
+
"@progress/kendo-angular-utils": "25.1.1-develop.3",
|
|
80
|
+
"@progress/kendo-angular-navigation": "25.1.1-develop.3",
|
|
81
|
+
"@progress/kendo-angular-dialog": "25.1.1-develop.3",
|
|
82
|
+
"@progress/kendo-angular-intl": "25.1.1-develop.3",
|
|
83
|
+
"@progress/kendo-angular-l10n": "25.1.1-develop.3",
|
|
84
|
+
"@progress/kendo-angular-popup": "25.1.1-develop.3",
|
|
85
|
+
"@progress/kendo-angular-icons": "25.1.1-develop.3",
|
|
86
86
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"tslib": "^2.3.1",
|
|
90
|
-
"@progress/kendo-angular-schematics": "25.1.1-develop.
|
|
90
|
+
"@progress/kendo-angular-schematics": "25.1.1-develop.3",
|
|
91
91
|
"@progress/kendo-common": "^1.0.1",
|
|
92
92
|
"@progress/kendo-draggable": "^3.0.0",
|
|
93
93
|
"@progress/kendo-inputs-common": "^3.1.0"
|