Skip to content

Commit fb7df1a

Browse files
committed
feat(CC-batch-7): updated required props
1 parent a6dfc02 commit fb7df1a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/code-connect/components/PopOver/Popover.figma.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import ExclamationTriangleIcon from '@patternfly/react-icons/dist/esm/icons/excl
66
import ExclamationCircleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-circle-icon';
77

88
// TODO: FIGMA: Add buttons boolean to footerContent
9-
// TODO: REACT: Add iconWrapper support
9+
// TODO: REACT: Add icon support
1010

1111
figma.connect(
1212
Popover,
@@ -62,7 +62,7 @@ figma.connect(
6262
footerContent={props.footerContent}
6363
position={props.position}
6464
headerIcon={props.status.icon}
65-
alertSeverityVariant={props.status.state}
65+
alertSeverityVariant={props.status.state as any}
6666
/>
6767
)
6868
}

packages/code-connect/components/SimpleList/SimpleListItem.figma.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ figma.connect(
88
props: {
99
text: figma.string('Text'),
1010
state: figma.enum('State', {
11-
Default: 'default',
11+
Default: undefined,
1212
'Hover - Light': 'hover---light',
1313
'Hover - Dark': 'hover---dark',
1414
'Selected - Light': 'selected---light',
1515
'Selected - Dark': 'selected---dark',
1616
Disabled: 'disabled'
1717
}),
1818
type: figma.enum('Type', {
19-
Default: 'default',
19+
Default: undefined,
2020
Link: 'link'
2121
})
2222
},

0 commit comments

Comments
 (0)