@spaced-out/ui-design-system 0.1.51 → 0.1.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.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.53](https://github.com/spaced-out/ui-design-system/compare/v0.1.52...v0.1.53) (2023-09-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* file type fix ([9109f3d](https://github.com/spaced-out/ui-design-system/commit/9109f3dd2fe9ce4ee2aa3b72225de4cb90d59d33))
|
|
11
|
+
|
|
12
|
+
### [0.1.52](https://github.com/spaced-out/ui-design-system/compare/v0.1.51...v0.1.52) (2023-09-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* added some more dummy data for table examples ([ee91ad2](https://github.com/spaced-out/ui-design-system/commit/ee91ad25ef8696d08b590243e50a5bca4d5bc4b2))
|
|
18
|
+
* docs fixes ([e4f2ff7](https://github.com/spaced-out/ui-design-system/commit/e4f2ff7e81983c6869bceb80379d869e408c2c89))
|
|
19
|
+
* table overflow set to auto ([04fbe50](https://github.com/spaced-out/ui-design-system/commit/04fbe50e1db193b7cb80a8b7a35b1b182785e9d8))
|
|
20
|
+
|
|
5
21
|
### [0.1.51](https://github.com/spaced-out/ui-design-system/compare/v0.1.50...v0.1.51) (2023-09-20)
|
|
6
22
|
|
|
7
23
|
|
|
@@ -23,15 +23,8 @@ type ClassNames = $ReadOnly<{
|
|
|
23
23
|
|
|
24
24
|
export type FileProgress = number | 'indeterminate';
|
|
25
25
|
|
|
26
|
-
type LocalFileProps = {
|
|
27
|
-
name?: string,
|
|
28
|
-
type?: string,
|
|
29
|
-
size?: number,
|
|
30
|
-
...
|
|
31
|
-
};
|
|
32
|
-
|
|
33
26
|
export type FileObject = {
|
|
34
|
-
file: File
|
|
27
|
+
file: File,
|
|
35
28
|
id: string,
|
|
36
29
|
reject?: boolean,
|
|
37
30
|
rejectReason?: string,
|