@nypl/design-system-react-components 3.4.0-rc2 → 3.4.0-rc4

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.
@@ -37201,7 +37201,9 @@ const RA = ee({
37201
37201
  // Set this element to start on the second 1280px grid column.
37202
37202
  gridColumn: "2",
37203
37203
  // But this element also contains its own grid system within.
37204
- display: "grid",
37204
+ // display: "grid",
37205
+ display: { base: "flex", md: "grid" },
37206
+ flexDirection: { base: "column", md: null },
37205
37207
  gridTemplateColumns: "1fr",
37206
37208
  paddingY: 0,
37207
37209
  paddingX: "s",
@@ -37224,17 +37226,18 @@ const RA = ee({
37224
37226
  })
37225
37227
  }), JA = ee({
37226
37228
  baseStyle: C2({
37227
- gridColumn: { base: "1", md: "1 / span 2" },
37228
- overflow: "auto"
37229
+ gridColumn: { base: "1", md: "1 / span 2" }
37229
37230
  }),
37230
37231
  variants: {
37231
37232
  left: {
37232
37233
  gridColumn: { base: "1", md: "2" },
37233
37234
  marginEnd: { md: 0 },
37234
- minWidth: { md: 0 }
37235
+ minWidth: { md: 0 },
37236
+ overflow: { base: "unset", md: "hidden" }
37235
37237
  },
37236
37238
  right: {
37237
- gridColumn: { base: "1", md: "1" }
37239
+ gridColumn: { base: "1", md: "1" },
37240
+ overflow: { base: "unset", md: "hidden" }
37238
37241
  }
37239
37242
  }
37240
37243
  }), ez = ee({
@@ -40,7 +40,14 @@ declare const _default: {
40
40
  TemplateContent: {
41
41
  baseStyle?: {
42
42
  gridColumn: string;
43
- display: string;
43
+ display: {
44
+ base: "flex";
45
+ md: "grid";
46
+ };
47
+ flexDirection: {
48
+ base: "column";
49
+ md: any;
50
+ };
44
51
  gridTemplateColumns: string;
45
52
  paddingY: number;
46
53
  paddingX: string;
@@ -93,7 +100,6 @@ declare const _default: {
93
100
  base: "1";
94
101
  md: "1 / span 2";
95
102
  };
96
- overflow: string;
97
103
  };
98
104
  sizes?: {
99
105
  [key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
@@ -110,12 +116,20 @@ declare const _default: {
110
116
  minWidth: {
111
117
  md: number;
112
118
  };
119
+ overflow: {
120
+ base: "unset";
121
+ md: "hidden";
122
+ };
113
123
  };
114
124
  right: {
115
125
  gridColumn: {
116
126
  base: "1";
117
127
  md: "1";
118
128
  };
129
+ overflow: {
130
+ base: "unset";
131
+ md: "hidden";
132
+ };
119
133
  };
120
134
  };
121
135
  defaultProps?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nypl/design-system-react-components",
3
- "version": "3.4.0-rc2",
3
+ "version": "3.4.0-rc4",
4
4
  "description": "NYPL Reservoir Design System React Components",
5
5
  "repository": {
6
6
  "type": "git",