@tarojs/parse-css-to-stylesheet 0.0.50 → 0.0.52

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 +6 -6
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -120,11 +120,11 @@ export function parse(
120
120
  | border-right-color | Color | ✔️ |
121
121
  | border-bottom-color | Color | ✔️ |
122
122
  | border-left-color | Color | ✔️ |
123
- | border-radius | Length(可设置 4 个值,控制 4 个方向) | ✔️ |
124
- | border-top-left-radius | Length | ✔️ |
125
- | border-top-right-radius | Length | ✔️ |
126
- | border-bottom-left-radius | Length | ✔️ |
127
- | border-bottom-right-radius | Length | ✔️ |
123
+ | border-radius | Length(可设置 4 个值,控制 4 个方向), 不支持百分比 | ✔️ |
124
+ | border-top-left-radius | Length, 不支持百分比 | ✔️ |
125
+ | border-top-right-radius | Length, 不支持百分比 | ✔️ |
126
+ | border-bottom-left-radius | Length, 不支持百分比 | ✔️ |
127
+ | border-bottom-right-radius | Length, 不支持百分比 | ✔️ |
128
128
  | border-style | 'dotted', 'dashed', 'solid' (4 个值,控制 4 个方向) | ✔️ |
129
129
  | border-top-style | 'dotted', 'dashed', 'solid' | ✔️ |
130
130
  | border-right-style | 'dotted', 'dashed', 'solid' | ✔️ |
@@ -133,7 +133,7 @@ export function parse(
133
133
  | opacity | Number | ✔️ |
134
134
  | display | 'flex', 'none', 'block' | ✔️ |
135
135
  | display | 'inline-block', 'inline-flex', 'inline' | ❌ |
136
- | overflow | 'hidden', 'visible', 'scroll' | ✔️ |
136
+ | overflow | 'hidden', 'visible', 'scroll', 'auto' | ✔️ |
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 | | 后续支持 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/parse-css-to-stylesheet",
3
- "version": "0.0.50",
3
+ "version": "0.0.52",
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.50",
59
- "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.50",
60
- "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.50",
61
- "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.50",
62
- "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.50",
63
- "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.50",
64
- "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.50",
65
- "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.50",
66
- "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.50",
67
- "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.50",
68
- "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.50",
69
- "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.50",
70
- "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.50"
58
+ "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.52",
59
+ "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.52",
60
+ "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.52",
61
+ "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.52",
62
+ "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.52",
63
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.52",
64
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.52",
65
+ "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.52",
66
+ "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.52",
67
+ "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.52",
68
+ "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.52",
69
+ "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.52",
70
+ "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.52"
71
71
  }
72
72
  }