@tamagui/calc 1.13.3 → 1.13.4

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/dist/cjs/index.js CHANGED
@@ -1,70 +1,2 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var src_exports = {};
20
- __export(src_exports, {
21
- calc: () => calc
22
- });
23
- module.exports = __toCommonJS(src_exports);
24
- var import_core = require("@tamagui/core");
25
- const operators = {
26
- "+": (a, b) => a + b,
27
- "-": (a, b) => a - b,
28
- "/": (a, b) => a / b,
29
- "*": (a, b) => a * b
30
- };
31
- const calc = (...valuesAndOperators) => {
32
- if (import_core.isWeb) {
33
- let res2 = "calc(";
34
- for (const cur of valuesAndOperators) {
35
- if (operators[cur]) {
36
- res2 += ` ${cur} `;
37
- } else {
38
- res2 += convertToVariableOrNumber(cur);
39
- }
40
- }
41
- return `${res2})`;
42
- }
43
- let res = 0;
44
- let nextOp = null;
45
- for (const cur of valuesAndOperators) {
46
- if (operators[cur]) {
47
- nextOp = operators[cur];
48
- } else {
49
- if (nextOp) {
50
- res = nextOp(res, cur);
51
- nextOp = null;
52
- } else {
53
- res = +cur;
54
- }
55
- }
56
- }
57
- return res;
58
- };
59
- const convertToVariableOrNumber = (v) => {
60
- const varOrVal = (0, import_core.getVariableVariable)(v);
61
- if (typeof varOrVal === "number") {
62
- return `${varOrVal}px`;
63
- }
64
- return varOrVal;
65
- };
66
- // Annotate the CommonJS export names for ESM import in node:
67
- 0 && (module.exports = {
68
- calc
69
- });
1
+ "use strict";var s=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var m=(r,e)=>{for(var o in e)s(r,o,{get:e[o],enumerable:!0})},p=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of u(e))!c.call(r,t)&&t!==o&&s(r,t,{get:()=>e[t],enumerable:!(n=l(e,t))||n.enumerable});return r};var b=r=>p(s({},"__esModule",{value:!0}),r);var k={};m(k,{calc:()=>f});module.exports=b(k);var a=require("@tamagui/core");const i={"+":(r,e)=>r+e,"-":(r,e)=>r-e,"/":(r,e)=>r/e,"*":(r,e)=>r*e},f=(...r)=>{if(a.isWeb){let n="calc(";for(const t of r)i[t]?n+=` ${t} `:n+=y(t);return`${n})`}let e=0,o=null;for(const n of r)i[n]?o=i[n]:o?(e=o(e,n),o=null):e=+n;return e},y=r=>{const e=(0,a.getVariableVariable)(r);return typeof e=="number"?`${e}px`:e};0&&(module.exports={calc});
70
2
  //# sourceMappingURL=index.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
