@guardian/stand 0.0.63 → 0.0.65

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.
Files changed (58) hide show
  1. package/dist/UserFeedbackSummary.cjs +5 -0
  2. package/dist/UserFeedbackSummary.d.cts +5 -0
  3. package/dist/UserFeedbackSummary.d.ts +5 -0
  4. package/dist/UserFeedbackSummary.js +3 -0
  5. package/dist/components/Select/Select.cjs +10 -5
  6. package/dist/components/Select/Select.d.cts +1 -1
  7. package/dist/components/Select/Select.d.ts +1 -1
  8. package/dist/components/Select/Select.js +11 -6
  9. package/dist/components/Select/styles.cjs +13 -5
  10. package/dist/components/Select/styles.d.cts +1 -0
  11. package/dist/components/Select/styles.d.ts +1 -0
  12. package/dist/components/Select/styles.js +13 -6
  13. package/dist/components/UserFeedbackSummary/UserFeedbackSummary.cjs +42 -0
  14. package/dist/components/UserFeedbackSummary/UserFeedbackSummary.d.cts +5 -0
  15. package/dist/components/UserFeedbackSummary/UserFeedbackSummary.d.ts +5 -0
  16. package/dist/components/UserFeedbackSummary/UserFeedbackSummary.js +42 -0
  17. package/dist/components/UserFeedbackSummary/styles.cjs +30 -0
  18. package/dist/components/UserFeedbackSummary/styles.d.cts +9 -0
  19. package/dist/components/UserFeedbackSummary/styles.d.ts +9 -0
  20. package/dist/components/UserFeedbackSummary/styles.js +28 -0
  21. package/dist/components/UserFeedbackSummary/types.d.cts +27 -0
  22. package/dist/components/UserFeedbackSummary/types.d.ts +27 -0
  23. package/dist/index.cjs +2 -0
  24. package/dist/index.d.cts +2 -1
  25. package/dist/index.d.ts +2 -1
  26. package/dist/index.js +2 -1
  27. package/dist/styleD/build/css/base/colors.css +1 -1
  28. package/dist/styleD/build/css/base/typography.css +1 -1
  29. package/dist/styleD/build/css/component/alertBanner.css +1 -1
  30. package/dist/styleD/build/css/component/avatar.css +1 -1
  31. package/dist/styleD/build/css/component/select.css +9 -10
  32. package/dist/styleD/build/css/component/userFeedbackSummary.css +23 -0
  33. package/dist/styleD/build/css/semantic/colors.css +8 -3
  34. package/dist/styleD/build/typescript/base/colors.cjs +1 -1
  35. package/dist/styleD/build/typescript/base/colors.d.cts +1 -1
  36. package/dist/styleD/build/typescript/base/colors.d.ts +1 -1
  37. package/dist/styleD/build/typescript/base/colors.js +1 -1
  38. package/dist/styleD/build/typescript/base/typography.cjs +1 -1
  39. package/dist/styleD/build/typescript/base/typography.d.cts +3 -3
  40. package/dist/styleD/build/typescript/base/typography.d.ts +3 -3
  41. package/dist/styleD/build/typescript/base/typography.js +1 -1
  42. package/dist/styleD/build/typescript/component/alertBanner.cjs +1 -1
  43. package/dist/styleD/build/typescript/component/alertBanner.js +1 -1
  44. package/dist/styleD/build/typescript/component/avatar.cjs +1 -1
  45. package/dist/styleD/build/typescript/component/avatar.js +1 -1
  46. package/dist/styleD/build/typescript/component/select.cjs +56 -49
  47. package/dist/styleD/build/typescript/component/select.d.cts +16 -11
  48. package/dist/styleD/build/typescript/component/select.d.ts +16 -11
  49. package/dist/styleD/build/typescript/component/select.js +56 -49
  50. package/dist/styleD/build/typescript/component/userFeedbackSummary.cjs +35 -0
  51. package/dist/styleD/build/typescript/component/userFeedbackSummary.d.cts +36 -0
  52. package/dist/styleD/build/typescript/component/userFeedbackSummary.d.ts +36 -0
  53. package/dist/styleD/build/typescript/component/userFeedbackSummary.js +35 -0
  54. package/dist/styleD/build/typescript/semantic/colors.cjs +8 -3
  55. package/dist/styleD/build/typescript/semantic/colors.d.cts +6 -1
  56. package/dist/styleD/build/typescript/semantic/colors.d.ts +6 -1
  57. package/dist/styleD/build/typescript/semantic/colors.js +8 -3
  58. package/package.json +16 -2
