@tamagui/shapes 1.88.0 → 1.88.2

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.
@@ -22,8 +22,4 @@ const Circle = (0, import_web.styled)(import_Square.Square, {
22
22
  name: "Circle",
23
23
  circular: !0
24
24
  });
25
- // Annotate the CommonJS export names for ESM import in node:
26
- 0 && (module.exports = {
27
- Circle
28
- });
29
25
  //# sourceMappingURL=Circle.js.map
@@ -29,8 +29,4 @@ const Square = (0, import_web.styled)(import_stacks.ThemeableStack, {
29
29
  }
30
30
  }
31
31
  });
32
- // Annotate the CommonJS export names for ESM import in node:
33
- 0 && (module.exports = {
34
- Square
35
- });
36
32
  //# sourceMappingURL=Square.js.map
@@ -28,8 +28,4 @@ const getShapeSize = (size, { tokens }) => {
28
28
  minHeight: height
29
29
  };
30
30
  };
31
- // Annotate the CommonJS export names for ESM import in node:
32
- 0 && (module.exports = {
33
- getShapeSize
34
- });
35
31
  //# sourceMappingURL=getShapeSize.js.map
package/dist/cjs/index.js CHANGED
@@ -14,10 +14,4 @@ module.exports = __toCommonJS(src_exports);
14
14
  __reExport(src_exports, require("./Square"), module.exports);
15
15
  __reExport(src_exports, require("./Circle"), module.exports);
16
16
  __reExport(src_exports, require("./getShapeSize"), module.exports);
17
- // Annotate the CommonJS export names for ESM import in node:
18
- 0 && (module.exports = {
19
- ...require("./Square"),
20
- ...require("./Circle"),
21
- ...require("./getShapeSize")
22
- });
23
17
  //# sourceMappingURL=index.js.map
