@tracktor/design-system 3.1.0 → 3.1.1

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,4 +1,19 @@
1
1
  import { PaperProps } from '@mui/material';
2
- export type BottomFixedPaperProps = PaperProps;
2
+ export interface BottomFixedPaperProps extends PaperProps {
3
+ /**
4
+ * The position of the paper.
5
+ * @default "fixed"
6
+ */
7
+ position?: "fixed" | "absolute" | "sticky" | "static" | "relative";
8
+ /**
9
+ * The padding of the paper.
10
+ * @default y = 3, x = 2
11
+ */
12
+ padding?: number | string;
13
+ /**
14
+ * The direction of the paper.
15
+ */
16
+ direction?: "row" | "column";
17
+ }
3
18
  declare const _default: import('react').ForwardRefExoticComponent<Omit<BottomFixedPaperProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
4
19
  export default _default;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "3.1.0",
5
+ "version": "3.1.1",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",