@tarojs/parse-css-to-stylesheet 0.0.53 → 0.0.55

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +0 -1
  3. package/package.json +14 -14
package/README.md CHANGED
@@ -136,7 +136,7 @@ export function parse(
136
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
- | animation | | 后续支持 |
139
+ | animation | 仅支持 animation-name, animation-duration , animation-timing-function, animation-delay, animation-iteration-count, 暂不支持 style 设置 | ✔️ |
140
140
  | content | | ✔️ |
141
141
 
142
142
  ⚠️ 注意:
package/index.d.ts CHANGED
@@ -5,7 +5,6 @@
5
5
 
6
6
  export interface ParseOptions {
7
7
  platformString: string
8
- isEnableNesting?: boolean
9
8
  }
10
9
  export interface ParseResult {
11
10
  code: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/parse-css-to-stylesheet",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
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.53",
59
- "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.53",
60
- "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.53",
61
- "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.53",
62
- "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.53",
63
- "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.53",
64
- "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.53",
65
- "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.53",
66
- "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.53",
67
- "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.53",
68
- "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.53",
69
- "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.53",
70
- "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.53"
58
+ "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.55",
59
+ "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.55",
60
+ "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.55",
61
+ "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.55",
62
+ "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.55",
63
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.55",
64
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.55",
65
+ "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.55",
66
+ "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.55",
67
+ "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.55",
68
+ "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.55",
69
+ "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.55",
70
+ "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.55"
71
71
  }
72
72
  }