@guardian/stand 0.0.53 → 0.0.55
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/dist/TagPicker.cjs +1 -1
- package/dist/TagPicker.d.cts +1 -1
- package/dist/TagPicker.d.ts +1 -1
- package/dist/TagPicker.js +1 -1
- package/dist/components/TagPicker/Autocomplete.cjs +3 -3
- package/dist/components/TagPicker/Autocomplete.js +3 -3
- package/dist/components/TagPicker/TagPicker.cjs +15 -10
- package/dist/components/TagPicker/TagPicker.d.cts +21 -5
- package/dist/components/TagPicker/TagPicker.d.ts +21 -5
- package/dist/components/TagPicker/TagPicker.js +15 -10
- package/dist/components/TagPicker/TagSearchWithFilters.cjs +6 -3
- package/dist/components/TagPicker/TagSearchWithFilters.js +6 -3
- package/dist/components/TagPicker/styles.cjs +18 -142
- package/dist/components/TagPicker/styles.js +19 -135
- package/dist/components/{TagPicker → TagTable}/TagTable.cjs +25 -7
- package/dist/components/{TagPicker → TagTable}/TagTable.d.cts +18 -4
- package/dist/components/{TagPicker → TagTable}/TagTable.d.ts +18 -4
- package/dist/components/{TagPicker → TagTable}/TagTable.js +26 -8
- package/dist/components/TagTable/styles.cjs +170 -0
- package/dist/components/TagTable/styles.js +160 -0
- package/dist/styleD/build/css/base/colors.css +1 -1
- package/dist/styleD/build/css/component/autocomplete.css +13 -6
- package/dist/styleD/build/css/component/avatar.css +1 -1
- package/dist/styleD/build/css/component/datePicker.css +2 -2
- package/dist/styleD/build/css/component/tagPicker.css +1 -0
- package/dist/styleD/build/css/component/tagTable.css +9 -5
- package/dist/styleD/build/css/semantic/colors.css +6 -1
- package/dist/styleD/build/css/semantic/sizing.css +1 -0
- package/dist/styleD/build/typescript/base/colors.cjs +1 -1
- package/dist/styleD/build/typescript/base/colors.d.cts +1 -1
- package/dist/styleD/build/typescript/base/colors.d.ts +1 -1
- package/dist/styleD/build/typescript/base/colors.js +1 -1
- package/dist/styleD/build/typescript/component/autocomplete.cjs +17 -6
- package/dist/styleD/build/typescript/component/autocomplete.d.cts +14 -1
- package/dist/styleD/build/typescript/component/autocomplete.d.ts +14 -1
- package/dist/styleD/build/typescript/component/autocomplete.js +17 -6
- package/dist/styleD/build/typescript/component/avatar.cjs +1 -1
- package/dist/styleD/build/typescript/component/avatar.js +1 -1
- package/dist/styleD/build/typescript/component/datePicker.cjs +2 -2
- package/dist/styleD/build/typescript/component/datePicker.js +2 -2
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.cjs +1 -4
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.d.cts +0 -1
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.d.ts +0 -1
- package/dist/styleD/build/typescript/component/intendedAudienceSignifier.js +1 -4
- package/dist/styleD/build/typescript/component/tagPicker.cjs +1 -0
- package/dist/styleD/build/typescript/component/tagPicker.d.cts +3 -0
- package/dist/styleD/build/typescript/component/tagPicker.d.ts +3 -0
- package/dist/styleD/build/typescript/component/tagPicker.js +1 -0
- package/dist/styleD/build/typescript/component/tagTable.cjs +11 -3
- package/dist/styleD/build/typescript/component/tagTable.d.cts +10 -2
- package/dist/styleD/build/typescript/component/tagTable.d.ts +10 -2
- package/dist/styleD/build/typescript/component/tagTable.js +11 -3
- package/dist/styleD/build/typescript/semantic/colors.cjs +6 -1
- package/dist/styleD/build/typescript/semantic/colors.d.cts +5 -0
- package/dist/styleD/build/typescript/semantic/colors.d.ts +5 -0
- package/dist/styleD/build/typescript/semantic/colors.js +6 -1
- package/dist/styleD/build/typescript/semantic/sizing.cjs +2 -1
- package/dist/styleD/build/typescript/semantic/sizing.d.cts +3 -0
- package/dist/styleD/build/typescript/semantic/sizing.d.ts +3 -0
- package/dist/styleD/build/typescript/semantic/sizing.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { mergeDeep } from "../../util/mergeDeep.js";
|
|
2
|
+
import { componentTagTable } from "../../styleD/build/typescript/component/tagTable.js";
|
|
3
|
+
import { css } from "@emotion/react";
|
|
4
|
+
//#region src/components/TagTable/styles.ts
|
|
5
|
+
const tagTableHeaderStyles = (partialTheme = {}) => {
|
|
6
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
7
|
+
return css`
|
|
8
|
+
background-color: ${theme.header.backgroundColor};
|
|
9
|
+
padding: ${theme.header.paddingTop} ${theme.header.paddingRight}
|
|
10
|
+
${theme.header.paddingBottom} ${theme.header.paddingLeft};
|
|
11
|
+
display: flex;
|
|
12
|
+
gap: ${theme.header.gap};
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
align-items: center;
|
|
15
|
+
`;
|
|
16
|
+
};
|
|
17
|
+
const tagTableHeaderTextStyles = (partialTheme = {}) => {
|
|
18
|
+
return css`
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
gap: ${mergeDeep(componentTagTable, partialTheme).header.gap};
|
|
22
|
+
`;
|
|
23
|
+
};
|
|
24
|
+
const tagTableHeadingStyles = (partialTheme = {}) => {
|
|
25
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
26
|
+
return css`
|
|
27
|
+
font-weight: ${theme.heading.fontWeight};
|
|
28
|
+
font-size: ${theme.heading.fontSize};
|
|
29
|
+
`;
|
|
30
|
+
};
|
|
31
|
+
const tagTableSubHeadingStyles = (partialTheme = {}) => {
|
|
32
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
33
|
+
return css`
|
|
34
|
+
font-weight: ${theme.subHeading.fontWeight};
|
|
35
|
+
font-size: ${theme.subHeading.fontSize};
|
|
36
|
+
`;
|
|
37
|
+
};
|
|
38
|
+
const tagTableCellStyles = (partialTheme = {}) => {
|
|
39
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
40
|
+
return css`
|
|
41
|
+
padding: ${theme.cell.paddingY} ${theme.cell.paddingX};
|
|
42
|
+
vertical-align: middle;
|
|
43
|
+
|
|
44
|
+
:first-of-type {
|
|
45
|
+
padding-left: ${theme.cell.firstCellPaddingLeft};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
:not(:last-child) {
|
|
49
|
+
border-right-width: ${theme.cell.borderBetweenCells.borderWidth};
|
|
50
|
+
border-right-style: ${theme.cell.borderBetweenCells.borderStyle};
|
|
51
|
+
border-right-color: ${theme.cell.borderBetweenCells.borderColor};
|
|
52
|
+
}
|
|
53
|
+
`;
|
|
54
|
+
};
|
|
55
|
+
const tagTableRowStyles = (canDrag, highlightFirstRow, partialTheme = {}) => {
|
|
56
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
57
|
+
return css`
|
|
58
|
+
background-color: ${theme.row.backgroundColor};
|
|
59
|
+
height: ${theme.row.height};
|
|
60
|
+
&:not(:last-child) {
|
|
61
|
+
border-bottom-color: ${theme.row.borderBottom.borderColor};
|
|
62
|
+
border-bottom-style: ${theme.row.borderBottom.borderStyle};
|
|
63
|
+
border-bottom-width: ${theme.row.borderBottom.borderWidth};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
:hover {
|
|
67
|
+
background-color: ${theme.row.backgroundHoverColor};
|
|
68
|
+
${canDrag ? "cursor: grab;" : null}
|
|
69
|
+
button[slot='drag'] {
|
|
70
|
+
opacity: 1;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
${highlightFirstRow && `:first-of-type {
|
|
74
|
+
background-color: ${theme.row.firstRowBackgroundColor};
|
|
75
|
+
|
|
76
|
+
:hover {
|
|
77
|
+
background-color: ${theme.row.firstRowBackgroundHoverColor};
|
|
78
|
+
}
|
|
79
|
+
}`}
|
|
80
|
+
`;
|
|
81
|
+
};
|
|
82
|
+
const tagTableStyles = (highlightFirstRow, partialTheme = {}) => {
|
|
83
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
84
|
+
return css`
|
|
85
|
+
width: 100%;
|
|
86
|
+
border-collapse: collapse;
|
|
87
|
+
|
|
88
|
+
.react-aria-DropIndicator[data-drop-target] {
|
|
89
|
+
height: ${theme.row.height};
|
|
90
|
+
|
|
91
|
+
${highlightFirstRow ? `&:first-child {
|
|
92
|
+
background-color: ${theme.row.firstRowBackgroundColor};
|
|
93
|
+
}` : ""}
|
|
94
|
+
}
|
|
95
|
+
`;
|
|
96
|
+
};
|
|
97
|
+
const tagTableRemoveButtonStyles = css`
|
|
98
|
+
background: none;
|
|
99
|
+
border: none;
|
|
100
|
+
padding: 0;
|
|
101
|
+
:hover {
|
|
102
|
+
cursor: pointer;
|
|
103
|
+
}
|
|
104
|
+
`;
|
|
105
|
+
const tagTableAddButtonStyles = (partialTheme = {}) => {
|
|
106
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
107
|
+
return css`
|
|
108
|
+
:hover {
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
background-color: ${theme.addButton.backgroundHoverColor};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
color: ${theme.addButton.color};
|
|
114
|
+
-webkit-text-decoration: none;
|
|
115
|
+
text-decoration: none;
|
|
116
|
+
padding: ${theme.addButton.paddingY} ${theme.addButton.paddingX};
|
|
117
|
+
position: relative;
|
|
118
|
+
border: 0;
|
|
119
|
+
border-radius: 0;
|
|
120
|
+
cursor: pointer;
|
|
121
|
+
justify-content: center;
|
|
122
|
+
align-items: center;
|
|
123
|
+
font-weight: ${theme.addButton.fontWeight};
|
|
124
|
+
font-size: ${theme.addButton.fontSize};
|
|
125
|
+
height: 24px;
|
|
126
|
+
width: fit-content;
|
|
127
|
+
line-height: 1;
|
|
128
|
+
flex-direction: row;
|
|
129
|
+
gap: 8px;
|
|
130
|
+
background-color: ${theme.addButton.backgroundColor};
|
|
131
|
+
display: inline-flex;
|
|
132
|
+
`;
|
|
133
|
+
};
|
|
134
|
+
const tagTableDragButtonStyles = css`
|
|
135
|
+
background: none;
|
|
136
|
+
border: none;
|
|
137
|
+
padding: 5px;
|
|
138
|
+
margin: 0;
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
opacity: 0;
|
|
142
|
+
|
|
143
|
+
&:focus {
|
|
144
|
+
opacity: 1;
|
|
145
|
+
}
|
|
146
|
+
`;
|
|
147
|
+
const tagTableTypeBadgeStyles = (partialTheme = {}) => {
|
|
148
|
+
const theme = mergeDeep(componentTagTable, partialTheme);
|
|
149
|
+
return css`
|
|
150
|
+
white-space: nowrap;
|
|
151
|
+
text-transform: uppercase;
|
|
152
|
+
color: ${theme.typeBadge.color};
|
|
153
|
+
background-color: ${theme.typeBadge.backgroundColor};
|
|
154
|
+
padding: ${theme.typeBadge.paddingY} ${theme.typeBadge.paddingX};
|
|
155
|
+
font-size: ${theme.typeBadge.fontSize};
|
|
156
|
+
font-weight: ${theme.typeBadge.fontWeight};
|
|
157
|
+
`;
|
|
158
|
+
};
|
|
159
|
+
//#endregion
|
|
160
|
+
export { tagTableAddButtonStyles, tagTableCellStyles, tagTableDragButtonStyles, tagTableHeaderStyles, tagTableHeaderTextStyles, tagTableHeadingStyles, tagTableRemoveButtonStyles, tagTableRowStyles, tagTableStyles, tagTableSubHeadingStyles, tagTableTypeBadgeStyles };
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
--base-colors-cyan-500: #2e8bb8;
|
|
48
48
|
--base-colors-cyan-600: #5ca5c8;
|
|
49
49
|
--base-colors-cyan-700: #8abed7;
|
|
50
|
-
--base-colors-cyan-800: #
|
|
50
|
+
--base-colors-cyan-800: #c5dfec;
|
|
51
51
|
--base-colors-cyan-900: #e6f1f6;
|
|
52
52
|
--base-colors-teal-50: #050e0f;
|
|
53
53
|
--base-colors-teal-100: #0e2729;
|
|
@@ -5,17 +5,24 @@
|
|
|
5
5
|
:root {
|
|
6
6
|
--component-autocomplete-input-color: #000000;
|
|
7
7
|
--component-autocomplete-input-background-color: #ffffff;
|
|
8
|
-
--component-autocomplete-input-
|
|
9
|
-
--component-autocomplete-input-border-width: 1px;
|
|
8
|
+
--component-autocomplete-input-border-width: 0.0625rem;
|
|
10
9
|
--component-autocomplete-input-border-style: solid;
|
|
11
|
-
--component-autocomplete-input-border-color: #
|
|
12
|
-
--component-autocomplete-input-padding:
|
|
10
|
+
--component-autocomplete-input-border-color: #545454;
|
|
11
|
+
--component-autocomplete-input-padding: 0.75rem;
|
|
12
|
+
--component-autocomplete-input-border-radius: 0.25rem;
|
|
13
|
+
--component-autocomplete-input-hover-background-color: #f6f6f6;
|
|
14
|
+
--component-autocomplete-input-focused-outline: 0.125rem solid #0072a9;
|
|
15
|
+
--component-autocomplete-input-focused-outline-offset: 0.125rem;
|
|
16
|
+
--component-autocomplete-input-disabled-background-color: #ffffff;
|
|
17
|
+
--component-autocomplete-input-disabled-cursor: not-allowed;
|
|
18
|
+
--component-autocomplete-input-disabled-color: #999999;
|
|
19
|
+
--component-autocomplete-input-disabled-border: 0.0625rem solid #dcdcdc;
|
|
13
20
|
--component-autocomplete-icon-size: 20px;
|
|
14
21
|
--component-autocomplete-icon-padding-x: 4px;
|
|
15
22
|
--component-autocomplete-icon-color: #bababa;
|
|
16
|
-
--component-autocomplete-listbox-border-width:
|
|
23
|
+
--component-autocomplete-listbox-border-width: 0.0625rem;
|
|
17
24
|
--component-autocomplete-listbox-border-style: solid;
|
|
18
|
-
--component-autocomplete-listbox-border-color: #
|
|
25
|
+
--component-autocomplete-listbox-border-color: #545454;
|
|
19
26
|
--component-autocomplete-listbox-padding-y: 8px;
|
|
20
27
|
--component-autocomplete-listbox-padding-x: 0px;
|
|
21
28
|
--component-autocomplete-listbox-background-color: #ffffff;
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--component-avatar-shared-color-red-hover-background: #eea198;
|
|
20
20
|
--component-avatar-shared-color-red-active-background: #e87c6f;
|
|
21
21
|
--component-avatar-shared-color-cyan-text: #00344e;
|
|
22
|
-
--component-avatar-shared-color-cyan-background: #
|
|
22
|
+
--component-avatar-shared-color-cyan-background: #c5dfec;
|
|
23
23
|
--component-avatar-shared-color-cyan-border: unset;
|
|
24
24
|
--component-avatar-shared-color-cyan-hover-background: #8abed7;
|
|
25
25
|
--component-avatar-shared-color-cyan-active-background: #5ca5c8;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
--component-date-picker-calendar-header-shared-button-aspect-ratio: 1;
|
|
90
90
|
--component-date-picker-calendar-header-shared-button-hovered-background-color: #f6f6f6;
|
|
91
91
|
--component-date-picker-calendar-header-shared-button-pressed-background-color: #ededed;
|
|
92
|
-
--component-date-picker-calendar-header-shared-button-selected-background-color: #
|
|
92
|
+
--component-date-picker-calendar-header-shared-button-selected-background-color: #c5dfec;
|
|
93
93
|
--component-date-picker-calendar-header-shared-button-focus-visible-outline: 0.125rem
|
|
94
94
|
solid #0072a9;
|
|
95
95
|
--component-date-picker-calendar-header-shared-button-disabled-cursor: not-allowed;
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
--component-date-picker-calendar-cell-shared-outside-month-display: none;
|
|
113
113
|
--component-date-picker-calendar-cell-shared-hovered-background-color: #f6f6f6;
|
|
114
114
|
--component-date-picker-calendar-cell-shared-pressed-background-color: #ededed;
|
|
115
|
-
--component-date-picker-calendar-cell-shared-selected-background-color: #
|
|
115
|
+
--component-date-picker-calendar-cell-shared-selected-background-color: #c5dfec;
|
|
116
116
|
--component-date-picker-calendar-cell-shared-focus-visible-outline: 0.125rem
|
|
117
117
|
solid #0072a9;
|
|
118
118
|
--component-date-picker-calendar-cell-shared-disabled-cursor: not-allowed;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
:root {
|
|
6
6
|
--component-tag-picker-shared-width: 100%;
|
|
7
7
|
--component-tag-picker-shared-gap: 15px;
|
|
8
|
+
--component-tag-picker-search-width: 100%;
|
|
8
9
|
--component-tag-picker-select-flex-basis: 25%;
|
|
9
10
|
--component-tag-picker-offline-section-justify-content: flex-start;
|
|
10
11
|
--component-tag-picker-offline-section-gap: 4px;
|
|
@@ -3,12 +3,16 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
:root {
|
|
6
|
-
--component-tag-table-
|
|
6
|
+
--component-tag-table-header-background-color: #dcdcdc;
|
|
7
|
+
--component-tag-table-header-padding-top: 3px;
|
|
8
|
+
--component-tag-table-header-padding-right: 5px;
|
|
9
|
+
--component-tag-table-header-padding-bottom: 3px;
|
|
10
|
+
--component-tag-table-header-padding-left: 12px;
|
|
11
|
+
--component-tag-table-header-gap: 4px;
|
|
7
12
|
--component-tag-table-heading-font-weight: 700;
|
|
8
|
-
--component-tag-table-heading-
|
|
9
|
-
--component-tag-table-heading-
|
|
10
|
-
--component-tag-table-heading-
|
|
11
|
-
--component-tag-table-heading-padding-left: 12px;
|
|
13
|
+
--component-tag-table-heading-font-size: 14px;
|
|
14
|
+
--component-tag-table-sub-heading-font-weight: 400;
|
|
15
|
+
--component-tag-table-sub-heading-font-size: 12px;
|
|
12
16
|
--component-tag-table-cell-padding-x: 5px;
|
|
13
17
|
--component-tag-table-cell-padding-y: 3px;
|
|
14
18
|
--component-tag-table-cell-first-cell-padding-left: 12px;
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
--semantic-colors-fill-green-weak: #cde4c9;
|
|
61
61
|
--semantic-colors-fill-blue-weak: #c5d9f4;
|
|
62
62
|
--semantic-colors-fill-red-weak: #f5c6c0;
|
|
63
|
-
--semantic-colors-fill-cyan-weak: #
|
|
63
|
+
--semantic-colors-fill-cyan-weak: #c5dfec;
|
|
64
64
|
--semantic-colors-fill-teal-weak: #c5dfe1;
|
|
65
65
|
--semantic-colors-fill-cool-purple-weak: #dbdff7;
|
|
66
66
|
--semantic-colors-fill-warm-purple-weak: #dac3e8;
|
|
@@ -68,6 +68,11 @@
|
|
|
68
68
|
--semantic-colors-fill-orange-weak: #fcddc6;
|
|
69
69
|
--semantic-colors-fill-yellow-weak: #fbeebf;
|
|
70
70
|
--semantic-colors-fill-selected: #005d8b;
|
|
71
|
+
--semantic-colors-fill-selected-weak: #c5dfec;
|
|
72
|
+
--semantic-colors-fill-selected-hover-weak: #c5dfec;
|
|
73
|
+
--semantic-colors-fill-selected-pressed-weak: #8abed7;
|
|
74
|
+
--semantic-colors-fill-selected-hover-strong: #8abed7;
|
|
75
|
+
--semantic-colors-fill-selected-pressed-strong: #5ca5c8;
|
|
71
76
|
--semantic-colors-fill-draft-strong: #f1c21b;
|
|
72
77
|
--semantic-colors-fill-live-weak: #aed2a6;
|
|
73
78
|
--semantic-colors-fill-warning-weak: #fbeebf;
|
|
@@ -6,11 +6,22 @@ const componentAutocomplete = {
|
|
|
6
6
|
input: {
|
|
7
7
|
color: "#000000",
|
|
8
8
|
backgroundColor: "#ffffff",
|
|
9
|
-
|
|
10
|
-
borderWidth: "1px",
|
|
9
|
+
borderWidth: "0.0625rem",
|
|
11
10
|
borderStyle: "solid",
|
|
12
|
-
borderColor: "#
|
|
13
|
-
padding: "
|
|
11
|
+
borderColor: "#545454",
|
|
12
|
+
padding: "0.75rem",
|
|
13
|
+
borderRadius: "0.25rem",
|
|
14
|
+
hover: { backgroundColor: "#f6f6f6" },
|
|
15
|
+
focused: {
|
|
16
|
+
outline: "0.125rem solid #0072a9",
|
|
17
|
+
outlineOffset: "0.125rem"
|
|
18
|
+
},
|
|
19
|
+
disabled: {
|
|
20
|
+
backgroundColor: "#ffffff",
|
|
21
|
+
cursor: "not-allowed",
|
|
22
|
+
color: "#999999",
|
|
23
|
+
border: "0.0625rem solid #dcdcdc"
|
|
24
|
+
}
|
|
14
25
|
},
|
|
15
26
|
icon: {
|
|
16
27
|
size: "20px",
|
|
@@ -18,9 +29,9 @@ const componentAutocomplete = {
|
|
|
18
29
|
color: "#bababa"
|
|
19
30
|
},
|
|
20
31
|
listbox: {
|
|
21
|
-
borderWidth: "
|
|
32
|
+
borderWidth: "0.0625rem",
|
|
22
33
|
borderStyle: "solid",
|
|
23
|
-
borderColor: "#
|
|
34
|
+
borderColor: "#545454",
|
|
24
35
|
paddingY: "8px",
|
|
25
36
|
paddingX: "0px",
|
|
26
37
|
backgroundColor: "#ffffff",
|
|
@@ -6,11 +6,24 @@ declare const componentAutocomplete: {
|
|
|
6
6
|
input: {
|
|
7
7
|
color: string;
|
|
8
8
|
backgroundColor: string;
|
|
9
|
-
disabledBackgroundColor: string;
|
|
10
9
|
borderWidth: string;
|
|
11
10
|
borderStyle: string;
|
|
12
11
|
borderColor: string;
|
|
13
12
|
padding: string;
|
|
13
|
+
borderRadius: string;
|
|
14
|
+
hover: {
|
|
15
|
+
backgroundColor: string;
|
|
16
|
+
};
|
|
17
|
+
focused: {
|
|
18
|
+
outline: string;
|
|
19
|
+
outlineOffset: string;
|
|
20
|
+
};
|
|
21
|
+
disabled: {
|
|
22
|
+
backgroundColor: string;
|
|
23
|
+
cursor: string;
|
|
24
|
+
color: string;
|
|
25
|
+
border: string;
|
|
26
|
+
};
|
|
14
27
|
};
|
|
15
28
|
icon: {
|
|
16
29
|
size: string;
|
|
@@ -6,11 +6,24 @@ declare const componentAutocomplete: {
|
|
|
6
6
|
input: {
|
|
7
7
|
color: string;
|
|
8
8
|
backgroundColor: string;
|
|
9
|
-
disabledBackgroundColor: string;
|
|
10
9
|
borderWidth: string;
|
|
11
10
|
borderStyle: string;
|
|
12
11
|
borderColor: string;
|
|
13
12
|
padding: string;
|
|
13
|
+
borderRadius: string;
|
|
14
|
+
hover: {
|
|
15
|
+
backgroundColor: string;
|
|
16
|
+
};
|
|
17
|
+
focused: {
|
|
18
|
+
outline: string;
|
|
19
|
+
outlineOffset: string;
|
|
20
|
+
};
|
|
21
|
+
disabled: {
|
|
22
|
+
backgroundColor: string;
|
|
23
|
+
cursor: string;
|
|
24
|
+
color: string;
|
|
25
|
+
border: string;
|
|
26
|
+
};
|
|
14
27
|
};
|
|
15
28
|
icon: {
|
|
16
29
|
size: string;
|
|
@@ -6,11 +6,22 @@ const componentAutocomplete = {
|
|
|
6
6
|
input: {
|
|
7
7
|
color: "#000000",
|
|
8
8
|
backgroundColor: "#ffffff",
|
|
9
|
-
|
|
10
|
-
borderWidth: "1px",
|
|
9
|
+
borderWidth: "0.0625rem",
|
|
11
10
|
borderStyle: "solid",
|
|
12
|
-
borderColor: "#
|
|
13
|
-
padding: "
|
|
11
|
+
borderColor: "#545454",
|
|
12
|
+
padding: "0.75rem",
|
|
13
|
+
borderRadius: "0.25rem",
|
|
14
|
+
hover: { backgroundColor: "#f6f6f6" },
|
|
15
|
+
focused: {
|
|
16
|
+
outline: "0.125rem solid #0072a9",
|
|
17
|
+
outlineOffset: "0.125rem"
|
|
18
|
+
},
|
|
19
|
+
disabled: {
|
|
20
|
+
backgroundColor: "#ffffff",
|
|
21
|
+
cursor: "not-allowed",
|
|
22
|
+
color: "#999999",
|
|
23
|
+
border: "0.0625rem solid #dcdcdc"
|
|
24
|
+
}
|
|
14
25
|
},
|
|
15
26
|
icon: {
|
|
16
27
|
size: "20px",
|
|
@@ -18,9 +29,9 @@ const componentAutocomplete = {
|
|
|
18
29
|
color: "#bababa"
|
|
19
30
|
},
|
|
20
31
|
listbox: {
|
|
21
|
-
borderWidth: "
|
|
32
|
+
borderWidth: "0.0625rem",
|
|
22
33
|
borderStyle: "solid",
|
|
23
|
-
borderColor: "#
|
|
34
|
+
borderColor: "#545454",
|
|
24
35
|
paddingY: "8px",
|
|
25
36
|
paddingX: "0px",
|
|
26
37
|
backgroundColor: "#ffffff",
|
|
@@ -104,7 +104,7 @@ const componentDatePicker = {
|
|
|
104
104
|
aspectRatio: "1",
|
|
105
105
|
hovered: { backgroundColor: "#f6f6f6" },
|
|
106
106
|
pressed: { backgroundColor: "#ededed" },
|
|
107
|
-
selected: { backgroundColor: "#
|
|
107
|
+
selected: { backgroundColor: "#c5dfec" },
|
|
108
108
|
focusVisible: { outline: "0.125rem solid #0072a9" },
|
|
109
109
|
disabled: {
|
|
110
110
|
cursor: "not-allowed",
|
|
@@ -136,7 +136,7 @@ const componentDatePicker = {
|
|
|
136
136
|
outsideMonth: { display: "none" },
|
|
137
137
|
hovered: { backgroundColor: "#f6f6f6" },
|
|
138
138
|
pressed: { backgroundColor: "#ededed" },
|
|
139
|
-
selected: { backgroundColor: "#
|
|
139
|
+
selected: { backgroundColor: "#c5dfec" },
|
|
140
140
|
focusVisible: { outline: "0.125rem solid #0072a9" },
|
|
141
141
|
disabled: {
|
|
142
142
|
cursor: "not-allowed",
|
|
@@ -104,7 +104,7 @@ const componentDatePicker = {
|
|
|
104
104
|
aspectRatio: "1",
|
|
105
105
|
hovered: { backgroundColor: "#f6f6f6" },
|
|
106
106
|
pressed: { backgroundColor: "#ededed" },
|
|
107
|
-
selected: { backgroundColor: "#
|
|
107
|
+
selected: { backgroundColor: "#c5dfec" },
|
|
108
108
|
focusVisible: { outline: "0.125rem solid #0072a9" },
|
|
109
109
|
disabled: {
|
|
110
110
|
cursor: "not-allowed",
|
|
@@ -136,7 +136,7 @@ const componentDatePicker = {
|
|
|
136
136
|
outsideMonth: { display: "none" },
|
|
137
137
|
hovered: { backgroundColor: "#f6f6f6" },
|
|
138
138
|
pressed: { backgroundColor: "#ededed" },
|
|
139
|
-
selected: { backgroundColor: "#
|
|
139
|
+
selected: { backgroundColor: "#c5dfec" },
|
|
140
140
|
focusVisible: { outline: "0.125rem solid #0072a9" },
|
|
141
141
|
disabled: {
|
|
142
142
|
cursor: "not-allowed",
|
|
@@ -25,10 +25,7 @@ const componentIntendedAudienceSignifier = {
|
|
|
25
25
|
size: "10px"
|
|
26
26
|
},
|
|
27
27
|
color: "#545454",
|
|
28
|
-
typography: {
|
|
29
|
-
font: "normal 460 0.75rem/1.3 Open Sans",
|
|
30
|
-
lineHeight: "1"
|
|
31
|
-
}
|
|
28
|
+
typography: { lineHeight: "1" }
|
|
32
29
|
};
|
|
33
30
|
//#endregion
|
|
34
31
|
exports.componentIntendedAudienceSignifier = componentIntendedAudienceSignifier;
|
|
@@ -25,10 +25,7 @@ const componentIntendedAudienceSignifier = {
|
|
|
25
25
|
size: "10px"
|
|
26
26
|
},
|
|
27
27
|
color: "#545454",
|
|
28
|
-
typography: {
|
|
29
|
-
font: "normal 460 0.75rem/1.3 Open Sans",
|
|
30
|
-
lineHeight: "1"
|
|
31
|
-
}
|
|
28
|
+
typography: { lineHeight: "1" }
|
|
32
29
|
};
|
|
33
30
|
//#endregion
|
|
34
31
|
export { componentIntendedAudienceSignifier };
|
|
@@ -3,13 +3,21 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
const componentTagTable = {
|
|
6
|
-
|
|
6
|
+
header: {
|
|
7
7
|
backgroundColor: "#dcdcdc",
|
|
8
|
-
fontWeight: 700,
|
|
9
8
|
paddingTop: "3px",
|
|
10
9
|
paddingRight: "5px",
|
|
11
10
|
paddingBottom: "3px",
|
|
12
|
-
paddingLeft: "12px"
|
|
11
|
+
paddingLeft: "12px",
|
|
12
|
+
gap: "4px"
|
|
13
|
+
},
|
|
14
|
+
heading: {
|
|
15
|
+
fontWeight: 700,
|
|
16
|
+
fontSize: "14px"
|
|
17
|
+
},
|
|
18
|
+
subHeading: {
|
|
19
|
+
fontWeight: 400,
|
|
20
|
+
fontSize: "12px"
|
|
13
21
|
},
|
|
14
22
|
cell: {
|
|
15
23
|
paddingX: "5px",
|
|
@@ -3,13 +3,21 @@
|
|
|
3
3
|
* Do not edit directly, this file was auto-generated.
|
|
4
4
|
*/
|
|
5
5
|
declare const componentTagTable: {
|
|
6
|
-
|
|
6
|
+
header: {
|
|
7
7
|
backgroundColor: string;
|
|
8
|
-
fontWeight: number;
|
|
9
8
|
paddingTop: string;
|
|
10
9
|
paddingRight: string;
|
|
11
10
|
paddingBottom: string;
|
|
12
11
|
paddingLeft: string;
|
|
12
|
+
gap: string;
|
|
13
|
+
};
|
|
14
|
+
heading: {
|
|
15
|
+
fontWeight: number;
|
|
16
|
+
fontSize: string;
|
|
17
|
+
};
|
|
18
|
+
subHeading: {
|
|
19
|
+
fontWeight: number;
|
|
20
|
+
fontSize: string;
|
|
13
21
|
};
|
|
14
22
|
cell: {
|
|
15
23
|
paddingX: string;
|