@aleph-alpha/config-css 0.8.1 → 0.8.3
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 +24 -0
- package/dist/index.js +4 -1
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 0.8.3 (2025-03-20)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **release:** publish
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- lucas.esperidiao
|
|
10
|
+
|
|
11
|
+
## 0.9.0 (2025-03-20)
|
|
12
|
+
|
|
13
|
+
This was a version bump only for config-css-preset to align it with other projects, there were no code changes.
|
|
14
|
+
|
|
15
|
+
## 0.8.2 (2025-03-13)
|
|
16
|
+
|
|
17
|
+
### 🩹 Fixes
|
|
18
|
+
|
|
19
|
+
- refactor package.json
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Uyiosa Enabulele
|
|
24
|
+
|
|
1
25
|
## 0.8.1 (2025-03-12)
|
|
2
26
|
|
|
3
27
|
### 🩹 Fixes
|
package/dist/index.js
CHANGED
|
@@ -117,11 +117,13 @@ const Z = [
|
|
|
117
117
|
dvh: 100,
|
|
118
118
|
lvh: 100,
|
|
119
119
|
lvw: 100
|
|
120
|
-
}, T = /^\[(color|length|size|position|quoted|string):/i, Y = [
|
|
120
|
+
}, T = /^\[(color|image|length|size|position|quoted|string):/i, Y = [
|
|
121
121
|
// basic props
|
|
122
122
|
"color",
|
|
123
123
|
"border-color",
|
|
124
124
|
"background-color",
|
|
125
|
+
"outline-color",
|
|
126
|
+
"text-decoration-color",
|
|
125
127
|
"flex-grow",
|
|
126
128
|
"flex",
|
|
127
129
|
"flex-shrink",
|
|
@@ -136,6 +138,7 @@ const Z = [
|
|
|
136
138
|
"text-shadow",
|
|
137
139
|
"transform",
|
|
138
140
|
"box-shadow",
|
|
141
|
+
"border",
|
|
139
142
|
// positions
|
|
140
143
|
"background-position",
|
|
141
144
|
"left",
|
package/package.json
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aleph-alpha/config-css",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.3",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
7
|
"prettier": "@aleph-alpha/prettier-config-frontend",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"author": "Aleph Alpha GmbH",
|
|
10
|
-
"
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "https://gitlab.aleph-alpha.de/engineering/frontend-hub"
|
|
13
|
-
},
|
|
10
|
+
"homepage": "https://docs.aleph-alpha.com",
|
|
14
11
|
"typedocOptions": {
|
|
15
12
|
"entryPoints": [
|
|
16
13
|
"./src/index.ts"
|
|
@@ -19,7 +16,7 @@
|
|
|
19
16
|
"dependencies": {
|
|
20
17
|
"@tokens-studio/sd-transforms": "1.2.12",
|
|
21
18
|
"token-transformer": "0.0.33",
|
|
22
|
-
"unocss": "^0.
|
|
19
|
+
"unocss": "^66.0.0",
|
|
23
20
|
"unocss-preset-animations": "1.1.1",
|
|
24
21
|
"unocss-preset-theme": "0.14.1"
|
|
25
22
|
},
|