@abgov/design-tokens 1.10.0 → 2.0.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/data/component-design-tokens/accordion-design-tokens.json +92 -11
- package/data/component-design-tokens/badge-design-tokens.json +115 -26
- package/data/component-design-tokens/button-design-tokens.json +151 -66
- package/data/component-design-tokens/callout-design-tokens.json +158 -74
- package/data/component-design-tokens/checkbox-design-tokens.json +33 -14
- package/data/component-design-tokens/container-design-tokens.json +15 -11
- package/data/component-design-tokens/date-picker-design-tokens.json +26 -10
- package/data/component-design-tokens/details-design-tokens.json +28 -5
- package/data/component-design-tokens/drawer-design-tokens.json +42 -35
- package/data/component-design-tokens/dropdown-design-tokens.json +81 -17
- package/data/component-design-tokens/filter-chip-design-tokens.json +92 -0
- package/data/component-design-tokens/footer-design-tokens.json +16 -20
- package/data/component-design-tokens/form-item-design-tokens.json +99 -20
- package/data/component-design-tokens/header-design-tokens.json +189 -235
- package/data/component-design-tokens/icon-button-design-tokens.json +40 -24
- package/data/component-design-tokens/input-design-tokens.json +52 -28
- package/data/component-design-tokens/link-design-tokens.json +115 -0
- package/data/component-design-tokens/modal-design-tokens.json +202 -17
- package/data/component-design-tokens/notification-banner-design-tokens.json +152 -0
- package/data/component-design-tokens/pagination-design-tokens.json +17 -0
- package/data/component-design-tokens/popover-design-tokens.json +23 -9
- package/data/component-design-tokens/push-drawer-design-tokens.json +1 -1
- package/data/component-design-tokens/radio-design-tokens.json +79 -17
- package/data/component-design-tokens/side-menu-design-tokens.json +101 -94
- package/data/component-design-tokens/table-design-tokens.json +159 -9
- package/data/component-design-tokens/tabs-design-tokens.json +74 -16
- package/data/component-design-tokens/temporary-notification-design-tokens.json +112 -0
- package/data/component-design-tokens/text-area-design-tokens.json +29 -15
- package/data/component-design-tokens/tooltip-design-tokens.json +3 -3
- package/data/goa-global-design-tokens.json +571 -145
- package/dist/tokens.css +812 -430
- package/dist/tokens.scss +958 -576
- package/lib/design-tokens.js +43 -9
- package/package.json +1 -1
|
@@ -1,80 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"text-input-border": {
|
|
3
|
-
"value": "inset 0 0 0 {borderWidth.
|
|
3
|
+
"value": "inset 0 0 0 {input.borderWidth.default} {input.color.border.default}",
|
|
4
4
|
"type": "other"
|
|
5
5
|
},
|
|
6
6
|
"text-input-border-disabled": {
|
|
7
|
-
"value": "inset 0 0 0 {borderWidth.
|
|
7
|
+
"value": "inset 0 0 0 {input.borderWidth.default} {input.color.border.disabled}",
|
|
8
8
|
"type": "other"
|
|
9
9
|
},
|
|
10
10
|
"text-input-border-error": {
|
|
11
|
-
"value": "inset 0 0 0 {borderWidth.
|
|
11
|
+
"value": "inset 0 0 0 {input.borderWidth.hover} {input.color.border.error}",
|
|
12
12
|
"type": "other"
|
|
13
13
|
},
|
|
14
14
|
"text-input-border-focus": {
|
|
15
|
-
"value": "0 0 0 {borderWidth.
|
|
15
|
+
"value": "inset 0 0 0 {input.borderWidth.focus} {input.color.border.focus}",
|
|
16
16
|
"type": "other"
|
|
17
17
|
},
|
|
18
18
|
"text-input-border-hover": {
|
|
19
|
-
"value": "inset 0 0 0 {borderWidth.
|
|
19
|
+
"value": "inset 0 0 0 {input.borderWidth.hover} {input.color.border.hover}",
|
|
20
20
|
"type": "other"
|
|
21
21
|
},
|
|
22
22
|
"text-input-border-radius": {
|
|
23
|
-
"value": "{borderRadius.
|
|
23
|
+
"value": "{input.borderRadius.input}",
|
|
24
24
|
"type": "borderRadius"
|
|
25
25
|
},
|
|
26
26
|
"text-input-color-bg": {
|
|
27
|
-
"value": "{color.
|
|
27
|
+
"value": "{input.color.background.default}",
|
|
28
28
|
"type": "color"
|
|
29
29
|
},
|
|
30
30
|
"text-input-color-bg-disabled": {
|
|
31
|
-
"value": "{color.
|
|
31
|
+
"value": "{input.color.background.disabled}",
|
|
32
32
|
"type": "color"
|
|
33
33
|
},
|
|
34
34
|
"text-input-color-icon-disabled": {
|
|
35
|
-
"value": "{color.
|
|
35
|
+
"value": "{input.color.text.disabled}",
|
|
36
36
|
"type": "color"
|
|
37
37
|
},
|
|
38
38
|
"text-input-color-text": {
|
|
39
|
-
"value": "{color.text.default}",
|
|
39
|
+
"value": "{input.color.text.default}",
|
|
40
40
|
"type": "color"
|
|
41
41
|
},
|
|
42
42
|
"text-input-color-text-disabled": {
|
|
43
|
-
"value": "{color.text.
|
|
43
|
+
"value": "{input.color.text.disabled}",
|
|
44
44
|
"type": "color"
|
|
45
45
|
},
|
|
46
46
|
"text-input-color-text-placeholder": {
|
|
47
|
-
"value": "{color.text.
|
|
47
|
+
"value": "{input.color.text.placeholder}",
|
|
48
48
|
"type": "color"
|
|
49
49
|
},
|
|
50
50
|
"text-input-lt-content-color-bg": {
|
|
51
|
-
"value": "{color.greyscale.
|
|
52
|
-
"type": "color"
|
|
53
|
-
},
|
|
54
|
-
"text-input-lt-content-color-text": {
|
|
55
|
-
"value": "{color.text.default}",
|
|
51
|
+
"value": "{color.greyscale.150}",
|
|
56
52
|
"type": "color"
|
|
57
53
|
},
|
|
58
54
|
"text-input-padding": {
|
|
59
|
-
"value": "
|
|
55
|
+
"value": "9px {text-input-padding-lr} 11px",
|
|
60
56
|
"type": "spacing"
|
|
61
57
|
},
|
|
62
58
|
"text-input-padding-lr": {
|
|
63
|
-
"value": "{space.
|
|
59
|
+
"value": "{space.m}",
|
|
64
60
|
"type": "spacing"
|
|
65
61
|
},
|
|
66
62
|
"text-input-space-btw-icon-text": {
|
|
67
63
|
"value": "{space.xs}",
|
|
68
64
|
"type": "spacing"
|
|
69
65
|
},
|
|
70
|
-
"text-input-size-icon": {
|
|
71
|
-
"value": "{iconSize.4}",
|
|
72
|
-
"type": "sizing"
|
|
73
|
-
},
|
|
74
|
-
"text-input-color-icon": {
|
|
75
|
-
"value": "{color.greyscale.black}",
|
|
76
|
-
"type": "color"
|
|
77
|
-
},
|
|
78
66
|
"text-input-transition": {
|
|
79
67
|
"value": "box-shadow 0.05s ease-in",
|
|
80
68
|
"type": "other"
|
|
@@ -82,5 +70,41 @@
|
|
|
82
70
|
"text-input-typography": {
|
|
83
71
|
"value": "{typography.body.m}",
|
|
84
72
|
"type": "other"
|
|
73
|
+
},
|
|
74
|
+
"text-input-height": {
|
|
75
|
+
"value": "56px",
|
|
76
|
+
"type": "sizing"
|
|
77
|
+
},
|
|
78
|
+
"text-input-height-compact": {
|
|
79
|
+
"value": "40px",
|
|
80
|
+
"type": "sizing"
|
|
81
|
+
},
|
|
82
|
+
"text-input-padding-compact-lr": {
|
|
83
|
+
"value": "{space.s}",
|
|
84
|
+
"type": "spacing"
|
|
85
|
+
},
|
|
86
|
+
"text-input-padding-compact": {
|
|
87
|
+
"value": "{space.2xs} {text-input-padding-compact-lr}",
|
|
88
|
+
"type": "spacing"
|
|
89
|
+
},
|
|
90
|
+
"text-input-typography-compact": {
|
|
91
|
+
"value": "{typography.body.s}",
|
|
92
|
+
"type": "other"
|
|
93
|
+
},
|
|
94
|
+
"text-input-space-btw-icon-text-compact": {
|
|
95
|
+
"value": "{space.xs}",
|
|
96
|
+
"type": "spacing"
|
|
97
|
+
},
|
|
98
|
+
"text-input-border-readonly": {
|
|
99
|
+
"value": "inset 0 0 0 {input.borderWidth.default} {input.color.border.readonly}",
|
|
100
|
+
"type": "other"
|
|
101
|
+
},
|
|
102
|
+
"text-input-color-bg-readonly": {
|
|
103
|
+
"value": "{input.color.background.readonly}",
|
|
104
|
+
"type": "color"
|
|
105
|
+
},
|
|
106
|
+
"text-input-lt-content-color-bg-readonly": {
|
|
107
|
+
"value": "{input.color.background.readonly-content}",
|
|
108
|
+
"type": "color"
|
|
85
109
|
}
|
|
86
|
-
}
|
|
110
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"link-typography-xsmall": {
|
|
3
|
+
"value": "{fontWeight.regular} {fontSize.2}/{lineHeight.1} {fontFamily.sans}",
|
|
4
|
+
"type": "other",
|
|
5
|
+
"description": "body.xs - fontSize.2/lineHeight.1"
|
|
6
|
+
},
|
|
7
|
+
"link-typography-small": {
|
|
8
|
+
"value": "{fontWeight.regular} {fontSize.3}/{lineHeight.2} {fontFamily.sans}",
|
|
9
|
+
"type": "other",
|
|
10
|
+
"description": "body.s - fontSize.3/lineHeight.2"
|
|
11
|
+
},
|
|
12
|
+
"link-typography-medium": {
|
|
13
|
+
"value": "{fontWeight.regular} {fontSize.4}/{lineHeight.3} {fontFamily.sans}",
|
|
14
|
+
"type": "other",
|
|
15
|
+
"description": "body.m - fontSize.4/lineHeight.3"
|
|
16
|
+
},
|
|
17
|
+
"link-typography-large": {
|
|
18
|
+
"value": "{fontWeight.regular} {fontSize.6}/{lineHeight.5} {fontFamily.sans}",
|
|
19
|
+
"type": "other",
|
|
20
|
+
"description": "body.l - fontSize.6/lineHeight.5"
|
|
21
|
+
},
|
|
22
|
+
"link-gap": {
|
|
23
|
+
"value": "{space.2xs}",
|
|
24
|
+
"type": "spacing",
|
|
25
|
+
"description": "4px - V1 default gap between text and icons"
|
|
26
|
+
},
|
|
27
|
+
"link-gap-xsmall": {
|
|
28
|
+
"value": "0.125rem",
|
|
29
|
+
"type": "spacing",
|
|
30
|
+
"description": "2px"
|
|
31
|
+
},
|
|
32
|
+
"link-gap-small": {
|
|
33
|
+
"value": "0.1875rem",
|
|
34
|
+
"type": "spacing",
|
|
35
|
+
"description": "3px"
|
|
36
|
+
},
|
|
37
|
+
"link-gap-medium": {
|
|
38
|
+
"value": "{space.2xs}",
|
|
39
|
+
"type": "spacing",
|
|
40
|
+
"description": "4px"
|
|
41
|
+
},
|
|
42
|
+
"link-gap-large": {
|
|
43
|
+
"value": "0.3125rem",
|
|
44
|
+
"type": "spacing",
|
|
45
|
+
"description": "5px"
|
|
46
|
+
},
|
|
47
|
+
"link-icon-size-xsmall": {
|
|
48
|
+
"value": "0.75rem",
|
|
49
|
+
"type": "sizing",
|
|
50
|
+
"description": "12px - 2xsmall"
|
|
51
|
+
},
|
|
52
|
+
"link-icon-size-small": {
|
|
53
|
+
"value": "{iconSize.1}",
|
|
54
|
+
"type": "sizing",
|
|
55
|
+
"description": "16px - xsmall"
|
|
56
|
+
},
|
|
57
|
+
"link-icon-size-medium": {
|
|
58
|
+
"value": "{iconSize.2}",
|
|
59
|
+
"type": "sizing",
|
|
60
|
+
"description": "18px - small"
|
|
61
|
+
},
|
|
62
|
+
"link-icon-size-large": {
|
|
63
|
+
"value": "{iconSize.3}",
|
|
64
|
+
"type": "sizing",
|
|
65
|
+
"description": "20px - medium"
|
|
66
|
+
},
|
|
67
|
+
"link-color-interactive-default": {
|
|
68
|
+
"value": "{color.interactive.default}",
|
|
69
|
+
"type": "color"
|
|
70
|
+
},
|
|
71
|
+
"link-color-interactive-hover": {
|
|
72
|
+
"value": "{color.interactive.hover}",
|
|
73
|
+
"type": "color"
|
|
74
|
+
},
|
|
75
|
+
"link-color-interactive-visited": {
|
|
76
|
+
"value": "{color.interactive.visited}",
|
|
77
|
+
"type": "color"
|
|
78
|
+
},
|
|
79
|
+
"link-color-dark-default": {
|
|
80
|
+
"value": "{color.greyscale.black}",
|
|
81
|
+
"type": "color"
|
|
82
|
+
},
|
|
83
|
+
"link-color-dark-hover": {
|
|
84
|
+
"value": "{color.greyscale.700}",
|
|
85
|
+
"type": "color"
|
|
86
|
+
},
|
|
87
|
+
"link-color-dark-visited": {
|
|
88
|
+
"value": "{color.interactive.visited}",
|
|
89
|
+
"type": "color"
|
|
90
|
+
},
|
|
91
|
+
"link-color-light-default": {
|
|
92
|
+
"value": "{color.text.light}",
|
|
93
|
+
"type": "color"
|
|
94
|
+
},
|
|
95
|
+
"link-color-light-hover": {
|
|
96
|
+
"value": "{color.greyscale.150}",
|
|
97
|
+
"type": "color"
|
|
98
|
+
},
|
|
99
|
+
"link-color-light-visited": {
|
|
100
|
+
"value": "#9D8EBB",
|
|
101
|
+
"type": "color"
|
|
102
|
+
},
|
|
103
|
+
"link-border-radius-focus": {
|
|
104
|
+
"value": "{borderRadius.s}",
|
|
105
|
+
"type": "borderRadius"
|
|
106
|
+
},
|
|
107
|
+
"link-border-focus": {
|
|
108
|
+
"value": "{borderWidth.l} solid {color.interactive.focus}",
|
|
109
|
+
"type": "other"
|
|
110
|
+
},
|
|
111
|
+
"link-focus-offset": {
|
|
112
|
+
"value": "{space.3xs}",
|
|
113
|
+
"type": "spacing"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"modal-border-radius": {
|
|
3
|
-
"value": "{borderRadius.
|
|
4
|
-
"type": "borderRadius"
|
|
3
|
+
"value": "{borderRadius.xl}",
|
|
4
|
+
"type": "borderRadius",
|
|
5
|
+
"description": "Modal container border radius"
|
|
5
6
|
},
|
|
6
7
|
"modal-callout-bar-padding": {
|
|
7
8
|
"value": "{space.xl}",
|
|
@@ -12,16 +13,24 @@
|
|
|
12
13
|
"type": "spacing"
|
|
13
14
|
},
|
|
14
15
|
"modal-content-gap": {
|
|
15
|
-
"value": "
|
|
16
|
-
"type": "spacing"
|
|
16
|
+
"value": "0",
|
|
17
|
+
"type": "spacing",
|
|
18
|
+
"description": "Space below header section"
|
|
17
19
|
},
|
|
18
20
|
"modal-content-gap-small-screen": {
|
|
19
|
-
"value": "
|
|
20
|
-
"type": "spacing"
|
|
21
|
+
"value": "0",
|
|
22
|
+
"type": "spacing",
|
|
23
|
+
"description": "Space below header section on mobile"
|
|
21
24
|
},
|
|
22
25
|
"modal-header-typography": {
|
|
23
|
-
"value":
|
|
24
|
-
|
|
26
|
+
"value": {
|
|
27
|
+
"fontFamily": "{fontFamily.sans}",
|
|
28
|
+
"fontWeight": "{fontWeight.semiBold}",
|
|
29
|
+
"fontSize": "{fontSize.4}",
|
|
30
|
+
"lineHeight": "{lineHeight.4}"
|
|
31
|
+
},
|
|
32
|
+
"type": "typography",
|
|
33
|
+
"description": "Modal heading typography: semibold, 18px, 28px line-height"
|
|
25
34
|
},
|
|
26
35
|
"modal-overlay-color": {
|
|
27
36
|
"value": "{color.greyscale.black}",
|
|
@@ -36,18 +45,194 @@
|
|
|
36
45
|
"type": "spacing"
|
|
37
46
|
},
|
|
38
47
|
"modal-shadow": {
|
|
39
|
-
"value":
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
+
"value": [
|
|
49
|
+
{
|
|
50
|
+
"x": "0",
|
|
51
|
+
"y": "0",
|
|
52
|
+
"blur": "4",
|
|
53
|
+
"spread": "0",
|
|
54
|
+
"color": "rgba(0,0,0,0.1)",
|
|
55
|
+
"type": "dropShadow"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"x": "0",
|
|
59
|
+
"y": "8",
|
|
60
|
+
"blur": "40",
|
|
61
|
+
"spread": "0",
|
|
62
|
+
"color": "rgba(0,0,0,0.2)",
|
|
63
|
+
"type": "dropShadow"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"type": "boxShadow",
|
|
67
|
+
"description": "Two-layer elevation shadow for modal"
|
|
48
68
|
},
|
|
49
69
|
"modal-overlay-opacity": {
|
|
50
70
|
"value": "{opacity.background.modal}",
|
|
51
71
|
"type": "opacity"
|
|
72
|
+
},
|
|
73
|
+
"modal-color-bg": {
|
|
74
|
+
"value": "{color.greyscale.white}",
|
|
75
|
+
"type": "color",
|
|
76
|
+
"description": "Modal background color"
|
|
77
|
+
},
|
|
78
|
+
"modal-pane-width": {
|
|
79
|
+
"value": "90%",
|
|
80
|
+
"type": "sizing",
|
|
81
|
+
"description": "Modal container width"
|
|
82
|
+
},
|
|
83
|
+
"modal-border": {
|
|
84
|
+
"value": "{borderWidth.s} solid {color.greyscale.150}",
|
|
85
|
+
"type": "other",
|
|
86
|
+
"description": "Subtle border for modal container"
|
|
87
|
+
},
|
|
88
|
+
"modal-content-margin": {
|
|
89
|
+
"value": "0",
|
|
90
|
+
"type": "spacing",
|
|
91
|
+
"description": "Content section margin for desktop"
|
|
92
|
+
},
|
|
93
|
+
"modal-content-margin-mobile": {
|
|
94
|
+
"value": "0",
|
|
95
|
+
"type": "spacing",
|
|
96
|
+
"description": "Content section margin for mobile"
|
|
97
|
+
},
|
|
98
|
+
"modal-max-width": {
|
|
99
|
+
"value": "480px",
|
|
100
|
+
"type": "sizing",
|
|
101
|
+
"description": "Modal maximum width"
|
|
102
|
+
},
|
|
103
|
+
"modal-heading-border-bottom": {
|
|
104
|
+
"value": "{borderWidth.s} solid {color.greyscale.150}",
|
|
105
|
+
"type": "other",
|
|
106
|
+
"description": "Heading section bottom border separator"
|
|
107
|
+
},
|
|
108
|
+
"modal-heading-padding": {
|
|
109
|
+
"value": "20px {space.l}",
|
|
110
|
+
"type": "spacing",
|
|
111
|
+
"description": "Heading section padding"
|
|
112
|
+
},
|
|
113
|
+
"modal-content-padding": {
|
|
114
|
+
"value": "{space.l} {space.l} {space.xl} {space.l}",
|
|
115
|
+
"type": "spacing",
|
|
116
|
+
"description": "Content section padding"
|
|
117
|
+
},
|
|
118
|
+
"modal-actions-padding": {
|
|
119
|
+
"value": "0 {space.xl} {space.xl} {space.xl}",
|
|
120
|
+
"type": "spacing",
|
|
121
|
+
"description": "Actions section padding"
|
|
122
|
+
},
|
|
123
|
+
"modal-content-wrapper-padding": {
|
|
124
|
+
"value": "0",
|
|
125
|
+
"type": "spacing",
|
|
126
|
+
"description": "Outer content wrapper padding"
|
|
127
|
+
},
|
|
128
|
+
"modal-scrollable-padding-desktop": {
|
|
129
|
+
"value": "0",
|
|
130
|
+
"type": "spacing",
|
|
131
|
+
"description": "Scrollable component horizontal padding for desktop"
|
|
132
|
+
},
|
|
133
|
+
"modal-scrollable-padding-mobile": {
|
|
134
|
+
"value": "0",
|
|
135
|
+
"type": "spacing",
|
|
136
|
+
"description": "Scrollable component horizontal padding for mobile"
|
|
137
|
+
},
|
|
138
|
+
"modal-callout-heading-padding": {
|
|
139
|
+
"value": "{space.m} {space.l}",
|
|
140
|
+
"type": "spacing",
|
|
141
|
+
"description": "Callout variant heading padding"
|
|
142
|
+
},
|
|
143
|
+
"modal-heading-padding-mobile": {
|
|
144
|
+
"value": "{space.m}",
|
|
145
|
+
"type": "spacing",
|
|
146
|
+
"description": "Heading section padding for mobile (16px all around)"
|
|
147
|
+
},
|
|
148
|
+
"modal-callout-heading-padding-mobile": {
|
|
149
|
+
"value": "{space.m}",
|
|
150
|
+
"type": "spacing",
|
|
151
|
+
"description": "Callout variant heading padding for mobile (16px all around)"
|
|
152
|
+
},
|
|
153
|
+
"modal-content-padding-mobile": {
|
|
154
|
+
"value": "{space.l} {space.m} {space.xl} {space.m}",
|
|
155
|
+
"type": "spacing",
|
|
156
|
+
"description": "Content section padding for mobile (24px top, 16px sides, 32px bottom)"
|
|
157
|
+
},
|
|
158
|
+
"modal-actions-padding-mobile": {
|
|
159
|
+
"value": "0 {space.m} {space.m} {space.m}",
|
|
160
|
+
"type": "spacing",
|
|
161
|
+
"description": "Actions section padding for mobile (0 top, 16px sides and bottom)"
|
|
162
|
+
},
|
|
163
|
+
"modal-callout-information-bg": {
|
|
164
|
+
"value": "{color.info.light}",
|
|
165
|
+
"type": "color",
|
|
166
|
+
"description": "Information callout heading background"
|
|
167
|
+
},
|
|
168
|
+
"modal-callout-information-border": {
|
|
169
|
+
"value": "{color.info.border}",
|
|
170
|
+
"type": "color",
|
|
171
|
+
"description": "Information callout heading border"
|
|
172
|
+
},
|
|
173
|
+
"modal-callout-information-icon": {
|
|
174
|
+
"value": "{color.info.default}",
|
|
175
|
+
"type": "color",
|
|
176
|
+
"description": "Information callout icon color"
|
|
177
|
+
},
|
|
178
|
+
"modal-callout-success-bg": {
|
|
179
|
+
"value": "{color.success.background}",
|
|
180
|
+
"type": "color",
|
|
181
|
+
"description": "Success callout heading background"
|
|
182
|
+
},
|
|
183
|
+
"modal-callout-success-border": {
|
|
184
|
+
"value": "{color.success.border}",
|
|
185
|
+
"type": "color",
|
|
186
|
+
"description": "Success callout heading border"
|
|
187
|
+
},
|
|
188
|
+
"modal-callout-success-icon": {
|
|
189
|
+
"value": "{color.success.default}",
|
|
190
|
+
"type": "color",
|
|
191
|
+
"description": "Success callout icon color"
|
|
192
|
+
},
|
|
193
|
+
"modal-callout-important-bg": {
|
|
194
|
+
"value": "{color.warning.background}",
|
|
195
|
+
"type": "color",
|
|
196
|
+
"description": "Important callout heading background"
|
|
197
|
+
},
|
|
198
|
+
"modal-callout-important-border": {
|
|
199
|
+
"value": "{color.warning.border}",
|
|
200
|
+
"type": "color",
|
|
201
|
+
"description": "Important callout heading border"
|
|
202
|
+
},
|
|
203
|
+
"modal-callout-important-icon": {
|
|
204
|
+
"value": "{color.warning.dark}",
|
|
205
|
+
"type": "color",
|
|
206
|
+
"description": "Important callout icon color"
|
|
207
|
+
},
|
|
208
|
+
"modal-callout-emergency-bg": {
|
|
209
|
+
"value": "{color.emergency.background}",
|
|
210
|
+
"type": "color",
|
|
211
|
+
"description": "Emergency callout heading background"
|
|
212
|
+
},
|
|
213
|
+
"modal-callout-emergency-border": {
|
|
214
|
+
"value": "{color.emergency.border}",
|
|
215
|
+
"type": "color",
|
|
216
|
+
"description": "Emergency callout heading border"
|
|
217
|
+
},
|
|
218
|
+
"modal-callout-emergency-icon": {
|
|
219
|
+
"value": "{color.emergency.default}",
|
|
220
|
+
"type": "color",
|
|
221
|
+
"description": "Emergency callout icon color"
|
|
222
|
+
},
|
|
223
|
+
"modal-callout-event-bg": {
|
|
224
|
+
"value": "{color.info.light}",
|
|
225
|
+
"type": "color",
|
|
226
|
+
"description": "Event callout heading background (uses info colors)"
|
|
227
|
+
},
|
|
228
|
+
"modal-callout-event-border": {
|
|
229
|
+
"value": "{color.info.border}",
|
|
230
|
+
"type": "color",
|
|
231
|
+
"description": "Event callout heading border (uses info colors)"
|
|
232
|
+
},
|
|
233
|
+
"modal-callout-event-icon": {
|
|
234
|
+
"value": "{color.info.default}",
|
|
235
|
+
"type": "color",
|
|
236
|
+
"description": "Event callout icon color"
|
|
52
237
|
}
|
|
53
238
|
}
|
|
@@ -86,5 +86,157 @@
|
|
|
86
86
|
"notification-banner-custom-color-text": {
|
|
87
87
|
"value": "{color.text.light}",
|
|
88
88
|
"type": "color"
|
|
89
|
+
},
|
|
90
|
+
"notification-banner-gap-compact": {
|
|
91
|
+
"value": "{space.xs}",
|
|
92
|
+
"type": "spacing"
|
|
93
|
+
},
|
|
94
|
+
"notification-banner-padding-tb-compact": {
|
|
95
|
+
"value": "{space.m}",
|
|
96
|
+
"type": "spacing"
|
|
97
|
+
},
|
|
98
|
+
"notification-banner-padding-lr-small-screen-compact": {
|
|
99
|
+
"value": "{space.xs}",
|
|
100
|
+
"type": "spacing"
|
|
101
|
+
},
|
|
102
|
+
"notification-banner-padding-lr-medium-screen-compact": {
|
|
103
|
+
"value": "{space.m}",
|
|
104
|
+
"type": "spacing"
|
|
105
|
+
},
|
|
106
|
+
"notification-banner-padding-lr-large-screen-compact": {
|
|
107
|
+
"value": "{space.2xl}",
|
|
108
|
+
"type": "spacing"
|
|
109
|
+
},
|
|
110
|
+
"notification-banner-information-high-color-bg": {
|
|
111
|
+
"value": "{color.info.default}",
|
|
112
|
+
"type": "color"
|
|
113
|
+
},
|
|
114
|
+
"notification-banner-information-high-color-text": {
|
|
115
|
+
"value": "{color.text.light}",
|
|
116
|
+
"type": "color"
|
|
117
|
+
},
|
|
118
|
+
"notification-banner-information-high-color-icon": {
|
|
119
|
+
"value": "{color.greyscale.white}",
|
|
120
|
+
"type": "color"
|
|
121
|
+
},
|
|
122
|
+
"notification-banner-information-low-color-bg": {
|
|
123
|
+
"value": "{color.info.light}",
|
|
124
|
+
"type": "color"
|
|
125
|
+
},
|
|
126
|
+
"notification-banner-information-low-color-text": {
|
|
127
|
+
"value": "{color.info.default}",
|
|
128
|
+
"type": "color"
|
|
129
|
+
},
|
|
130
|
+
"notification-banner-information-low-color-icon": {
|
|
131
|
+
"value": "{color.info.default}",
|
|
132
|
+
"type": "color"
|
|
133
|
+
},
|
|
134
|
+
"notification-banner-information-low-color-border": {
|
|
135
|
+
"value": "{color.info.border}",
|
|
136
|
+
"type": "color"
|
|
137
|
+
},
|
|
138
|
+
"notification-banner-important-high-color-bg": {
|
|
139
|
+
"value": "{color.important.default}",
|
|
140
|
+
"type": "color"
|
|
141
|
+
},
|
|
142
|
+
"notification-banner-important-high-color-text": {
|
|
143
|
+
"value": "{color.important.text-dark}",
|
|
144
|
+
"type": "color"
|
|
145
|
+
},
|
|
146
|
+
"notification-banner-important-high-color-icon": {
|
|
147
|
+
"value": "{color.important.text-dark}",
|
|
148
|
+
"type": "color"
|
|
149
|
+
},
|
|
150
|
+
"notification-banner-important-low-color-bg": {
|
|
151
|
+
"value": "{color.important.light}",
|
|
152
|
+
"type": "color"
|
|
153
|
+
},
|
|
154
|
+
"notification-banner-important-low-color-text": {
|
|
155
|
+
"value": "{color.important.text}",
|
|
156
|
+
"type": "color"
|
|
157
|
+
},
|
|
158
|
+
"notification-banner-important-low-color-icon": {
|
|
159
|
+
"value": "{color.important.text}",
|
|
160
|
+
"type": "color"
|
|
161
|
+
},
|
|
162
|
+
"notification-banner-important-low-color-border": {
|
|
163
|
+
"value": "{color.important.border}",
|
|
164
|
+
"type": "color"
|
|
165
|
+
},
|
|
166
|
+
"notification-banner-emergency-high-color-bg": {
|
|
167
|
+
"value": "{color.emergency.default}",
|
|
168
|
+
"type": "color"
|
|
169
|
+
},
|
|
170
|
+
"notification-banner-emergency-high-color-text": {
|
|
171
|
+
"value": "{color.text.light}",
|
|
172
|
+
"type": "color"
|
|
173
|
+
},
|
|
174
|
+
"notification-banner-emergency-high-color-icon": {
|
|
175
|
+
"value": "{color.greyscale.white}",
|
|
176
|
+
"type": "color"
|
|
177
|
+
},
|
|
178
|
+
"notification-banner-emergency-low-color-bg": {
|
|
179
|
+
"value": "{color.emergency.light}",
|
|
180
|
+
"type": "color"
|
|
181
|
+
},
|
|
182
|
+
"notification-banner-emergency-low-color-text": {
|
|
183
|
+
"value": "{color.emergency.dark}",
|
|
184
|
+
"type": "color"
|
|
185
|
+
},
|
|
186
|
+
"notification-banner-emergency-low-color-icon": {
|
|
187
|
+
"value": "{color.emergency.dark}",
|
|
188
|
+
"type": "color"
|
|
189
|
+
},
|
|
190
|
+
"notification-banner-emergency-low-color-border": {
|
|
191
|
+
"value": "{color.emergency.border}",
|
|
192
|
+
"type": "color"
|
|
193
|
+
},
|
|
194
|
+
"notification-banner-information-high-focus-border": {
|
|
195
|
+
"value": "0 0 0 3px {color.greyscale.white}",
|
|
196
|
+
"type": "other"
|
|
197
|
+
},
|
|
198
|
+
"notification-banner-information-low-focus-border": {
|
|
199
|
+
"value": "0 0 0 3px {color.info.dark}",
|
|
200
|
+
"type": "other"
|
|
201
|
+
},
|
|
202
|
+
"notification-banner-important-high-focus-border": {
|
|
203
|
+
"value": "0 0 0 3px {color.important.text-dark}",
|
|
204
|
+
"type": "other"
|
|
205
|
+
},
|
|
206
|
+
"notification-banner-important-low-focus-border": {
|
|
207
|
+
"value": "0 0 0 3px {color.important.text-dark}",
|
|
208
|
+
"type": "other"
|
|
209
|
+
},
|
|
210
|
+
"notification-banner-emergency-high-focus-border": {
|
|
211
|
+
"value": "0 0 0 3px {color.greyscale.white}",
|
|
212
|
+
"type": "other"
|
|
213
|
+
},
|
|
214
|
+
"notification-banner-emergency-low-focus-border": {
|
|
215
|
+
"value": "0 0 0 3px {color.emergency.dark}",
|
|
216
|
+
"type": "other"
|
|
217
|
+
},
|
|
218
|
+
"notification-banner-information-high-close-bg-hover": {
|
|
219
|
+
"value": "{color.info.dark}",
|
|
220
|
+
"type": "color"
|
|
221
|
+
},
|
|
222
|
+
"notification-banner-information-low-close-bg-hover": {
|
|
223
|
+
"value": "{color.info.border}",
|
|
224
|
+
"type": "color"
|
|
225
|
+
},
|
|
226
|
+
"notification-banner-important-high-close-bg-hover": {
|
|
227
|
+
"value": "{color.important.border}",
|
|
228
|
+
"type": "color"
|
|
229
|
+
},
|
|
230
|
+
"notification-banner-important-low-close-bg-hover": {
|
|
231
|
+
"value": "{color.important.default}",
|
|
232
|
+
"type": "color"
|
|
233
|
+
},
|
|
234
|
+
"notification-banner-emergency-high-close-bg-hover": {
|
|
235
|
+
"value": "{color.emergency.dark}",
|
|
236
|
+
"type": "color"
|
|
237
|
+
},
|
|
238
|
+
"notification-banner-emergency-low-close-bg-hover": {
|
|
239
|
+
"value": "{color.emergency.border}",
|
|
240
|
+
"type": "color"
|
|
89
241
|
}
|
|
90
242
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pagination-gap": {
|
|
3
|
+
"value": "{space.m}",
|
|
4
|
+
"type": "spacing",
|
|
5
|
+
"description": "Gap between page selector and navigation controls"
|
|
6
|
+
},
|
|
7
|
+
"pagination-text-size": {
|
|
8
|
+
"value": "{typography.body.m}",
|
|
9
|
+
"type": "other",
|
|
10
|
+
"description": "Typography for 'Page' and 'of X' labels"
|
|
11
|
+
},
|
|
12
|
+
"pagination-text-color": {
|
|
13
|
+
"value": "{color.text.default}",
|
|
14
|
+
"type": "color",
|
|
15
|
+
"description": "Color for 'Page' and 'of X' labels"
|
|
16
|
+
}
|
|
17
|
+
}
|