@progress/kendo-angular-inputs 19.3.0-develop.19 → 19.3.0-develop.20

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.
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { NgClass, NgIf, NgStyle } from '@angular/common';
6
6
  import { Component, ElementRef, HostBinding, Input, ChangeDetectorRef } from '@angular/core';
7
- import { ResizeSensorComponent, shouldShowValidationUI, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
7
+ import { ResizeSensorComponent, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
8
8
  import { calculateColumns, calculateGutters, DEFAULT_GUTTERS, generateColumnClass, generateGuttersStyling, innerWidth } from './utils';
9
9
  import { FormService } from '../common/formservice.service';
10
10
  import { validatePackage } from '@progress/kendo-licensing';
@@ -49,6 +49,10 @@ export class FormComponent {
49
49
  * @hidden
50
50
  */
51
51
  showLicenseWatermark = false;
52
+ /**
53
+ * @hidden
54
+ */
55
+ licenseMessage;
52
56
  get formClass() {
53
57
  return 'k-form k-form-md';
54
58
  }
@@ -62,6 +66,7 @@ export class FormComponent {
62
66
  this.cdr = cdr;
63
67
  this.formService = formService;
64
68
  const isValid = validatePackage(packageMetadata);
69
+ this.licenseMessage = getLicenseMessage(packageMetadata);
65
70
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
66
71
  }
67
72
  ngAfterContentInit() {
@@ -115,8 +120,8 @@ export class FormComponent {
115
120
  <ng-content></ng-content>
116
121
  </div>
117
122
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
118
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
119
- `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
123
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
124
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
120
125
  }
121
126
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormComponent, decorators: [{
122
127
  type: Component,
@@ -128,7 +133,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
128
133
  <ng-content></ng-content>
129
134
  </div>
130
135
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
131
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
136
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
132
137
  `,
133
138
  standalone: true,
134
139
  imports: [NgClass, NgStyle, NgIf, ResizeSensorComponent, WatermarkOverlayComponent],
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1754034819,
14
- version: '19.3.0-develop.19',
13
+ publishDate: 1754293650,
14
+ version: '19.3.0-develop.20',
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, processCssValue, replaceMessagePlaceholder, shouldShowValidationUI, WatermarkOverlayComponent, 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, processCssValue, replaceMessagePlaceholder, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, 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';
@@ -550,8 +550,8 @@ const packageMetadata = {
550
550
  productName: 'Kendo UI for Angular',
551
551
  productCode: 'KENDOUIANGULAR',
552
552
  productCodes: ['KENDOUIANGULAR'],
553
- publishDate: 1754034819,
554
- version: '19.3.0-develop.19',
553
+ publishDate: 1754293650,
554
+ version: '19.3.0-develop.20',
555
555
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
556
556
  };
557
557
 
@@ -19040,6 +19040,10 @@ class FormComponent {
19040
19040
  * @hidden
19041
19041
  */
19042
19042
  showLicenseWatermark = false;
19043
+ /**
19044
+ * @hidden
19045
+ */
19046
+ licenseMessage;
19043
19047
  get formClass() {
19044
19048
  return 'k-form k-form-md';
19045
19049
  }
@@ -19053,6 +19057,7 @@ class FormComponent {
19053
19057
  this.cdr = cdr;
19054
19058
  this.formService = formService;
19055
19059
  const isValid = validatePackage(packageMetadata);
19060
+ this.licenseMessage = getLicenseMessage(packageMetadata);
19056
19061
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
19057
19062
  }
19058
19063
  ngAfterContentInit() {
@@ -19106,8 +19111,8 @@ class FormComponent {
19106
19111
  <ng-content></ng-content>
19107
19112
  </div>
19108
19113
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
19109
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
19110
- `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
19114
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
19115
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
19111
19116
  }
19112
19117
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormComponent, decorators: [{
19113
19118
  type: Component,
@@ -19119,7 +19124,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
19119
19124
  <ng-content></ng-content>
19120
19125
  </div>
19121
19126
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
19122
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
19127
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
19123
19128
  `,
19124
19129
  standalone: true,
19125
19130
  imports: [NgClass, NgStyle, NgIf, ResizeSensorComponent, WatermarkOverlayComponent],
@@ -46,6 +46,10 @@ export declare class FormComponent implements AfterContentInit, OnChanges {
46
46
  * @hidden
47
47
  */
48
48
  showLicenseWatermark: boolean;
49
+ /**
50
+ * @hidden
51
+ */
52
+ licenseMessage?: string;
49
53
  get formClass(): string;
50
54
  get horizontalClass(): boolean;
51
55
  private _formColumnsNumber;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "19.3.0-develop.19",
3
+ "version": "19.3.0-develop.20",
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": 1754034819,
31
+ "publishDate": 1754293650,
32
32
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
33
33
  }
34
34
  },
@@ -39,21 +39,21 @@
39
39
  "@angular/forms": "16 - 20",
40
40
  "@angular/platform-browser": "16 - 20",
41
41
  "@progress/kendo-drawing": "^1.21.0",
42
- "@progress/kendo-licensing": "^1.5.0",
43
- "@progress/kendo-angular-buttons": "19.3.0-develop.19",
44
- "@progress/kendo-angular-common": "19.3.0-develop.19",
45
- "@progress/kendo-angular-utils": "19.3.0-develop.19",
46
- "@progress/kendo-angular-navigation": "19.3.0-develop.19",
47
- "@progress/kendo-angular-dialog": "19.3.0-develop.19",
48
- "@progress/kendo-angular-intl": "19.3.0-develop.19",
49
- "@progress/kendo-angular-l10n": "19.3.0-develop.19",
50
- "@progress/kendo-angular-popup": "19.3.0-develop.19",
51
- "@progress/kendo-angular-icons": "19.3.0-develop.19",
42
+ "@progress/kendo-licensing": "^1.7.0",
43
+ "@progress/kendo-angular-buttons": "19.3.0-develop.20",
44
+ "@progress/kendo-angular-common": "19.3.0-develop.20",
45
+ "@progress/kendo-angular-utils": "19.3.0-develop.20",
46
+ "@progress/kendo-angular-navigation": "19.3.0-develop.20",
47
+ "@progress/kendo-angular-dialog": "19.3.0-develop.20",
48
+ "@progress/kendo-angular-intl": "19.3.0-develop.20",
49
+ "@progress/kendo-angular-l10n": "19.3.0-develop.20",
50
+ "@progress/kendo-angular-popup": "19.3.0-develop.20",
51
+ "@progress/kendo-angular-icons": "19.3.0-develop.20",
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.19",
56
+ "@progress/kendo-angular-schematics": "19.3.0-develop.20",
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"