4
  "sourcesContent": ["import { getVariableVariable, isWeb } from '@tamagui/core'\nimport type {\n FontLineHeightTokens,\n FontSizeTokens,\n SizeTokens,\n SpaceTokens,\n} from '@tamagui/core'\n\n// unused code - not exported could be used for cross compat calc() functions\n\n/**\n * Simple calc() that handles native + web\n * on web: outputs a calc() string\n * on native: outputs a plain number\n */\n\nexport type CalcVal =\n | string\n | number\n | SizeTokens\n | SpaceTokens\n | FontSizeTokens\n | FontLineHeightTokens\n\nconst operators = {\n '+': (a: number, b: number) => a + b,\n '-': (a: number, b: number) => a - b,\n '/': (a: number, b: number) => a / b,\n '*': (a: number, b: number) => a * b,\n}\n\ntype Operator = keyof typeof operators\n\nexport const calc = (...valuesAndOperators: (CalcVal | Operator)[]) => {\n if (isWeb) {\n let res = 'calc('\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n // spaces are significant\n res += ` ${cur} `\n } else {\n res += convertToVariableOrNumber(cur)\n }\n }\n return `${res})`\n }\n\n let res = 0\n let nextOp: any = null\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n nextOp = operators[cur as any]\n } else {\n if (nextOp) {\n res = nextOp(res, cur)\n nextOp = null\n } else {\n res = +cur\n }\n }\n }\n\n return res\n}\n\nconst convertToVariableOrNumber = (v: any) => {\n const varOrVal = getVariableVariable(v)\n if (typeof varOrVal === 'number') {\n return `${varOrVal}px`\n }\n return varOrVal\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA2C;AAwB3C,MAAM,YAAY;AAAA,EAChB,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AACrC;AAIO,MAAM,OAAO,IAAI,uBAA+C;AACrE,MAAI,mBAAO;AACT,QAAIA,OAAM;AACV,eAAW,OAAO,oBAAoB;AACpC,UAAI,UAAU,GAAU,GAAG;AAEzB,QAAAA,QAAO,IAAI;AAAA,MACb,OAAO;AACL,QAAAA,QAAO,0BAA0B,GAAG;AAAA,MACtC;AAAA,IACF;AACA,WAAO,GAAGA;AAAA,EACZ;AAEA,MAAI,MAAM;AACV,MAAI,SAAc;AAClB,aAAW,OAAO,oBAAoB;AACpC,QAAI,UAAU,GAAU,GAAG;AACzB,eAAS,UAAU,GAAU;AAAA,IAC/B,OAAO;AACL,UAAI,QAAQ;AACV,cAAM,OAAO,KAAK,GAAG;AACrB,iBAAS;AAAA,MACX,OAAO;AACL,cAAM,CAAC;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAEA,MAAM,4BAA4B,CAAC,MAAW;AAC5C,QAAM,eAAW,iCAAoB,CAAC;AACtC,MAAI,OAAO,aAAa,UAAU;AAChC,WAAO,GAAG;AAAA,EACZ;AACA,SAAO;AACT;",
6
- "names": ["res"]
5
+ "mappings": "yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,UAAAE,IAAA,eAAAC,EAAAH,GAAA,IAAAI,EAA2C,yBAwB3C,MAAMC,EAAY,CAChB,IAAK,CAACC,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,CACrC,EAIaL,EAAO,IAAIM,IAA+C,CACrE,GAAI,QAAO,CACT,IAAIC,EAAM,QACV,UAAWC,KAAOF,EACZH,EAAUK,CAAU,EAEtBD,GAAO,IAAIC,KAEXD,GAAOE,EAA0BD,CAAG,EAGxC,MAAO,GAAGD,IACZ,CAEA,IAAIA,EAAM,EACNG,EAAc,KAClB,UAAWF,KAAOF,EACZH,EAAUK,CAAU,EACtBE,EAASP,EAAUK,CAAU,EAEzBE,GACFH,EAAMG,EAAOH,EAAKC,CAAG,EACrBE,EAAS,MAETH,EAAM,CAACC,EAKb,OAAOD,CACT,EAEME,EAA6BE,GAAW,CAC5C,MAAMC,KAAW,uBAAoBD,CAAC,EACtC,OAAI,OAAOC,GAAa,SACf,GAAGA,MAELA,CACT",
6
+ "names": ["src_exports", "__export", "calc", "__toCommonJS", "import_core", "operators", "a", "b", "valuesAndOperators", "res", "cur", "convertToVariableOrNumber", "nextOp", "v", "varOrVal"]
7
7
  }
package/dist/esm/index.js CHANGED
@@ -1,46 +1,2 @@
1
- import { getVariableVariable, isWeb } from "@tamagui/core";
2
- const operators = {
3
- "+": (a, b) => a + b,
4
- "-": (a, b) => a - b,
5
- "/": (a, b) => a / b,
6
- "*": (a, b) => a * b
7
- };
8
- const calc = (...valuesAndOperators) => {
9
- if (isWeb) {
10
- let res2 = "calc(";
11
- for (const cur of valuesAndOperators) {
12
- if (operators[cur]) {
13
- res2 += ` ${cur} `;
14
- } else {
15
- res2 += convertToVariableOrNumber(cur);
16
- }
17
- }
18
- return `${res2})`;
19
- }
20
- let res = 0;
21
- let nextOp = null;
22
- for (const cur of valuesAndOperators) {
23
- if (operators[cur]) {
24
- nextOp = operators[cur];
25
- } else {
26
- if (nextOp) {
27
- res = nextOp(res, cur);
28
- nextOp = null;
29
- } else {
30
- res = +cur;
31
- }
32
- }
33
- }
34
- return res;
35
- };
36
- const convertToVariableOrNumber = (v) => {
37
- const varOrVal = getVariableVariable(v);
38
- if (typeof varOrVal === "number") {
39
- return `${varOrVal}px`;
40
- }
41
- return varOrVal;
42
- };
43
- export {
44
- calc
45
- };
1
+ import{getVariableVariable as s,isWeb as i}from"@tamagui/core";const a={"+":(r,e)=>r+e,"-":(r,e)=>r-e,"/":(r,e)=>r/e,"*":(r,e)=>r*e},c=(...r)=>{if(i){let n="calc(";for(const t of r)a[t]?n+=` ${t} `:n+=l(t);return`${n})`}let e=0,o=null;for(const n of r)a[n]?o=a[n]:o?(e=o(e,n),o=null):e=+n;return e},l=r=>{const e=s(r);return typeof e=="number"?`${e}px`:e};export{c as calc};
46
2
  //# sourceMappingURL=index.js.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
