@teambit/ui 0.0.556 → 0.0.557

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/package.json +27 -25
  2. package/tsconfig.json +34 -0
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/ui",
3
- "version": "0.0.556",
3
+ "version": "0.0.557",
4
4
  "homepage": "https://bit.dev/teambit/ui-foundation/ui",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.ui-foundation",
8
8
  "name": "ui",
9
- "version": "0.0.556"
9
+ "version": "0.0.557"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -53,28 +53,28 @@
53
53
  "@teambit/base-ui.loaders.loader-ribbon": "1.0.0",
54
54
  "@teambit/base-ui.theme.fonts.roboto": "1.0.0",
55
55
  "@teambit/base-ui.theme.theme-provider": "1.0.1",
56
- "@teambit/aspect-loader": "0.0.556",
57
- "@teambit/toolbox.path.to-windows-compatible-path": "0.0.461",
58
- "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.465",
59
- "@teambit/logger": "0.0.472",
60
- "@teambit/cli": "0.0.387",
61
- "@teambit/ui-foundation.cli.ui-server-console": "0.0.466",
62
- "@teambit/bundler": "0.0.556",
63
- "@teambit/component": "0.0.556",
64
- "@teambit/express": "0.0.476",
65
- "@teambit/graphql": "0.0.556",
66
- "@teambit/toolbox.network.get-port": "0.0.91",
67
- "@teambit/aspect": "0.0.556",
68
- "@teambit/cache": "0.0.472",
69
- "@teambit/pubsub": "0.0.556",
70
- "@teambit/react-router": "0.0.556",
71
- "@teambit/ui-foundation.ui.rendering.html": "0.0.47",
56
+ "@teambit/aspect-loader": "0.0.557",
57
+ "@teambit/toolbox.path.to-windows-compatible-path": "0.0.462",
58
+ "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.466",
59
+ "@teambit/logger": "0.0.473",
60
+ "@teambit/cli": "0.0.388",
61
+ "@teambit/ui-foundation.cli.ui-server-console": "0.0.467",
62
+ "@teambit/bundler": "0.0.557",
63
+ "@teambit/component": "0.0.557",
64
+ "@teambit/express": "0.0.477",
65
+ "@teambit/graphql": "0.0.557",
66
+ "@teambit/toolbox.network.get-port": "0.0.92",
67
+ "@teambit/aspect": "0.0.557",
68
+ "@teambit/cache": "0.0.473",
69
+ "@teambit/pubsub": "0.0.557",
70
+ "@teambit/react-router": "0.0.557",
71
+ "@teambit/ui-foundation.ui.rendering.html": "0.0.48",
72
72
  "@teambit/design.theme.icons-font": "1.0.2",
73
73
  "@teambit/design.ui.tooltip": "0.0.352",
74
- "@teambit/ui-foundation.ui.global-loader": "0.0.464",
75
- "@teambit/webpack.modules.generate-style-loaders": "0.0.81",
76
- "@teambit/webpack.modules.style-regexps": "0.0.110",
77
- "@teambit/webpack": "0.0.556"
74
+ "@teambit/ui-foundation.ui.global-loader": "0.0.465",
75
+ "@teambit/webpack.modules.generate-style-loaders": "0.0.82",
76
+ "@teambit/webpack.modules.style-regexps": "0.0.111",
77
+ "@teambit/webpack": "0.0.557"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@types/react": "^17.0.8",
@@ -96,7 +96,7 @@
96
96
  },
97
97
  "peerDependencies": {
98
98
  "@apollo/client": "^3.0.0",
99
- "@teambit/legacy": "1.0.173",
99
+ "@teambit/legacy": "1.0.174",
100
100
  "react-dom": "^16.8.0 || ^17.0.0",
101
101
  "react": "^16.8.0 || ^17.0.0"
102
102
  },
@@ -141,7 +141,7 @@
141
141
  "react": "-"
142
142
  },
143
143
  "peerDependencies": {
144
- "@teambit/legacy": "1.0.173",
144
+ "@teambit/legacy": "1.0.174",
145
145
  "react-dom": "^16.8.0 || ^17.0.0",
146
146
  "react": "^16.8.0 || ^17.0.0"
147
147
  }
@@ -151,7 +151,9 @@
151
151
  "dist",
152
152
  "!dist/tsconfig.tsbuildinfo",
153
153
  "README.md",
154
- "README.mdx"
154
+ "README.mdx",
155
+ "*.js",
156
+ "*.json"
155
157
  ],
156
158
  "private": false
157
159
  }
package/tsconfig.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": [
4
+ "es2019",
5
+ "DOM",
6
+ "ES6",
7
+ "DOM.Iterable",
8
+ "ScriptHost"
9
+ ],
10
+ "target": "es2015",
11
+ "module": "commonjs",
12
+ "jsx": "react",
13
+ "declaration": true,
14
+ "sourceMap": true,
15
+ "skipLibCheck": true,
16
+ "moduleResolution": "node",
17
+ "esModuleInterop": true,
18
+ "composite": true,
19
+ "emitDeclarationOnly": true,
20
+ "outDir": "dist",
21
+ "experimentalDecorators": true,
22
+ "emitDecoratorMetadata": true,
23
+ "allowSyntheticDefaultImports": true,
24
+ "strictPropertyInitialization": false,
25
+ "strict": true,
26
+ "noImplicitAny": false,
27
+ "rootDir": ".",
28
+ "preserveConstEnums": true,
29
+ "resolveJsonModule": true
30
+ },
31
+ "exclude": [
32
+ "dist"
33
+ ]
34
+ }