@veeqo/ui 5.4.0 → 5.4.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/README.md
CHANGED
|
@@ -10,15 +10,16 @@ In the longer term Icons and Integrations **WILL** be moved to their own library
|
|
|
10
10
|
|
|
11
11
|
### Links ⚓️
|
|
12
12
|
|
|
13
|
-
**This Library**: [Storybook 📋](https
|
|
13
|
+
**This Library**: [Storybook 📋](https://ui.veeqo.amazon.dev/?path=/docs/get-started-how-to-install--docs) | Playroom 🛝 (not deployed.)
|
|
14
14
|
|
|
15
15
|
**Old Library**: [Storybook 📋](https://master.d1cz47hw90nvy2.amplifyapp.com/) | [Playroom 🛝](https://master.d1cz47hw90nvy2.amplifyapp.com/playroom)
|
|
16
16
|
|
|
17
17
|
## Getting Started
|
|
18
18
|
|
|
19
|
-
Setup should be simple, clone the repo and use npm to install all dependencies.
|
|
19
|
+
Setup should be simple, clone the repo and use `npm i` to install all dependencies.
|
|
20
20
|
|
|
21
|
-
Start storybook with `npm run storybook`,
|
|
21
|
+
- Start storybook with `npm run storybook`, which starts on `localhost:3000`
|
|
22
|
+
- Start Playroom with `npm run playroom:start`, which starts on `localhost:9000`
|
|
22
23
|
|
|
23
24
|
### Testing
|
|
24
25
|
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
type UploadedFileProps = {
|
|
3
3
|
file?: File;
|
|
4
4
|
resetSelection: () => void;
|
|
5
|
+
disabled?: boolean;
|
|
5
6
|
};
|
|
6
|
-
export declare const UploadedFile: ({ file, resetSelection }: UploadedFileProps) => React.JSX.Element | null;
|
|
7
|
+
export declare const UploadedFile: ({ file, resetSelection, disabled }: UploadedFileProps) => React.JSX.Element | null;
|
|
7
8
|
export {};
|