@tap-payments/os-micro-frontend-shared 0.0.52 → 0.0.53

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.
@@ -27,6 +27,7 @@ const GroupIconChips = ({ children, className, getSourceAnimation, expandDirecti
27
27
  return (_jsx(StyledSourceCell, Object.assign({ "data-testid": "styled-source-cell", sx: Object.assign({}, cellDimentions) }, { children: _jsx(SourcesContainer, Object.assign({ ref: animationContainerRef, layout: true, className: className, whileHover: "animate", animate: "start", sourcesCount: sourceCount, variants: {
28
28
  animate: {
29
29
  width: sourceCount * (6 + 32),
30
+ zIndex: 50,
30
31
  },
31
32
  }, style: {
32
33
  zIndex: 29,
@@ -37,7 +37,6 @@ export const StyledSourceCell = styled('span')(({ theme }) => ({
37
37
  alignItems: 'center',
38
38
  justifyContent: 'flex-start',
39
39
  gap: theme.spacing(1),
40
- position: 'relative',
41
40
  }));
42
41
  export const SourcesContainer = styled(motion.span)(({ sourcesCount }) => ({
43
42
  display: 'flex',
@@ -1,3 +1,3 @@
1
1
  import IconWithBadge from './IconWithBadge';
2
- export { IconWithBadgeProps } from './type';
2
+ export { type IconWithBadgeProps } from './type';
3
3
  export default IconWithBadge;
package/package.json CHANGED
@@ -1,51 +1,51 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.0.52",
4
+ "version": "0.0.53",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
7
7
  "module": "build/index.js",
8
8
  "types": "build/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./build/index.d.ts",
11
12
  "import": "./build/index.js",
12
- "require": "./build/index.js",
13
- "types": "./build/index.d.ts"
13
+ "require": "./build/index.js"
14
14
  },
15
15
  "./constants": {
16
+ "types": "./build/constants/index.d.ts",
16
17
  "import": "./build/constants/index.js",
17
- "require": "./build/constants/index.js",
18
- "types": "./build/constants/index.d.ts"
18
+ "require": "./build/constants/index.js"
19
19
  },
20
20
  "./components": {
21
+ "types": "./build/components/index.d.ts",
21
22
  "import": "./build/components/index.js",
22
- "require": "./build/components/index.js",
23
- "types": "./build/components/index.d.ts"
23
+ "require": "./build/components/index.js"
24
24
  },
25
25
  "./components/*": {
26
+ "types": "./build/components/*/index.d.ts",
26
27
  "import": "./build/components/*/index.js",
27
- "require": "./build/components/*/index.js",
28
- "types": "./build/components/*/index.d.ts"
28
+ "require": "./build/components/*/index.js"
29
29
  },
30
30
  "./hooks": {
31
+ "types": "./build/hooks/index.d.ts",
31
32
  "import": "./build/hooks/index.js",
32
- "require": "./build/hooks/index.js",
33
- "types": "./build/hooks/index.d.ts"
33
+ "require": "./build/hooks/index.js"
34
34
  },
35
35
  "./utils": {
36
+ "types": "./build/utils/index.d.ts",
36
37
  "import": "./build/utils/index.js",
37
- "require": "./build/utils/index.js",
38
- "types": "./build/utils/index.d.ts"
38
+ "require": "./build/utils/index.js"
39
39
  },
40
40
  "./theme": {
41
+ "types": "./build/theme/index.d.ts",
41
42
  "import": "./build/theme/index.js",
42
- "require": "./build/theme/index.js",
43
- "types": "./build/theme/index.d.ts"
43
+ "require": "./build/theme/index.js"
44
44
  },
45
45
  "./types": {
46
+ "types": "./build/types/index.d.ts",
46
47
  "import": "./build/types/index.js",
47
- "require": "./build/types/index.js",
48
- "types": "./build/types/index.d.ts"
48
+ "require": "./build/types/index.js"
49
49
  }
50
50
  },
51
51
  "license": "MIT",