@spaced-out/ui-design-system 0.1.52 → 0.1.54

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,26 @@
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.54](https://github.com/spaced-out/ui-design-system/compare/v0.1.53...v0.1.54) (2023-09-25)
6
+
7
+
8
+ ### Features
9
+
10
+ * tokens table refactor ([f895fd7](https://github.com/spaced-out/ui-design-system/commit/f895fd794e2b26eacfcdb59c75d9e25cd40753c4))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * file type fixes ([a9d9dca](https://github.com/spaced-out/ui-design-system/commit/a9d9dca353d59bf6ca54ddb8e3ec6195dd8858de))
16
+ * table height fixes ([20826ca](https://github.com/spaced-out/ui-design-system/commit/20826ca585f6e73bb73f17f5c18dad29dbd790ad))
17
+
18
+ ### [0.1.53](https://github.com/spaced-out/ui-design-system/compare/v0.1.52...v0.1.53) (2023-09-21)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * file type fix ([9109f3d](https://github.com/spaced-out/ui-design-system/commit/9109f3dd2fe9ce4ee2aa3b72225de4cb90d59d33))
24
+
5
25
  ### [0.1.52](https://github.com/spaced-out/ui-design-system/compare/v0.1.51...v0.1.52) (2023-09-21)
6
26
 
7
27
 
@@ -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 | LocalFileProps,
27
+ file: File,
35
28
  id: string,
36
29
  reject?: boolean,
37
30
  rejectReason?: string,
@@ -30,8 +30,9 @@
30
30
 
31
31
  .defaultTable {
32
32
  min-width: sizeFluid;
33
+ height: fit-content;
33
34
  flex-flow: column;
34
- overflow-x: scroll;
35
+ overflow-x: auto;
35
36
  border-collapse: collapse;
36
37
  box-sizing: border-box;
37
38
  border-radius: var(--border-radius);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.1.52",
3
+ "version": "0.1.54",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {