Skip to content

Commit 3e17d45

Browse files
committed
feat(CC-batch-8): updated node urls
1 parent 0498d1b commit 3e17d45

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

packages/code-connect/components/NotificationDrawer/NotificationDrawer.figma.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88

99
figma.connect(
1010
NotificationDrawer,
11-
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=7172-99015',
11+
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components?node-id=7172-99015',
1212
{
1313
variant: { Type: 'Grouped' },
1414
props: {
@@ -30,7 +30,7 @@ figma.connect(
3030

3131
figma.connect(
3232
NotificationDrawer,
33-
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=7172-99015',
33+
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components?node-id=7172-99015',
3434
{
3535
props: {
3636
// children

packages/code-connect/components/NotificationDrawer/NotificationDrawerGroups.figma.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@ import { NotificationDrawerGroup, NotificationDrawerList } from '@patternfly/rea
55

66
figma.connect(
77
NotificationDrawerGroup,
8-
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=3172-18190&m=dev',
8+
'https://www.figma.com/design/VMEX8Xg2nzhBX8rfBx53jp/PatternFly-6--Components?node-id=3172-18190',
99
{
1010
props: {
1111
// boolean
1212
hasCount: figma.boolean('Has count', {
13-
true: figma.children('Badge'),
14-
false: undefined
15-
}),
16-
showUnreadCount: figma.boolean('Has count', {
17-
true: 3,
18-
false: NaN
13+
true: figma.string('Text'),
14+
false: 0
1915
}),
2016

2117
// enum
@@ -30,7 +26,7 @@ figma.connect(
3026
children: figma.children('*')
3127
},
3228
example: (props) => (
33-
<NotificationDrawerGroup isExpanded={props.isExpanded} count={props.showUnreadCount} title={props.headingText}>
29+
<NotificationDrawerGroup isExpanded={props.isExpanded} count={props.hasCount} title={props.headingText}>
3430
<NotificationDrawerList>{props.children}</NotificationDrawerList>
3531
</NotificationDrawerGroup>
3632
)

packages/code-connect/components/NotificationDrawer/NotificationDrawerHeader.figma.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import EllipsisVIcon from '@patternfly/react-icons/dist/esm/icons//ellipsis-v-ic
44

55
figma.connect(
66
NotificationDrawerHeader,
7-
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=3170-17841&m=dev',
7+
'https://www.figma.com/design/VMEX8Xg2nzhBX8rfBx53jp/PatternFly-6--Components?node-id=3170-17841',
88
{
99
props: {
1010
// boolean

packages/code-connect/components/NotificationDrawer/NotificationDrawerItem.figma.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import EllipsisVIcon from '@patternfly/react-icons/dist/esm/icons/ellipsis-v-ico
1515

1616
figma.connect(
1717
NotificationDrawerListItem,
18-
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=3164-16861',
18+
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components?node-id=3164-16861',
1919
{
2020
props: {
2121
timestamp: <Timestamp date={new Date()} />,

0 commit comments

Comments
 (0)