Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 9b025d9

Browse files
committed
feat(pseudobox): added :odd pseudo style
1 parent fea44d1 commit 9b025d9

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

src/lib/config/props/props.js

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const baseProps = {
5353
bgPos: [String, Array],
5454
bgRepeat: [String, Array],
5555
borderWidth: [String, Array],
56+
fontWeight: [String, Array],
5657
fontFamily: [String, Array],
5758
fontSize: [String, Array],
5859
textAlign: [String, Array],

stories/2-PseudoBox.stories.js

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { storiesOf } from '@storybook/vue'
22
import centered from '@storybook/addon-centered/vue'
33
import PseudoBox from '../src/components/PseudoBox'
4+
import Box from '../src/components/Box'
45

56
storiesOf('UI | PseudoBox', module)
67
.addDecorator(centered)
7-
.add('PseudoBox', () => ({
8+
.add('PseudoBox | :hover', () => ({
89
components: { PseudoBox },
910
template: `
1011
<PseudoBox
@@ -29,3 +30,44 @@ storiesOf('UI | PseudoBox', module)
2930
</PseudoBox>
3031
`
3132
}))
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+
}))

0 commit comments

Comments
 (0)