@@ -1,10 +1,30 @@
1
- import { styled } from "@tamagui/web";
2
- import { Square } from "./Square";
3
- const Circle = styled(Square, {
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var Circle_exports = {};
17
+ __export(Circle_exports, {
18
+ Circle: () => Circle
19
+ });
20
+ module.exports = __toCommonJS(Circle_exports);
21
+ var import_web = require("@tamagui/web"), import_Square = require("./Square");
22
+ const Circle = (0, import_web.styled)(import_Square.Square, {
4
23
  name: "Circle",
5
24
  circular: !0
6
25
  });
7
- export {
26
+ // Annotate the CommonJS export names for ESM import in node:
27
+ 0 && (module.exports = {
8
28
  Circle
9
- };
29
+ });
10
30
  //# sourceMappingURL=Circle.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Circle.tsx"],
4
- "mappings": "AAAA,SAAmB,cAAc;AAEjC,SAAS,cAAc;AAEhB,MAAM,SAAS,OAAO,QAAQ;AAAA,EACnC,MAAM;AAAA,EACN,UAAU;AACZ,CAAC;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAiC,yBAEjC,gBAAuB;AAEhB,MAAM,aAAS,mBAAO,sBAAQ;AAAA,EACnC,MAAM;AAAA,EACN,UAAU;AACZ,CAAC;",
5
5
  "names": []
6
6
  }
@@ -1,18 +1,37 @@
1
- import { ThemeableStack } from "@tamagui/stacks";
2
- import { styled } from "@tamagui/web";
3
- import { getShapeSize } from "./getShapeSize";
4
- const Square = styled(ThemeableStack, {
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var Square_exports = {};
17
+ __export(Square_exports, {
18
+ Square: () => Square
19
+ });
20
+ module.exports = __toCommonJS(Square_exports);
21
+ var import_stacks = require("@tamagui/stacks"), import_web = require("@tamagui/web"), import_getShapeSize = require("./getShapeSize");
22
+ const Square = (0, import_web.styled)(import_stacks.ThemeableStack, {
5
23
  name: "Square",
6
24
  alignItems: "center",
7
25
  justifyContent: "center",
8
26
  variants: {
9
27
  size: {
10
- "...size": getShapeSize,
11
- ":number": getShapeSize
28
+ "...size": import_getShapeSize.getShapeSize,
29
+ ":number": import_getShapeSize.getShapeSize
12
30
  }
13
31
  }
14
32
  });
15
- export {
33
+ // Annotate the CommonJS export names for ESM import in node:
34
+ 0 && (module.exports = {
16
35
  Square
17
- };
36
+ });
18
37
  //# sourceMappingURL=Square.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Square.tsx"],
4
- "mappings": "AAAA,SAAS,sBAAsB;AAC/B,SAAmB,cAAc;AAEjC,SAAS,oBAAoB;AAEtB,MAAM,SAAS,OAAO,gBAAgB;AAAA,EAC3C,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,gBAAgB;AAAA,EAEhB,UAAU;AAAA,IACR,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,EACF;AACF,CAAC;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B,4BAC/B,aAAiC,yBAEjC,sBAA6B;AAEtB,MAAM,aAAS,mBAAO,8BAAgB;AAAA,EAC3C,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,gBAAgB;AAAA,EAEhB,UAAU;AAAA,IACR,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,EACF;AACF,CAAC;",
5
5
  "names": []
6
6
  }
@@ -1,3 +1,23 @@
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var getShapeSize_exports = {};
17
+ __export(getShapeSize_exports, {
18
+ getShapeSize: () => getShapeSize
19
+ });
20
+ module.exports = __toCommonJS(getShapeSize_exports);
1
21
  const getShapeSize = (size, { tokens }) => {
2
22
  const width = tokens.size[size] ?? size, height = tokens.size[size] ?? size;
3
23
  return {
@@ -9,7 +29,8 @@ const getShapeSize = (size, { tokens }) => {
9
29
  minHeight: height
10
30
  };
11
31
  };
12
- export {
32
+ // Annotate the CommonJS export names for ESM import in node:
33
+ 0 && (module.exports = {
13
34
  getShapeSize
14
- };
35
+ });
15
36
  //# sourceMappingURL=getShapeSize.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/getShapeSize.tsx"],
4
- "mappings": "AAGO,MAAM,eAA6D,CACxE,MACA,EAAE,OAAO,MACN;AACH,QAAM,QAAQ,OAAO,KAAK,IAAI,KAAK,MAC7B,SAAS,OAAO,KAAK,IAAI,KAAK;AACpC,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA,UAAU;AAAA,IACV,UAAU;AAAA,IACV,WAAW;AAAA,IACX,WAAW;AAAA,EACb;AACF;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAGO,MAAM,eAA6D,CACxE,MACA,EAAE,OAAO,MACN;AACH,QAAM,QAAQ,OAAO,KAAK,IAAI,KAAK,MAC7B,SAAS,OAAO,KAAK,IAAI,KAAK;AACpC,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA,UAAU;AAAA,IACV,UAAU;AAAA,IACV,WAAW;AAAA,IACX,WAAW;AAAA,EACb;AACF;",
5
5
  "names": []
6
6
  }
@@ -1,4 +1,24 @@
1
- export * from "./Square";
2
- export * from "./Circle";
3
- export * from "./getShapeSize";
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 __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var src_exports = {};
14
+ module.exports = __toCommonJS(src_exports);
15
+ __reExport(src_exports, require("./Square"), module.exports);
16
+ __reExport(src_exports, require("./Circle"), module.exports);
17
+ __reExport(src_exports, require("./getShapeSize"), module.exports);
18
+ // Annotate the CommonJS export names for ESM import in node:
19
+ 0 && (module.exports = {
20
+ ...require("./Square"),
21
+ ...require("./Circle"),
22
+ ...require("./getShapeSize")
23
+ });
4
24
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;AACd,cAAc;",
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,qBAAd;AACA,wBAAc,qBADd;AAEA,wBAAc,2BAFd;",
5
5
  "names": []
6
6
  }
@@ -1,10 +1,30 @@
1
- import { styled } from "@tamagui/web";
2
- import { Square } from "./Square";
3
- const Circle = styled(Square, {
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var Circle_exports = {};
17
+ __export(Circle_exports, {
18
+ Circle: () => Circle
19
+ });
20
+ module.exports = __toCommonJS(Circle_exports);
21
+ var import_web = require("@tamagui/web"), import_Square = require("./Square");
22
+ const Circle = (0, import_web.styled)(import_Square.Square, {
4
23
  name: "Circle",
5
24
  circular: !0
6
25
  });
7
- export {
26
+ // Annotate the CommonJS export names for ESM import in node:
27
+ 0 && (module.exports = {
8
28
  Circle
9
- };
29
+ });
10
30
  //# sourceMappingURL=Circle.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Circle.tsx"],
4
- "mappings": "AAAA,SAAmB,cAAc;AAEjC,SAAS,cAAc;AAEhB,MAAM,SAAS,OAAO,QAAQ;AAAA,EACnC,MAAM;AAAA,EACN,UAAU;AACZ,CAAC;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAAiC,yBAEjC,gBAAuB;AAEhB,MAAM,aAAS,mBAAO,sBAAQ;AAAA,EACnC,MAAM;AAAA,EACN,UAAU;AACZ,CAAC;",
5
5
  "names": []
6
6
  }
@@ -1,18 +1,37 @@
1
- import { ThemeableStack } from "@tamagui/stacks";
2
- import { styled } from "@tamagui/web";
3
- import { getShapeSize } from "./getShapeSize";
4
- const Square = styled(ThemeableStack, {
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var Square_exports = {};
17
+ __export(Square_exports, {
18
+ Square: () => Square
19
+ });
20
+ module.exports = __toCommonJS(Square_exports);
21
+ var import_stacks = require("@tamagui/stacks"), import_web = require("@tamagui/web"), import_getShapeSize = require("./getShapeSize");
22
+ const Square = (0, import_web.styled)(import_stacks.ThemeableStack, {
5
23
  name: "Square",
6
24
  alignItems: "center",
7
25
  justifyContent: "center",
8
26
  variants: {
9
27
  size: {
10
- "...size": getShapeSize,
11
- ":number": getShapeSize
28
+ "...size": import_getShapeSize.getShapeSize,
29
+ ":number": import_getShapeSize.getShapeSize
12
30
  }
13
31
  }
14
32
  });
15
- export {
33
+ // Annotate the CommonJS export names for ESM import in node:
34
+ 0 && (module.exports = {
16
35
  Square
17
- };
36
+ });
18
37
  //# sourceMappingURL=Square.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/Square.tsx"],
4
- "mappings": "AAAA,SAAS,sBAAsB;AAC/B,SAAmB,cAAc;AAEjC,SAAS,oBAAoB;AAEtB,MAAM,SAAS,OAAO,gBAAgB;AAAA,EAC3C,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,gBAAgB;AAAA,EAEhB,UAAU;AAAA,IACR,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,EACF;AACF,CAAC;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B,4BAC/B,aAAiC,yBAEjC,sBAA6B;AAEtB,MAAM,aAAS,mBAAO,8BAAgB;AAAA,EAC3C,MAAM;AAAA,EACN,YAAY;AAAA,EACZ,gBAAgB;AAAA,EAEhB,UAAU;AAAA,IACR,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,EACF;AACF,CAAC;",
5
5
  "names": []
6
6
  }
@@ -1,3 +1,23 @@
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: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
16
+ var getShapeSize_exports = {};
17
+ __export(getShapeSize_exports, {
18
+ getShapeSize: () => getShapeSize
19
+ });
20
+ module.exports = __toCommonJS(getShapeSize_exports);
1
21
  const getShapeSize = (size, { tokens }) => {
2
22
  const width = tokens.size[size] ?? size, height = tokens.size[size] ?? size;
3
23
  return {
@@ -9,7 +29,8 @@ const getShapeSize = (size, { tokens }) => {
9
29
  minHeight: height
10
30
  };
11
31
  };
12
- export {
32
+ // Annotate the CommonJS export names for ESM import in node:
33
+ 0 && (module.exports = {
13
34
  getShapeSize
14
- };
35
+ });
15
36
  //# sourceMappingURL=getShapeSize.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/getShapeSize.tsx"],
4
- "mappings": "AAGO,MAAM,eAA6D,CACxE,MACA,EAAE,OAAO,MACN;AACH,QAAM,QAAQ,OAAO,KAAK,IAAI,KAAK,MAC7B,SAAS,OAAO,KAAK,IAAI,KAAK;AACpC,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA,UAAU;AAAA,IACV,UAAU;AAAA,IACV,WAAW;AAAA,IACX,WAAW;AAAA,EACb;AACF;",
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAGO,MAAM,eAA6D,CACxE,MACA,EAAE,OAAO,MACN;AACH,QAAM,QAAQ,OAAO,KAAK,IAAI,KAAK,MAC7B,SAAS,OAAO,KAAK,IAAI,KAAK;AACpC,SAAO;AAAA,IACL;AAAA,IACA;AAAA,IACA,UAAU;AAAA,IACV,UAAU;AAAA,IACV,WAAW;AAAA,IACX,WAAW;AAAA,EACb;AACF;",
5
5
  "names": []
6
6
  }
@@ -1,4 +1,24 @@
1
- export * from "./Square";
2
- export * from "./Circle";
3
- export * from "./getShapeSize";
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 __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var src_exports = {};
14
+ module.exports = __toCommonJS(src_exports);
15
+ __reExport(src_exports, require("./Square"), module.exports);
16
+ __reExport(src_exports, require("./Circle"), module.exports);
17
+ __reExport(src_exports, require("./getShapeSize"), module.exports);
18
+ // Annotate the CommonJS export names for ESM import in node:
19
+ 0 && (module.exports = {
20
+ ...require("./Square"),
21
+ ...require("./Circle"),
22
+ ...require("./getShapeSize")
23
+ });
4
24
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;AACd,cAAc;",
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,qBAAd;AACA,wBAAc,qBADd;AAEA,wBAAc,2BAFd;",
5
5
  "names": []
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/shapes",
3
- "version": "1.88.0",
3
+ "version": "1.88.2",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -32,14 +32,14 @@
32
32
  }
33
33
  },
34
34
  "dependencies": {
35
- "@tamagui/stacks": "1.88.0",
36
- "@tamagui/web": "1.88.0"
35
+ "@tamagui/stacks": "1.88.2",
36
+ "@tamagui/web": "1.88.2"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": "*"
40
40
  },
41
41
  "devDependencies": {
42
- "@tamagui/build": "1.88.0",
42
+ "@tamagui/build": "1.88.2",
43
43
  "react": "^18.2.0"
44
44
  },
45
45
  "publishConfig": {