tycho-components 0.0.17-SNAPSHOT-6 → 0.0.17-SNAPSHOT-7

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.
@@ -24,7 +24,31 @@ export default function AppPagination({ totalElements, pagination, setPagination
24
24
  const menuProps = {
25
25
  PaperProps: {
26
26
  style: {
27
- maxHeight: 400,
27
+ maxHeight: 200,
28
28
  },
29
29
  },
30
+ anchorOrigin: {
31
+ vertical: 'top',
32
+ horizontal: 'left',
33
+ },
34
+ transformOrigin: {
35
+ vertical: 'bottom',
36
+ horizontal: 'left',
37
+ },
38
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
39
+ // @ts-expect-error -- PopperProps is not typed but works at runtime
40
+ PopperProps: {
41
+ modifiers: [
42
+ {
43
+ name: 'flip',
44
+ enabled: false,
45
+ },
46
+ {
47
+ name: 'offset',
48
+ options: {
49
+ offset: [0, -4],
50
+ },
51
+ },
52
+ ],
53
+ },
30
54
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tycho-components",
3
3
  "private": false,
4
- "version": "0.0.17-SNAPSHOT-6",
4
+ "version": "0.0.17-SNAPSHOT-7",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {