@tarojs/parse-css-to-stylesheet 0.0.59 → 0.0.63

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -137,14 +137,15 @@ export function parse(
137
137
  | transform | translate、translateX、translateY、translateZ、translate2d、translate3d、scale、scaleX、scaleY、scale3d、rotate、rotateX、rotateY、rotate3d | ✔️ |
138
138
  | transform-origin | Length(top/center/bottom) Length(left/center/right) | ✔️ |
139
139
  | animation | 仅支持 animation-name, animation-duration , animation-timing-function, animation-delay, animation-iteration-count, 暂不支持 style 设置 | ✔️ |
140
+ | box-shadow | | ✔️ |
140
141
  | content | | ✔️ |
141
142
 
142
143
  ⚠️ 注意:
143
144
 
144
145
  - `transform` 不允许连续出现 2 个同类型如:transform: translate(20px 20px) translate3d(10px, 30px, 30px)
145
146
  - `radial-linear`
146
- - \<radial-extent>不支持,如(closest-side、closest-corner、farthest-side、farthest-corner)
147
- - `display` 不支持**行内**
147
+ - \<radial-extent>不支持, 如(closest-side、closest-corner、farthest-side、farthest-corner)
148
+ - `display` 不支持 **行内**
148
149
  - 定位不支持 **bottom** 和 **right**
149
150
 
150
151
  ### 文本样式
@@ -230,6 +231,7 @@ export function parse(
230
231
  | :nth-child() | .intro:nth-child(2) | 选择 class="intro" 元素是其父级的第二个子元素 | ✔️ | |
231
232
  | :first-child | .intro:first-child | 选择 class="intro" 元素是其父级的第一个子级 | ✔️ | |
232
233
  | :last-child | .intro:last-child | 选择 class="intro" 元素是其父级的最后一个子级 | ✔️ | |
234
+ | :empty | .intro:empty | 选择 class="intro" 元素并且其没有子级 | ✔️ | |
233
235
  | :checked | input:checked | 选择每个选中的输入元素 | ❌ | |
234
236
  | ... | | 其他 | ❌ | |
235
237
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/parse-css-to-stylesheet",
3
- "version": "0.0.59",
3
+ "version": "0.0.63",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "napi": {
@@ -55,18 +55,18 @@
55
55
  "packageManager": "yarn@3.6.4",
56
56
  "repository": "https://github.com/NervJS/parse-css-to-stylesheet",
57
57
  "optionalDependencies": {
58
- "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.59",
59
- "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.59",
60
- "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.59",
61
- "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.59",
62
- "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.59",
63
- "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.59",
64
- "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.59",
65
- "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.59",
66
- "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.59",
67
- "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.59",
68
- "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.59",
69
- "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.59",
70
- "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.59"
58
+ "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.63",
59
+ "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.63",
60
+ "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.63",
61
+ "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.63",
62
+ "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.63",
63
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.63",
64
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.63",
65
+ "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.63",
66
+ "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.63",
67
+ "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.63",
68
+ "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.63",
69
+ "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.63",
70
+ "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.63"
71
71
  }
72
72
  }