@webitel/styleguide 24.12.47 → 24.12.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/primevue/components/checkbox/colors/dark/index.ts +15 -15
- package/src/lib/primevue/components/checkbox/colors/light/index.ts +16 -16
- package/src/lib/primevue/components/checkbox/sizes/index.ts +5 -5
- package/src/lib/primevue/semantic/color-scheme/content/dark/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/content/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/content/light/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/dark-color.ts +11 -0
- package/src/lib/primevue/semantic/color-scheme/focus-ring/index.ts +0 -6
- package/src/lib/primevue/semantic/color-scheme/form-field/dark/index.ts +23 -0
- package/src/lib/primevue/semantic/color-scheme/form-field/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/form-field/light/index.ts +23 -0
- package/src/lib/primevue/semantic/color-scheme/index.ts +18 -0
- package/src/lib/primevue/semantic/color-scheme/light-color.ts +12 -0
- package/src/lib/primevue/semantic/color-scheme/list/dark/index.ts +21 -0
- package/src/lib/primevue/semantic/color-scheme/list/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/list/light/index.ts +21 -0
- package/src/lib/primevue/semantic/color-scheme/navigation/dark/index.ts +25 -0
- package/src/lib/primevue/semantic/color-scheme/navigation/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/navigation/light/index.ts +25 -0
- package/src/lib/primevue/semantic/color-scheme/overlay/index.ts +0 -19
- package/src/lib/primevue/semantic/color-scheme/surface/dark/index.ts +24 -0
- package/src/lib/primevue/semantic/color-scheme/surface/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/surface/light/index.ts +24 -0
- package/src/lib/primevue/semantic/color-scheme/text/dark/index.ts +8 -0
- package/src/lib/primevue/semantic/color-scheme/text/index.ts +9 -0
- package/src/lib/primevue/semantic/color-scheme/text/light/index.ts +8 -0
- package/src/lib/primevue/semantic/sizes/focus-ring/index.ts +6 -0
- package/src/lib/primevue/semantic/sizes/index.ts +4 -4
- package/src/lib/primevue/semantic/sizes/overlay/index.ts +18 -0
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
const darkColors = {
|
|
2
2
|
root: {
|
|
3
|
-
background: '{
|
|
4
|
-
checkedBackground: '{
|
|
5
|
-
checkedHoverBackground: '{
|
|
6
|
-
disabledBackground: '{
|
|
3
|
+
background: '{transparent}',
|
|
4
|
+
checkedBackground: '{surface.300}',
|
|
5
|
+
checkedHoverBackground: '{surface.200}',
|
|
6
|
+
disabledBackground: '{surface.650}',
|
|
7
7
|
filledBackground: '{form.field.filled.background}',
|
|
8
|
-
borderColor: '{
|
|
9
|
-
hoverBorderColor: '{
|
|
10
|
-
focusBorderColor: '{
|
|
11
|
-
checkedBorderColor: '{
|
|
12
|
-
checkedHoverBorderColor: '{
|
|
13
|
-
checkedFocusBorderColor: '{
|
|
14
|
-
checkedDisabledBorderColor: '{
|
|
8
|
+
borderColor: '{surface.300}',
|
|
9
|
+
hoverBorderColor: '{surface.200}',
|
|
10
|
+
focusBorderColor: '{focus-color}',
|
|
11
|
+
checkedBorderColor: '{surface.300}',
|
|
12
|
+
checkedHoverBorderColor: '{surface.200}',
|
|
13
|
+
checkedFocusBorderColor: '{focus-color}',
|
|
14
|
+
checkedDisabledBorderColor: '{surface.650}',
|
|
15
15
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
|
16
16
|
shadow: '{form.field.shadow}',
|
|
17
17
|
focusRing: {
|
|
18
|
-
color: '{focus
|
|
18
|
+
color: '{focus-color}',
|
|
19
19
|
shadow: '{focus.ring.shadow}'
|
|
20
20
|
},
|
|
21
21
|
transitionDuration: '{form.field.transition.duration}',
|
|
22
22
|
},
|
|
23
23
|
icon: {
|
|
24
24
|
color: '{form.field.color}',
|
|
25
|
-
checkedColor: '{
|
|
26
|
-
checkedHoverColor: '{
|
|
27
|
-
disabledColor: '{
|
|
25
|
+
checkedColor: '{surface.800}',
|
|
26
|
+
checkedHoverColor: '{surface.800}',
|
|
27
|
+
disabledColor: '{surface.500}',
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
const lightColors = {
|
|
2
2
|
root: {
|
|
3
|
-
background: '{
|
|
4
|
-
checkedBackground: '{
|
|
5
|
-
checkedHoverBackground: '{
|
|
6
|
-
disabledBackground: '{
|
|
3
|
+
background: '{transparent}',
|
|
4
|
+
checkedBackground: '{surface.700}',
|
|
5
|
+
checkedHoverBackground: '{surface.600}',
|
|
6
|
+
disabledBackground: '{surface.200}',
|
|
7
7
|
filledBackground: '{form.field.filled.background}',
|
|
8
|
-
borderColor: '{
|
|
9
|
-
hoverBorderColor: '{
|
|
10
|
-
focusBorderColor: '{
|
|
11
|
-
checkedBorderColor: '{
|
|
12
|
-
checkedHoverBorderColor: '{
|
|
13
|
-
checkedFocusBorderColor: '{
|
|
14
|
-
checkedDisabledBorderColor: '{
|
|
8
|
+
borderColor: '{surface.700}',
|
|
9
|
+
hoverBorderColor: '{surface.600}',
|
|
10
|
+
focusBorderColor: '{focus-color}',
|
|
11
|
+
checkedBorderColor: '{surface.700}',
|
|
12
|
+
checkedHoverBorderColor: '{surface.600}',
|
|
13
|
+
checkedFocusBorderColor: '{focus-color}',
|
|
14
|
+
checkedDisabledBorderColor: '{surface.200}',
|
|
15
15
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
|
16
16
|
shadow: '{form.field.shadow}',
|
|
17
17
|
focusRing: {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
color: '{focus-color}',
|
|
19
|
+
shadow: '{focus.ring.shadow}'
|
|
20
20
|
},
|
|
21
21
|
transitionDuration: '{form.field.transition.duration}',
|
|
22
22
|
},
|
|
23
23
|
icon: {
|
|
24
24
|
color: '{form.field.color}',
|
|
25
|
-
checkedColor: '{
|
|
26
|
-
checkedHoverColor: '{
|
|
27
|
-
disabledColor: '{
|
|
25
|
+
checkedColor: '{surface.0}',
|
|
26
|
+
checkedHoverColor: '{surface.0}',
|
|
27
|
+
disabledColor: '{surface.400}',
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
const sizes = {
|
|
2
2
|
root: {
|
|
3
3
|
borderRadius: '{border.radius.sm}',
|
|
4
|
-
width: '1.
|
|
5
|
-
height: '1.
|
|
4
|
+
width: '1.125rem',
|
|
5
|
+
height: '1.125rem',
|
|
6
6
|
sm: {
|
|
7
7
|
width: '1rem',
|
|
8
8
|
height: '1rem'
|
|
9
9
|
},
|
|
10
10
|
lg: {
|
|
11
|
-
width: '1.
|
|
12
|
-
height: '1.
|
|
11
|
+
width: '1.10rem',
|
|
12
|
+
height: '1.10rem'
|
|
13
13
|
},
|
|
14
14
|
focusRing: {
|
|
15
15
|
width: '{focus.ring.width}',
|
|
@@ -18,7 +18,7 @@ const sizes = {
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
icon: {
|
|
21
|
-
size: '0.
|
|
21
|
+
size: '0.75rem',
|
|
22
22
|
sm: {
|
|
23
23
|
size: '0.75rem'
|
|
24
24
|
},
|
|
@@ -70,6 +70,17 @@ const darkColor = {
|
|
|
70
70
|
foreground: '{blue.950}'
|
|
71
71
|
},
|
|
72
72
|
|
|
73
|
+
highlight: {
|
|
74
|
+
background: 'color-mix(in srgb, {primary.400}, transparent 84%)',
|
|
75
|
+
focusBackground: 'color-mix(in srgb, {primary.400}, transparent 76%)',
|
|
76
|
+
color: 'rgba(255,255,255,.87)',
|
|
77
|
+
focusColor: 'rgba(255,255,255,.87)'
|
|
78
|
+
},
|
|
79
|
+
mask: {
|
|
80
|
+
background: 'rgba(0,0,0,0.6)',
|
|
81
|
+
color: '{surface.200}'
|
|
82
|
+
},
|
|
83
|
+
|
|
73
84
|
// Focus colors
|
|
74
85
|
'focus-color': '{black}',
|
|
75
86
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
formField: {
|
|
3
|
+
background: '{surface.950}',
|
|
4
|
+
disabledBackground: '{surface.700}',
|
|
5
|
+
filledBackground: '{surface.800}',
|
|
6
|
+
filledHoverBackground: '{surface.800}',
|
|
7
|
+
filledFocusBackground: '{surface.800}',
|
|
8
|
+
borderColor: '{surface.600}',
|
|
9
|
+
hoverBorderColor: '{surface.500}',
|
|
10
|
+
focusBorderColor: '{primary.color}',
|
|
11
|
+
invalidBorderColor: '{red.300}',
|
|
12
|
+
color: '{surface.0}',
|
|
13
|
+
disabledColor: '{surface.400}',
|
|
14
|
+
placeholderColor: '{surface.400}',
|
|
15
|
+
invalidPlaceholderColor: '{red.400}',
|
|
16
|
+
floatLabelColor: '{surface.400}',
|
|
17
|
+
floatLabelFocusColor: '{primary.color}',
|
|
18
|
+
floatLabelActiveColor: '{surface.400}',
|
|
19
|
+
floatLabelInvalidColor: '{form.field.invalid.placeholder.color}',
|
|
20
|
+
iconColor: '{surface.400}',
|
|
21
|
+
shadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)'
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
formField: {
|
|
3
|
+
background: '{surface.0}',
|
|
4
|
+
disabledBackground: '{surface.200}',
|
|
5
|
+
filledBackground: '{surface.50}',
|
|
6
|
+
filledHoverBackground: '{surface.50}',
|
|
7
|
+
filledFocusBackground: '{surface.50}',
|
|
8
|
+
borderColor: '{surface.300}',
|
|
9
|
+
hoverBorderColor: '{surface.400}',
|
|
10
|
+
focusBorderColor: '{primary.color}',
|
|
11
|
+
invalidBorderColor: '{red.400}',
|
|
12
|
+
color: '{surface.700}',
|
|
13
|
+
disabledColor: '{surface.500}',
|
|
14
|
+
placeholderColor: '{surface.500}',
|
|
15
|
+
invalidPlaceholderColor: '{red.600}',
|
|
16
|
+
floatLabelColor: '{surface.500}',
|
|
17
|
+
floatLabelFocusColor: '{primary.600}',
|
|
18
|
+
floatLabelActiveColor: '{surface.500}',
|
|
19
|
+
floatLabelInvalidColor: '{form.field.invalid.placeholder.color}',
|
|
20
|
+
iconColor: '{surface.400}',
|
|
21
|
+
shadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)'
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -4,6 +4,12 @@ import palette from './palette';
|
|
|
4
4
|
import base from './base'
|
|
5
5
|
import overlay from './overlay'
|
|
6
6
|
import focusRing from './focus-ring'
|
|
7
|
+
import text from './text'
|
|
8
|
+
import formField from './form-field';
|
|
9
|
+
import surface from './surface';
|
|
10
|
+
import content from './content';
|
|
11
|
+
import list from './list';
|
|
12
|
+
import navigation from './navigation';
|
|
7
13
|
|
|
8
14
|
const colorScheme = {
|
|
9
15
|
light: {
|
|
@@ -12,6 +18,12 @@ const colorScheme = {
|
|
|
12
18
|
...base.light,
|
|
13
19
|
...focusRing.colorScheme.light,
|
|
14
20
|
...overlay.colorScheme.light,
|
|
21
|
+
...text.colorScheme.light,
|
|
22
|
+
...formField.colorScheme.light,
|
|
23
|
+
...surface.colorScheme.light,
|
|
24
|
+
...content.colorScheme.light,
|
|
25
|
+
...list.colorScheme.light,
|
|
26
|
+
...navigation.colorScheme.light,
|
|
15
27
|
},
|
|
16
28
|
dark: {
|
|
17
29
|
...palette,
|
|
@@ -19,6 +31,12 @@ const colorScheme = {
|
|
|
19
31
|
...base.dark,
|
|
20
32
|
...focusRing.colorScheme.dark,
|
|
21
33
|
...overlay.colorScheme.dark,
|
|
34
|
+
...text.colorScheme.dark,
|
|
35
|
+
...formField.colorScheme.dark,
|
|
36
|
+
...surface.colorScheme.dark,
|
|
37
|
+
...content.colorScheme.dark,
|
|
38
|
+
...list.colorScheme.dark,
|
|
39
|
+
...navigation.colorScheme.dark,
|
|
22
40
|
},
|
|
23
41
|
};
|
|
24
42
|
|
|
@@ -70,6 +70,18 @@ const lightColor = {
|
|
|
70
70
|
foreground: '{blue.50}'
|
|
71
71
|
},
|
|
72
72
|
|
|
73
|
+
highlight: {
|
|
74
|
+
background: '{primary.50}',
|
|
75
|
+
focusBackground: '{primary.100}',
|
|
76
|
+
color: '{primary.700}',
|
|
77
|
+
focusColor: '{primary.800}'
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
mask: {
|
|
81
|
+
background: 'rgba(0,0,0,0.4)',
|
|
82
|
+
color: '{surface.200}'
|
|
83
|
+
},
|
|
84
|
+
|
|
73
85
|
// Focus colors
|
|
74
86
|
'focus-color': '{black}',
|
|
75
87
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
list: {
|
|
3
|
+
option: {
|
|
4
|
+
focusBackground: '{surface.800}',
|
|
5
|
+
selectedBackground: '{highlight.background}',
|
|
6
|
+
selectedFocusBackground: '{highlight.focus.background}',
|
|
7
|
+
color: '{text.color}',
|
|
8
|
+
focusColor: '{text.hover.color}',
|
|
9
|
+
selectedColor: '{highlight.color}',
|
|
10
|
+
selectedFocusColor: '{highlight.focus.color}',
|
|
11
|
+
icon: {
|
|
12
|
+
color: '{surface.500}',
|
|
13
|
+
focusColor: '{surface.400}'
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
optionGroup: {
|
|
17
|
+
background: 'transparent',
|
|
18
|
+
color: '{text.muted.color}'
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
list: {
|
|
3
|
+
option: {
|
|
4
|
+
focusBackground: '{surface.100}',
|
|
5
|
+
selectedBackground: '{highlight.background}',
|
|
6
|
+
selectedFocusBackground: '{highlight.focus.background}',
|
|
7
|
+
color: '{text.color}',
|
|
8
|
+
focusColor: '{text.hover.color}',
|
|
9
|
+
selectedColor: '{highlight.color}',
|
|
10
|
+
selectedFocusColor: '{highlight.focus.color}',
|
|
11
|
+
icon: {
|
|
12
|
+
color: '{surface.400}',
|
|
13
|
+
focusColor: '{surface.500}'
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
optionGroup: {
|
|
17
|
+
background: 'transparent',
|
|
18
|
+
color: '{text.muted.color}'
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
navigation: {
|
|
3
|
+
item: {
|
|
4
|
+
focusBackground: '{surface.800}',
|
|
5
|
+
activeBackground: '{surface.800}',
|
|
6
|
+
color: '{text.color}',
|
|
7
|
+
focusColor: '{text.hover.color}',
|
|
8
|
+
activeColor: '{text.hover.color}',
|
|
9
|
+
icon: {
|
|
10
|
+
color: '{surface.500}',
|
|
11
|
+
focusColor: '{surface.400}',
|
|
12
|
+
activeColor: '{surface.400}'
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
submenuLabel: {
|
|
16
|
+
background: 'transparent',
|
|
17
|
+
color: '{text.muted.color}'
|
|
18
|
+
},
|
|
19
|
+
submenuIcon: {
|
|
20
|
+
color: '{surface.500}',
|
|
21
|
+
focusColor: '{surface.400}',
|
|
22
|
+
activeColor: '{surface.400}'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
navigation: {
|
|
3
|
+
item: {
|
|
4
|
+
focusBackground: '{surface.100}',
|
|
5
|
+
activeBackground: '{surface.100}',
|
|
6
|
+
color: '{text.color}',
|
|
7
|
+
focusColor: '{text.hover.color}',
|
|
8
|
+
activeColor: '{text.hover.color}',
|
|
9
|
+
icon: {
|
|
10
|
+
color: '{surface.400}',
|
|
11
|
+
focusColor: '{surface.500}',
|
|
12
|
+
activeColor: '{surface.500}'
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
submenuLabel: {
|
|
16
|
+
background: 'transparent',
|
|
17
|
+
color: '{text.muted.color}'
|
|
18
|
+
},
|
|
19
|
+
submenuIcon: {
|
|
20
|
+
color: '{surface.400}',
|
|
21
|
+
focusColor: '{surface.500}',
|
|
22
|
+
activeColor: '{surface.500}'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -2,25 +2,6 @@ import light from './light'
|
|
|
2
2
|
import dark from './dark'
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
|
-
sizes: {
|
|
6
|
-
select: {
|
|
7
|
-
borderRadius: '{border.radius.md}',
|
|
8
|
-
shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)'
|
|
9
|
-
},
|
|
10
|
-
popover: {
|
|
11
|
-
borderRadius: '1rem',
|
|
12
|
-
padding: '0.75rem',
|
|
13
|
-
},
|
|
14
|
-
modal: {
|
|
15
|
-
borderRadius: '{border.radius.xl}',
|
|
16
|
-
padding: '1.25rem',
|
|
17
|
-
shadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)'
|
|
18
|
-
},
|
|
19
|
-
navigation: {
|
|
20
|
-
shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)'
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
|
|
24
5
|
colorScheme: {
|
|
25
6
|
light,
|
|
26
7
|
dark,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
surface: {
|
|
3
|
+
0: '{gray.0}',
|
|
4
|
+
50: '{gray.50}',
|
|
5
|
+
100: '{gray.100}',
|
|
6
|
+
150: '{gray.150}',
|
|
7
|
+
200: '{gray.200}',
|
|
8
|
+
250: '{gray.250}',
|
|
9
|
+
300: '{gray.300}',
|
|
10
|
+
350: '{gray.350}',
|
|
11
|
+
400: '{gray.400}',
|
|
12
|
+
450: '{gray.450}',
|
|
13
|
+
500: '{gray.500}',
|
|
14
|
+
550: '{gray.550}',
|
|
15
|
+
600: '{gray.600}',
|
|
16
|
+
650: '{gray.650}',
|
|
17
|
+
700: '{gray.700}',
|
|
18
|
+
750: '{gray.750}',
|
|
19
|
+
800: '{gray.800}',
|
|
20
|
+
850: '{gray.850}',
|
|
21
|
+
900: '{gray.900}',
|
|
22
|
+
950: '{gray.950}'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
surface: {
|
|
3
|
+
0: '{gray.0}',
|
|
4
|
+
50: '{gray.50}',
|
|
5
|
+
100: '{gray.100}',
|
|
6
|
+
150: '{gray.150}',
|
|
7
|
+
200: '{gray.200}',
|
|
8
|
+
250: '{gray.250}',
|
|
9
|
+
300: '{gray.300}',
|
|
10
|
+
350: '{gray.350}',
|
|
11
|
+
400: '{gray.400}',
|
|
12
|
+
450: '{gray.450}',
|
|
13
|
+
500: '{gray.500}',
|
|
14
|
+
550: '{gray.550}',
|
|
15
|
+
600: '{gray.600}',
|
|
16
|
+
650: '{gray.650}',
|
|
17
|
+
700: '{gray.700}',
|
|
18
|
+
750: '{gray.750}',
|
|
19
|
+
800: '{gray.800}',
|
|
20
|
+
850: '{gray.850}',
|
|
21
|
+
900: '{gray.900}',
|
|
22
|
+
950: '{gray.950}'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import formField from './form-field'
|
|
2
2
|
import list from './list'
|
|
3
3
|
import navigation from './navigation'
|
|
4
|
-
import overlay from '
|
|
5
|
-
import focusRing from '
|
|
4
|
+
import overlay from './overlay'
|
|
5
|
+
import focusRing from './focus-ring'
|
|
6
6
|
|
|
7
7
|
export default {
|
|
8
8
|
transitionDuration: '0.2s',
|
|
@@ -18,6 +18,6 @@ export default {
|
|
|
18
18
|
formField,
|
|
19
19
|
list,
|
|
20
20
|
navigation,
|
|
21
|
-
overlay
|
|
22
|
-
focusRing
|
|
21
|
+
overlay,
|
|
22
|
+
focusRing,
|
|
23
23
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
select: {
|
|
3
|
+
borderRadius: '{border.radius.md}',
|
|
4
|
+
shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)'
|
|
5
|
+
},
|
|
6
|
+
popover: {
|
|
7
|
+
borderRadius: '1rem',
|
|
8
|
+
padding: '0.75rem',
|
|
9
|
+
},
|
|
10
|
+
modal: {
|
|
11
|
+
borderRadius: '{border.radius.xl}',
|
|
12
|
+
padding: '1.25rem',
|
|
13
|
+
shadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)'
|
|
14
|
+
},
|
|
15
|
+
navigation: {
|
|
16
|
+
shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)'
|
|
17
|
+
},
|
|
18
|
+
}
|