@progress/kendo-angular-inputs 19.3.0-develop.3 → 19.3.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/common/utils.d.ts
CHANGED
|
@@ -65,7 +65,3 @@ export declare const COMPONENT_TYPE: InjectionToken<ComponentType>;
|
|
|
65
65
|
* @hidden
|
|
66
66
|
*/
|
|
67
67
|
export type ComponentType = 'radio' | 'checkbox';
|
|
68
|
-
/**
|
|
69
|
-
* @hidden
|
|
70
|
-
*/
|
|
71
|
-
export declare const replaceMessagePlaceholder: (message: string, name: string, value: string) => string;
|
package/esm2022/common/utils.mjs
CHANGED
|
@@ -86,7 +86,3 @@ export const getStylingClasses = (componentType, stylingOption, previousValue, n
|
|
|
86
86
|
* Used to differentiate between the Radio and CheckBox components in their base class.
|
|
87
87
|
*/
|
|
88
88
|
export const COMPONENT_TYPE = new InjectionToken('TYPE_TOKEN');
|
|
89
|
-
/**
|
|
90
|
-
* @hidden
|
|
91
|
-
*/
|
|
92
|
-
export const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Injector, Input, NgZone, Output, QueryList, Renderer2, ViewChildren, forwardRef } from "@angular/core";
|
|
6
6
|
import { SharedInputEventsDirective } from "../shared/shared-events.directive";
|
|
7
7
|
import { NgFor, NgIf } from "@angular/common";
|
|
8
|
-
import { KendoInput, Keys, hasObservers, isPresent } from "@progress/kendo-angular-common";
|
|
8
|
+
import { KendoInput, Keys, hasObservers, isPresent, replaceMessagePlaceholder } from "@progress/kendo-angular-common";
|
|
9
9
|
import { TextBoxComponent } from "../textbox/textbox.component";
|
|
10
10
|
import { NG_VALUE_ACCESSOR, NgControl } from "@angular/forms";
|
|
11
|
-
import { SIZE_MAP, areSame
|
|
11
|
+
import { SIZE_MAP, areSame } from "../common/utils";
|
|
12
12
|
import { L10N_PREFIX, LocalizationService } from "@progress/kendo-angular-l10n";
|
|
13
13
|
import { OTPInputSeparatorComponent } from "./otpinput-separator.component";
|
|
14
14
|
import { take } from "rxjs/operators";
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.3.0-develop.
|
|
13
|
+
publishDate: 1752072250,
|
|
14
|
+
version: '19.3.0-develop.5',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -10,7 +10,7 @@ import { take, tap, filter, concatMap, startWith, takeUntil, skip, debounceTime,
|
|
|
10
10
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
|
|
12
12
|
import * as i7 from '@progress/kendo-angular-common';
|
|
13
|
-
import { Keys, guid, anyChanged, isDocumentAvailable, hasObservers, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
13
|
+
import { Keys, guid, anyChanged, isDocumentAvailable, hasObservers, KendoInput, EventsOutsideAngularDirective, DraggableDirective, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, isControlRequired, setHTMLAttributes, SuffixTemplateDirective, PrefixTemplateDirective, isChanged, isPresent as isPresent$1, isSafari, PreventableEvent, findFocusableChild, parseCSSClassNames, closest as closest$1, replaceMessagePlaceholder, SeparatorComponent, ResizeBatchService, KENDO_ADORNMENTS } from '@progress/kendo-angular-common';
|
|
14
14
|
export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective } from '@progress/kendo-angular-common';
|
|
15
15
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
16
16
|
import { caretAltUpIcon, caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, checkIcon, exclamationCircleIcon, xIcon, caretAltExpandIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon, starIcon, starOutlineIcon, hyperlinkOpenIcon } from '@progress/kendo-svg-icons';
|
|
@@ -111,10 +111,6 @@ const getStylingClasses = (componentType, stylingOption, previousValue, newValue
|
|
|
111
111
|
* Used to differentiate between the Radio and CheckBox components in their base class.
|
|
112
112
|
*/
|
|
113
113
|
const COMPONENT_TYPE = new InjectionToken('TYPE_TOKEN');
|
|
114
|
-
/**
|
|
115
|
-
* @hidden
|
|
116
|
-
*/
|
|
117
|
-
const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
|
118
114
|
|
|
119
115
|
/**
|
|
120
116
|
* @hidden
|
|
@@ -554,8 +550,8 @@ const packageMetadata = {
|
|
|
554
550
|
productName: 'Kendo UI for Angular',
|
|
555
551
|
productCode: 'KENDOUIANGULAR',
|
|
556
552
|
productCodes: ['KENDOUIANGULAR'],
|
|
557
|
-
publishDate:
|
|
558
|
-
version: '19.3.0-develop.
|
|
553
|
+
publishDate: 1752072250,
|
|
554
|
+
version: '19.3.0-develop.5',
|
|
559
555
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
560
556
|
};
|
|
561
557
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.5",
|
|
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": 1752072250,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"@angular/platform-browser": "16 - 20",
|
|
41
41
|
"@progress/kendo-drawing": "^1.21.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.5.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "19.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.5",
|
|
44
|
+
"@progress/kendo-angular-common": "19.3.0-develop.5",
|
|
45
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.5",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.5",
|
|
47
|
+
"@progress/kendo-angular-dialog": "19.3.0-develop.5",
|
|
48
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.5",
|
|
49
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.5",
|
|
50
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.5",
|
|
51
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.5",
|
|
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": "19.3.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.5",
|
|
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"
|