@progress/kendo-angular-inputs 19.3.0 → 19.3.1-develop.1

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, getLicenseMessage, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
7
+ import { ResizeSensorComponent, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent, isDocumentAvailable } from '@progress/kendo-angular-common';
8
8
  import { calculateColumns, calculateGutters, DEFAULT_FORM_GUTTERS, generateColumnClass, generateGuttersStyling, innerWidth } from './utils';
9
9
  import { FormService } from '../common/formservice.service';
10
10
  import { validatePackage } from '@progress/kendo-licensing';
@@ -70,11 +70,17 @@ export class FormComponent {
70
70
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
71
71
  }
72
72
  ngAfterContentInit() {
73
+ if (!isDocumentAvailable) {
74
+ return;
75
+ }
73
76
  this.applyColumns();
74
77
  this.applyGutters();
75
78
  this.formService.formWidth.next(innerWidth(this.element.nativeElement));
76
79
  }
77
80
  ngOnChanges(changes) {
81
+ if (!isDocumentAvailable) {
82
+ return;
83
+ }
78
84
  if (changes['cols']) {
79
85
  this.applyColumns();
80
86
  }
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1755030422,
14
- version: '19.3.0',
13
+ publishDate: 1755502511,
14
+ version: '19.3.1-develop.1',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -550,8 +550,8 @@ const packageMetadata = {
550
550
  productName: 'Kendo UI for Angular',
551
551
  productCode: 'KENDOUIANGULAR',
552
552
  productCodes: ['KENDOUIANGULAR'],
553
- publishDate: 1755030422,
554
- version: '19.3.0',
553
+ publishDate: 1755502511,
554
+ version: '19.3.1-develop.1',
555
555
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
556
556
  };
557
557
 
@@ -19103,11 +19103,17 @@ class FormComponent {
19103
19103
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
19104
19104
  }
19105
19105
  ngAfterContentInit() {
19106
+ if (!isDocumentAvailable) {
19107
+ return;
19108
+ }
19106
19109
  this.applyColumns();
19107
19110
  this.applyGutters();
19108
19111
  this.formService.formWidth.next(innerWidth(this.element.nativeElement));
19109
19112
  }
19110
19113
  ngOnChanges(changes) {
19114
+ if (!isDocumentAvailable) {
19115
+ return;
19116
+ }
19111
19117
  if (changes['cols']) {
19112
19118
  this.applyColumns();
19113
19119
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "19.3.0",
3
+ "version": "19.3.1-develop.1",
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": 1755030422,
31
+ "publishDate": 1755502511,
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.7.0",
43
- "@progress/kendo-angular-buttons": "19.3.0",
44
- "@progress/kendo-angular-common": "19.3.0",
45
- "@progress/kendo-angular-utils": "19.3.0",
46
- "@progress/kendo-angular-navigation": "19.3.0",
47
- "@progress/kendo-angular-dialog": "19.3.0",
48
- "@progress/kendo-angular-intl": "19.3.0",
49
- "@progress/kendo-angular-l10n": "19.3.0",
50
- "@progress/kendo-angular-popup": "19.3.0",
51
- "@progress/kendo-angular-icons": "19.3.0",
43
+ "@progress/kendo-angular-buttons": "19.3.1-develop.1",
44
+ "@progress/kendo-angular-common": "19.3.1-develop.1",
45
+ "@progress/kendo-angular-utils": "19.3.1-develop.1",
46
+ "@progress/kendo-angular-navigation": "19.3.1-develop.1",
47
+ "@progress/kendo-angular-dialog": "19.3.1-develop.1",
48
+ "@progress/kendo-angular-intl": "19.3.1-develop.1",
49
+ "@progress/kendo-angular-l10n": "19.3.1-develop.1",
50
+ "@progress/kendo-angular-popup": "19.3.1-develop.1",
51
+ "@progress/kendo-angular-icons": "19.3.1-develop.1",
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",
56
+ "@progress/kendo-angular-schematics": "19.3.1-develop.1",
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"