@tamagui/test-design-system 2.0.0-rc.9 → 2.0.0

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 (2) hide show
  1. package/dist/cjs/index.cjs +36 -0
  2. package/package.json +4 -4
@@ -0,0 +1,36 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all) __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: true
9
+ });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
14
+ get: () => from[key],
15
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
+ });
17
+ }
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: true
22
+ }), mod);
23
+ var index_exports = {};
24
+ __export(index_exports, {
25
+ MySizableText: () => MySizableText,
26
+ MyStack: () => MyStack
27
+ });
28
+ module.exports = __toCommonJS(index_exports);
29
+ var import_core = require("@tamagui/core");
30
+ const MyStack = (0, import_core.styled)(import_core.View, {
31
+ backgroundColor: "green"
32
+ });
33
+ const MySizableText = (0, import_core.styled)(import_core.Text, {
34
+ name: "MySizableText",
35
+ backgroundColor: "green"
36
+ });
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@tamagui/test-design-system",
3
- "version": "2.0.0-rc.9",
3
+ "version": "2.0.0",
4
4
  "source": "src/index.ts",
5
5
  "files": [],
6
6
  "sideEffects": [
7
7
  "*.css"
8
8
  ],
9
- "main": "dist/cjs",
9
+ "main": "dist/cjs/index.cjs",
10
10
  "module": "dist/esm/index.mjs",
11
11
  "types": "./types/index.d.ts",
12
12
  "publishConfig": {
@@ -19,9 +19,9 @@
19
19
  "clean:build": "tamagui-build clean:build"
20
20
  },
21
21
  "dependencies": {
22
- "@tamagui/core": "2.0.0-rc.9"
22
+ "@tamagui/core": "2.0.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@tamagui/build": "2.0.0-rc.9"
25
+ "@tamagui/build": "2.0.0"
26
26
  }
27
27
  }