@agregio-solutions/design-system 1.89.0 → 1.89.1
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 +11 -0
- package/dist/design-system.cjs +527 -517
- package/dist/design-system.js +31154 -34729
- package/dist/packages/components/FileUpload/FileUpload.styled.d.ts +3 -3
- package/dist/packages/components/FileUpload/components/FileDetails/FileDetails.styled.d.ts +5 -5
- package/dist/packages/components/Toaster/Toaster.styles.d.ts +1 -1
- package/dist/packages/internal-components/CoreTextInput/CoreTextInput.styled.d.ts +1 -1
- package/dist/style.css +3 -1
- package/package.json +58 -56
package/README.md
CHANGED
|
@@ -10,6 +10,17 @@ This documentation only concerns devs that want to **contribute** to the project
|
|
|
10
10
|
|
|
11
11
|
If you are looking for documentation on **using** our component library, please refers to the [Zeroheight documentation](https://zeroheight.com/4943b159f/p/5667cb-introduction) instead.
|
|
12
12
|
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
git clone <repo-url>
|
|
17
|
+
cd storybook-for-DS
|
|
18
|
+
npm install
|
|
19
|
+
npm run prepare
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
> `npm run prepare` est nécessaire car `ignore-scripts=true` est configuré dans `.npmrc`, ce qui empêche l'exécution automatique du script `prepare` après `npm install`. Sans cette étape, les hooks Husky (pre-commit) ne seront pas installés.
|
|
23
|
+
|
|
13
24
|
## Summary
|
|
14
25
|
|
|
15
26
|
- [Styling components](./docs/styles.md): everything you need to know about styling components.
|