4
  "sourcesContent": ["import { getVariableVariable, isWeb } from '@tamagui/core'\nimport type {\n FontLineHeightTokens,\n FontSizeTokens,\n SizeTokens,\n SpaceTokens,\n} from '@tamagui/core'\n\n// unused code - not exported could be used for cross compat calc() functions\n\n/**\n * Simple calc() that handles native + web\n * on web: outputs a calc() string\n * on native: outputs a plain number\n */\n\nexport type CalcVal =\n | string\n | number\n | SizeTokens\n | SpaceTokens\n | FontSizeTokens\n | FontLineHeightTokens\n\nconst operators = {\n '+': (a: number, b: number) => a + b,\n '-': (a: number, b: number) => a - b,\n '/': (a: number, b: number) => a / b,\n '*': (a: number, b: number) => a * b,\n}\n\ntype Operator = keyof typeof operators\n\nexport const calc = (...valuesAndOperators: (CalcVal | Operator)[]) => {\n if (isWeb) {\n let res = 'calc('\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n // spaces are significant\n res += ` ${cur} `\n } else {\n res += convertToVariableOrNumber(cur)\n }\n }\n return `${res})`\n }\n\n let res = 0\n let nextOp: any = null\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n nextOp = operators[cur as any]\n } else {\n if (nextOp) {\n res = nextOp(res, cur)\n nextOp = null\n } else {\n res = +cur\n }\n }\n }\n\n return res\n}\n\nconst convertToVariableOrNumber = (v: any) => {\n const varOrVal = getVariableVariable(v)\n if (typeof varOrVal === 'number') {\n return `${varOrVal}px`\n }\n return varOrVal\n}\n"],
5
- "mappings": "AAAA,SAAS,qBAAqB,aAAa;AAwB3C,MAAM,YAAY;AAAA,EAChB,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AACrC;AAIO,MAAM,OAAO,IAAI,uBAA+C;AACrE,MAAI,OAAO;AACT,QAAIA,OAAM;AACV,eAAW,OAAO,oBAAoB;AACpC,UAAI,UAAU,GAAU,GAAG;AAEzB,QAAAA,QAAO,IAAI;AAAA,MACb,OAAO;AACL,QAAAA,QAAO,0BAA0B,GAAG;AAAA,MACtC;AAAA,IACF;AACA,WAAO,GAAGA;AAAA,EACZ;AAEA,MAAI,MAAM;AACV,MAAI,SAAc;AAClB,aAAW,OAAO,oBAAoB;AACpC,QAAI,UAAU,GAAU,GAAG;AACzB,eAAS,UAAU,GAAU;AAAA,IAC/B,OAAO;AACL,UAAI,QAAQ;AACV,cAAM,OAAO,KAAK,GAAG;AACrB,iBAAS;AAAA,MACX,OAAO;AACL,cAAM,CAAC;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAEA,MAAM,4BAA4B,CAAC,MAAW;AAC5C,QAAM,WAAW,oBAAoB,CAAC;AACtC,MAAI,OAAO,aAAa,UAAU;AAChC,WAAO,GAAG;AAAA,EACZ;AACA,SAAO;AACT;",
6
- "names": ["res"]
5
+ "mappings": "AAAA,OAAS,uBAAAA,EAAqB,SAAAC,MAAa,gBAwB3C,MAAMC,EAAY,CAChB,IAAK,CAACC,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,CACrC,EAIaC,EAAO,IAAIC,IAA+C,CACrE,GAAIL,EAAO,CACT,IAAIM,EAAM,QACV,UAAWC,KAAOF,EACZJ,EAAUM,CAAU,EAEtBD,GAAO,IAAIC,KAEXD,GAAOE,EAA0BD,CAAG,EAGxC,MAAO,GAAGD,IACZ,CAEA,IAAIA,EAAM,EACNG,EAAc,KAClB,UAAWF,KAAOF,EACZJ,EAAUM,CAAU,EACtBE,EAASR,EAAUM,CAAU,EAEzBE,GACFH,EAAMG,EAAOH,EAAKC,CAAG,EACrBE,EAAS,MAETH,EAAM,CAACC,EAKb,OAAOD,CACT,EAEME,EAA6BE,GAAW,CAC5C,MAAMC,EAAWZ,EAAoBW,CAAC,EACtC,OAAI,OAAOC,GAAa,SACf,GAAGA,MAELA,CACT",
6
+ "names": ["getVariableVariable", "isWeb", "operators", "a", "b", "calc", "valuesAndOperators", "res", "cur", "convertToVariableOrNumber", "nextOp", "v", "varOrVal"]
7
7
  }
