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

Commit fea44d1

Browse files
committed
feat(pseudobox): added pseudo props to pseudobox component
1 parent 1d475dd commit fea44d1

File tree

3 files changed

+63
-7
lines changed

3 files changed

+63
-7
lines changed

src/App.vue

+40-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<template>
22
<theme-provider :theme="theme">
3-
{{ state.greeting }}
4-
<Button variant="ghost" color="success" size="lg" @click="increment">{{ state.buttonText }}</Button>
3+
{{ incrementState.greeting }}
4+
<Button variant="ghost" color="success" size="lg" @click="increment">{{ incrementState.buttonText }}</Button>
55
<br>
6-
<h1>{{ state.count }}</h1>
6+
<h1>{{ incrementState.count }}</h1>
77
<br>
88
<Box bg="yellow.200" border-left="4px" font-family="body" rounded="md" mb="5" shadow="md" p="3" color="yellow.800">
99
<Box font-family="heading" font-size="3xl" mb="2">Random Title</Box>
@@ -28,6 +28,23 @@
2828
>
2929
Pseudobox here
3030
</PseudoBox>
31+
<Box
32+
rounded="md"
33+
overflow="hidden"
34+
mt="4"
35+
>
36+
<PseudoBox
37+
v-for="(box, index) in boxes"
38+
:key="index"
39+
px="4"
40+
py="2"
41+
bg="white"
42+
:_hover="{ opacity: '80%' }"
43+
:_odd="{ bg: 'gray.100' }"
44+
>
45+
{{ box.name }}
46+
</PseudoBox>
47+
</Box>
3148
</theme-provider>
3249
</template>
3350

@@ -37,13 +54,30 @@ import Button from './components/Button'
3754
import { Box, PseudoBox } from './lib/core/'
3855
import theme from './lib/theme'
3956
import { useIncrement } from './use-increment'
57+
import { reactive } from '@vue/composition-api'
4058
4159
export default {
4260
setup () {
43-
const { state, increment } = useIncrement()
44-
61+
const { state: incrementState, increment } = useIncrement()
62+
const state = reactive({
63+
boxes: [
64+
{
65+
id: 1,
66+
name: 'Box 1'
67+
},
68+
{
69+
id: 2,
70+
name: 'Box 2'
71+
},
72+
{
73+
id: 3,
74+
name: 'Box 3'
75+
}
76+
]
77+
})
4578
return {
46-
state,
79+
...state,
80+
incrementState,
4781
increment,
4882
theme
4983
}

src/lib/config/props/props.js

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ const baseProps = {
5757
fontSize: [String, Array],
5858
textAlign: [String, Array],
5959
textDecoration: [String, Array],
60+
overflow: [String, Array],
6061
overflowX: [String, Array],
6162
overflowY: [String, Array],
6263
textTransform: [String, Array],

src/lib/config/props/pseudo.js

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,28 @@
11
const pseudoProps = {
22
_hover: [Object, String, Array],
33
_active: [Object, String, Array],
4-
_focus: [Object, String, Array]
4+
_focus: [Object, String, Array],
5+
_odd: [Object, String, Array],
6+
_visited: [Object, String, Array],
7+
_even: [Object, String, Array],
8+
_disabled: [Object, String, Array],
9+
_checked: [Object, String, Array],
10+
_mixed: [Object, String, Array],
11+
_selected: [Object, String, Array],
12+
_invalid: [Object, String, Array],
13+
_pressed: [Object, String, Array],
14+
_readOnly: [Object, String, Array],
15+
_first: [Object, String, Array],
16+
_last: [Object, String, Array],
17+
_expanded: [Object, String, Array],
18+
_grabbed: [Object, String, Array],
19+
_notFirst: [Object, String, Array],
20+
_notLast: [Object, String, Array],
21+
_groupHover: [Object, String, Array],
22+
_before: [Object, String, Array],
23+
_after: [Object, String, Array],
24+
_focusWithin: [Object, String, Array],
25+
_placeholder: [Object, String, Array]
526
}
627

728
export default pseudoProps

0 commit comments

Comments
 (0)