@@ -16,14 +16,9 @@
16
16
  --component-select-shared-button-background-color: #ffffff;
17
17
  --component-select-shared-button-border: 0.0625rem solid #545454;
18
18
  --component-select-shared-button-border-radius: 0.25rem;
19
- --component-select-shared-button-height: 2.5rem;
20
19
  --component-select-shared-button-padding-left: 0.75rem;
21
20
  --component-select-shared-button-padding-right: 0.25rem;
22
- --component-select-shared-button-color: #545454;
23
- --component-select-shared-button-typography-font: normal 460 1rem/1.3
24
- 'Open Sans';
25
- --component-select-shared-button-typography-letter-spacing: 0rem;
26
- --component-select-shared-button-typography-font-width: 95;
21
+ --component-select-shared-button-color: #000000;
27
22
  --component-select-shared-button-focused-outline: 0.125rem solid #0072a9;
28
23
  --component-select-shared-button-focused-outline-offset: 0.125rem;
29
24
  --component-select-shared-button-disabled-background-color: #ffffff;
@@ -38,12 +33,16 @@
38
33
  --component-select-shared-option-focused-outline: 0.125rem solid #0072a9;
39
34
  --component-select-shared-option-focused-outline-offset: 0;
40
35
  --component-select-shared-option-focused-background-color: inherit;
41
- --component-select-shared-list-box-typography-font: normal 460 1rem/1.3
42
- 'Open Sans';
43
- --component-select-shared-list-box-typography-letter-spacing: 0rem;
44
- --component-select-shared-list-box-typography-font-width: 95;
45
36
  --component-select-shared-list-box-border: 0.0625rem solid #cccccc;
46
37
  --component-select-shared-list-box-background-color: #ffffff;
47
38
  --component-select-shared-list-box-shadow: 0 0.125rem 0.375rem 0
48
39
  rgb(0% 0% 0% / 0.3);
40
+ --component-select-sm-height: 2rem;
41
+ --component-select-sm-typography-font: normal 460 0.875rem/1.3 'Open Sans';
42
+ --component-select-sm-typography-letter-spacing: 0rem;
43
+ --component-select-sm-typography-font-width: 95;
44
+ --component-select-md-height: 2.5rem;
45
+ --component-select-md-typography-font: normal 460 1rem/1.3 'Open Sans';
46
+ --component-select-md-typography-letter-spacing: 0rem;
47
+ --component-select-md-typography-font-width: 95;
49
48
  }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --component-user-feedback-summary-shared-color: #000000;
7
+ --component-user-feedback-summary-shared-gap: 0.25rem;
8
+ --component-user-feedback-summary-shared-padding-top: 0.75rem;
9
+ --component-user-feedback-summary-shared-padding-right: 1rem;
10
+ --component-user-feedback-summary-shared-padding-bottom: 0.75rem;
11
+ --component-user-feedback-summary-shared-padding-left: 0.5rem;
12
+ --component-user-feedback-summary-shared-max-width: 46ch;
13
+ --component-user-feedback-summary-shared-border-width: 0.0625rem;
14
+ --component-user-feedback-summary-shared-border-style: solid;
15
+ --component-user-feedback-summary-error-color: #8c2113;
16
+ --component-user-feedback-summary-error-border-color: #b42a19;
17
+ --component-user-feedback-summary-warning-color: #693c16;
18
+ --component-user-feedback-summary-warning-border-color: #9a7c11;
19
+ --component-user-feedback-summary-success-color: #326528;
20
+ --component-user-feedback-summary-success-border-color: #408233;
21
+ --component-user-feedback-summary-information-color: #092f62;
22
+ --component-user-feedback-summary-information-border-color: #1054af;
23
+ }
@@ -41,6 +41,9 @@
41
41
  --semantic-colors-border-disabled: #dcdcdc;
42
42
  --semantic-colors-border-accent: #0d4289;
43
43
  --semantic-colors-border-error: #b42a19;
