@progress/kendo-angular-inputs 24.0.0-develop.22 → 24.0.0-develop.23
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.
|
@@ -13,7 +13,7 @@ export { PrefixTemplateDirective, SeparatorComponent, SuffixTemplateDirective }
|
|
|
13
13
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
14
14
|
import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
|
|
15
15
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
16
|
-
import { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, exclamationCircleIcon, checkIcon, caretAltExpandIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon,
|
|
16
|
+
import { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, exclamationCircleIcon, checkIcon, caretAltExpandIcon, xCircleIcon, dropletSlashIcon, dropletSliderIcon, paletteIcon, hyperlinkOpenIcon } from '@progress/kendo-svg-icons';
|
|
17
17
|
import { NgClass, NgTemplateOutlet, NgStyle } from '@angular/common';
|
|
18
18
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
19
19
|
import * as i1$1 from '@progress/kendo-angular-intl';
|
|
@@ -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: '24.0.0-develop.
|
|
586
|
+
publishDate: 1778500745,
|
|
587
|
+
version: '24.0.0-develop.23',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -15295,6 +15295,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15295
15295
|
}]
|
|
15296
15296
|
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
15297
15297
|
|
|
15298
|
+
const ratingStarIcon = {
|
|
15299
|
+
name: 'star',
|
|
15300
|
+
content: '<path d="m22.762 10.668-4.557 3.931 1.389 5.88a1.661 1.661 0 0 1-2.481 1.805L12 19.138l-5.116 3.146a1.661 1.661 0 0 1-2.478-1.805l1.394-5.88-4.557-3.931a1.667 1.667 0 0 1 .943-2.921l5.974-.482 2.304-5.577a1.656 1.656 0 0 1 3.065 0l2.304 5.577 5.973.482a1.667 1.667 0 0 1 .95 2.922z"/>',
|
|
15301
|
+
viewBox: '0 0 24 24'
|
|
15302
|
+
};
|
|
15303
|
+
const ratingStarOutlineIcon = {
|
|
15304
|
+
name: 'star-outline',
|
|
15305
|
+
content: '<path d="M23.065 8.95a1.44 1.44 0 0 0-1.267-1l-6.101-.493-2.351-5.691a1.454 1.454 0 0 0-2.691 0L8.304 7.454l-6.101.496A1.44 1.44 0 0 0 .936 8.951a1.46 1.46 0 0 0 .433 1.562l4.657 4.011-1.417 5.998a1.46 1.46 0 0 0 .567 1.52 1.43 1.43 0 0 0 1.61.061L12 18.898l5.222 3.211a1.43 1.43 0 0 0 1.611-.061 1.46 1.46 0 0 0 .566-1.52l-1.417-5.998 4.65-4.016a1.46 1.46 0 0 0 .433-1.564m-1.229.644-4.929 4.253a.61.61 0 0 0-.195.599l1.506 6.357a.24.24 0 0 1-.096.261.23.23 0 0 1-.262.009l-5.541-3.404a.61.61 0 0 0-.636 0l-5.54 3.403a.23.23 0 0 1-.263-.01.24.24 0 0 1-.101-.26l1.506-6.358a.61.61 0 0 0-.194-.598l-4.93-4.253a.24.24 0 0 1-.074-.269.23.23 0 0 1 .21-.167l6.471-.522a.61.61 0 0 0 .513-.373l2.493-6.035a.238.238 0 0 1 .444 0l2.494 6.035a.61.61 0 0 0 .512.373l6.472.522a.23.23 0 0 1 .21.167.24.24 0 0 1-.068.269z"/>',
|
|
15306
|
+
viewBox: '0 0 24 24'
|
|
15307
|
+
};
|
|
15298
15308
|
/**
|
|
15299
15309
|
* Represents the Kendo UI Rating component for Angular.
|
|
15300
15310
|
* Use this component to let users select a rating value.
|
|
@@ -15386,11 +15396,11 @@ class RatingComponent {
|
|
|
15386
15396
|
/**
|
|
15387
15397
|
* Sets a custom SVG icon for the selected or hovered state of the Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
15388
15398
|
*/
|
|
15389
|
-
svgIcon =
|
|
15399
|
+
svgIcon = ratingStarIcon;
|
|
15390
15400
|
/**
|
|
15391
15401
|
* Sets a custom SVG icon for the default state of the Rating items when not hovered or selected ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
15392
15402
|
*/
|
|
15393
|
-
svgIconOutline =
|
|
15403
|
+
svgIconOutline = ratingStarOutlineIcon;
|
|
15394
15404
|
/**
|
|
15395
15405
|
* Fires when the user selects a new value.
|
|
15396
15406
|
*/
|
|
@@ -15677,7 +15687,7 @@ class RatingComponent {
|
|
|
15677
15687
|
@if (!icon) {
|
|
15678
15688
|
<kendo-icon-wrapper
|
|
15679
15689
|
size="xlarge"
|
|
15680
|
-
[name]="item.selected || item.hovered ? 'star' : 'star
|
|
15690
|
+
[name]="item.selected || item.hovered ? 'star' : 'star'"
|
|
15681
15691
|
[svgIcon]="item.selected || item.hovered ? svgIcon : svgIconOutline"
|
|
15682
15692
|
>
|
|
15683
15693
|
</kendo-icon-wrapper>
|
|
@@ -15718,7 +15728,7 @@ class RatingComponent {
|
|
|
15718
15728
|
@if (!icon) {
|
|
15719
15729
|
<kendo-icon-wrapper
|
|
15720
15730
|
size="xlarge"
|
|
15721
|
-
[name]="'star
|
|
15731
|
+
[name]="'star'"
|
|
15722
15732
|
[svgIcon]="svgIconOutline"
|
|
15723
15733
|
>
|
|
15724
15734
|
</kendo-icon-wrapper>
|
|
@@ -15835,7 +15845,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15835
15845
|
@if (!icon) {
|
|
15836
15846
|
<kendo-icon-wrapper
|
|
15837
15847
|
size="xlarge"
|
|
15838
|
-
[name]="item.selected || item.hovered ? 'star' : 'star
|
|
15848
|
+
[name]="item.selected || item.hovered ? 'star' : 'star'"
|
|
15839
15849
|
[svgIcon]="item.selected || item.hovered ? svgIcon : svgIconOutline"
|
|
15840
15850
|
>
|
|
15841
15851
|
</kendo-icon-wrapper>
|
|
@@ -15876,7 +15886,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
15876
15886
|
@if (!icon) {
|
|
15877
15887
|
<kendo-icon-wrapper
|
|
15878
15888
|
size="xlarge"
|
|
15879
|
-
[name]="'star
|
|
15889
|
+
[name]="'star'"
|
|
15880
15890
|
[svgIcon]="svgIconOutline"
|
|
15881
15891
|
>
|
|
15882
15892
|
</kendo-icon-wrapper>
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778500745,
|
|
11
|
+
"version": "24.0.0-develop.23",
|
|
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": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.23",
|
|
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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"package": {
|
|
56
56
|
"productName": "Kendo UI for Angular",
|
|
57
57
|
"productCode": "KENDOUIANGULAR",
|
|
58
|
-
"publishDate":
|
|
58
|
+
"publishDate": 1778500745,
|
|
59
59
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
@@ -67,20 +67,20 @@
|
|
|
67
67
|
"@angular/platform-browser": "19 - 21",
|
|
68
68
|
"@progress/kendo-drawing": "^1.25.0",
|
|
69
69
|
"@progress/kendo-licensing": "^1.11.0",
|
|
70
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-navigation": "24.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-dialog": "24.0.0-develop.
|
|
75
|
-
"@progress/kendo-angular-intl": "24.0.0-develop.
|
|
76
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
77
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
78
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
70
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.23",
|
|
71
|
+
"@progress/kendo-angular-common": "24.0.0-develop.23",
|
|
72
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.23",
|
|
73
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.23",
|
|
74
|
+
"@progress/kendo-angular-dialog": "24.0.0-develop.23",
|
|
75
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.23",
|
|
76
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.23",
|
|
77
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.23",
|
|
78
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.23",
|
|
79
79
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"tslib": "^2.3.1",
|
|
83
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
83
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.23",
|
|
84
84
|
"@progress/kendo-common": "^1.0.1",
|
|
85
85
|
"@progress/kendo-draggable": "^3.0.0",
|
|
86
86
|
"@progress/kendo-inputs-common": "^3.1.0"
|