@progress/kendo-angular-inputs 22.1.0-develop.16 → 22.1.0-develop.18
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.
|
@@ -8,7 +8,7 @@ import { NgControl, NG_VALUE_ACCESSOR, NG_VALIDATORS, RadioControlValueAccessor
|
|
|
8
8
|
import { Subscription, fromEvent, interval, merge, BehaviorSubject, Subject } from 'rxjs';
|
|
9
9
|
import { take, tap, filter, concatMap, startWith, takeUntil, skip, debounceTime, throttleTime } from 'rxjs/operators';
|
|
10
10
|
import * as i8 from '@progress/kendo-angular-common';
|
|
11
|
-
import { isDocumentAvailable, Keys, guid, anyChanged, normalizeKeys, hasObservers, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, KendoInput, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, processCssValue, replaceMessagePlaceholder, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
11
|
+
import { isDocumentAvailable, Keys, guid, anyChanged, normalizeKeys, hasObservers, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, KendoInput, hasFocusableParent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, processCssValue, replaceMessagePlaceholder, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
12
12
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective } from '@progress/kendo-angular-common';
|
|
13
13
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
|
|
@@ -554,7 +554,7 @@ const packageMetadata = {
|
|
|
554
554
|
productCode: 'KENDOUIANGULAR',
|
|
555
555
|
productCodes: ['KENDOUIANGULAR'],
|
|
556
556
|
publishDate: 0,
|
|
557
|
-
version: '22.1.0-develop.
|
|
557
|
+
version: '22.1.0-develop.18',
|
|
558
558
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
559
559
|
};
|
|
560
560
|
|
|
@@ -3724,6 +3724,19 @@ class SharedInputEventsDirective {
|
|
|
3724
3724
|
}
|
|
3725
3725
|
}
|
|
3726
3726
|
}));
|
|
3727
|
+
this.subscriptions.add(this.renderer.listen(hostElement, 'click', (args) => {
|
|
3728
|
+
if (!this.isFocused) {
|
|
3729
|
+
return;
|
|
3730
|
+
}
|
|
3731
|
+
const element = args.target;
|
|
3732
|
+
const adornmentContainer = element.closest('.k-input-prefix') || element.closest('.k-input-suffix');
|
|
3733
|
+
if (adornmentContainer) {
|
|
3734
|
+
const isFocusable = hasFocusableParent(element, adornmentContainer);
|
|
3735
|
+
if (!isFocusable) {
|
|
3736
|
+
this.handleBlur.emit();
|
|
3737
|
+
}
|
|
3738
|
+
}
|
|
3739
|
+
}));
|
|
3727
3740
|
this.subscriptions.add(this.renderer.listen(hostElement, 'mouseenter', () => {
|
|
3728
3741
|
cursorInsideWrapper = true;
|
|
3729
3742
|
}));
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "22.1.0-develop.
|
|
10
|
+
"publishDate": 1770112363,
|
|
11
|
+
"version": "22.1.0-develop.18",
|
|
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": "22.1.0-develop.
|
|
3
|
+
"version": "22.1.0-develop.18",
|
|
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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"package": {
|
|
29
29
|
"productName": "Kendo UI for Angular",
|
|
30
30
|
"productCode": "KENDOUIANGULAR",
|
|
31
|
-
"publishDate":
|
|
31
|
+
"publishDate": 1770112363,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"@angular/core": "19 - 21",
|
|
39
39
|
"@angular/forms": "19 - 21",
|
|
40
40
|
"@angular/platform-browser": "19 - 21",
|
|
41
|
-
"@progress/kendo-drawing": "^1.
|
|
41
|
+
"@progress/kendo-drawing": "^1.24.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.10.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "22.1.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "22.1.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "22.1.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "22.1.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "22.1.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "22.1.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "22.1.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "22.1.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "22.1.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "22.1.0-develop.18",
|
|
44
|
+
"@progress/kendo-angular-common": "22.1.0-develop.18",
|
|
45
|
+
"@progress/kendo-angular-utils": "22.1.0-develop.18",
|
|
46
|
+
"@progress/kendo-angular-navigation": "22.1.0-develop.18",
|
|
47
|
+
"@progress/kendo-angular-dialog": "22.1.0-develop.18",
|
|
48
|
+
"@progress/kendo-angular-intl": "22.1.0-develop.18",
|
|
49
|
+
"@progress/kendo-angular-l10n": "22.1.0-develop.18",
|
|
50
|
+
"@progress/kendo-angular-popup": "22.1.0-develop.18",
|
|
51
|
+
"@progress/kendo-angular-icons": "22.1.0-develop.18",
|
|
52
52
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
|
-
"@progress/kendo-angular-schematics": "22.1.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "22.1.0-develop.18",
|
|
57
57
|
"@progress/kendo-common": "^1.0.1",
|
|
58
58
|
"@progress/kendo-draggable": "^3.0.0",
|
|
59
59
|
"@progress/kendo-inputs-common": "^3.1.0"
|