@@ -1,46 +1,2 @@
1
- import { getVariableVariable, isWeb } from "@tamagui/core";
2
- const operators = {
3
- "+": (a, b) => a + b,
4
- "-": (a, b) => a - b,
5
- "/": (a, b) => a / b,
6
- "*": (a, b) => a * b
7
- };
8
- const calc = (...valuesAndOperators) => {
9
- if (isWeb) {
10
- let res2 = "calc(";
11
- for (const cur of valuesAndOperators) {
12
- if (operators[cur]) {
13
- res2 += ` ${cur} `;
14
- } else {
15
- res2 += convertToVariableOrNumber(cur);
16
- }
17
- }
18
- return `${res2})`;
19
- }
20
- let res = 0;
21
- let nextOp = null;
22
- for (const cur of valuesAndOperators) {
23
- if (operators[cur]) {
24
- nextOp = operators[cur];
25
- } else {
26
- if (nextOp) {
27
- res = nextOp(res, cur);
28
- nextOp = null;
29
- } else {
30
- res = +cur;
31
- }
32
- }
33
- }
34
- return res;
35
- };
36
- const convertToVariableOrNumber = (v) => {
37
- const varOrVal = getVariableVariable(v);
38
- if (typeof varOrVal === "number") {
39
- return `${varOrVal}px`;
40
- }
41
- return varOrVal;
42
- };
43
- export {
44
- calc
45
- };
1
+ import{getVariableVariable as s,isWeb as i}from"@tamagui/core";const a={"+":(r,e)=>r+e,"-":(r,e)=>r-e,"/":(r,e)=>r/e,"*":(r,e)=>r*e},c=(...r)=>{if(i){let n="calc(";for(const t of r)a[t]?n+=` ${t} `:n+=l(t);return`${n})`}let e=0,o=null;for(const n of r)a[n]?o=a[n]:o?(e=o(e,n),o=null):e=+n;return e},l=r=>{const e=s(r);return typeof e=="number"?`${e}px`:e};export{c as calc};
46
2
  //# sourceMappingURL=index.mjs.map
@@ -2,6 +2,6 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
4
  "sourcesContent": ["import { getVariableVariable, isWeb } from '@tamagui/core'\nimport type {\n FontLineHeightTokens,\n FontSizeTokens,\n SizeTokens,\n SpaceTokens,\n} from '@tamagui/core'\n\n// unused code - not exported could be used for cross compat calc() functions\n\n/**\n * Simple calc() that handles native + web\n * on web: outputs a calc() string\n * on native: outputs a plain number\n */\n\nexport type CalcVal =\n | string\n | number\n | SizeTokens\n | SpaceTokens\n | FontSizeTokens\n | FontLineHeightTokens\n\nconst operators = {\n '+': (a: number, b: number) => a + b,\n '-': (a: number, b: number) => a - b,\n '/': (a: number, b: number) => a / b,\n '*': (a: number, b: number) => a * b,\n}\n\ntype Operator = keyof typeof operators\n\nexport const calc = (...valuesAndOperators: (CalcVal | Operator)[]) => {\n if (isWeb) {\n let res = 'calc('\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n // spaces are significant\n res += ` ${cur} `\n } else {\n res += convertToVariableOrNumber(cur)\n }\n }\n return `${res})`\n }\n\n let res = 0\n let nextOp: any = null\n for (const cur of valuesAndOperators) {\n if (operators[cur as any]) {\n nextOp = operators[cur as any]\n } else {\n if (nextOp) {\n res = nextOp(res, cur)\n nextOp = null\n } else {\n res = +cur\n }\n }\n }\n\n return res\n}\n\nconst convertToVariableOrNumber = (v: any) => {\n const varOrVal = getVariableVariable(v)\n if (typeof varOrVal === 'number') {\n return `${varOrVal}px`\n }\n return varOrVal\n}\n"],
