@progress/kendo-react-popup 10.0.0-develop.2 → 10.0.0-develop.4
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/README.md +34 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,24 +6,51 @@
|
|
|
6
6
|
|
|
7
7
|
> **Important**
|
|
8
8
|
>
|
|
9
|
-
> - This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)—
|
|
10
|
-
> -
|
|
11
|
-
> -
|
|
12
|
-
> - The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
|
|
9
|
+
> - This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)—an enterprise-grade UI library with 120+ free and premium components.
|
|
10
|
+
> - This is a free React Popup component. You can use it even in production, no sign-up or license required. If you're looking for more free React components, check out [Get Started with KendoReact Free: 50+ Free React Components](https://www.telerik.com/kendo-react-ui/components/free).
|
|
11
|
+
> - Installing and working with this package indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup).
|
|
12
|
+
> - The [30-day free trial](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup) gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
|
|
13
13
|
>
|
|
14
14
|
> [Start using KendoReact](https://www.telerik.com/try/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup) and speed up your development process!
|
|
15
15
|
|
|
16
16
|
The [React Popup](https://www.telerik.com/kendo-react-ui/popup), part of KendoReact, positions a piece of content next to a specific anchor component.
|
|
17
17
|
|
|
18
|
+
How to start:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
npm install --save @progress/kendo-react-popup @progress/kendo-popup-common @progress/kendo-licensing
|
|
22
|
+
```
|
|
23
|
+
|
|
18
24
|
## React Popup
|
|
19
25
|
|
|
26
|
+
> This is a **free React component**—no sign-up or license required, even in production.
|
|
27
|
+
|
|
20
28
|
Among the features which the KendoReact Popup component delivers are:
|
|
21
29
|
|
|
22
30
|
- [Hidden popup](https://www.telerik.com/kendo-react-ui/components/popup/hidden-state/)—The Popup enables you to control its visibility.
|
|
23
31
|
- [Animations](https://www.telerik.com/kendo-react-ui/components/popup/animations/)—The Popup allows you to enable or disable its opening and closing animation.
|
|
24
32
|
- [Aligning and positioning](https://www.telerik.com/kendo-react-ui/components/popup/aligning-positioning/)—The Popup enables you to align it to components and absolute points as well as to control its position.
|
|
25
|
-
- [Viewport boundary detection](https://www.telerik.com/kendo-react-ui/components/popup/viewport-boundary/)—The Popup enables you to set its boundary detection functionality by using the collision property. This controls the behavior of the component when it does not fit in the view port.
|
|
33
|
+
- [Viewport boundary detection](https://www.telerik.com/kendo-react-ui/components/popup/viewport-boundary/)—The Popup enables you to set its boundary detection functionality by using the `collision` property. This controls the behavior of the component when it does not fit in the view port.
|
|
26
34
|
- [Theme support](https://www.telerik.com/kendo-react-ui/components/styling/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)—The KendoReact Popup, as well as all 100+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, and Default) and can be further customized to match your specific design guidelines.
|
|
35
|
+
- [Unstyled mode](https://www.telerik.com/kendo-react-ui/components/unstyled)—The KendoReact Popup supports an unstyled mode, offering complete control over the popup appearance. This feature allows you to remove default styles, making it easier to integrate custom design systems or adapt the component to specific project requirements without any style conflicts.
|
|
36
|
+
|
|
37
|
+
How to use the Popup component in your apps:
|
|
38
|
+
|
|
39
|
+
```tsx
|
|
40
|
+
import { Popup } from '@progress/kendo-react-popup';
|
|
41
|
+
...
|
|
42
|
+
/**
|
|
43
|
+
* Implement a component and designate it as an anchor here. Handle showing and hiding the popup.
|
|
44
|
+
*/
|
|
45
|
+
<Popup
|
|
46
|
+
anchor={anchor}
|
|
47
|
+
show={show}
|
|
48
|
+
>
|
|
49
|
+
Lorem ipsum
|
|
50
|
+
</Popup>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Check out the [KendoReact Popup API](https://www.telerik.com/kendo-react-ui/components/popup/api).
|
|
27
54
|
|
|
28
55
|
## Support Options
|
|
29
56
|
|
|
@@ -36,6 +63,7 @@ For any issues you might encounter while working with the KendoReact Popup, use
|
|
|
36
63
|
## Resources
|
|
37
64
|
|
|
38
65
|
- [Getting Started with KendoReact](https://www.telerik.com/kendo-react-ui/components/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
66
|
+
- [Get Started with KendoReact Free: 50+ Free React Components](https://www.telerik.com/kendo-react-ui/components/free)
|
|
39
67
|
- [Get Started with the KendoReact Popup](https://www.telerik.com/kendo-react-ui/components/popup/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
40
68
|
- [API Reference of the KendoReact Popup](https://www.telerik.com/kendo-react-ui/components/popup/api/PopupProps/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
41
69
|
- [KendoReact Roadmap](https://www.telerik.com/support/whats-new/kendo-react-ui/roadmap?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
@@ -44,7 +72,7 @@ For any issues you might encounter while working with the KendoReact Popup, use
|
|
|
44
72
|
- [KendoReact pricing and licensing](https://www.telerik.com/kendo-react-ui/pricing?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
45
73
|
- [Changelog](https://www.telerik.com/kendo-react-ui/components/changelogs/ui-for-react/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-popup)
|
|
46
74
|
|
|
47
|
-
High-level component overview
|
|
75
|
+
High-level component overview page:
|
|
48
76
|
|
|
49
77
|
- [React Popup Component](https://www.telerik.com/kendo-react-ui/popup)
|
|
50
78
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-popup",
|
|
3
|
-
"version": "10.0.0-develop.
|
|
3
|
+
"version": "10.0.0-develop.4",
|
|
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.5.0",
|
|
29
29
|
"@progress/kendo-popup-common": "^1.9.0",
|
|
30
|
-
"@progress/kendo-react-common": "10.0.0-develop.
|
|
30
|
+
"@progress/kendo-react-common": "10.0.0-develop.4",
|
|
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
|
},
|