This repository was archived by the owner on Sep 20, 2024. It is now read-only.
File tree 2 files changed +44
-1
lines changed
2 files changed +44
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ const baseProps = {
53
53
bgPos : [ String , Array ] ,
54
54
bgRepeat : [ String , Array ] ,
55
55
borderWidth : [ String , Array ] ,
56
+ fontWeight : [ String , Array ] ,
56
57
fontFamily : [ String , Array ] ,
57
58
fontSize : [ String , Array ] ,
58
59
textAlign : [ String , Array ] ,
Original file line number Diff line number Diff line change 1
1
import { storiesOf } from '@storybook/vue'
2
2
import centered from '@storybook/addon-centered/vue'
3
3
import PseudoBox from '../src/components/PseudoBox'
4
+ import Box from '../src/components/Box'
4
5
5
6
storiesOf ( 'UI | PseudoBox' , module )
6
7
. addDecorator ( centered )
7
- . add ( 'PseudoBox' , ( ) => ( {
8
+ . add ( 'PseudoBox | :hover ' , ( ) => ( {
8
9
components : { PseudoBox } ,
9
10
template : `
10
11
<PseudoBox
@@ -29,3 +30,44 @@ storiesOf('UI | PseudoBox', module)
29
30
</PseudoBox>
30
31
`
31
32
} ) )
33
+ . add ( 'Pseudobox | :odd' , ( ) => ( {
34
+ components : { Box, PseudoBox } ,
35
+ data ( ) {
36
+ return {
37
+ boxes : [
38
+ {
39
+ id : 1 ,
40
+ name : 'Box 1'
41
+ } ,
42
+ {
43
+ id : 2 ,
44
+ name : 'Box 2'
45
+ } ,
46
+ {
47
+ id : 3 ,
48
+ name : 'Box 3'
49
+ }
50
+ ]
51
+ }
52
+ } ,
53
+ template : `
54
+ <Box
55
+ rounded="md"
56
+ overflow="hidden"
57
+ mt="4"
58
+ w="400px"
59
+ >
60
+ <PseudoBox
61
+ v-for="(box, index) in boxes"
62
+ :key="index"
63
+ px="4"
64
+ py="2"
65
+ bg="white"
66
+ :_hover="{ opacity: '80%' }"
67
+ :_odd="{ bg: 'gray.100' }"
68
+ >
69
+ {{ box.name }}
70
+ </PseudoBox>
71
+ </Box>
72
+ `
73
+ } ) )
You can’t perform that action at this time.
0 commit comments