@spaced-out/ui-design-system 0.4.15-beta.3 → 0.4.15-beta.4
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 +2 -0
- package/package.json +1 -92
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
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.4.15-beta.4](https://github.com/spaced-out/ui-design-system/compare/v0.4.15-beta.3...v0.4.15-beta.4) (2025-08-14)
|
|
6
|
+
|
|
5
7
|
### [0.4.15-beta.3](https://github.com/spaced-out/ui-design-system/compare/v0.4.15-beta.2...v0.4.15-beta.3) (2025-08-14)
|
|
6
8
|
|
|
7
9
|
### [0.4.15-beta.2](https://github.com/spaced-out/ui-design-system/compare/v0.4.15-beta.1...v0.4.15-beta.2) (2025-08-13)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spaced-out/ui-design-system",
|
|
3
|
-
"version": "0.4.15-beta.
|
|
3
|
+
"version": "0.4.15-beta.4",
|
|
4
4
|
"description": "Sense UI components library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Spaced Out"
|
|
@@ -8,97 +8,6 @@
|
|
|
8
8
|
"license": "UNLICENSED",
|
|
9
9
|
"main": "lib/index.js",
|
|
10
10
|
"types": "lib/index.d.ts",
|
|
11
|
-
"typesVersions": {
|
|
12
|
-
"*": {
|
|
13
|
-
"lib/components/*": [
|
|
14
|
-
"lib/components/*"
|
|
15
|
-
],
|
|
16
|
-
"lib/hooks/*": [
|
|
17
|
-
"lib/hooks/*"
|
|
18
|
-
],
|
|
19
|
-
"lib/utils/*": [
|
|
20
|
-
"lib/utils/*"
|
|
21
|
-
],
|
|
22
|
-
"lib/styles": [
|
|
23
|
-
"lib/styles/index.d.ts"
|
|
24
|
-
],
|
|
25
|
-
"lib/styles/*": [
|
|
26
|
-
"lib/styles/*"
|
|
27
|
-
],
|
|
28
|
-
"lib/types/*": [
|
|
29
|
-
"lib/types/*"
|
|
30
|
-
],
|
|
31
|
-
"*": [
|
|
32
|
-
"lib/*",
|
|
33
|
-
"lib/*/index.d.ts"
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
"exports": {
|
|
38
|
-
".": {
|
|
39
|
-
"types": "./lib/index.d.ts",
|
|
40
|
-
"require": "./lib/index.js",
|
|
41
|
-
"default": "./lib/index.js"
|
|
42
|
-
},
|
|
43
|
-
"./lib/components": {
|
|
44
|
-
"types": "./lib/components/index.d.ts",
|
|
45
|
-
"require": "./lib/components/index.js",
|
|
46
|
-
"default": "./lib/components/index.js"
|
|
47
|
-
},
|
|
48
|
-
"./lib/components/*": {
|
|
49
|
-
"types": "./lib/components/*",
|
|
50
|
-
"require": "./lib/components/*",
|
|
51
|
-
"default": "./lib/components/*"
|
|
52
|
-
},
|
|
53
|
-
"./lib/hooks": {
|
|
54
|
-
"types": "./lib/hooks/index.d.ts",
|
|
55
|
-
"require": "./lib/hooks/index.js",
|
|
56
|
-
"default": "./lib/hooks/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./lib/hooks/*": {
|
|
59
|
-
"types": "./lib/hooks/*",
|
|
60
|
-
"require": "./lib/hooks/*",
|
|
61
|
-
"default": "./lib/hooks/*"
|
|
62
|
-
},
|
|
63
|
-
"./lib/utils": {
|
|
64
|
-
"types": "./lib/utils/index.d.ts",
|
|
65
|
-
"require": "./lib/utils/index.js",
|
|
66
|
-
"default": "./lib/utils/index.js"
|
|
67
|
-
},
|
|
68
|
-
"./lib/utils/*": {
|
|
69
|
-
"types": "./lib/utils/*",
|
|
70
|
-
"require": "./lib/utils/*",
|
|
71
|
-
"default": "./lib/utils/*"
|
|
72
|
-
},
|
|
73
|
-
"./lib/styles": {
|
|
74
|
-
"types": "./lib/styles/index.d.ts",
|
|
75
|
-
"require": "./lib/styles/index.js",
|
|
76
|
-
"default": "./lib/styles/index.js"
|
|
77
|
-
},
|
|
78
|
-
"./lib/styles/*": {
|
|
79
|
-
"types": "./lib/styles/*",
|
|
80
|
-
"require": "./lib/styles/*",
|
|
81
|
-
"default": "./lib/styles/*"
|
|
82
|
-
},
|
|
83
|
-
"./lib/types": {
|
|
84
|
-
"types": "./lib/types/index.d.ts",
|
|
85
|
-
"require": "./lib/types/index.js",
|
|
86
|
-
"default": "./lib/types/index.js"
|
|
87
|
-
},
|
|
88
|
-
"./lib/types/*": {
|
|
89
|
-
"types": "./lib/types/*",
|
|
90
|
-
"require": "./lib/types/*",
|
|
91
|
-
"default": "./lib/types/*"
|
|
92
|
-
},
|
|
93
|
-
"./lib/*": {
|
|
94
|
-
"types": "./lib/*",
|
|
95
|
-
"require": "./lib/*",
|
|
96
|
-
"default": "./lib/*"
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
"sideEffects": [
|
|
100
|
-
"**/*.css"
|
|
101
|
-
],
|
|
102
11
|
"scripts": {
|
|
103
12
|
"build": "yarn build:style-variables && gulp build && yarn build:types",
|
|
104
13
|
"build:style-variables": "rimraf src/styles/variables && style-dictionary build --config ./config.js",
|