@vellira-ui/tokens 2.19.6 → 2.20.0
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/dist/css/tokens.css +485 -205
- package/dist/dark/components/button.d.ts +198 -37
- package/dist/dark/components/button.d.ts.map +1 -1
- package/dist/dark/components/button.js +161 -9
- package/dist/dark/components/checkbox.d.ts +2 -2
- package/dist/dark/components/checkbox.js +1 -1
- package/dist/dark/components/dropdown.d.ts +2 -2
- package/dist/dark/components/formField.d.ts +4 -4
- package/dist/dark/components/input.d.ts +2 -2
- package/dist/dark/components/menu.d.ts +1 -1
- package/dist/dark/components/modal.d.ts +1 -1
- package/dist/dark/components/radio.d.ts +2 -2
- package/dist/dark/components/radio.js +1 -1
- package/dist/dark/components/select.d.ts +3 -3
- package/dist/dark/components/select.js +1 -1
- package/dist/dark/components/tabs.d.ts +2 -2
- package/dist/dark/semantic/action.d.ts +37 -19
- package/dist/dark/semantic/action.d.ts.map +1 -1
- package/dist/dark/semantic/action.js +37 -19
- package/dist/dark/semantic/status.d.ts +3 -3
- package/dist/dark/semantic/surface.d.ts +1 -0
- package/dist/dark/semantic/surface.d.ts.map +1 -1
- package/dist/dark/semantic/surface.js +1 -0
- package/dist/dark/semantic/text.d.ts +1 -1
- package/dist/dark/semantic/text.js +1 -1
- package/dist/dark/theme.d.ts +14 -12
- package/dist/dark/theme.d.ts.map +1 -1
- package/dist/generated/token-types.d.ts +6 -6
- package/dist/generated/token-types.d.ts.map +1 -1
- package/dist/generated/token-types.js +484 -108
- package/dist/highContrast/components/button.d.ts +198 -37
- package/dist/highContrast/components/button.d.ts.map +1 -1
- package/dist/highContrast/components/button.js +162 -10
- package/dist/highContrast/components/checkbox.d.ts +2 -2
- package/dist/highContrast/components/formField.d.ts +1 -1
- package/dist/highContrast/components/menu.d.ts +1 -1
- package/dist/highContrast/components/radio.d.ts +2 -2
- package/dist/highContrast/components/tabs.d.ts +1 -1
- package/dist/highContrast/semantic/action.d.ts +30 -13
- package/dist/highContrast/semantic/action.d.ts.map +1 -1
- package/dist/highContrast/semantic/action.js +30 -13
- package/dist/highContrast/semantic/control.d.ts +2 -2
- package/dist/highContrast/semantic/skeleton.d.ts +1 -1
- package/dist/highContrast/semantic/status.d.ts +3 -3
- package/dist/highContrast/semantic/surface.d.ts +1 -0
- package/dist/highContrast/semantic/surface.d.ts.map +1 -1
- package/dist/highContrast/semantic/surface.js +1 -0
- package/dist/highContrast/theme.d.ts +14 -12
- package/dist/highContrast/theme.d.ts.map +1 -1
- package/dist/light/components/button.d.ts +198 -37
- package/dist/light/components/button.d.ts.map +1 -1
- package/dist/light/components/button.js +162 -10
- package/dist/light/components/formField.d.ts +1 -1
- package/dist/light/semantic/action.d.ts +21 -4
- package/dist/light/semantic/action.d.ts.map +1 -1
- package/dist/light/semantic/action.js +17 -0
- package/dist/light/semantic/status.d.ts +3 -3
- package/dist/light/semantic/surface.d.ts +1 -0
- package/dist/light/semantic/surface.d.ts.map +1 -1
- package/dist/light/semantic/surface.js +1 -0
- package/dist/light/semantic/text.d.ts +1 -1
- package/dist/light/semantic/text.d.ts.map +1 -1
- package/dist/light/semantic/text.js +2 -3
- package/dist/light/theme.d.ts +14 -12
- package/dist/light/theme.d.ts.map +1 -1
- package/dist/primitives/colors.d.ts +14 -12
- package/dist/primitives/colors.d.ts.map +1 -1
- package/dist/primitives/colors.js +14 -12
- package/package.json +1 -1
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { colors } from '../../primitives/colors.js';
|
|
2
|
-
const inverse = colors.mono[50];
|
|
3
2
|
export const text = {
|
|
4
3
|
primary: colors.vellira[600],
|
|
5
4
|
secondary: colors.vellira[500],
|
|
6
5
|
muted: colors.vellira[400],
|
|
7
6
|
disabled: colors.gray[400],
|
|
8
7
|
subtle: colors.mono[800],
|
|
9
|
-
inverse,
|
|
10
|
-
onInverse:
|
|
8
|
+
inverse: colors.mono[50],
|
|
9
|
+
onInverse: colors.mono[900],
|
|
11
10
|
brand: colors.primary[700],
|
|
12
11
|
};
|
package/dist/light/theme.d.ts
CHANGED
|
@@ -23,11 +23,11 @@ export declare const lightTheme: {
|
|
|
23
23
|
readonly 300: "#9EA2EA";
|
|
24
24
|
readonly 400: "#7B80D8";
|
|
25
25
|
readonly 500: "#4C4F8F";
|
|
26
|
-
readonly 600: "#
|
|
27
|
-
readonly 700: "#
|
|
28
|
-
readonly 800: "#
|
|
29
|
-
readonly 900: "#
|
|
30
|
-
readonly 950: "#
|
|
26
|
+
readonly 600: "#3c2d9e";
|
|
27
|
+
readonly 700: "#2e156e";
|
|
28
|
+
readonly 800: "#2f106c";
|
|
29
|
+
readonly 900: "#190947";
|
|
30
|
+
readonly 950: "#160537";
|
|
31
31
|
};
|
|
32
32
|
readonly vellira: {
|
|
33
33
|
readonly 25: "#FDFCFF";
|
|
@@ -48,13 +48,15 @@ export declare const lightTheme: {
|
|
|
48
48
|
readonly info: {
|
|
49
49
|
readonly 50: "#F0F9FF";
|
|
50
50
|
readonly 100: "#EFF6FF";
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
53
|
-
readonly
|
|
54
|
-
readonly
|
|
55
|
-
readonly
|
|
56
|
-
readonly
|
|
57
|
-
readonly
|
|
51
|
+
readonly 150: "#DBEAFE";
|
|
52
|
+
readonly 200: "#93C5FD";
|
|
53
|
+
readonly 250: "#4DA3FF";
|
|
54
|
+
readonly 300: "#7BBCFF";
|
|
55
|
+
readonly 400: "#3399FF";
|
|
56
|
+
readonly 500: "#0EA5E9";
|
|
57
|
+
readonly 600: "#0284C7";
|
|
58
|
+
readonly 700: "#0265c7";
|
|
59
|
+
readonly 800: "#023ac7";
|
|
58
60
|
readonly 900: "#002B55";
|
|
59
61
|
readonly 950: "#102A43";
|
|
60
62
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/light/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/light/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYb,CAAC"}
|
|
@@ -25,11 +25,11 @@ export declare const colors: {
|
|
|
25
25
|
readonly 300: "#9EA2EA";
|
|
26
26
|
readonly 400: "#7B80D8";
|
|
27
27
|
readonly 500: "#4C4F8F";
|
|
28
|
-
readonly 600: "#
|
|
29
|
-
readonly 700: "#
|
|
30
|
-
readonly 800: "#
|
|
31
|
-
readonly 900: "#
|
|
32
|
-
readonly 950: "#
|
|
28
|
+
readonly 600: "#3c2d9e";
|
|
29
|
+
readonly 700: "#2e156e";
|
|
30
|
+
readonly 800: "#2f106c";
|
|
31
|
+
readonly 900: "#190947";
|
|
32
|
+
readonly 950: "#160537";
|
|
33
33
|
};
|
|
34
34
|
readonly vellira: {
|
|
35
35
|
readonly 25: "#FDFCFF";
|
|
@@ -50,13 +50,15 @@ export declare const colors: {
|
|
|
50
50
|
readonly info: {
|
|
51
51
|
readonly 50: "#F0F9FF";
|
|
52
52
|
readonly 100: "#EFF6FF";
|
|
53
|
-
readonly
|
|
54
|
-
readonly
|
|
55
|
-
readonly
|
|
56
|
-
readonly
|
|
57
|
-
readonly
|
|
58
|
-
readonly
|
|
59
|
-
readonly
|
|
53
|
+
readonly 150: "#DBEAFE";
|
|
54
|
+
readonly 200: "#93C5FD";
|
|
55
|
+
readonly 250: "#4DA3FF";
|
|
56
|
+
readonly 300: "#7BBCFF";
|
|
57
|
+
readonly 400: "#3399FF";
|
|
58
|
+
readonly 500: "#0EA5E9";
|
|
59
|
+
readonly 600: "#0284C7";
|
|
60
|
+
readonly 700: "#0265c7";
|
|
61
|
+
readonly 800: "#023ac7";
|
|
60
62
|
readonly 900: "#002B55";
|
|
61
63
|
readonly 950: "#102A43";
|
|
62
64
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/primitives/colors.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/primitives/colors.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiJT,CAAC"}
|
|
@@ -25,11 +25,11 @@ export const colors = {
|
|
|
25
25
|
300: '#9EA2EA',
|
|
26
26
|
400: '#7B80D8',
|
|
27
27
|
500: '#4C4F8F',
|
|
28
|
-
600: '#
|
|
29
|
-
700: '#
|
|
30
|
-
800: '#
|
|
31
|
-
900: '#
|
|
32
|
-
950: '#
|
|
28
|
+
600: '#3c2d9e',
|
|
29
|
+
700: '#2e156e',
|
|
30
|
+
800: '#2f106c',
|
|
31
|
+
900: '#190947',
|
|
32
|
+
950: '#160537',
|
|
33
33
|
},
|
|
34
34
|
vellira: {
|
|
35
35
|
25: '#FDFCFF',
|
|
@@ -50,13 +50,15 @@ export const colors = {
|
|
|
50
50
|
info: {
|
|
51
51
|
50: '#F0F9FF',
|
|
52
52
|
100: '#EFF6FF',
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
53
|
+
150: '#DBEAFE',
|
|
54
|
+
200: '#93C5FD',
|
|
55
|
+
250: '#4DA3FF',
|
|
56
|
+
300: '#7BBCFF',
|
|
57
|
+
400: '#3399FF',
|
|
58
|
+
500: '#0EA5E9',
|
|
59
|
+
600: '#0284C7',
|
|
60
|
+
700: '#0265c7',
|
|
61
|
+
800: '#023ac7',
|
|
60
62
|
900: '#002B55',
|
|
61
63
|
950: '#102A43',
|
|
62
64
|
},
|