@webitel/styleguide 24.12.48 → 24.12.50
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 +7 -5
- package/src/lib/primevue/semantic/color-scheme/surface/dark/index.ts +20 -12
- package/src/lib/primevue/semantic/color-scheme/surface/light/index.ts +20 -12
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,17 @@
|
|
|
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
|
+
wrapperWidth: '1.5rem',
|
|
7
|
+
wrapperHeight: '1.5rem',
|
|
6
8
|
sm: {
|
|
7
9
|
width: '1rem',
|
|
8
10
|
height: '1rem'
|
|
9
11
|
},
|
|
10
12
|
lg: {
|
|
11
|
-
width: '1.
|
|
12
|
-
height: '1.
|
|
13
|
+
width: '1.10rem',
|
|
14
|
+
height: '1.10rem'
|
|
13
15
|
},
|
|
14
16
|
focusRing: {
|
|
15
17
|
width: '{focus.ring.width}',
|
|
@@ -18,7 +20,7 @@ const sizes = {
|
|
|
18
20
|
}
|
|
19
21
|
},
|
|
20
22
|
icon: {
|
|
21
|
-
size: '0.
|
|
23
|
+
size: '0.75rem',
|
|
22
24
|
sm: {
|
|
23
25
|
size: '0.75rem'
|
|
24
26
|
},
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
surface: {
|
|
3
|
-
0: '
|
|
4
|
-
50: '{
|
|
5
|
-
100: '{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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}'
|
|
15
23
|
}
|
|
16
24
|
}
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
surface: {
|
|
3
|
-
0: '
|
|
4
|
-
50: '{
|
|
5
|
-
100: '{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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}'
|
|
15
23
|
}
|
|
16
24
|
}
|