5
- "mappings": "AAAA,SAAS,qBAAqB,aAAa;AAwB3C,MAAM,YAAY;AAAA,EAChB,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AAAA,EACnC,KAAK,CAAC,GAAW,MAAc,IAAI;AACrC;AAIO,MAAM,OAAO,IAAI,uBAA+C;AACrE,MAAI,OAAO;AACT,QAAIA,OAAM;AACV,eAAW,OAAO,oBAAoB;AACpC,UAAI,UAAU,GAAU,GAAG;AAEzB,QAAAA,QAAO,IAAI;AAAA,MACb,OAAO;AACL,QAAAA,QAAO,0BAA0B,GAAG;AAAA,MACtC;AAAA,IACF;AACA,WAAO,GAAGA;AAAA,EACZ;AAEA,MAAI,MAAM;AACV,MAAI,SAAc;AAClB,aAAW,OAAO,oBAAoB;AACpC,QAAI,UAAU,GAAU,GAAG;AACzB,eAAS,UAAU,GAAU;AAAA,IAC/B,OAAO;AACL,UAAI,QAAQ;AACV,cAAM,OAAO,KAAK,GAAG;AACrB,iBAAS;AAAA,MACX,OAAO;AACL,cAAM,CAAC;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAEA,SAAO;AACT;AAEA,MAAM,4BAA4B,CAAC,MAAW;AAC5C,QAAM,WAAW,oBAAoB,CAAC;AACtC,MAAI,OAAO,aAAa,UAAU;AAChC,WAAO,GAAG;AAAA,EACZ;AACA,SAAO;AACT;",
6
- "names": ["res"]
5
+ "mappings": "AAAA,OAAS,uBAAAA,EAAqB,SAAAC,MAAa,gBAwB3C,MAAMC,EAAY,CAChB,IAAK,CAACC,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,EACnC,IAAK,CAACD,EAAWC,IAAcD,EAAIC,CACrC,EAIaC,EAAO,IAAIC,IAA+C,CACrE,GAAIL,EAAO,CACT,IAAIM,EAAM,QACV,UAAWC,KAAOF,EACZJ,EAAUM,CAAU,EAEtBD,GAAO,IAAIC,KAEXD,GAAOE,EAA0BD,CAAG,EAGxC,MAAO,GAAGD,IACZ,CAEA,IAAIA,EAAM,EACNG,EAAc,KAClB,UAAWF,KAAOF,EACZJ,EAAUM,CAAU,EACtBE,EAASR,EAAUM,CAAU,EAEzBE,GACFH,EAAMG,EAAOH,EAAKC,CAAG,EACrBE,EAAS,MAETH,EAAM,CAACC,EAKb,OAAOD,CACT,EAEME,EAA6BE,GAAW,CAC5C,MAAMC,EAAWZ,EAAoBW,CAAC,EACtC,OAAI,OAAOC,GAAa,SACf,GAAGA,MAELA,CACT",
6
+ "names": ["getVariableVariable", "isWeb", "operators", "a", "b", "calc", "valuesAndOperators", "res", "cur", "convertToVariableOrNumber", "nextOp", "v", "varOrVal"]
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/calc",
3
- "version": "1.13.3",
3
+ "version": "1.13.4",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -26,10 +26,10 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@tamagui/core": "1.13.3"
29
+ "@tamagui/core": "1.13.4"
30
30
  },
31
31
  "devDependencies": {
32
- "@tamagui/build": "1.13.3"
32
+ "@tamagui/build": "1.13.4"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"