@thecb/components 10.8.3-beta.1 → 10.8.3-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "10.8.3-beta.1",
3
+ "version": "10.8.3-beta.3",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -61,7 +61,7 @@ const Search = ({
61
61
  id="searchInput"
62
62
  role="search"
63
63
  aria-controls={ariaControlsId}
64
- extraStyles={`border: none; box-shadow: 0px 1px 2px 0px ${colors.CHARADE_GREY}1A; font-size: 0.875rem;`}
64
+ extraStyles={`border-radius: 4px 0 0 4px; border: none; box-shadow: 0px 1px 2px 0px ${colors.CHARADE_GREY}1A; font-size: 0.875rem;`}
65
65
  onKeyDown={e =>
66
66
  searchOnKeypress || e.key === "Enter" ? handleSubmit() : noop
67
67
  }
@@ -105,6 +105,8 @@ const Search = ({
105
105
  margin: 4px 0 0;
106
106
  border-radius: 0 4px 4px 0;
107
107
  background: ${themeValues.searchIconBackgroundColor};
108
+ border: none;
109
+ box-shadow: 0px 1px 2px 0px ${colors.CHARADE_GREY}1A;
108
110
  `}
109
111
  variant="primary"
110
112
  contentOverride={true}
@@ -260,7 +260,6 @@ const PaymentDetails = ({
260
260
  // end partial void section
261
261
  isLoading = false,
262
262
  isError = false,
263
- multiCartEnabled = false,
264
263
  agencyDisplayName
265
264
  }) => {
266
265
  const [isOpen, setIsOpen] = useState(initiallyOpen);
@@ -292,7 +291,7 @@ const PaymentDetails = ({
292
291
  ));
293
292
  const agencySubheading = (
294
293
  <>
295
- {multiCartEnabled && agencyDisplayName && (
294
+ {agencyDisplayName && (
296
295
  <Cluster
297
296
  justify="space-between"
298
297
  align="center"
@@ -160,7 +160,6 @@ export const paymentDetails = () => (
160
160
  collapsibleOnMobile={boolean("collapsibleOnMobile", false, "props")}
161
161
  initiallyOpen={boolean("initiallyOpen", true, "props")}
162
162
  hideTitle={boolean("hideTitle", false, "props")}
163
- multiCartEnabled={true}
164
163
  agencyDisplayName="Office of Charitable Trust"
165
164
  />
166
165
  );