44
+ --semantic-colors-border-success: #408233;
45
+ --semantic-colors-border-warning: #9a7c11;
46
+ --semantic-colors-border-information: #1054af;
44
47
  --semantic-colors-border-focused: #0072a9;
45
48
  --semantic-colors-border-selected: #0072a9;
46
49
  --semantic-colors-border-selected-inverse: #8abed7;
@@ -67,7 +70,8 @@
67
70
  --semantic-colors-fill-warm-purple-weak: #dac3e8;
68
71
  --semantic-colors-fill-magenta-weak: #edc6d7;
69
72
  --semantic-colors-fill-orange-weak: #fcddc6;
70
- --semantic-colors-fill-yellow-weak: #fbeebf;
73
+ --semantic-colors-fill-orange-medium: #fac7a1;
74
+ --semantic-colors-fill-yellow-weak: #ffedac;
71
75
  --semantic-colors-fill-selected: #005d8b;
72
76
  --semantic-colors-fill-selected-weaker: #e6f1f6;
73
77
  --semantic-colors-fill-selected-weak: #c5dfec;
@@ -77,10 +81,11 @@
77
81
  --semantic-colors-fill-selected-pressed-weak: #5ca5c8;
78
82
  --semantic-colors-fill-draft-strong: #f1c21b;
79
83
  --semantic-colors-fill-live-weak: #aed2a6;
80
- --semantic-colors-fill-warning-weak: #fbeebf;
84
+ --semantic-colors-fill-warning-weak: #ffedac;
81
85
  --semantic-colors-fill-information-weak: #e8f0fb;
82
- --semantic-colors-fill-error-weak: #f5c6c0;
83
86
  --semantic-colors-fill-error-weaker: #fbebe9;
87
+ --semantic-colors-fill-error-weak: #f5c6c0;
88
+ --semantic-colors-fill-error-medium: #eea198;
84
89
  --semantic-colors-fill-error-strong: #b42a19;
85
90
  --semantic-colors-fill-success-weak: #cde4c9;
86
91
  --semantic-colors-fill-success-strong: #326528;
@@ -90,7 +90,7 @@ const baseColors = {
90
90
  "500": "#f4cd44",
91
91
  "600": "#f6d86d",
92
92
  "700": "#f9e396",
93
- "800": "#fbeebf",
93
+ "800": "#ffedac",
94
94
  "900": "#fef9e8"
95
95
  },
