@cssxjs/loaders 0.2.27 → 0.2.30

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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.2.30](https://github.com/startupjs/cssx/compare/v0.2.29...v0.2.30) (2026-01-18)
7
+
8
+
9
+ ### Features
10
+
11
+ * support animation and transition (the way it's expected by Reanimated v4) ([44a1f77](https://github.com/startupjs/cssx/commit/44a1f778074f1f65a8ccd76994a6bf1a3eb5e4a7))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [0.2.27](https://github.com/startupjs/cssx/compare/v0.2.26...v0.2.27) (2025-12-16)
7
18
 
8
19
  **Note:** Version bump only for package @cssxjs/loaders
@@ -5,7 +5,11 @@ const EXPORT_REGEX = /:export\s*\{/
5
5
 
6
6
  module.exports = function cssToReactNative (source) {
7
7
  source = escapeExport(source)
8
- const cssObject = css2rn(source, { parseMediaQueries: true, parsePartSelectors: true })
8
+ const cssObject = css2rn(source, {
9
+ parseMediaQueries: true,
10
+ parsePartSelectors: true,
11
+ parseKeyframes: true
12
+ })
9
13
  for (const key in cssObject.__exportProps || {}) {
10
14
  cssObject[key] = parseStylValue(cssObject.__exportProps[key])
11
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cssxjs/loaders",
3
- "version": "0.2.27",
3
+ "version": "0.2.30",
4
4
  "description": "Webpack-compatible loaders for CSSX styles in React Native and Web bundlers",
5
5
  "exports": {
6
6
  "./callLoader": "./callLoader.js",
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@startupjs/css-to-react-native-transform": "^2.1.0-1",
23
+ "@startupjs/css-to-react-native-transform": "2.1.0-2",
24
24
  "stylus": "0.64.0"
25
25
  },
26
- "gitHead": "68a2b7e3305e225801f6e636eff421e0a34d4a6c"
26
+ "gitHead": "2fd171f6da726008a2386471bd5be4b5291e49ab"
27
27
  }