@tamagui/helpers 1.0.0-beta.153 → 1.0.0-beta.181

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.
@@ -84,4 +84,8 @@ const pseudoInvert = {
84
84
  focus: "focusStyle",
85
85
  press: "pressStyle"
86
86
  };
87
+ // Annotate the CommonJS export names for ESM import in node:
88
+ 0 && (module.exports = {
89
+ concatClassName
90
+ });
87
91
  //# sourceMappingURL=concatClassName.js.map
package/dist/cjs/log.js CHANGED
@@ -25,4 +25,8 @@ const log = /* @__PURE__ */ __name((...args) => {
25
25
  console.log(...args);
26
26
  return args[0];
27
27
  }, "log");
28
+ // Annotate the CommonJS export names for ESM import in node:
29
+ 0 && (module.exports = {
30
+ log
31
+ });
28
32
  //# sourceMappingURL=log.js.map
@@ -30,4 +30,8 @@ const simpleHash = /* @__PURE__ */ __name((str) => {
30
30
  }
31
31
  return new Uint32Array([hash])[0].toString(36);
32
32
  }, "simpleHash");
33
+ // Annotate the CommonJS export names for ESM import in node:
34
+ 0 && (module.exports = {
35
+ simpleHash
36
+ });
33
37
  //# sourceMappingURL=simpleHash.js.map
@@ -196,4 +196,17 @@ const mergeTransform = /* @__PURE__ */ __name((obj, key, val) => {
196
196
  obj.transform || (obj.transform = []);
197
197
  obj.transform.push({ [mapTransformKeys[key] || key]: val });
198
198
  }, "mergeTransform");
199
+ // Annotate the CommonJS export names for ESM import in node:
200
+ 0 && (module.exports = {
201
+ invertMapTransformKeys,
202
+ mapTransformKeys,
203
+ mergeTransform,
204
+ stylePropsAll,
205
+ stylePropsText,
206
+ stylePropsTextOnly,
207
+ stylePropsTransform,
208
+ stylePropsView,
209
+ validPseudoKeys,
210
+ validStyles
211
+ });
199
212
  //# sourceMappingURL=validStyleProps.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/helpers",
3
- "version": "1.0.0-beta.153+a49c2588",
3
+ "version": "1.0.0-beta.181+fff2a5b2",
4
4
  "source": "src/index.ts",
5
5
  "types": "types",
6
6
  "main": "dist/cjs",
@@ -17,7 +17,7 @@
17
17
  "clean:build": "tamagui-build clean:build"
18
18
  },
19
19
  "devDependencies": {
20
- "@tamagui/build": "^1.0.0-beta.153+a49c2588",
20
+ "@tamagui/build": "^1.0.0-beta.181+fff2a5b2",
21
21
  "react-native": "*"
22
22
  },
23
23
  "peerDependencies": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "a49c2588898b6db5660f9b3346078cd87f585dcf"
29
+ "gitHead": "fff2a5b25ea3881d499e5376cd166f58556acaba"
30
30
  }