@progress/kendo-angular-label 23.3.0-develop.2 → 23.3.0-develop.3

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.
@@ -202,8 +202,8 @@ const packageMetadata = {
202
202
  productName: 'Kendo UI for Angular',
203
203
  productCode: 'KENDOUIANGULAR',
204
204
  productCodes: ['KENDOUIANGULAR'],
205
- publishDate: 1773915045,
206
- version: '23.3.0-develop.2',
205
+ publishDate: 1773927722,
206
+ version: '23.3.0-develop.3',
207
207
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
208
208
  };
209
209
 
@@ -426,12 +426,21 @@ class FloatingLabelComponent {
426
426
  * @hidden
427
427
  */
428
428
  ngAfterContentChecked() {
429
- if (!this.kendoInput || this.formControl) {
429
+ let currentEmpty;
430
+ if (this.formControl) {
431
+ const valueAccessor = this.formControl.valueAccessor;
432
+ currentEmpty = isFunction(valueAccessor?.isEmpty)
433
+ ? valueAccessor.isEmpty()
434
+ : this.isValueEmpty(this.formControl.value);
435
+ }
436
+ else if (this.kendoInput) {
437
+ currentEmpty = isFunction(this.kendoInput.isEmpty)
438
+ ? this.kendoInput.isEmpty()
439
+ : this.isValueEmpty(this.kendoInput.value);
440
+ }
441
+ else {
430
442
  return;
431
443
  }
432
- const currentEmpty = isFunction(this.kendoInput.isEmpty)
433
- ? this.kendoInput.isEmpty()
434
- : this.isValueEmpty(this.kendoInput.value);
435
444
  if (currentEmpty !== this.empty) {
436
445
  this.empty = currentEmpty;
437
446
  if (currentEmpty) {
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1773915045,
11
- "version": "23.3.0-develop.2",
10
+ "publishDate": 1773927722,
11
+ "version": "23.3.0-develop.3",
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-label",
3
- "version": "23.3.0-develop.2",
3
+ "version": "23.3.0-develop.3",
4
4
  "description": "Kendo UI Label for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1773915045,
22
+ "publishDate": 1773927722,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
24
24
  }
25
25
  },
@@ -30,13 +30,13 @@
30
30
  "@angular/forms": "19 - 21",
31
31
  "@angular/platform-browser": "19 - 21",
32
32
  "@progress/kendo-licensing": "^1.10.0",
33
- "@progress/kendo-angular-common": "23.3.0-develop.2",
34
- "@progress/kendo-angular-l10n": "23.3.0-develop.2",
33
+ "@progress/kendo-angular-common": "23.3.0-develop.3",
34
+ "@progress/kendo-angular-l10n": "23.3.0-develop.3",
35
35
  "rxjs": "^6.5.3 || ^7.0.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "tslib": "^2.3.1",
39
- "@progress/kendo-angular-schematics": "23.3.0-develop.2"
39
+ "@progress/kendo-angular-schematics": "23.3.0-develop.3"
40
40
  },
41
41
  "schematics": "./schematics/collection.json",
42
42
  "module": "fesm2022/progress-kendo-angular-label.mjs",