@workday/canvas-tokens-web 1.3.1 → 2.0.1
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/css/base/_variables.css +1 -15
- package/css/brand/_variables.css +2 -1
- package/css/system/_variables.css +8 -8
- package/dist/common-js/base/index.d.ts +214 -228
- package/dist/common-js/base/index.js +1 -15
- package/dist/common-js/brand/index.d.ts +15 -15
- package/dist/common-js/brand/index.js +1 -1
- package/dist/common-js/index.d.ts +1 -1
- package/dist/common-js/index.js +1 -1
- package/dist/common-js/system/index.d.ts +289 -25
- package/dist/common-js/system/index.js +2 -2
- package/dist/es6/base/index.d.ts +214 -228
- package/dist/es6/base/index.js +1 -15
- package/dist/es6/brand/index.d.ts +15 -15
- package/dist/es6/brand/index.js +1 -1
- package/dist/es6/index.d.ts +1 -1
- package/dist/es6/index.js +1 -1
- package/dist/es6/system/index.d.ts +289 -25
- package/dist/es6/system/index.js +2 -2
- package/less/base/_variables.less +1 -15
- package/less/brand/_variables.less +2 -1
- package/less/system/_variables.less +8 -8
- package/package.json +1 -1
- package/scss/base/_variables.sass +1 -15
- package/scss/base/_variables.scss +1 -15
- package/scss/brand/_variables.sass +2 -1
- package/scss/brand/_variables.scss +2 -1
- package/scss/system/_variables.sass +8 -8
- package/scss/system/_variables.scss +8 -8
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 03 Jul 2024 19:09:19 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
export declare const primary
|
|
6
|
+
export declare const primary: {
|
|
7
7
|
/** #D7EAFC */
|
|
8
8
|
"lightest": "--cnvs-brand-primary-lightest",
|
|
9
9
|
/** #A6D2FF */
|
|
@@ -16,9 +16,9 @@ export declare const primary = {
|
|
|
16
16
|
"darkest": "--cnvs-brand-primary-darkest",
|
|
17
17
|
/** #ffffff */
|
|
18
18
|
"accent": "--cnvs-brand-primary-accent",
|
|
19
|
-
}
|
|
19
|
+
};
|
|
20
20
|
|
|
21
|
-
export declare const alert
|
|
21
|
+
export declare const alert: {
|
|
22
22
|
/** #ffeed9 */
|
|
23
23
|
"lightest": "--cnvs-brand-alert-lightest",
|
|
24
24
|
/** #fcd49f */
|
|
@@ -31,9 +31,9 @@ export declare const alert = {
|
|
|
31
31
|
"darkest": "--cnvs-brand-alert-darkest",
|
|
32
32
|
/** #ffffff */
|
|
33
33
|
"accent": "--cnvs-brand-alert-accent",
|
|
34
|
-
}
|
|
34
|
+
};
|
|
35
35
|
|
|
36
|
-
export declare const error
|
|
36
|
+
export declare const error: {
|
|
37
37
|
/** #ffefee */
|
|
38
38
|
"lightest": "--cnvs-brand-error-lightest",
|
|
39
39
|
/** #FCC9C5 */
|
|
@@ -46,9 +46,9 @@ export declare const error = {
|
|
|
46
46
|
"darkest": "--cnvs-brand-error-darkest",
|
|
47
47
|
/** #ffffff */
|
|
48
48
|
"accent": "--cnvs-brand-error-accent",
|
|
49
|
-
}
|
|
49
|
+
};
|
|
50
50
|
|
|
51
|
-
export declare const success
|
|
51
|
+
export declare const success: {
|
|
52
52
|
/** #ebfff0 */
|
|
53
53
|
"lightest": "--cnvs-brand-success-lightest",
|
|
54
54
|
/** #5fe380 */
|
|
@@ -61,9 +61,9 @@ export declare const success = {
|
|
|
61
61
|
"darkest": "--cnvs-brand-success-darkest",
|
|
62
62
|
/** #ffffff */
|
|
63
63
|
"accent": "--cnvs-brand-success-accent",
|
|
64
|
-
}
|
|
64
|
+
};
|
|
65
65
|
|
|
66
|
-
export declare const neutral
|
|
66
|
+
export declare const neutral: {
|
|
67
67
|
/** #F0F1F2 */
|
|
68
68
|
"lightest": "--cnvs-brand-neutral-lightest",
|
|
69
69
|
/** #e8ebed */
|
|
@@ -76,18 +76,18 @@ export declare const neutral = {
|
|
|
76
76
|
"darkest": "--cnvs-brand-neutral-darkest",
|
|
77
77
|
/** #ffffff */
|
|
78
78
|
"accent": "--cnvs-brand-neutral-accent",
|
|
79
|
-
}
|
|
79
|
+
};
|
|
80
80
|
|
|
81
|
-
export declare const common
|
|
81
|
+
export declare const common: {
|
|
82
82
|
/** #0875E1 */
|
|
83
83
|
"focusOutline": "--cnvs-brand-common-focus-outline",
|
|
84
84
|
/** #de2e21 */
|
|
85
85
|
"errorInner": "--cnvs-brand-common-error-inner",
|
|
86
86
|
/** #ffa126 */
|
|
87
87
|
"alertInner": "--cnvs-brand-common-alert-inner",
|
|
88
|
-
}
|
|
88
|
+
};
|
|
89
89
|
|
|
90
|
-
export declare const gradient
|
|
90
|
+
export declare const gradient: {
|
|
91
91
|
/** linear-gradient(90deg, #0875E1 0%, #005cb9 100%) */
|
|
92
92
|
"primary": "--cnvs-brand-gradient-primary",
|
|
93
|
-
}
|
|
93
|
+
};
|