File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ figma.connect(
1616 isOpen = { false }
1717 onOpenChange = { ( ) => { } }
1818 popperProps = { { position : 'right' } }
19- toggle = { ( ) => (
19+ toggle = { ( refToggle ) => (
2020 < MenuToggle
21- ref = { ( ) => { } }
21+ ref = { refToggle }
2222 isExpanded = { false }
2323 onClick = { ( ) => { } }
2424 variant = "plain"
Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ figma.connect(
1515
1616 // nested
1717 pageQuantity : figma . nestedProps ( 'Page quantity selector' , {
18- itemCount : figma . string ( 'Total quantity' ) ,
19- state : figma . enum ( 'State' , { Disabled : true } )
18+ itemCount : figma . string ( 'Total quantity' )
2019 } )
2120 } ,
2221 example : ( props ) => (
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import BullhornIcon from '@patternfly/react-icons/dist/esm/icons/bullhorn-icon';
1212
1313figma . connect (
1414 Popover ,
15- 'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9 /PatternFly-6--Components-Test ?node-id=5857-2066' ,
15+ 'https://www.figma.com/design/VMEX8Xg2nzhBX8rfBx53jp /PatternFly-6--Components?node-id=5857-2066' ,
1616 {
1717 // enum
1818 props : {
Original file line number Diff line number Diff line change @@ -28,12 +28,7 @@ figma.connect(
2828 } )
2929 } ,
3030 example : ( props ) => (
31- < SimpleListItem
32- component = { props . isLink . component }
33- href = { props . isLink . href }
34- isActive = { props . isActive }
35- key = "simple-list-item-key"
36- >
31+ < SimpleListItem component = { props . isLink . component } href = { props . isLink . href } isActive = { props . isActive } >
3732 { props . text }
3833 </ SimpleListItem >
3934 )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ figma.connect(
99 {
1010 props : {
1111 // enum
12- type : figma . enum ( 'Type' , {
12+ shape : figma . enum ( 'Type' , {
1313 Default : undefined ,
1414 Rectangle : undefined ,
1515 Square : 'square' ,
@@ -25,6 +25,8 @@ figma.connect(
2525 '4XL' : '4xl'
2626 } )
2727 } ,
28- example : ( props ) => < Skeleton fontSize = { props . size } type = { props . type } screenreaderText = "Loading default content" />
28+ example : ( props ) => (
29+ < Skeleton fontSize = { props . size } shape = { props . shape } screenreaderText = "Loading default content" />
30+ )
2931 }
3032) ;
Original file line number Diff line number Diff line change 1111 "paths" : {
1212 "src/components" : " src/components"
1313 },
14+ "documentUrlSubstitutions" : {
15+ "https://www.figma.com/design/VMEX8Xg2nzhBX8rfBx53jp/PatternFly-6--Components" : " https://www.figma.com/design/VMEX8Xg2nzhBX8rfBx53jp/branch/Em2QWrHDxDS4LUxo58Hust/PatternFly-6--Components"
16+ },
1417 "aliases" : {
1518 "@patternfly/react-core" : " ."
1619 },
You can’t perform that action at this time.
0 commit comments