@yahoo/uds 3.0.5 → 3.0.6
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/dist/client/index.cjs +2 -2
- package/dist/client/index.d.cts +2 -2
- package/dist/client/index.d.ts +2 -2
- package/dist/client/index.js +2 -2
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +1 -1
- package/cli/ButtonFile.mock.tsx +0 -15
- package/cli/ButtonFile2.mock.tsx +0 -11
package/package.json
CHANGED
package/cli/ButtonFile.mock.tsx
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
import { Button, IconButton, Text } from '@yahoo/uds';
|
2
|
-
import { Link } from '@yahoo/uds-icons';
|
3
|
-
|
4
|
-
export const PageA = () => {
|
5
|
-
return (
|
6
|
-
<form>
|
7
|
-
{/* TODO: DID THIS SHOW UP? */}
|
8
|
-
<Button>Click me</Button>
|
9
|
-
<Button type="button">Click me</Button>
|
10
|
-
<Button type="submit">Click me</Button>
|
11
|
-
{/* TODO: DID THIS SHOW UP? */}
|
12
|
-
<IconButton icon={Link} />
|
13
|
-
</form>
|
14
|
-
);
|
15
|
-
}
|
package/cli/ButtonFile2.mock.tsx
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
import { Button, IconButton } from 'another-package';
|
2
|
-
import { Link } from '@yahoo/uds-icons';
|
3
|
-
|
4
|
-
export const PageB = () => {
|
5
|
-
return (
|
6
|
-
<Button>Click me</Button>
|
7
|
-
<Button type="button">Click me</Button>
|
8
|
-
<Button type="submit">Click me</Button>
|
9
|
-
<IconButton icon={Link} />
|
10
|
-
);
|
11
|
-
}
|