Skip to content

Commit 0436b43

Browse files
committed
0.0.62
1 parent 3a7e8e3 commit 0436b43

File tree

18 files changed

+596
-614
lines changed

18 files changed

+596
-614
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ jobs:
173173
- host: windows-latest
174174
target: x86_64-pc-windows-msvc
175175
node:
176-
- '14'
177176
- '16'
178177
- '18'
179178
runs-on: ${{ matrix.settings.host }}
@@ -205,7 +204,6 @@ jobs:
205204
fail-fast: false
206205
matrix:
207206
node:
208-
- '14'
209207
- '16'
210208
- '18'
211209
runs-on: ubuntu-latest
@@ -237,7 +235,6 @@ jobs:
237235
fail-fast: false
238236
matrix:
239237
node:
240-
- '14'
241238
- '16'
242239
- '18'
243240
runs-on: ubuntu-latest
@@ -271,7 +268,6 @@ jobs:
271268
fail-fast: false
272269
matrix:
273270
node:
274-
- '14'
275271
- '16'
276272
- '18'
277273
runs-on: ubuntu-latest
@@ -345,7 +341,6 @@ jobs:
345341
fail-fast: false
346342
matrix:
347343
node:
348-
- '14'
349344
- '16'
350345
- '18'
351346
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.0.62](https://github.com/NervJS/parse-css-to-stylesheet/compare/v0.0.60...v0.0.62) (2024-04-28)
2+
3+
4+
### Features
5+
6+
* 支持box-shadow ([eeecd38](https://github.com/NervJS/parse-css-to-stylesheet/commit/eeecd38b0d741ed009d4cf1e80be80c35ad082eb))
7+
8+
9+
110
## [0.0.61](https://github.com/NervJS/parse-css-to-stylesheet/compare/v0.0.60...v0.0.61) (2024-04-26)
211

312

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ export function parse(
137137
| transform | translate、translateX、translateY、translateZ、translate2d、translate3d、scale、scaleX、scaleY、scale3d、rotate、rotateX、rotateY、rotate3d | ✔️ |
138138
| transform-origin | Length(top/center/bottom) Length(left/center/right) | ✔️ |
139139
| animation | 仅支持 animation-name, animation-duration , animation-timing-function, animation-delay, animation-iteration-count, 暂不支持 style 设置 | ✔️ |
140+
| box-shadow | | ✔️ |
140141
| content | | ✔️ |
141142

142143
⚠️ 注意:
@@ -230,6 +231,7 @@ export function parse(
230231
| :nth-child() | .intro:nth-child(2) | 选择 class="intro" 元素是其父级的第二个子元素 | ✔️ | |
231232
| :first-child | .intro:first-child | 选择 class="intro" 元素是其父级的第一个子级 | ✔️ | |
232233
| :last-child | .intro:last-child | 选择 class="intro" 元素是其父级的最后一个子级 | ✔️ | |
234+
| :empty | .intro:empty | 选择 class="intro" 元素并且其没有子级 | ✔️ | |
233235
| :checked | input:checked | 选择每个选中的输入元素 || |
234236
| ... | | 其他 || |
235237

npm/android-arm-eabi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-android-arm-eabi",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"android"
66
],

npm/android-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-android-arm64",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"android"
66
],

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-darwin-arm64",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"darwin"
66
],

npm/darwin-universal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-darwin-universal",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"darwin"
66
],

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-darwin-x64",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"darwin"
66
],

npm/linux-arm-gnueabihf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"linux"
66
],

npm/linux-arm64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu",
3-
"version": "0.0.61",
3+
"version": "0.0.62",
44
"os": [
55
"linux"
66
],

0 commit comments

Comments
 (0)