@guardian/stand 0.0.58 → 0.0.59

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.
@@ -10,7 +10,7 @@
10
10
  --component-text-area-shared-padding-bottom: 0.5rem;
11
11
  --component-text-area-shared-padding-left: 0.75rem;
12
12
  --component-text-area-shared-height: 144px;
13
- --component-text-area-shared-margin-top: 0.5rem; /** spacing between the input itself and the previous element (label or description) minus the flex gap (default 4px), e.g. if the spacing between label and input should be 12px, then margin-top should be 8px */
13
+ --component-text-area-shared-margin-top: 0.25rem; /** spacing between the input itself and the previous element (label or description) minus the flex gap (default 4px), e.g. if the spacing between label and input should be 8px, then margin-top should be 4px */
14
14
  --component-text-area-shared-border-radius: 0.25rem;
15
15
  --component-text-area-shared-border: 0.0625rem solid #545454;
16
16
  --component-text-area-shared-background-color: #ffffff;
@@ -9,7 +9,7 @@
9
9
  --component-text-input-shared-padding-right: 0.75rem;
10
10
  --component-text-input-shared-padding-bottom: 0;
11
11
  --component-text-input-shared-padding-left: 0.75rem;
12
- --component-text-input-shared-margin-top: 0.5rem; /** spacing between the input itself and the previous element (label or description) minus the flex gap (default 4px), e.g. if the spacing between label and input should be 12px, then margin-top should be 8px */
12
+ --component-text-input-shared-margin-top: 0.25rem; /** spacing between the input itself and the previous element (label or description) minus the flex gap (default 4px), e.g. if the spacing between label and input should be 8px, then margin-top should be 4px */
13
13
  --component-text-input-shared-border-radius: 0.25rem;
14
14
  --component-text-input-shared-border: 0.0625rem solid #545454;
15
15
  --component-text-input-shared-background-color: #ffffff;
@@ -14,6 +14,7 @@
14
14
  --semantic-colors-text-success-inverse: #cde4c9;
15
15
  --semantic-colors-text-information: #00344e;
16
16
  --semantic-colors-text-disabled: #999999;
17
+ --semantic-colors-text-link: #00496c;
17
18
  --semantic-colors-text-green: #24491d;
18
19
  --semantic-colors-text-blue: #092f62;
19
20
  --semantic-colors-text-red: #65170e;
@@ -78,6 +79,7 @@
78
79
  --semantic-colors-fill-warning-weak: #fbeebf;
79
80
  --semantic-colors-fill-information-weak: #e8f0fb;
80
81
  --semantic-colors-fill-error-weak: #f5c6c0;
82
+ --semantic-colors-fill-error-weaker: #fbebe9;
81
83
  --semantic-colors-fill-error-strong: #b42a19;
82
84
  --semantic-colors-fill-success-weak: #cde4c9;
83
85
  --semantic-colors-fill-success-strong: #326528;
@@ -13,7 +13,7 @@ const componentTextArea = {
13
13
  left: "0.75rem"
14
14
  },
15
15
  height: "144px",
16
- marginTop: "0.5rem",
16
+ marginTop: "0.25rem",
17
17
  borderRadius: "0.25rem",
18
18
  border: "0.0625rem solid #545454",
19
19
  backgroundColor: "#ffffff",
@@ -13,7 +13,7 @@ const componentTextArea = {
13
13
  left: "0.75rem"
14
14
  },
15
15
  height: "144px",
16
- marginTop: "0.5rem",
16
+ marginTop: "0.25rem",
17
17
  borderRadius: "0.25rem",
18
18
  border: "0.0625rem solid #545454",
19
19
  backgroundColor: "#ffffff",
@@ -12,7 +12,7 @@ const componentTextInput = {
12
12
  bottom: "0",
13
13
  left: "0.75rem"
14
14
  },
15
- marginTop: "0.5rem",
15
+ marginTop: "0.25rem",
16
16
  borderRadius: "0.25rem",
17
17
  border: "0.0625rem solid #545454",
18
18
  backgroundColor: "#ffffff",
@@ -12,7 +12,7 @@ const componentTextInput = {
12
12
  bottom: "0",
13
13
  left: "0.75rem"
14
14
  },
15
- marginTop: "0.5rem",
15
+ marginTop: "0.25rem",
16
16
  borderRadius: "0.25rem",
17
17
  border: "0.0625rem solid #545454",
18
18
  backgroundColor: "#ffffff",
@@ -15,6 +15,7 @@ const semanticColors = {
15
15
  successInverse: "#cde4c9",
16
16
  information: "#00344e",
17
17
  disabled: "#999999",
18
+ link: "#00496c",
18
19
  green: "#24491d",
19
20
  blue: "#092f62",
20
21
  red: "#65170e",
@@ -85,6 +86,7 @@ const semanticColors = {
85
86
  warningWeak: "#fbeebf",
86
87
  informationWeak: "#e8f0fb",
87
88
  errorWeak: "#f5c6c0",
89
+ errorWeaker: "#fbebe9",
88
90
  errorStrong: "#b42a19",
89
91
  successWeak: "#cde4c9",
90
92
  successStrong: "#326528",
@@ -15,6 +15,7 @@ declare const semanticColors: {
15
15
  successInverse: string;
16
16
  information: string;
17
17
  disabled: string;
18
+ link: string;
18
19
  green: string;
19
20
  blue: string;
20
21
  red: string;
@@ -85,6 +86,7 @@ declare const semanticColors: {
85
86
  warningWeak: string;
86
87
  informationWeak: string;
87
88
  errorWeak: string;
89
+ errorWeaker: string;
88
90
  errorStrong: string;
89
91
  successWeak: string;
90
92
  successStrong: string;
@@ -15,6 +15,7 @@ declare const semanticColors: {
15
15
  successInverse: string;
16
16
  information: string;
17
17
  disabled: string;
18
+ link: string;
18
19
  green: string;
19
20
  blue: string;
20
21
  red: string;
@@ -85,6 +86,7 @@ declare const semanticColors: {
85
86
  warningWeak: string;
86
87
  informationWeak: string;
87
88
  errorWeak: string;
89
+ errorWeaker: string;
88
90
  errorStrong: string;
89
91
  successWeak: string;
90
92
  successStrong: string;
@@ -15,6 +15,7 @@ const semanticColors = {
15
15
  successInverse: "#cde4c9",
16
16
  information: "#00344e",
17
17
  disabled: "#999999",
18
+ link: "#00496c",
18
19
  green: "#24491d",
19
20
  blue: "#092f62",
20
21
  red: "#65170e",
@@ -85,6 +86,7 @@ const semanticColors = {
85
86
  warningWeak: "#fbeebf",
86
87
  informationWeak: "#e8f0fb",
87
88
  errorWeak: "#f5c6c0",
89
+ errorWeaker: "#fbebe9",
88
90
  errorStrong: "#b42a19",
89
91
  successWeak: "#cde4c9",
90
92
  successStrong: "#326528",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guardian/stand",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "repository": {
5
5
  "url": "https://github.com/guardian/stand"
6
6
  },