@npm_leadtech/legal-lib-components 5.63.2 → 5.63.4

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.
@@ -1,9 +1,9 @@
1
- import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { RatafiaResultCard } from '../../atoms';
3
3
  import { RatafiaResultCardListStyled } from './RatafiaResultCardList.styled';
4
4
  export const RatafiaResultCardList = ({ keyFacts }) => {
5
5
  if (keyFacts.length === 0)
6
6
  return null;
7
- return (_jsx(RatafiaResultCardListStyled, { className: 'ratafia-result-card-list', children: keyFacts.map((keyFact) => (_jsx(_Fragment, { children: _jsx(RatafiaResultCard, { ...keyFact }, keyFact.id) }))) }));
7
+ return (_jsx(RatafiaResultCardListStyled, { className: 'ratafia-result-card-list', children: keyFacts.map((keyFact) => (_jsx(RatafiaResultCard, { ...keyFact }, keyFact.id))) }));
8
8
  };
9
9
  export default RatafiaResultCardList;
@@ -10,9 +10,7 @@ export const RatafiaResultCardList: React.FC<RatafiaResultCardListProps> = ({ ke
10
10
  return (
11
11
  <RatafiaResultCardListStyled className='ratafia-result-card-list'>
12
12
  {keyFacts.map((keyFact) => (
13
- <>
14
- <RatafiaResultCard key={keyFact.id} {...keyFact} />
15
- </>
13
+ <RatafiaResultCard key={keyFact.id} {...keyFact} />
16
14
  ))}
17
15
  </RatafiaResultCardListStyled>
18
16
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npm_leadtech/legal-lib-components",
3
- "version": "5.63.2",
3
+ "version": "5.63.4",
4
4
  "license": "ISC",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",