@progress/kendo-angular-inputs 25.1.1-develop.1 → 25.1.1-develop.2
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 +7 -3
- package/index.d.ts +5 -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: 1789037509,
|
|
587
|
+
version: '25.1.1-develop.2',
|
|
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;
|
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
|
/**
|
|
@@ -4904,7 +4908,6 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4904
4908
|
/**
|
|
4905
4909
|
* Indicates whether the ColorPicker wrapper is focused.
|
|
4906
4910
|
*/
|
|
4907
|
-
private _isFocused;
|
|
4908
4911
|
get isFocused(): boolean;
|
|
4909
4912
|
set isFocused(value: boolean);
|
|
4910
4913
|
/**
|
|
@@ -4985,6 +4988,7 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4985
4988
|
private _roundedSignal;
|
|
4986
4989
|
private _fillModeSignal;
|
|
4987
4990
|
private _isOpen;
|
|
4991
|
+
private _isFocused;
|
|
4988
4992
|
constructor(host: ElementRef, popupService: PopupService, cdr: ChangeDetectorRef, localizationService: LocalizationService, ngZone: NgZone, renderer: Renderer2, injector: Injector, adaptiveService: AdaptiveService);
|
|
4989
4993
|
ngOnInit(): void;
|
|
4990
4994
|
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": 1789037509,
|
|
11
|
+
"version": "25.1.1-develop.2",
|
|
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.2",
|
|
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": 1789037509,
|
|
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.2",
|
|
78
|
+
"@progress/kendo-angular-common": "25.1.1-develop.2",
|
|
79
|
+
"@progress/kendo-angular-utils": "25.1.1-develop.2",
|
|
80
|
+
"@progress/kendo-angular-navigation": "25.1.1-develop.2",
|
|
81
|
+
"@progress/kendo-angular-dialog": "25.1.1-develop.2",
|
|
82
|
+
"@progress/kendo-angular-intl": "25.1.1-develop.2",
|
|
83
|
+
"@progress/kendo-angular-l10n": "25.1.1-develop.2",
|
|
84
|
+
"@progress/kendo-angular-popup": "25.1.1-develop.2",
|
|
85
|
+
"@progress/kendo-angular-icons": "25.1.1-develop.2",
|
|
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.2",
|
|
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"
|