96
96
  orange: {
@@ -90,7 +90,7 @@ declare const baseColors: {
90
90
  readonly '500': "#f4cd44";
91
91
  readonly '600': "#f6d86d";
92
92
  readonly '700': "#f9e396";
93
- readonly '800': "#fbeebf";
93
+ readonly '800': "#ffedac";
94
94
  readonly '900': "#fef9e8";
95
95
  };
96
96
  readonly orange: {
@@ -90,7 +90,7 @@ declare const baseColors: {
90
90
  readonly '500': "#f4cd44";
91
91
  readonly '600': "#f6d86d";
92
92
  readonly '700': "#f9e396";
93
- readonly '800': "#fbeebf";
93
+ readonly '800': "#ffedac";
94
94
  readonly '900': "#fef9e8";
95
95
  };
96
96
  readonly orange: {
@@ -90,7 +90,7 @@ const baseColors = {
90
90
  "500": "#f4cd44",
91
91
  "600": "#f6d86d",
92
92
  "700": "#f9e396",
93
- "800": "#fbeebf",
93
+ "800": "#ffedac",
94
94
  "900": "#fef9e8"
95
95
  },
96
96
  orange: {
@@ -34,11 +34,11 @@ const baseTypography = {
34
34
  "48Rem": "3rem"
35
35
  },
36
36
  weight: {
37
- guardianHeadline: { bold: 700 },
38
37
  guardianTextEgyptian: {
39
38
  normal: 400,
40
39
  bold: 700
41
40
  },
41
+ guardianHeadline: { bold: 700 },
42
42
  openSans: {
43
43
  light: 340,
44
44
  normal: 460,
@@ -34,13 +34,13 @@ declare const baseTypography: {
34
34
  readonly '48Rem': "3rem";
35
35
  };
36
36
  readonly weight: {
37
- readonly guardianHeadline: {
38
- readonly bold: 700;
39
- };
40
37
  readonly guardianTextEgyptian: {
41
38
  readonly normal: 400;
42
39
  readonly bold: 700;
43
40
  };
41
+ readonly guardianHeadline: {
42
+ readonly bold: 700;
43
+ };
44
44
  readonly openSans: {
45
45
  readonly light: 340;
46
46
  readonly normal: 460;
@@ -34,13 +34,13 @@ declare const baseTypography: {
34
34
  readonly '48Rem': "3rem";
35
35
  };
36
36
  readonly weight: {
37
- readonly guardianHeadline: {
38
- readonly bold: 700;
39
- };
40
37
  readonly guardianTextEgyptian: {
41
38
  readonly normal: 400;
42
39
  readonly bold: 700;
43
40
  };
41
+ readonly guardianHeadline: {
42
+ readonly bold: 700;
43
+ };
44
44
  readonly openSans: {
45
45
  readonly light: 340;
46
46
  readonly normal: 460;
@@ -34,11 +34,11 @@ const baseTypography = {
34
34
  "48Rem": "3rem"
35
35
  },
36
36
  weight: {
37
- guardianHeadline: { bold: 700 },
38
37
  guardianTextEgyptian: {
39
38
  normal: 400,
40
39
  bold: 700
41
40
  },
41
+ guardianHeadline: { bold: 700 },
42
42
  openSans: {
43
43
  light: 340,
44
44
  normal: 460,
@@ -33,7 +33,7 @@ const componentAlertBanner = {
33
33
  },
34
34
  information: { backgroundColor: "#e8f0fb" },
35
35
  success: { backgroundColor: "#cde4c9" },
36
- warning: { backgroundColor: "#fbeebf" },
36
+ warning: { backgroundColor: "#ffedac" },
37
37
  error: { backgroundColor: "#f5c6c0" }
38
38
  };
39
39
  //#endregion
@@ -33,7 +33,7 @@ const componentAlertBanner = {
33
33
  },
34
34
  information: { backgroundColor: "#e8f0fb" },
35
35
  success: { backgroundColor: "#cde4c9" },
36
- warning: { backgroundColor: "#fbeebf" },
36
+ warning: { backgroundColor: "#ffedac" },
37
37
  error: { backgroundColor: "#f5c6c0" }
38
38
  };
39
39
  //#endregion
@@ -70,7 +70,7 @@ const componentAvatar = {
70
70
  },
71
71
  yellow: {
72
72
  text: "#5b4a0b",
73
- background: "#fbeebf",
73
+ background: "#ffedac",
74
74
  border: "unset",
75
75
  hover: { background: "#f9e396" },
76
76
  active: { background: "#f6d86d" }
@@ -70,7 +70,7 @@ const componentAvatar = {
70
70
  },
71
71
  yellow: {
72
72
  text: "#5b4a0b",
73
- background: "#fbeebf",
73
+ background: "#ffedac",
74
74
  border: "unset",
75
75
  hover: { background: "#f9e396" },
76
76
  active: { background: "#f6d86d" }
@@ -2,65 +2,72 @@
2
2
  /**
3
3
  * Do not edit directly, this file was auto-generated.
4
4
  */
5
- const componentSelect = { shared: {
6
- width: "100%",
7
- offset: 8,
8
- containerPadding: 0,
9
- hover: {
10
- backgroundColor: "#f6f6f6",
11
- outline: "none"
12
- },
13
- pressed: { backgroundColor: "#ededed" },
14
- button: {
15
- display: "flex",
16
- justifyContent: "space-between",
17
- alignItems: "center",
18
- marginTop: "0.25rem",
19
- backgroundColor: "#ffffff",
20
- border: "0.0625rem solid #545454",
21
- borderRadius: "0.25rem",
22
- height: "2.5rem",
23
- paddingLeft: "0.75rem",
24
- paddingRight: "0.25rem",
25
- color: "#545454",
26
- typography: {
27
- font: "normal 460 1rem/1.3 Open Sans",
28
- letterSpacing: "0rem",
29
- fontWidth: 95
5
+ const componentSelect = {
6
+ shared: {
7
+ width: "100%",
8
+ offset: 8,
9
+ containerPadding: 0,
10
+ hover: {
11
+ backgroundColor: "#f6f6f6",
12
+ outline: "none"
30
13
  },
31
- focused: {
32
- outline: "0.125rem solid #0072a9",
33
- outlineOffset: "0.125rem"
34
- },
35
- disabled: {
14
+ pressed: { backgroundColor: "#ededed" },
15
+ button: {
16
+ display: "flex",
17
+ justifyContent: "space-between",
18
+ alignItems: "center",
19
+ marginTop: "0.25rem",
36
20
  backgroundColor: "#ffffff",
37
- cursor: "not-allowed",
38
- color: "#999999",
39
- border: "0.0625rem solid #dcdcdc"
21
+ border: "0.0625rem solid #545454",
22
+ borderRadius: "0.25rem",
23
+ paddingLeft: "0.75rem",
24
+ paddingRight: "0.25rem",
25
+ color: "#000000",
26
+ focused: {
27
+ outline: "0.125rem solid #0072a9",
28
+ outlineOffset: "0.125rem"
29
+ },
30
+ disabled: {
31
+ backgroundColor: "#ffffff",
32
+ cursor: "not-allowed",
33
+ color: "#999999",
34
+ border: "0.0625rem solid #dcdcdc"
35
+ },
36
+ error: { border: "0.0625rem solid #b42a19" }
37
+ },
38
+ option: {
39
+ paddingLeft: "1rem",
40
+ paddingRight: "1rem",
41
+ paddingTop: "0.75rem",
42
+ paddingBottom: "0.75rem",
43
+ focused: {
44
+ outline: "0.125rem solid #0072a9",
45
+ outlineOffset: "0",
46
+ backgroundColor: "inherit"
47
+ }
40
48
  },
41
- error: { border: "0.0625rem solid #b42a19" }
49
+ listBox: {
50
+ border: "0.0625rem solid #cccccc",
51
+ backgroundColor: "#ffffff",
52
+ shadow: "0 0.125rem 0.375rem 0 rgb(0% 0% 0% / 0.3)"
53
+ }
42
54
  },
43
- option: {
44
- paddingLeft: "1rem",
45
- paddingRight: "1rem",
46
- paddingTop: "0.75rem",
47
- paddingBottom: "0.75rem",
48
- focused: {
49
- outline: "0.125rem solid #0072a9",
50
- outlineOffset: "0",
51
- backgroundColor: "inherit"
55
+ sm: {
56
+ height: "2rem",
57
+ typography: {
58
+ font: "normal 460 0.875rem/1.3 Open Sans",
59
+ letterSpacing: "0rem",
60
+ fontWidth: 95
52
61
  }
53
62
  },
54
- listBox: {
63
+ md: {
64
+ height: "2.5rem",
55
65
  typography: {
56
66
  font: "normal 460 1rem/1.3 Open Sans",
57
67
  letterSpacing: "0rem",
58
68
  fontWidth: 95
59
- },
60
- border: "0.0625rem solid #cccccc",
61
- backgroundColor: "#ffffff",
62
- shadow: "0 0.125rem 0.375rem 0 rgb(0% 0% 0% / 0.3)"
69
+ }
63
70
  }
64
- } };
71
+ };
65
72
  //#endregion
66
73
  exports.componentSelect = componentSelect;
@@ -22,15 +22,9 @@ declare const componentSelect: {
22
22
  backgroundColor: string;
23
23
  border: string;
24
24
  borderRadius: string;
25
- height: string;
26
25
  paddingLeft: string;
27
26
  paddingRight: string;
28
27
  color: string;
29
- typography: {
30
- font: string;
31
- letterSpacing: string;
32
- fontWidth: number;
33
- };
34
28
  focused: {
35
29
  outline: string;
36
30
  outlineOffset: string;
@@ -57,16 +51,27 @@ declare const componentSelect: {
57
51
  };
58
52
  };
59
53
  listBox: {
60
- typography: {
61
- font: string;
62
- letterSpacing: string;
63
- fontWidth: number;
64
- };
65
54
  border: string;
66
55
  backgroundColor: string;
67
56
  shadow: string;
68
57
  };
69
58
  };
59
+ sm: {
60
+ height: string;
61
+ typography: {
62
+ font: string;
63
+ letterSpacing: string;
64
+ fontWidth: number;
65
+ };
66
+ };
67
+ md: {
68
+ height: string;
69
+ typography: {
70
+ font: string;
71
+ letterSpacing: string;
72
+ fontWidth: number;
73
+ };
74
+ };
70
75
  };
71
76
  type ComponentSelect = typeof componentSelect;
72
77
  //#endregion
@@ -22,15 +22,9 @@ declare const componentSelect: {
22
22
  backgroundColor: string;
23
23
  border: string;
24
24
  borderRadius: string;
25
- height: string;
26
25
  paddingLeft: string;
27
26
  paddingRight: string;
28
27
  color: string;
29
- typography: {
30
- font: string;
31
- letterSpacing: string;
32
- fontWidth: number;
33
- };
34
28
  focused: {
35
29
  outline: string;
36
30
  outlineOffset: string;
@@ -57,16 +51,27 @@ declare const componentSelect: {
57
51
  };
58
52
  };
59
53
  listBox: {
60
- typography: {
61
- font: string;
62
- letterSpacing: string;
63
- fontWidth: number;
64
- };
65
54
  border: string;
66
55
  backgroundColor: string;
67
56
  shadow: string;
68
57
  };
69
58
  };
59
+ sm: {
60
+ height: string;
61
+ typography: {
62
+ font: string;
63
+ letterSpacing: string;
64
+ fontWidth: number;
65
+ };
66
+ };
67
+ md: {
68
+ height: string;
69
+ typography: {
70
+ font: string;
71
+ letterSpacing: string;
72
+ fontWidth: number;
73
+ };
74
+ };
70
75
  };
71
76
  type ComponentSelect = typeof componentSelect;
72
77
  //#endregion
@@ -2,65 +2,72 @@
2
2
  /**
3
3
  * Do not edit directly, this file was auto-generated.
4
4
  */
5
- const componentSelect = { shared: {
6
- width: "100%",
7
- offset: 8,
8
- containerPadding: 0,
9
- hover: {
10
- backgroundColor: "#f6f6f6",
11
- outline: "none"
12
- },
13
- pressed: { backgroundColor: "#ededed" },
14
- button: {
15
- display: "flex",
16
- justifyContent: "space-between",
17
- alignItems: "center",
18
- marginTop: "0.25rem",
19
- backgroundColor: "#ffffff",
20
- border: "0.0625rem solid #545454",
21
- borderRadius: "0.25rem",
22
- height: "2.5rem",
23
- paddingLeft: "0.75rem",
24
- paddingRight: "0.25rem",
25
- color: "#545454",
26
- typography: {
27
- font: "normal 460 1rem/1.3 Open Sans",
28
- letterSpacing: "0rem",
29
- fontWidth: 95
5
+ const componentSelect = {
6
+ shared: {
7
+ width: "100%",
8
+ offset: 8,
9
+ containerPadding: 0,
10
+ hover: {
11
+ backgroundColor: "#f6f6f6",
12
+ outline: "none"
30
13
  },
31
- focused: {
32
- outline: "0.125rem solid #0072a9",
33
- outlineOffset: "0.125rem"
34
- },
35
- disabled: {
14
+ pressed: { backgroundColor: "#ededed" },
15
+ button: {
16
+ display: "flex",
17
+ justifyContent: "space-between",
18
+ alignItems: "center",
19
+ marginTop: "0.25rem",
36
20
  backgroundColor: "#ffffff",
37
- cursor: "not-allowed",
38
- color: "#999999",
39
- border: "0.0625rem solid #dcdcdc"
21
+ border: "0.0625rem solid #545454",
22
+ borderRadius: "0.25rem",
23
+ paddingLeft: "0.75rem",
24
+ paddingRight: "0.25rem",
25
+ color: "#000000",
26
+ focused: {
27
+ outline: "0.125rem solid #0072a9",
28
+ outlineOffset: "0.125rem"
29
+ },
30
+ disabled: {
31
+ backgroundColor: "#ffffff",
32
+ cursor: "not-allowed",
33
+ color: "#999999",
34
+ border: "0.0625rem solid #dcdcdc"
35
+ },
36
+ error: { border: "0.0625rem solid #b42a19" }
37
+ },
38
+ option: {
39
+ paddingLeft: "1rem",
40
+ paddingRight: "1rem",
41
+ paddingTop: "0.75rem",
42
+ paddingBottom: "0.75rem",
43
+ focused: {
44
+ outline: "0.125rem solid #0072a9",
45
+ outlineOffset: "0",
46
+ backgroundColor: "inherit"
47
+ }
40
48
  },
41
- error: { border: "0.0625rem solid #b42a19" }
49
+ listBox: {
50
+ border: "0.0625rem solid #cccccc",
51
+ backgroundColor: "#ffffff",
52
+ shadow: "0 0.125rem 0.375rem 0 rgb(0% 0% 0% / 0.3)"
53
+ }
42
54
  },
43
- option: {
44
- paddingLeft: "1rem",
45
- paddingRight: "1rem",
46
- paddingTop: "0.75rem",
47
- paddingBottom: "0.75rem",
48
- focused: {
49
- outline: "0.125rem solid #0072a9",
50
- outlineOffset: "0",
51
- backgroundColor: "inherit"
55
+ sm: {
56
+ height: "2rem",
57
+ typography: {
58
+ font: "normal 460 0.875rem/1.3 Open Sans",
59
+ letterSpacing: "0rem",
60
+ fontWidth: 95
52
61
  }
53
62
  },
54
- listBox: {
63
+ md: {
64
+ height: "2.5rem",
55
65
  typography: {
56
66
  font: "normal 460 1rem/1.3 Open Sans",
57
67
  letterSpacing: "0rem",
58
68
  fontWidth: 95
59
- },
60
- border: "0.0625rem solid #cccccc",
61
- backgroundColor: "#ffffff",
62
- shadow: "0 0.125rem 0.375rem 0 rgb(0% 0% 0% / 0.3)"
69
+ }
63
70
  }
64
- } };
71
+ };
65
72
  //#endregion
66
73
  export { componentSelect };
@@ -0,0 +1,35 @@
1
+ //#region src/styleD/build/typescript/component/userFeedbackSummary.ts
2
+ /**
3
+ * Do not edit directly, this file was auto-generated.
4
+ */
5
+ const componentUserFeedbackSummary = {
6
+ shared: {
7
+ color: "#000000",
8
+ gap: "0.25rem",
9
+ paddingTop: "0.75rem",
10
+ paddingRight: "1rem",
11
+ paddingBottom: "0.75rem",
12
+ paddingLeft: "0.5rem",
13
+ maxWidth: "46ch",
14
+ borderWidth: "0.0625rem",
15
+ borderStyle: "solid"
16
+ },
17
+ error: {
18
+ color: "#8c2113",
19
+ borderColor: "#b42a19"
20
+ },
21
+ warning: {
22
+ color: "#693c16",
23
+ borderColor: "#9a7c11"
24
+ },
25
+ success: {
26
+ color: "#326528",
27
+ borderColor: "#408233"
28
+ },
29
+ information: {
30
+ color: "#092f62",
31
+ borderColor: "#1054af"
32
+ }
33
+ };
34
+ //#endregion
35
+ exports.componentUserFeedbackSummary = componentUserFeedbackSummary;
@@ -0,0 +1,36 @@
1
+ //#region src/styleD/build/typescript/component/userFeedbackSummary.d.ts
2
+ /**
3
+ * Do not edit directly, this file was auto-generated.
4
+ */
5
+ declare const componentUserFeedbackSummary: {
6
+ shared: {
7
+ color: string;
8
+ gap: string;
9
+ paddingTop: string;
10
+ paddingRight: string;
11
+ paddingBottom: string;
12
+ paddingLeft: string;
13
+ maxWidth: string;
14
+ borderWidth: string;
15
+ borderStyle: string;
16
+ };
17
+ error: {
18
+ color: string;
19
+ borderColor: string;
20
+ };
21
+ warning: {
22
+ color: string;
23
+ borderColor: string;
24
+ };
25
+ success: {
26
+ color: string;
27
+ borderColor: string;
28
+ };
29
+ information: {
30
+ color: string;
31
+ borderColor: string;
32
+ };
33
+ };
34
+ type ComponentUserFeedbackSummary = typeof componentUserFeedbackSummary;
35
+ //#endregion
36
+ export { ComponentUserFeedbackSummary, componentUserFeedbackSummary };