@nypl/design-system-react-components 1.5.0-rc → 1.5.0-rc2
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/design-system-react-components.cjs.development.js +63 -23
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +63 -23
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/theme/components/breadcrumb.d.ts +5 -0
- package/dist/theme/components/header/header.d.ts +2 -4
- package/dist/theme/components/header/headerLogin.d.ts +20 -3
- package/dist/theme/components/header/headerMobileNav.d.ts +7 -0
- package/dist/theme/components/header/headerSearchButton.d.ts +1 -0
- package/dist/theme/components/header/headerSearchForm.d.ts +1 -0
- package/dist/theme/components/header/headerSitewideAlerts.d.ts +3 -0
- package/dist/theme/components/header/headerUpperNav.d.ts +4 -1
- package/dist/theme/components/hero.d.ts +3 -3
- package/dist/theme/components/skipNavigation.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,9 +5,10 @@ export declare const headerFocusColor = "#0F465C";
|
|
|
5
5
|
export declare const headerLightBlue = "#78CCED";
|
|
6
6
|
export declare const headerLightBlueIcon = "#1DA1D4";
|
|
7
7
|
export declare const headerRed = "#ED1C24";
|
|
8
|
-
export declare const headerRedDarkMode = "
|
|
8
|
+
export declare const headerRedDarkMode = "dark.ui.error.primary";
|
|
9
9
|
export declare const headerRedDonate = "#E32B31";
|
|
10
10
|
export declare const headerYellow = "#FEE34A";
|
|
11
|
+
export declare const headerYellowDark = "#403B2D";
|
|
11
12
|
export declare const headerFocus: {
|
|
12
13
|
borderRadius: string;
|
|
13
14
|
outlineColor: string;
|
|
@@ -19,9 +20,6 @@ declare const Header: {
|
|
|
19
20
|
parts: string[];
|
|
20
21
|
baseStyle: {
|
|
21
22
|
fontFamily: string;
|
|
22
|
-
_dark: {
|
|
23
|
-
backgroundColor: string;
|
|
24
|
-
};
|
|
25
23
|
container: {
|
|
26
24
|
marginX: {
|
|
27
25
|
md: string;
|
|
@@ -157,12 +157,29 @@ declare const HeaderLogin: {
|
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
159
|
_dark: {
|
|
160
|
-
|
|
160
|
+
bgColor: {
|
|
161
|
+
base: string;
|
|
162
|
+
md: string;
|
|
163
|
+
};
|
|
164
|
+
color: {
|
|
165
|
+
base: string;
|
|
166
|
+
md: string;
|
|
167
|
+
};
|
|
161
168
|
svg: {
|
|
162
|
-
fill:
|
|
169
|
+
fill: {
|
|
170
|
+
base: string;
|
|
171
|
+
md: string;
|
|
172
|
+
};
|
|
163
173
|
};
|
|
164
174
|
_hover: {
|
|
165
|
-
|
|
175
|
+
bgColor: {
|
|
176
|
+
base: string;
|
|
177
|
+
md: string;
|
|
178
|
+
};
|
|
179
|
+
color: {
|
|
180
|
+
base: string;
|
|
181
|
+
md: string;
|
|
182
|
+
};
|
|
166
183
|
};
|
|
167
184
|
};
|
|
168
185
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const Hero: {
|
|
2
2
|
baseStyle: {
|
|
3
|
-
|
|
3
|
+
bgColor: string;
|
|
4
4
|
_dark: {
|
|
5
|
-
|
|
5
|
+
bgColor: string;
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
8
|
variants: {
|
|
@@ -42,7 +42,7 @@ declare const Hero: {
|
|
|
42
42
|
marginBottom: string;
|
|
43
43
|
};
|
|
44
44
|
_dark: {
|
|
45
|
-
|
|
45
|
+
bgColor: string;
|
|
46
46
|
color: string;
|
|
47
47
|
};
|
|
48
48
|
};
|