-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathComponentApi.server.vue
101 lines (99 loc) · 3.11 KB
/
ComponentApi.server.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<script setup lang="ts">
import { chakra, useColorModeValue } from '@chakra-ui/vue-next';
import AccessibilityIcon from '../icons/accessibility-icon';
import ComposableIcon from '../icons/composable-icon';
import ThemeIcon from '../icons/theme-icon';
import StateMachineIcon from '../icons/state-machine-icon';
const features = [
{
icon: AccessibilityIcon,
title: 'Accessibility',
description:
'Chakra UI strictly follows WAI-ARIA standards for all components.'
},
{
icon: ThemeIcon,
title: 'Design System friendly',
description:
'Customize any part of our components to match your design needs.'
},
{
icon: StateMachineIcon,
title: 'State Machine Driven',
description:
'Built with UI state machines for predictable and reliable UI. Powered by Zag.js'
},
{
icon: ComposableIcon,
title: 'Composable',
description:
'Designed with composition in mind. Compose new components with ease.'
}
];
</script>
<template>
<CContainer max-w="8xl" mt="10" mb="20">
<CGrid :template-columns="{ base: '1fr', sm: '1.5fr 1fr' }" max-w="50%">
<CStack spacing="5">
<chakra.p
:color="useColorModeValue('emerald.600', 'emerald.50').value"
font-weight="bold"
>Powerful Developer Experience</chakra.p
>
<CHeading> Develop with an open, extendable API </CHeading>
<chakra.p>
Chakra UI Vue components can be customized at any level - whether it's
at the component level, or the theme level. You can also extend the
components to add new features, or override existing ones.
</chakra.p>
<CGrid
gap="4"
:w="{ base: 'full', sm: 'fit-content' }"
:template-columns="{ base: 'repeat(1, 1fr)', sm: 'repeat(4, auto)' }"
>
<CStack
v-for="(feature, i) in features"
:key="i"
:border="
useColorModeValue(
'1px solid rgba(47, 43, 67, 0.1)',
'1px solid var(--chakra-colors-whiteAlpha-200)'
).value
"
:box-shadow="
useColorModeValue(
// '0px 1px 3px rgba(47, 43, 67, 0.1), inset 0px -1px 0px rgba(47, 43, 67, 0.1)',
'none',
'none'
).value
"
px="4"
py="5"
rounded="12px"
align-items="flex-start"
:w="{ base: 'full', sm: '250px' }"
>
<chakra.svg
:color="`${
useColorModeValue('emerald.600', 'white').value
} !important`"
font-size="1.8em"
:as="feature.icon"
/>
<chakra.h3
:color="useColorModeValue('emerald.600', 'white').value"
font-weight="bold"
font-size="1.1rem"
>
{{ feature.title }}
</chakra.h3>
<chakra.p>
{{ feature.description }}
</chakra.p>
</CStack>
</CGrid>
</CStack>
<CCenter />
</CGrid>
</CContainer>
</template>