@progress/kendo-angular-conversational-ui 23.3.0-develop.3 → 23.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.
@@ -215,8 +215,8 @@ const packageMetadata = {
215
215
  productName: 'Kendo UI for Angular',
216
216
  productCode: 'KENDOUIANGULAR',
217
217
  productCodes: ['KENDOUIANGULAR'],
218
- publishDate: 1773927735,
219
- version: '23.3.0-develop.3',
218
+ publishDate: 1773935900,
219
+ version: '23.3.0-develop.5',
220
220
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
221
221
  };
222
222
 
@@ -4650,6 +4650,9 @@ class PromptBoxComponent {
4650
4650
  this.changeDetector.markForCheck();
4651
4651
  }
4652
4652
  attachResizeHandler() {
4653
+ if (!isDocumentAvailable()) {
4654
+ return;
4655
+ }
4653
4656
  this.resizeSubscription = fromEvent(window, 'resize')
4654
4657
  .pipe(debounceTime(50))
4655
4658
  .subscribe(() => {
@@ -4672,7 +4675,7 @@ class PromptBoxComponent {
4672
4675
  });
4673
4676
  }
4674
4677
  captureInitialDimensions() {
4675
- if (!this.textareaElement) {
4678
+ if (!isDocumentAvailable() || !this.textareaElement) {
4676
4679
  return;
4677
4680
  }
4678
4681
  const textarea = this.textareaElement.nativeElement;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1773927735,
11
- "version": "23.3.0-develop.3",
10
+ "publishDate": 1773935900,
11
+ "version": "23.3.0-develop.5",
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-conversational-ui",
3
- "version": "23.3.0-develop.3",
3
+ "version": "23.3.0-develop.5",
4
4
  "description": "Kendo UI for Angular Conversational UI components",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -69,7 +69,7 @@
69
69
  "package": {
70
70
  "productName": "Kendo UI for Angular",
71
71
  "productCode": "KENDOUIANGULAR",
72
- "publishDate": 1773927735,
72
+ "publishDate": 1773935900,
73
73
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
74
74
  }
75
75
  },
@@ -79,22 +79,22 @@
79
79
  "@angular/core": "19 - 21",
80
80
  "@angular/platform-browser": "19 - 21",
81
81
  "@progress/kendo-licensing": "^1.10.0",
82
- "@progress/kendo-angular-buttons": "23.3.0-develop.3",
83
- "@progress/kendo-angular-inputs": "23.3.0-develop.3",
84
- "@progress/kendo-angular-layout": "23.3.0-develop.3",
85
- "@progress/kendo-angular-icons": "23.3.0-develop.3",
86
- "@progress/kendo-angular-common": "23.3.0-develop.3",
87
- "@progress/kendo-angular-intl": "23.3.0-develop.3",
88
- "@progress/kendo-angular-l10n": "23.3.0-develop.3",
89
- "@progress/kendo-angular-menu": "23.3.0-develop.3",
90
- "@progress/kendo-angular-popup": "23.3.0-develop.3",
91
- "@progress/kendo-angular-toolbar": "23.3.0-develop.3",
92
- "@progress/kendo-angular-upload": "23.3.0-develop.3",
82
+ "@progress/kendo-angular-buttons": "23.3.0-develop.5",
83
+ "@progress/kendo-angular-inputs": "23.3.0-develop.5",
84
+ "@progress/kendo-angular-layout": "23.3.0-develop.5",
85
+ "@progress/kendo-angular-icons": "23.3.0-develop.5",
86
+ "@progress/kendo-angular-common": "23.3.0-develop.5",
87
+ "@progress/kendo-angular-intl": "23.3.0-develop.5",
88
+ "@progress/kendo-angular-l10n": "23.3.0-develop.5",
89
+ "@progress/kendo-angular-menu": "23.3.0-develop.5",
90
+ "@progress/kendo-angular-popup": "23.3.0-develop.5",
91
+ "@progress/kendo-angular-toolbar": "23.3.0-develop.5",
92
+ "@progress/kendo-angular-upload": "23.3.0-develop.5",
93
93
  "rxjs": "^6.5.3 || ^7.0.0"
94
94
  },
95
95
  "dependencies": {
96
96
  "tslib": "^2.3.1",
97
- "@progress/kendo-angular-schematics": "23.3.0-develop.3"
97
+ "@progress/kendo-angular-schematics": "23.3.0-develop.5"
98
98
  },
99
99
  "schematics": "./schematics/collection.json",
100
100
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",