@progress/kendo-angular-popup 21.4.0-develop.1 → 21.4.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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1765536099,
14
- version: '21.4.0-develop.1',
13
+ publishDate: 1765793339,
14
+ version: '21.4.0-develop.3',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
16
16
  };
@@ -662,8 +662,8 @@ const packageMetadata = {
662
662
  productName: 'Kendo UI for Angular',
663
663
  productCode: 'KENDOUIANGULAR',
664
664
  productCodes: ['KENDOUIANGULAR'],
665
- publishDate: 1765536099,
666
- version: '21.4.0-develop.1',
665
+ publishDate: 1765793339,
666
+ version: '21.4.0-develop.3',
667
667
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
668
668
  };
669
669
 
@@ -56,7 +56,7 @@ export interface PopupSettings {
56
56
  *
57
57
  * > To style the content of the Popup, use this property binding.
58
58
  */
59
- popupClass?: string | Array<string> | object;
59
+ popupClass?: string | Array<string> | object | Set<string>;
60
60
  /**
61
61
  * Sets the absolute position of the element ([see example]({% slug alignmentpositioning_popup %}#toc-aligning-to-absolute-points)).
62
62
  * The Popup opens next to this point. The pivot point of the Popup is defined by the `popupAlign` option. The boundary detection uses the window viewport.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-popup",
3
- "version": "21.4.0-develop.1",
3
+ "version": "21.4.0-develop.3",
4
4
  "description": "Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.",
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": 1765536099,
22
+ "publishDate": 1765793339,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
24
24
  }
25
25
  },
@@ -28,14 +28,14 @@
28
28
  "@angular/common": "18 - 21",
29
29
  "@angular/core": "18 - 21",
30
30
  "@angular/platform-browser": "18 - 21",
31
- "@progress/kendo-angular-common": "21.4.0-develop.1",
31
+ "@progress/kendo-angular-common": "21.4.0-develop.3",
32
32
  "@progress/kendo-licensing": "^1.7.0",
33
33
  "rxjs": "^6.5.3 || ^7.0.0"
34
34
  },
35
35
  "dependencies": {
36
36
  "@progress/kendo-popup-common": "1.9.5",
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "21.4.0-develop.1"
38
+ "@progress/kendo-angular-schematics": "21.4.0-develop.3"
39
39
  },
40
40
  "schematics": "./schematics/collection.json",
41
41
  "module": "fesm2022/progress-kendo-angular-popup.mjs",
@@ -74,7 +74,7 @@ export declare class PopupComponent implements AfterViewInit, OnInit, OnChanges,
74
74
  *
75
75
  * > To style the content of the Popup, use this property binding.
76
76
  */
77
- popupClass: string | Array<string> | object;
77
+ popupClass: string | Array<string> | object | Set<string>;
78
78
  /**
79
79
  * Sets the position mode of the component. By default, the Popup uses fixed positioning. To use absolute positioning, set this option to `absolute`.
80
80
  *