portal-design-system 0.0.910 → 0.0.911
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 +8 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +493 -3247
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,14 @@ If you use Bun:
|
|
|
28
28
|
bun add portal-design-system
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
### Required Peer Dependencies
|
|
32
|
+
|
|
33
|
+
If you use the `DataGrid` component, you must also install DevExtreme and its Vue bindings:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm install devextreme devextreme-vue devextreme-aspnet-data-nojquery
|
|
37
|
+
```
|
|
38
|
+
|
|
31
39
|
## Quick Start
|
|
32
40
|
|
|
33
41
|
1. Import the compiled CSS (one-time in your app entry, e.g. `main.ts`):
|