@sage/design-tokens 17.0.1 → 17.1.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/css/components/profile.css +20 -0
- package/css/dark.css +1 -0
- package/css/light.css +1 -0
- package/js/common/components/button.js +58 -58
- package/js/common/components/container.js +5 -5
- package/js/common/components/focus.js +4 -4
- package/js/common/components/input.js +47 -47
- package/js/common/components/link.js +8 -8
- package/js/common/components/logo.js +4 -4
- package/js/common/components/message.js +19 -19
- package/js/common/components/nav.js +10 -10
- package/js/common/components/pill.js +52 -52
- package/js/common/components/popover.js +12 -12
- package/js/common/components/profile.d.ts +42 -0
- package/js/common/components/profile.js +73 -53
- package/js/common/components/progress.js +2 -2
- package/js/common/components/tab.js +5 -5
- package/js/common/components/table.js +1 -1
- package/js/common/dark.d.ts +1 -0
- package/js/common/dark.js +1 -0
- package/js/common/light.d.ts +1 -0
- package/js/common/light.js +1 -0
- package/js/es6/components/button.js +58 -58
- package/js/es6/components/container.js +5 -5
- package/js/es6/components/focus.js +4 -4
- package/js/es6/components/input.js +47 -47
- package/js/es6/components/link.js +8 -8
- package/js/es6/components/logo.js +4 -4
- package/js/es6/components/message.js +19 -19
- package/js/es6/components/nav.js +10 -10
- package/js/es6/components/pill.js +52 -52
- package/js/es6/components/popover.js +12 -12
- package/js/es6/components/profile.d.ts +21 -0
- package/js/es6/components/profile.js +73 -53
- package/js/es6/components/progress.js +2 -2
- package/js/es6/components/tab.js +5 -5
- package/js/es6/components/table.js +1 -1
- package/js/es6/dark.d.ts +2 -0
- package/js/es6/dark.js +1 -0
- package/js/es6/light.d.ts +2 -0
- package/js/es6/light.js +1 -0
- package/json/components/button.json +58 -58
- package/json/components/container.json +5 -5
- package/json/components/focus.json +4 -4
- package/json/components/input.json +47 -47
- package/json/components/link.json +8 -8
- package/json/components/logo.json +4 -4
- package/json/components/message.json +19 -19
- package/json/components/nav.json +10 -10
- package/json/components/pill.json +52 -52
- package/json/components/popover.json +12 -12
- package/json/components/profile.json +73 -53
- package/json/components/progress.json +2 -2
- package/json/components/tab.json +5 -5
- package/json/components/table.json +1 -1
- package/json/dark.json +1 -0
- package/json/light.json +1 -0
- package/package.json +1 -1
- package/scss/components/profile.scss +20 -0
- package/scss/dark.scss +1 -0
- package/scss/light.scss +1 -0
|
@@ -3,124 +3,124 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
module.exports.pillGenericNone = "var(--mode-color-none)";
|
|
6
|
-
module.exports.pillGenericLabelDefault = "var(--mode-color-status-txt-
|
|
7
|
-
module.exports.pillGenericLabelHover = "var(--mode-color-status-txt-
|
|
8
|
-
module.exports.pillGenericLabelAltDefault = "var(--mode-color-status-txt-
|
|
9
|
-
module.exports.pillGenericLabelAltHover = "var(--mode-color-status-txt-
|
|
10
|
-
module.exports.pillGenericInverseLabelDefault = "var(--mode-color-status-txt-inverse-
|
|
11
|
-
module.exports.pillGenericInverseLabelHover = "var(--mode-color-status-txt-inverse-
|
|
12
|
-
module.exports.pillGenericInverseLabelAltDefault = "var(--mode-color-status-txt-inverse-
|
|
13
|
-
module.exports.pillGenericInverseLabelAltHover = "var(--mode-color-status-txt-inverse-
|
|
6
|
+
module.exports.pillGenericLabelDefault = "var(--mode-color-status-txt-with-default)";
|
|
7
|
+
module.exports.pillGenericLabelHover = "var(--mode-color-status-txt-with-hover)";
|
|
8
|
+
module.exports.pillGenericLabelAltDefault = "var(--mode-color-status-txt-with-default-alt)";
|
|
9
|
+
module.exports.pillGenericLabelAltHover = "var(--mode-color-status-txt-with-default-alt)";
|
|
10
|
+
module.exports.pillGenericInverseLabelDefault = "var(--mode-color-status-txt-inverse-with-default)";
|
|
11
|
+
module.exports.pillGenericInverseLabelHover = "var(--mode-color-status-txt-inverse-with-hover)";
|
|
12
|
+
module.exports.pillGenericInverseLabelAltDefault = "var(--mode-color-status-txt-inverse-with-default-alt)";
|
|
13
|
+
module.exports.pillGenericInverseLabelAltHover = "var(--mode-color-status-txt-inverse-with-default-alt)";
|
|
14
14
|
module.exports.pillSwatchesTealBgDefault = "var(--mode-color-status-custom-teal-default)";
|
|
15
|
-
module.exports.pillSwatchesTealBgAltDefault = "var(--mode-color-status-custom-teal-
|
|
16
|
-
module.exports.pillSwatchesTealBgAltHover = "var(--mode-color-status-custom-teal-
|
|
15
|
+
module.exports.pillSwatchesTealBgAltDefault = "var(--mode-color-status-custom-teal-default-alt)";
|
|
16
|
+
module.exports.pillSwatchesTealBgAltHover = "var(--mode-color-status-custom-teal-hover-alt)";
|
|
17
17
|
module.exports.pillSwatchesTealBgHover = "var(--mode-color-status-custom-teal-hover)";
|
|
18
18
|
module.exports.pillSwatchesTealBorderDefault = "var(--mode-color-status-custom-teal-default)";
|
|
19
19
|
module.exports.pillSwatchesLimeBgDefault = "var(--mode-color-status-custom-lime-default)";
|
|
20
|
-
module.exports.pillSwatchesLimeBgAltDefault = "var(--mode-color-status-custom-lime-
|
|
21
|
-
module.exports.pillSwatchesLimeBgAltHover = "var(--mode-color-status-custom-lime-
|
|
20
|
+
module.exports.pillSwatchesLimeBgAltDefault = "var(--mode-color-status-custom-lime-default-alt)";
|
|
21
|
+
module.exports.pillSwatchesLimeBgAltHover = "var(--mode-color-status-custom-lime-hover-alt)";
|
|
22
22
|
module.exports.pillSwatchesLimeBgHover = "var(--mode-color-status-custom-lime-hover)";
|
|
23
23
|
module.exports.pillSwatchesLimeBorderDefault = "var(--mode-color-status-custom-lime-default)";
|
|
24
24
|
module.exports.pillSwatchesPinkBgDefault = "var(--mode-color-status-custom-pink-default)";
|
|
25
|
-
module.exports.pillSwatchesPinkBgAltDefault = "var(--mode-color-status-custom-pink-
|
|
26
|
-
module.exports.pillSwatchesPinkBgAltHover = "var(--mode-color-status-custom-pink-
|
|
25
|
+
module.exports.pillSwatchesPinkBgAltDefault = "var(--mode-color-status-custom-pink-default-alt)";
|
|
26
|
+
module.exports.pillSwatchesPinkBgAltHover = "var(--mode-color-status-custom-pink-hover-alt)";
|
|
27
27
|
module.exports.pillSwatchesPinkBgHover = "var(--mode-color-status-custom-pink-hover)";
|
|
28
28
|
module.exports.pillSwatchesPinkBorderDefault = "var(--mode-color-status-custom-pink-default)";
|
|
29
29
|
module.exports.pillSwatchesSlateBgDefault = "var(--mode-color-status-custom-slate-default)";
|
|
30
|
-
module.exports.pillSwatchesSlateBgAltDefault = "var(--mode-color-status-custom-slate-
|
|
31
|
-
module.exports.pillSwatchesSlateBgAltHover = "var(--mode-color-status-custom-slate-
|
|
30
|
+
module.exports.pillSwatchesSlateBgAltDefault = "var(--mode-color-status-custom-slate-default-alt)";
|
|
31
|
+
module.exports.pillSwatchesSlateBgAltHover = "var(--mode-color-status-custom-slate-hover-alt)";
|
|
32
32
|
module.exports.pillSwatchesSlateBgHover = "var(--mode-color-status-custom-slate-hover)";
|
|
33
33
|
module.exports.pillSwatchesSlateBorderDefault = "var(--mode-color-status-custom-slate-default)";
|
|
34
34
|
module.exports.pillSwatchesOrangeBgDefault = "var(--mode-color-status-warning-default)";
|
|
35
|
-
module.exports.pillSwatchesOrangeBgAltDefault = "var(--mode-color-status-warning-
|
|
36
|
-
module.exports.pillSwatchesOrangeBgAltHover = "var(--mode-color-status-warning-
|
|
35
|
+
module.exports.pillSwatchesOrangeBgAltDefault = "var(--mode-color-status-warning-default-alt)";
|
|
36
|
+
module.exports.pillSwatchesOrangeBgAltHover = "var(--mode-color-status-warning-hover-alt)";
|
|
37
37
|
module.exports.pillSwatchesOrangeBgHover = "var(--mode-color-status-warning-hover)";
|
|
38
38
|
module.exports.pillSwatchesOrangeBorderDefault = "var(--mode-color-status-warning-default)";
|
|
39
39
|
module.exports.pillSwatchesRedBgDefault = "var(--mode-color-status-negative-default)";
|
|
40
|
-
module.exports.pillSwatchesRedBgAltDefault = "var(--mode-color-status-negative-
|
|
41
|
-
module.exports.pillSwatchesRedBgAltHover = "var(--mode-color-status-negative-
|
|
40
|
+
module.exports.pillSwatchesRedBgAltDefault = "var(--mode-color-status-negative-default-alt)";
|
|
41
|
+
module.exports.pillSwatchesRedBgAltHover = "var(--mode-color-status-negative-hover-alt)";
|
|
42
42
|
module.exports.pillSwatchesRedBgHover = "var(--mode-color-status-negative-hover)";
|
|
43
43
|
module.exports.pillSwatchesRedBorderDefault = "var(--mode-color-status-negative-default)";
|
|
44
44
|
module.exports.pillSwatchesGrayBgDefault = "var(--mode-color-status-neutral-default)";
|
|
45
|
-
module.exports.pillSwatchesGrayBgAltDefault = "var(--mode-color-status-neutral-
|
|
46
|
-
module.exports.pillSwatchesGrayBgAltHover = "var(--mode-color-status-neutral-
|
|
45
|
+
module.exports.pillSwatchesGrayBgAltDefault = "var(--mode-color-status-neutral-default-alt)";
|
|
46
|
+
module.exports.pillSwatchesGrayBgAltHover = "var(--mode-color-status-neutral-hover-alt)";
|
|
47
47
|
module.exports.pillSwatchesGrayBgHover = "var(--mode-color-status-neutral-hover)";
|
|
48
48
|
module.exports.pillSwatchesGrayBorderDefault = "var(--mode-color-status-neutral-default)";
|
|
49
49
|
module.exports.pillSwatchesPurpleBgDefault = "var(--mode-color-status-priority-default)";
|
|
50
|
-
module.exports.pillSwatchesPurpleBgAltDefault = "var(--mode-color-status-priority-
|
|
51
|
-
module.exports.pillSwatchesPurpleBgAltHover = "var(--mode-color-status-priority-
|
|
50
|
+
module.exports.pillSwatchesPurpleBgAltDefault = "var(--mode-color-status-priority-default-alt)";
|
|
51
|
+
module.exports.pillSwatchesPurpleBgAltHover = "var(--mode-color-status-priority-hover-alt)";
|
|
52
52
|
module.exports.pillSwatchesPurpleBgHover = "var(--mode-color-status-priority-hover)";
|
|
53
53
|
module.exports.pillSwatchesPurpleBorderDefault = "var(--mode-color-status-priority-default)";
|
|
54
54
|
module.exports.pillSwatchesGreenBgDefault = "var(--mode-color-status-positive-default)";
|
|
55
|
-
module.exports.pillSwatchesGreenBgAltHover = "var(--mode-color-status-positive-
|
|
56
|
-
module.exports.pillSwatchesGreenBgAltDefault = "var(--mode-color-status-positive-
|
|
55
|
+
module.exports.pillSwatchesGreenBgAltHover = "var(--mode-color-status-positive-hover-alt)";
|
|
56
|
+
module.exports.pillSwatchesGreenBgAltDefault = "var(--mode-color-status-positive-default-alt)";
|
|
57
57
|
module.exports.pillSwatchesGreenBgHover = "var(--mode-color-status-positive-hover)";
|
|
58
58
|
module.exports.pillSwatchesGreenBorderDefault = "var(--mode-color-status-positive-default)";
|
|
59
59
|
module.exports.pillSwatchesBlueBgDefault = "var(--mode-color-status-info-default)";
|
|
60
|
-
module.exports.pillSwatchesBlueBgAltDefault = "var(--mode-color-status-info-
|
|
61
|
-
module.exports.pillSwatchesBlueBgAltHover = "var(--mode-color-status-info-
|
|
60
|
+
module.exports.pillSwatchesBlueBgAltDefault = "var(--mode-color-status-info-default-alt)";
|
|
61
|
+
module.exports.pillSwatchesBlueBgAltHover = "var(--mode-color-status-info-hover-alt)";
|
|
62
62
|
module.exports.pillSwatchesBlueBgHover = "var(--mode-color-status-info-hover)";
|
|
63
63
|
module.exports.pillSwatchesBlueBorderDefault = "var(--mode-color-status-info-default)";
|
|
64
64
|
module.exports.pillErrorBgDefault = "var(--mode-color-status-negative-default)";
|
|
65
|
-
module.exports.pillErrorBgAltDefault = "var(--mode-color-status-negative-
|
|
66
|
-
module.exports.pillErrorBgAltHover = "var(--mode-color-status-negative-
|
|
65
|
+
module.exports.pillErrorBgAltDefault = "var(--mode-color-status-negative-default-alt)";
|
|
66
|
+
module.exports.pillErrorBgAltHover = "var(--mode-color-status-negative-hover-alt)";
|
|
67
67
|
module.exports.pillErrorBgHover = "var(--mode-color-status-negative-hover)";
|
|
68
68
|
module.exports.pillErrorBorderDefault = "var(--mode-color-status-negative-default)";
|
|
69
69
|
module.exports.pillErrorInverseBgDefault = "var(--mode-color-status-negative-inverse-default)";
|
|
70
|
-
module.exports.pillErrorInverseBgAltDefault = "var(--mode-color-status-negative-inverse-
|
|
71
|
-
module.exports.pillErrorInverseBgAltHover = "var(--mode-color-status-negative-inverse-
|
|
70
|
+
module.exports.pillErrorInverseBgAltDefault = "var(--mode-color-status-negative-inverse-default-alt)";
|
|
71
|
+
module.exports.pillErrorInverseBgAltHover = "var(--mode-color-status-negative-inverse-hover-alt)";
|
|
72
72
|
module.exports.pillErrorInverseBgHover = "var(--mode-color-status-negative-inverse-hover)";
|
|
73
73
|
module.exports.pillErrorInverseBorderDefault = "var(--mode-color-status-negative-inverse-default)";
|
|
74
74
|
module.exports.pillPriorityBgDefault = "var(--mode-color-status-priority-default)";
|
|
75
|
-
module.exports.pillPriorityBgAltDefault = "var(--mode-color-status-priority-
|
|
76
|
-
module.exports.pillPriorityBgAltHover = "var(--mode-color-status-priority-
|
|
75
|
+
module.exports.pillPriorityBgAltDefault = "var(--mode-color-status-priority-default-alt)";
|
|
76
|
+
module.exports.pillPriorityBgAltHover = "var(--mode-color-status-priority-hover-alt)";
|
|
77
77
|
module.exports.pillPriorityBgHover = "var(--mode-color-status-priority-hover)";
|
|
78
78
|
module.exports.pillPriorityBorderDefault = "var(--mode-color-status-priority-default)";
|
|
79
79
|
module.exports.pillPriorityInverseBgDefault = "var(--mode-color-status-priority-default)";
|
|
80
|
-
module.exports.pillPriorityInverseBgAltDefault = "var(--mode-color-status-priority-inverse-
|
|
81
|
-
module.exports.pillPriorityInverseBgAltHover = "var(--mode-color-status-priority-inverse-
|
|
80
|
+
module.exports.pillPriorityInverseBgAltDefault = "var(--mode-color-status-priority-inverse-default-alt)";
|
|
81
|
+
module.exports.pillPriorityInverseBgAltHover = "var(--mode-color-status-priority-inverse-hover-alt)";
|
|
82
82
|
module.exports.pillPriorityInverseBgHover = "var(--mode-color-status-priority-hover)";
|
|
83
83
|
module.exports.pillPriorityInverseBorderDefault = "var(--mode-color-status-priority-default)";
|
|
84
84
|
module.exports.pillInfoBgDefault = "var(--mode-color-status-info-default)";
|
|
85
|
-
module.exports.pillInfoBgAltDefault = "var(--mode-color-status-info-
|
|
86
|
-
module.exports.pillInfoBgAltHover = "var(--mode-color-status-info-
|
|
85
|
+
module.exports.pillInfoBgAltDefault = "var(--mode-color-status-info-default-alt)";
|
|
86
|
+
module.exports.pillInfoBgAltHover = "var(--mode-color-status-info-hover-alt)";
|
|
87
87
|
module.exports.pillInfoBgHover = "var(--mode-color-status-info-hover)";
|
|
88
88
|
module.exports.pillInfoBorderDefault = "var(--mode-color-status-info-default)";
|
|
89
89
|
module.exports.pillInfoInverseBgDefault = "var(--mode-color-status-info-inverse-default)";
|
|
90
|
-
module.exports.pillInfoInverseBgAltDefault = "var(--mode-color-status-info-inverse-
|
|
91
|
-
module.exports.pillInfoInverseBgAltHover = "var(--mode-color-status-info-inverse-
|
|
90
|
+
module.exports.pillInfoInverseBgAltDefault = "var(--mode-color-status-info-inverse-default-alt)";
|
|
91
|
+
module.exports.pillInfoInverseBgAltHover = "var(--mode-color-status-info-inverse-hover-alt)";
|
|
92
92
|
module.exports.pillInfoInverseBgHover = "var(--mode-color-status-info-inverse-hover)";
|
|
93
93
|
module.exports.pillInfoInverseBorderDefault = "var(--mode-color-status-info-inverse-default)";
|
|
94
94
|
module.exports.pillNeutralBgDefault = "var(--mode-color-status-neutral-default)";
|
|
95
|
-
module.exports.pillNeutralBgAltDefault = "var(--mode-color-status-neutral-
|
|
96
|
-
module.exports.pillNeutralBgAltHover = "var(--mode-color-status-neutral-
|
|
95
|
+
module.exports.pillNeutralBgAltDefault = "var(--mode-color-status-neutral-default-alt)";
|
|
96
|
+
module.exports.pillNeutralBgAltHover = "var(--mode-color-status-neutral-hover-alt)";
|
|
97
97
|
module.exports.pillNeutralBgHover = "var(--mode-color-status-neutral-hover)";
|
|
98
98
|
module.exports.pillNeutralBorderDefault = "var(--mode-color-status-neutral-default)";
|
|
99
99
|
module.exports.pillNeutralInverseBgDefault = "var(--mode-color-status-neutral-inverse-default)";
|
|
100
|
-
module.exports.pillNeutralInverseBgAltDefault = "var(--mode-color-status-neutral-inverse-
|
|
101
|
-
module.exports.pillNeutralInverseBgAltHover = "var(--mode-color-status-neutral-inverse-
|
|
100
|
+
module.exports.pillNeutralInverseBgAltDefault = "var(--mode-color-status-neutral-inverse-default-alt)";
|
|
101
|
+
module.exports.pillNeutralInverseBgAltHover = "var(--mode-color-status-neutral-inverse-hover-alt)";
|
|
102
102
|
module.exports.pillNeutralInverseBgHover = "var(--mode-color-status-neutral-inverse-hover)";
|
|
103
103
|
module.exports.pillNeutralInverseBorderDefault = "var(--mode-color-status-neutral-inverse-default)";
|
|
104
104
|
module.exports.pillReadonlyBgDefault = "var(--mode-color-status-inactive-default)";
|
|
105
105
|
module.exports.pillReadonlyBorderDefault = "var(--mode-color-status-inactive-default)";
|
|
106
106
|
module.exports.pillReadonlyLabel = "var(--mode-color-generic-txt-soft)";
|
|
107
107
|
module.exports.pillPositiveBgDefault = "var(--mode-color-status-positive-default)";
|
|
108
|
-
module.exports.pillPositiveBgAltDefault = "var(--mode-color-status-positive-
|
|
109
|
-
module.exports.pillPositiveBgAltHover = "var(--mode-color-status-positive-
|
|
108
|
+
module.exports.pillPositiveBgAltDefault = "var(--mode-color-status-positive-default-alt)";
|
|
109
|
+
module.exports.pillPositiveBgAltHover = "var(--mode-color-status-positive-hover-alt)";
|
|
110
110
|
module.exports.pillPositiveBgHover = "var(--mode-color-status-positive-hover)";
|
|
111
111
|
module.exports.pillPositiveBorderDefault = "var(--mode-color-status-positive-default)";
|
|
112
112
|
module.exports.pillPositiveInverseBgDefault = "var(--mode-color-status-positive-inverse-default)";
|
|
113
|
-
module.exports.pillPositiveInverseBgAltDefault = "var(--mode-color-status-positive-inverse-
|
|
114
|
-
module.exports.pillPositiveInverseBgAltHover = "var(--mode-color-status-positive-inverse-
|
|
113
|
+
module.exports.pillPositiveInverseBgAltDefault = "var(--mode-color-status-positive-inverse-default-alt)";
|
|
114
|
+
module.exports.pillPositiveInverseBgAltHover = "var(--mode-color-status-positive-inverse-hover-alt)";
|
|
115
115
|
module.exports.pillPositiveInverseBgHover = "var(--mode-color-status-positive-inverse-hover)";
|
|
116
116
|
module.exports.pillPositiveInverseBorderDefault = "var(--mode-color-status-positive-inverse-default)";
|
|
117
117
|
module.exports.pillWarnBgDefault = "var(--mode-color-status-warning-default)";
|
|
118
|
-
module.exports.pillWarnBgAltDefault = "var(--mode-color-status-warning-
|
|
119
|
-
module.exports.pillWarnBgAltHover = "var(--mode-color-status-warning-
|
|
118
|
+
module.exports.pillWarnBgAltDefault = "var(--mode-color-status-warning-default-alt)";
|
|
119
|
+
module.exports.pillWarnBgAltHover = "var(--mode-color-status-warning-hover-alt)";
|
|
120
120
|
module.exports.pillWarnBgHover = "var(--mode-color-status-warning-hover)";
|
|
121
121
|
module.exports.pillWarnBorderDefault = "var(--mode-color-status-warning-default)";
|
|
122
122
|
module.exports.pillWarnInverseBgDefault = "var(--mode-color-status-warning-inverse-default)";
|
|
123
|
-
module.exports.pillWarnInverseBgAltDefault = "var(--mode-color-status-warning-inverse-
|
|
124
|
-
module.exports.pillWarnInverseBgAltHover = "var(--mode-color-status-warning-inverse-
|
|
123
|
+
module.exports.pillWarnInverseBgAltDefault = "var(--mode-color-status-warning-inverse-default-alt)";
|
|
124
|
+
module.exports.pillWarnInverseBgAltHover = "var(--mode-color-status-warning-inverse-hover-alt)";
|
|
125
125
|
module.exports.pillWarnInverseBgHover = "var(--mode-color-status-warning-inverse-hover)";
|
|
126
126
|
module.exports.pillWarnInverseBorderDefault = "var(--mode-color-status-warning-inverse-default)";
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
* Copyright © 2025 The Sage Group plc or its licensors. All Rights reserved
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
module.exports.popoverSizeMenuMinwidthS = "var(--container-size-
|
|
6
|
-
module.exports.popoverSizeMenuMinwidthM = "var(--container-size-
|
|
7
|
-
module.exports.popoverSizeMenuMinwidthL = "var(--container-size-
|
|
8
|
-
module.exports.popoverSizeMenuMaxwidthS = "var(--container-size-
|
|
9
|
-
module.exports.popoverSizeMenuMaxwidthM = "var(--container-size-
|
|
10
|
-
module.exports.popoverSizeMenuMaxwidthL = "var(--container-size-
|
|
5
|
+
module.exports.popoverSizeMenuMinwidthS = "var(--container-size-fluid-items-m} / )";
|
|
6
|
+
module.exports.popoverSizeMenuMinwidthM = "var(--container-size-fluid-items-xs)";
|
|
7
|
+
module.exports.popoverSizeMenuMinwidthL = "var(--container-size-fluid-items-s)";
|
|
8
|
+
module.exports.popoverSizeMenuMaxwidthS = "var(--container-size-fluid-items-m)";
|
|
9
|
+
module.exports.popoverSizeMenuMaxwidthM = "var(--container-size-fluid-items-l)";
|
|
10
|
+
module.exports.popoverSizeMenuMaxwidthL = "var(--container-size-fluid-items-xl)";
|
|
11
11
|
module.exports.popoverBgActive = "var(--mode-color-action-grayscale-active)";
|
|
12
|
-
module.exports.popoverBgActiveAlt = "var(--mode-color-action-grayscale-
|
|
12
|
+
module.exports.popoverBgActiveAlt = "var(--mode-color-action-grayscale-hover-alt)";
|
|
13
13
|
module.exports.popoverBgDefault = "var(--mode-color-generic-bg-nought)";
|
|
14
|
-
module.exports.popoverBgHover = "var(--mode-color-action-grayscale-
|
|
15
|
-
module.exports.popoverLabelActive = "var(--mode-color-action-grayscale-
|
|
16
|
-
module.exports.popoverLabelActiveAlt = "var(--mode-color-action-grayscale-
|
|
14
|
+
module.exports.popoverBgHover = "var(--mode-color-action-grayscale-hover-alt)";
|
|
15
|
+
module.exports.popoverLabelActive = "var(--mode-color-action-grayscale-with-active)";
|
|
16
|
+
module.exports.popoverLabelActiveAlt = "var(--mode-color-action-grayscale-with-hover)";
|
|
17
17
|
module.exports.popoverLabelDisabled = "var(--mode-color-action-inactive-txt)";
|
|
18
|
-
module.exports.popoverLabelHover = "var(--mode-color-action-grayscale-
|
|
19
|
-
module.exports.popoverLabelDefault = "var(--mode-color-action-grayscale-
|
|
18
|
+
module.exports.popoverLabelHover = "var(--mode-color-action-grayscale-with-hover)";
|
|
19
|
+
module.exports.popoverLabelDefault = "var(--mode-color-action-grayscale-default-alt)";
|
|
20
20
|
module.exports.popoverSubmenuBgDefault = "var(--mode-color-generic-bg-faint)";
|
|
@@ -44,6 +44,48 @@ declare const tokens: {
|
|
|
44
44
|
"bg-def": DesignToken;
|
|
45
45
|
"border-default": DesignToken;
|
|
46
46
|
"label-default": DesignToken;
|
|
47
|
+
swatches: {
|
|
48
|
+
blue: {
|
|
49
|
+
"bg-default": DesignToken;
|
|
50
|
+
"label-default": DesignToken;
|
|
51
|
+
};
|
|
52
|
+
teal: {
|
|
53
|
+
"bg-default": DesignToken;
|
|
54
|
+
"label-default": DesignToken;
|
|
55
|
+
};
|
|
56
|
+
green: {
|
|
57
|
+
"bg-default": DesignToken;
|
|
58
|
+
"label-default": DesignToken;
|
|
59
|
+
};
|
|
60
|
+
lime: {
|
|
61
|
+
"bg-default": DesignToken;
|
|
62
|
+
"label-default": DesignToken;
|
|
63
|
+
};
|
|
64
|
+
orange: {
|
|
65
|
+
"bg-default": DesignToken;
|
|
66
|
+
"label-default": DesignToken;
|
|
67
|
+
};
|
|
68
|
+
red: {
|
|
69
|
+
"bg-default": DesignToken;
|
|
70
|
+
"label-default": DesignToken;
|
|
71
|
+
};
|
|
72
|
+
pink: {
|
|
73
|
+
"bg-default": DesignToken;
|
|
74
|
+
"label-default": DesignToken;
|
|
75
|
+
};
|
|
76
|
+
purple: {
|
|
77
|
+
"bg-default": DesignToken;
|
|
78
|
+
"label-default": DesignToken;
|
|
79
|
+
};
|
|
80
|
+
slate: {
|
|
81
|
+
"bg-default": DesignToken;
|
|
82
|
+
"label-default": DesignToken;
|
|
83
|
+
};
|
|
84
|
+
gray: {
|
|
85
|
+
"bg-default": DesignToken;
|
|
86
|
+
"label-default": DesignToken;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
47
89
|
font: {
|
|
48
90
|
initials: {
|
|
49
91
|
XS: DesignToken;
|
|
@@ -2,63 +2,83 @@
|
|
|
2
2
|
* Copyright © 2025 The Sage Group plc or its licensors. All Rights reserved
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
module.exports.profileSizeOutsideXs = "var(--global-size-
|
|
6
|
-
module.exports.profileSizeOutsideS = "var(--global-size-
|
|
7
|
-
module.exports.profileSizeOutsideM = "var(--global-size-
|
|
5
|
+
module.exports.profileSizeOutsideXs = "var(--global-size-xs)";
|
|
6
|
+
module.exports.profileSizeOutsideS = "var(--global-size-s)";
|
|
7
|
+
module.exports.profileSizeOutsideM = "var(--global-size-m)";
|
|
8
8
|
module.exports.profileSizeOutsideMl = "56px";
|
|
9
|
-
module.exports.profileSizeOutsideL = "var(--global-size-
|
|
9
|
+
module.exports.profileSizeOutsideL = "var(--global-size-4-xl)";
|
|
10
10
|
module.exports.profileSizeOutsideXl = "104px";
|
|
11
11
|
module.exports.profileSizeOutsideXxl = "128px";
|
|
12
|
-
module.exports.profileSizeInsideXs = "var(--global-size-
|
|
13
|
-
module.exports.profileSizeInsideS = "var(--global-size-
|
|
14
|
-
module.exports.profileSizeInsideM = "var(--global-size-
|
|
15
|
-
module.exports.profileSizeInsideMl = "var(--global-size-
|
|
16
|
-
module.exports.profileSizeInsideL = "var(--global-size-
|
|
17
|
-
module.exports.profileSizeInsideXl = "var(--global-size-
|
|
18
|
-
module.exports.profileSizeInsideXxl = "var(--global-size-
|
|
12
|
+
module.exports.profileSizeInsideXs = "var(--global-size-3-xs)";
|
|
13
|
+
module.exports.profileSizeInsideS = "var(--global-size-2-xs)";
|
|
14
|
+
module.exports.profileSizeInsideM = "var(--global-size-xs)";
|
|
15
|
+
module.exports.profileSizeInsideMl = "var(--global-size-s)";
|
|
16
|
+
module.exports.profileSizeInsideL = "var(--global-size-l)";
|
|
17
|
+
module.exports.profileSizeInsideXl = "var(--global-size-2-xl)";
|
|
18
|
+
module.exports.profileSizeInsideXxl = "var(--global-size-4-xl)";
|
|
19
19
|
module.exports.profileBgAlt = "var(--mode-color-generic-txt-severe)";
|
|
20
20
|
module.exports.profileBgDef = "var(--mode-color-generic-bg-nought)";
|
|
21
21
|
module.exports.profileBorderDefault = "var(--mode-color-generic-fg-moderate)";
|
|
22
22
|
module.exports.profileLabelDefault = "var(--mode-color-generic-txt-severe)";
|
|
23
|
-
module.exports.
|
|
24
|
-
module.exports.
|
|
25
|
-
module.exports.
|
|
26
|
-
module.exports.
|
|
27
|
-
module.exports.
|
|
28
|
-
module.exports.
|
|
29
|
-
module.exports.
|
|
30
|
-
module.exports.
|
|
31
|
-
module.exports.
|
|
32
|
-
module.exports.
|
|
33
|
-
module.exports.
|
|
34
|
-
module.exports.
|
|
35
|
-
module.exports.
|
|
36
|
-
module.exports.
|
|
37
|
-
module.exports.
|
|
38
|
-
module.exports.
|
|
39
|
-
module.exports.
|
|
40
|
-
module.exports.
|
|
41
|
-
module.exports.
|
|
42
|
-
module.exports.
|
|
43
|
-
module.exports.
|
|
44
|
-
module.exports.
|
|
45
|
-
module.exports.
|
|
46
|
-
module.exports.
|
|
47
|
-
module.exports.
|
|
48
|
-
module.exports.
|
|
49
|
-
module.exports.
|
|
50
|
-
module.exports.
|
|
51
|
-
module.exports.
|
|
52
|
-
module.exports.
|
|
53
|
-
module.exports.
|
|
54
|
-
module.exports.
|
|
55
|
-
module.exports.
|
|
56
|
-
module.exports.
|
|
57
|
-
module.exports.
|
|
58
|
-
module.exports.
|
|
59
|
-
module.exports.
|
|
60
|
-
module.exports.
|
|
61
|
-
module.exports.
|
|
62
|
-
module.exports.
|
|
63
|
-
module.exports.
|
|
64
|
-
module.exports.
|
|
23
|
+
module.exports.profileSwatchesBlueBgDefault = "var(--mode-color-status-custom-blue-default-alt)";
|
|
24
|
+
module.exports.profileSwatchesBlueLabelDefault = "var(--mode-color-status-custom-blue-default)";
|
|
25
|
+
module.exports.profileSwatchesTealBgDefault = "var(--mode-color-status-custom-teal-default-alt)";
|
|
26
|
+
module.exports.profileSwatchesTealLabelDefault = "var(--mode-color-status-custom-teal-default)";
|
|
27
|
+
module.exports.profileSwatchesGreenBgDefault = "var(--mode-color-status-custom-green-default-alt)";
|
|
28
|
+
module.exports.profileSwatchesGreenLabelDefault = "var(--mode-color-status-custom-green-default)";
|
|
29
|
+
module.exports.profileSwatchesLimeBgDefault = "var(--mode-color-status-custom-lime-default-alt)";
|
|
30
|
+
module.exports.profileSwatchesLimeLabelDefault = "var(--mode-color-status-custom-lime-default)";
|
|
31
|
+
module.exports.profileSwatchesOrangeBgDefault = "var(--mode-color-status-custom-orange-default-alt)";
|
|
32
|
+
module.exports.profileSwatchesOrangeLabelDefault = "var(--mode-color-status-custom-orange-txt)";
|
|
33
|
+
module.exports.profileSwatchesRedBgDefault = "var(--mode-color-status-custom-red-default-alt)";
|
|
34
|
+
module.exports.profileSwatchesRedLabelDefault = "var(--mode-color-status-custom-red-default)";
|
|
35
|
+
module.exports.profileSwatchesPinkBgDefault = "var(--mode-color-status-custom-pink-default-alt)";
|
|
36
|
+
module.exports.profileSwatchesPinkLabelDefault = "var(--mode-color-status-custom-pink-default)";
|
|
37
|
+
module.exports.profileSwatchesPurpleBgDefault = "var(--mode-color-status-custom-purple-default-alt)";
|
|
38
|
+
module.exports.profileSwatchesPurpleLabelDefault = "var(--mode-color-status-custom-purple-default)";
|
|
39
|
+
module.exports.profileSwatchesSlateBgDefault = "var(--mode-color-status-custom-slate-default-alt)";
|
|
40
|
+
module.exports.profileSwatchesSlateLabelDefault = "var(--mode-color-status-custom-slate-default)";
|
|
41
|
+
module.exports.profileSwatchesGrayBgDefault = "var(--mode-color-status-custom-gray-default-alt)";
|
|
42
|
+
module.exports.profileSwatchesGrayLabelDefault = "var(--mode-color-status-custom-gray-default)";
|
|
43
|
+
module.exports.profileFontInitialsXs = "var(--global-font-static-comp-placeholder-xs)";
|
|
44
|
+
module.exports.profileFontInitialsS = "var(--global-font-static-comp-placeholder-s)";
|
|
45
|
+
module.exports.profileFontInitialsM = "var(--global-font-static-comp-placeholder-m)";
|
|
46
|
+
module.exports.profileFontInitialsMl = "var(--global-font-static-comp-placeholder-ml)";
|
|
47
|
+
module.exports.profileFontInitialsL = "var(--global-font-static-comp-placeholder-l)";
|
|
48
|
+
module.exports.profileFontInitialsXl = "var(--global-font-static-comp-placeholder-xl)";
|
|
49
|
+
module.exports.profileFontInitialsXxl = "var(--global-font-static-comp-placeholder-xxl)";
|
|
50
|
+
module.exports.profileFontDefXs = "var(--global-font-static-comp-regular-s)";
|
|
51
|
+
module.exports.profileFontDefS = "var(--global-font-static-comp-regular-m)";
|
|
52
|
+
module.exports.profileFontDefM = "var(--global-font-static-comp-regular-m)";
|
|
53
|
+
module.exports.profileFontDefMl = "var(--global-font-static-comp-regular-m)";
|
|
54
|
+
module.exports.profileFontDefL = "var(--global-font-static-comp-regular-l)";
|
|
55
|
+
module.exports.profileFontDefXl = "var(--global-font-static-comp-regular-l)";
|
|
56
|
+
module.exports.profileFontDefXxl = "var(--global-font-static-comp-regular-l)";
|
|
57
|
+
module.exports.profileFontHeadingXs = "var(--global-font-static-comp-medium-s)";
|
|
58
|
+
module.exports.profileFontHeadingS = "var(--global-font-static-comp-medium-m)";
|
|
59
|
+
module.exports.profileFontHeadingM = "var(--global-font-static-subheading-l)";
|
|
60
|
+
module.exports.profileFontHeadingMl = "var(--global-font-static-subheading-l)";
|
|
61
|
+
module.exports.profileFontHeadingL = "var(--global-font-static-subheading-l)";
|
|
62
|
+
module.exports.profileFontHeadingXl = "var(--global-font-static-heading-m)";
|
|
63
|
+
module.exports.profileFontHeadingXxl = "var(--global-font-static-heading-l)";
|
|
64
|
+
module.exports.profileFontFluidInitialsXs = "var(--global-font-fluid-comp-placeholder-xs)";
|
|
65
|
+
module.exports.profileFontFluidInitialsS = "var(--global-font-fluid-comp-placeholder-s)";
|
|
66
|
+
module.exports.profileFontFluidInitialsM = "var(--global-font-fluid-comp-placeholder-m)";
|
|
67
|
+
module.exports.profileFontFluidInitialsMl = "var(--global-font-fluid-comp-placeholder-ml)";
|
|
68
|
+
module.exports.profileFontFluidInitialsL = "var(--global-font-fluid-comp-placeholder-l)";
|
|
69
|
+
module.exports.profileFontFluidInitialsXl = "var(--global-font-fluid-comp-placeholder-xl)";
|
|
70
|
+
module.exports.profileFontFluidInitialsXxl = "var(--global-font-fluid-comp-placeholder-xxl)";
|
|
71
|
+
module.exports.profileFontFluidDefXs = "var(--global-font-fluid-comp-regular-s)";
|
|
72
|
+
module.exports.profileFontFluidDefS = "var(--global-font-fluid-comp-regular-m)";
|
|
73
|
+
module.exports.profileFontFluidDefM = "var(--global-font-fluid-comp-regular-m)";
|
|
74
|
+
module.exports.profileFontFluidDefMl = "var(--global-font-fluid-comp-regular-m)";
|
|
75
|
+
module.exports.profileFontFluidDefL = "var(--global-font-fluid-comp-regular-l)";
|
|
76
|
+
module.exports.profileFontFluidDefXl = "var(--global-font-fluid-comp-regular-l)";
|
|
77
|
+
module.exports.profileFontFluidDefXxl = "var(--global-font-fluid-comp-regular-l)";
|
|
78
|
+
module.exports.profileFontFluidHeadingXs = "var(--global-font-fluid-comp-medium-s)";
|
|
79
|
+
module.exports.profileFontFluidHeadingS = "var(--global-font-fluid-comp-medium-m)";
|
|
80
|
+
module.exports.profileFontFluidHeadingM = "var(--global-font-fluid-subheading-l)";
|
|
81
|
+
module.exports.profileFontFluidHeadingMl = "var(--global-font-fluid-subheading-l)";
|
|
82
|
+
module.exports.profileFontFluidHeadingL = "var(--global-font-fluid-subheading-l)";
|
|
83
|
+
module.exports.profileFontFluidHeadingXl = "var(--global-font-fluid-heading-m)";
|
|
84
|
+
module.exports.profileFontFluidHeadingXxl = "var(--global-font-fluid-heading-l)";
|
|
@@ -37,6 +37,6 @@ module.exports.progressStepindicatorBgComplete = "var(--mode-color-status-positi
|
|
|
37
37
|
module.exports.progressStepindicatorBorderActiveOuter = "var(--mode-color-action-grayscale-active)";
|
|
38
38
|
module.exports.progressStepindicatorBorderDefault = "var(--mode-color-generic-fg-firm)";
|
|
39
39
|
module.exports.progressStepindicatorBorderSuccess = "var(--mode-color-status-positive-default)";
|
|
40
|
-
module.exports.progressStepindicatorLabelActive = "var(--mode-color-action-grayscale-
|
|
41
|
-
module.exports.progressStepindicatorLabelComplete = "var(--mode-color-action-grayscale-
|
|
40
|
+
module.exports.progressStepindicatorLabelActive = "var(--mode-color-action-grayscale-with-active)";
|
|
41
|
+
module.exports.progressStepindicatorLabelComplete = "var(--mode-color-action-grayscale-with-active)";
|
|
42
42
|
module.exports.progressStepindicatorLabelDefault = "var(--mode-color-generic-txt-severe)";
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
* Copyright © 2025 The Sage Group plc or its licensors. All Rights reserved
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
module.exports.tabBgActive = "var(--mode-color-action-grayscale-
|
|
5
|
+
module.exports.tabBgActive = "var(--mode-color-action-grayscale-with-active)";
|
|
6
6
|
module.exports.tabBgDefault = "var(--mode-color-none)";
|
|
7
|
-
module.exports.tabBgHover = "var(--mode-color-action-grayscale-
|
|
7
|
+
module.exports.tabBgHover = "var(--mode-color-action-grayscale-hover-alt)";
|
|
8
8
|
module.exports.tabBorderActiveAlt = "var(--mode-color-generic-fg-moderate)";
|
|
9
9
|
module.exports.tabBorderActive = "var(--mode-color-action-grayscale-active)";
|
|
10
10
|
module.exports.tabBorderDefault = "var(--mode-color-generic-fg-moderate)";
|
|
11
11
|
module.exports.tabBorderHover = "var(--mode-color-generic-fg-firm)";
|
|
12
|
-
module.exports.tabIconDefault = "var(--mode-color-action-grayscale-
|
|
13
|
-
module.exports.tabIconHover = "var(--mode-color-action-grayscale-
|
|
12
|
+
module.exports.tabIconDefault = "var(--mode-color-action-grayscale-default-alt)";
|
|
13
|
+
module.exports.tabIconHover = "var(--mode-color-action-grayscale-with-hover)";
|
|
14
14
|
module.exports.tabLabelActive = "var(--mode-color-action-grayscale-active)";
|
|
15
15
|
module.exports.tabIconActive = "var(--mode-color-action-grayscale-active)";
|
|
16
16
|
module.exports.tabLabelDefault = "var(--mode-color-action-grayscale-default)";
|
|
17
|
-
module.exports.tabLabelHover = "var(--mode-color-action-grayscale-
|
|
17
|
+
module.exports.tabLabelHover = "var(--mode-color-action-grayscale-with-hover)";
|
|
18
18
|
module.exports.tabNavBgDefault = "var(--mode-color-generic-bg-nought)";
|
|
19
19
|
module.exports.tabValidationBorderWarning = "var(--mode-color-status-warning-default)";
|
|
20
20
|
module.exports.tabValidationBorderError = "var(--mode-color-status-negative-default)";
|
|
@@ -7,7 +7,7 @@ module.exports.tableHeaderSubtleBgDefault = "var(--mode-color-none)";
|
|
|
7
7
|
module.exports.tableHeaderSubtleBorderDefault = "var(--mode-color-generic-fg-soft)";
|
|
8
8
|
module.exports.tableHeaderSubtleLabelDefault = "var(--mode-color-generic-txt-severe)";
|
|
9
9
|
module.exports.tableHeaderHarshBgAlt = "var(--mode-color-action-grayscale-default)";
|
|
10
|
-
module.exports.tableHeaderHarshBgDefault = "var(--mode-color-action-grayscale-
|
|
10
|
+
module.exports.tableHeaderHarshBgDefault = "var(--mode-color-action-grayscale-default-alt)";
|
|
11
11
|
module.exports.tableHeaderHarshBorderDefault = "var(--mode-color-generic-fg-soft)";
|
|
12
12
|
module.exports.tableHeaderHarshLabelDefault = "var(--mode-color-generic-txt-inverse-severe)";
|
|
13
13
|
module.exports.tableRowBgDefault = "var(--mode-color-generic-bg-nought)";
|
package/js/common/dark.d.ts
CHANGED
package/js/common/dark.js
CHANGED
|
@@ -250,6 +250,7 @@ module.exports.modeColorStatusCustomOrangeDefault = "#e24300";
|
|
|
250
250
|
module.exports.modeColorStatusCustomOrangeDefaultAlt = "#1d0300";
|
|
251
251
|
module.exports.modeColorStatusCustomOrangeHover = "#e5631c";
|
|
252
252
|
module.exports.modeColorStatusCustomOrangeHoverAlt = "#360900";
|
|
253
|
+
module.exports.modeColorStatusCustomOrangeTxt = "#e24300";
|
|
253
254
|
module.exports.modeColorStatusCustomRedDefault = "#f50059";
|
|
254
255
|
module.exports.modeColorStatusCustomRedDefaultAlt = "#1e0005";
|
|
255
256
|
module.exports.modeColorStatusCustomRedHover = "#ff3e6a";
|
package/js/common/light.d.ts
CHANGED
package/js/common/light.js
CHANGED
|
@@ -250,6 +250,7 @@ module.exports.modeColorStatusCustomOrangeDefault = "#d64309";
|
|
|
250
250
|
module.exports.modeColorStatusCustomOrangeDefaultAlt = "#fff7eb";
|
|
251
251
|
module.exports.modeColorStatusCustomOrangeHover = "#b33400";
|
|
252
252
|
module.exports.modeColorStatusCustomOrangeHoverAlt = "#ffeaca";
|
|
253
|
+
module.exports.modeColorStatusCustomOrangeTxt = "#b33400";
|
|
253
254
|
module.exports.modeColorStatusCustomRedDefault = "#db004e";
|
|
254
255
|
module.exports.modeColorStatusCustomRedDefaultAlt = "#fff5f6";
|
|
255
256
|
module.exports.modeColorStatusCustomRedHover = "#c40044";
|