@transferwise/components 0.0.0-experimental-62af15d → 0.0.0-experimental-e93a0dc
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/package.json +1 -1
- package/src/actionButton/ActionButton.story.tsx +1 -1
- package/src/avatar/Avatar.story.tsx +1 -1
- package/src/avatarWrapper/AvatarWrapper.story.tsx +1 -1
- package/src/badge/Badge.story.tsx +1 -1
- package/src/button/Button.story.tsx +1 -0
- package/src/button/LegacyButton.story.tsx +1 -1
- package/src/legacylistItem/LegacyListItem.story.tsx +1 -1
- package/src/legacylistItem/LegacyListItem.tests.story.tsx +2 -1
- package/src/listItem/_stories/ListItem.story.tsx +1 -0
- package/src/select/Select.story.tsx +1 -1
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ import ActionButton from './ActionButton';
|
|
|
13
13
|
export default {
|
|
14
14
|
component: ActionButton,
|
|
15
15
|
title: 'Actions/ActionButton',
|
|
16
|
-
tags: ['deprecated'],
|
|
16
|
+
tags: ['wds:deprecated'],
|
|
17
17
|
} satisfies Meta<typeof ActionButton>;
|
|
18
18
|
|
|
19
19
|
type Story = StoryObj<typeof ActionButton>;
|
|
@@ -10,7 +10,7 @@ import AvatarWrapper from './AvatarWrapper';
|
|
|
10
10
|
export default {
|
|
11
11
|
component: AvatarWrapper,
|
|
12
12
|
title: 'Content/AvatarWrapper',
|
|
13
|
-
tags: ['deprecated'],
|
|
13
|
+
tags: ['wds:deprecated'],
|
|
14
14
|
} satisfies Meta<typeof AvatarWrapper>;
|
|
15
15
|
|
|
16
16
|
type Story = StoryObj<typeof AvatarWrapper>;
|
|
@@ -25,7 +25,7 @@ const withContainer = (Story: any) => (
|
|
|
25
25
|
const meta: Meta<typeof LegacyButton> = {
|
|
26
26
|
component: LegacyButton,
|
|
27
27
|
title: 'Actions/Button/Legacy Button',
|
|
28
|
-
tags: ['deprecated'],
|
|
28
|
+
tags: ['wds:deprecated'],
|
|
29
29
|
args: {
|
|
30
30
|
size: undefined,
|
|
31
31
|
priority: undefined,
|
|
@@ -9,7 +9,7 @@ import Select, { SelectItem, SelectOptionItem } from './Select';
|
|
|
9
9
|
const meta: Meta<typeof Select> = {
|
|
10
10
|
component: Select,
|
|
11
11
|
title: 'Forms/Select',
|
|
12
|
-
tags: ['deprecated'],
|
|
12
|
+
tags: ['wds:deprecated'],
|
|
13
13
|
argTypes: {
|
|
14
14
|
id: { control: 'text' },
|
|
15
15
|
size: { control: 'radio', options: ['sm', 'md', 'lg'] },
|