@tracktor/design-system 3.6.6 → 3.8.0
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/CHANGELOG.md +3 -2
- package/dist/main.cjs +12 -12
- package/dist/main.js +1023 -1012
- package/dist/src/components/DataDisplay/Chip/Chip.d.ts +1 -0
- package/dist/src/components/Inputs/File/File.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChipProps as ChipPropsMui } from '@mui/material';
|
|
2
2
|
interface ChipProps extends ChipPropsMui {
|
|
3
3
|
dot?: boolean;
|
|
4
|
+
lineThrough?: boolean;
|
|
4
5
|
}
|
|
5
6
|
declare const _default: import('react').ForwardRefExoticComponent<Omit<ChipProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
|
|
6
7
|
export default _default;
|
|
@@ -13,10 +13,12 @@ export interface FileUploadProps {
|
|
|
13
13
|
multiple?: boolean;
|
|
14
14
|
fullWidth?: boolean;
|
|
15
15
|
disabled?: boolean;
|
|
16
|
+
pattern?: string;
|
|
17
|
+
title?: string;
|
|
16
18
|
localeText?: {
|
|
17
19
|
files: string;
|
|
18
20
|
};
|
|
19
21
|
onChange?(e: ChangeEvent<HTMLInputElement>): void;
|
|
20
22
|
}
|
|
21
|
-
declare const File: (
|
|
23
|
+
declare const File: import('react').ForwardRefExoticComponent<FileUploadProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
22
24
|
export default File;
|