@up42/up-components 4.5.0 → 4.6.0
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/cjs/index.js +2 -2
- package/dist/cjs/types/components/CodeSnippet/Pre.d.ts +7 -1
- package/dist/cjs/types/components/DataGrid/DataGrid.d.ts +1 -1
- package/dist/cjs/types/components/FormCheckbox/FormCheckbox.d.ts +1 -8
- package/dist/cjs/types/components/FormInput/FormInput.d.ts +1 -3
- package/dist/cjs/types/components/FormRadio/FormRadio.d.ts +1 -10
- package/dist/cjs/types/components/FormSelect/FormSelect.d.ts +1 -7
- package/dist/cjs/types/components/FormSwitch/FormSwitch.d.ts +1 -5
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/components/CodeSnippet/Pre.d.ts +7 -1
- package/dist/esm/types/components/DataGrid/DataGrid.d.ts +1 -1
- package/dist/esm/types/components/FormCheckbox/FormCheckbox.d.ts +1 -8
- package/dist/esm/types/components/FormInput/FormInput.d.ts +1 -3
- package/dist/esm/types/components/FormRadio/FormRadio.d.ts +1 -10
- package/dist/esm/types/components/FormSelect/FormSelect.d.ts +1 -7
- package/dist/esm/types/components/FormSwitch/FormSwitch.d.ts +1 -5
- package/dist/index.d.ts +29 -59
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -8,10 +8,18 @@ The package utilizes [Storybook](https://storybook.js.org/docs/react/get-started
|
|
|
8
8
|
|
|
9
9
|
## Getting Started
|
|
10
10
|
|
|
11
|
+
With npm
|
|
12
|
+
|
|
11
13
|
```bash
|
|
12
14
|
$ npm install @up42/up-components
|
|
13
15
|
```
|
|
14
16
|
|
|
17
|
+
With pnpm
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pnpm add @up42/up-components
|
|
21
|
+
```
|
|
22
|
+
|
|
15
23
|
If you are using `yarn` you need to install peer dependencies manually. Make sure to install the correct version for each one.
|
|
16
24
|
|
|
17
25
|
```bash
|