@tracktor/design-system 4.21.4 → 4.21.5

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.
@@ -0,0 +1,2 @@
1
+ declare const downloadFile: (src: string, filename?: string) => void;
2
+ export default downloadFile;
@@ -0,0 +1,2 @@
1
+ declare const getThumbnailPath: (iconOnly: boolean, isError: boolean, isDocument: boolean, extension: string, src: string, srcThumb: string) => string | undefined;
2
+ export default getThumbnailPath;
@@ -0,0 +1,10 @@
1
+ export declare enum Browser {
2
+ Chrome = "Chrome",
3
+ Firefox = "Firefox",
4
+ Safari = "Safari",
5
+ Edge = "Edge",
6
+ Opera = "Opera",
7
+ Unknown = "Unknown"
8
+ }
9
+ declare const getBrowser: () => Browser;
10
+ export default getBrowser;
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": "4.21.4",
5
+ "version": "4.21.5",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",