@veeqo/ui 5.4.1 → 5.5.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 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:/ui.veeqo.amazon.dev/?path=/docs/get-started-how-to-install--docs) | [Playroom 🛝](https://ui.veeqo.amazon.dev/playroom/)
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`, and Playroom (including the storybook playroom integration) in a seperate terminal use `npm run playroom:start`.
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
 
@@ -0,0 +1,7 @@
1
+ export type SkeletonProps = {
2
+ width?: string;
3
+ height?: string;
4
+ };
5
+ export declare const Skeleton: import("styled-components").StyledComponent<"div", any, {
6
+ 'aria-hidden': true;
7
+ } & SkeletonProps, "aria-hidden">;
@@ -0,0 +1 @@
1
+ import 'jest-styled-components';
@@ -0,0 +1 @@
1
+ export { Skeleton } from './Skeleton';
@@ -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 {};
@@ -39,6 +39,7 @@ export { SegmentedControl } from './SegmentedControl';
39
39
  export { Select } from './Select';
40
40
  export { ShortcutKeys } from './ShortcutKeys';
41
41
  export { SimpleTable } from './SimpleTable';
42
+ export { Skeleton } from './Skeleton';
42
43
  export { Slider } from './Slider';
43
44
  export { Stack } from './Stack';
44
45
  export { Stepper } from './Stepper';