@progress/kendo-react-popup 13.3.0 → 13.4.0-develop.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-popup",
3
- "version": "13.3.0",
3
+ "version": "13.4.0-develop.2",
4
4
  "description": "React Popup positions a piece of content next to a specific anchor component. KendoReact Popup package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -27,7 +27,7 @@
27
27
  "peerDependencies": {
28
28
  "@progress/kendo-licensing": "^1.7.2",
29
29
  "@progress/kendo-popup-common": "^1.9.5",
30
- "@progress/kendo-react-common": "13.3.0",
30
+ "@progress/kendo-react-common": "13.4.0-develop.2",
31
31
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
32
32
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
33
33
  },
@@ -50,7 +50,13 @@
50
50
  ],
51
51
  "@progress": {
52
52
  "friendlyName": "Popup",
53
- "framework": "KendoReact"
53
+ "framework": "KendoReact",
54
+ "package": {
55
+ "productName": "KendoReact",
56
+ "productCode": "KENDOUIREACT",
57
+ "publishDate": 1770287787,
58
+ "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
59
+ }
54
60
  },
55
61
  "repository": {
56
62
  "type": "git",
package/util.d.ts ADDED
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { OffsetPosition } from '@progress/kendo-popup-common';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const isDifferentOffset: (oldOffset: OffsetPosition, newOffset: OffsetPosition) => boolean;
13
+ /**
14
+ * @hidden
15
+ */
16
+ export declare const hasBoundingRect: (elem: HTMLElement) => boolean;
17
+ /**
18
+ * @hidden
19
+ */
20
+ export declare const FRAME_DURATION: number;
21
+ /**
22
+ * @hidden
23
+ */
24
+ export declare const throttle: (func: Function, wait: number, options?: any) => () => any;