@app-studio/web 0.7.18 → 0.8.1
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/components/Form/Password/Password/Password.state.d.ts +2 -2
- package/dist/web.cjs.development.js +95 -86
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +95 -86
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +6567 -0
- package/dist/web.umd.development.js.map +1 -0
- package/dist/web.umd.production.min.js +2 -0
- package/dist/web.umd.production.min.js.map +1 -0
- package/package.json +11 -7
- package/dist/GlobalStyle.d.ts +0 -3
- package/dist/StyleGuideWrapper.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@app-studio/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/components/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"start": "react-scripts start",
|
|
14
|
-
"build": "tsdx build --entry ./src/components/index.tsx --tsconfig tsconfig.build.json",
|
|
14
|
+
"build": "tsdx build --format cjs,esm,umd --entry ./src/components/index.tsx --tsconfig tsconfig.build.json",
|
|
15
15
|
"test": "react-scripts test",
|
|
16
16
|
"test:unwatch": "react-scripts test --watchAll=false",
|
|
17
17
|
"eject": "react-scripts eject",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"@babel/preset-react": "^7.18.6",
|
|
101
101
|
"@commitlint/cli": "^19.2.0",
|
|
102
102
|
"@commitlint/config-conventional": "^19.1.0",
|
|
103
|
+
"@size-limit/preset-small-lib": "^10.0.2",
|
|
103
104
|
"@testing-library/jest-dom": "^5.16.5",
|
|
104
105
|
"@testing-library/react": "^14.0.0",
|
|
105
106
|
"@testing-library/user-event": "^13.5.0",
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
"@types/react-test-renderer": "^18.0.0",
|
|
111
112
|
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
112
113
|
"@typescript-eslint/parser": "^5.59.7",
|
|
113
|
-
"app-studio": "^0.
|
|
114
|
+
"app-studio": "^0.2.30",
|
|
114
115
|
"babel-jest": "^29.5.0",
|
|
115
116
|
"babel-loader": "^9.1.2",
|
|
116
117
|
"babel-plugin-named-exports-order": "^0.0.2",
|
|
@@ -142,7 +143,6 @@
|
|
|
142
143
|
"release-it": "^16.2.1",
|
|
143
144
|
"router": "^1.3.8",
|
|
144
145
|
"style-loader": "^3.3.2",
|
|
145
|
-
"styled-components": "^6.1.1",
|
|
146
146
|
"stylis": "^4.3.0",
|
|
147
147
|
"ts-loader": "^9.4.2",
|
|
148
148
|
"tsc-alias": "^1.8.8",
|
|
@@ -154,9 +154,8 @@
|
|
|
154
154
|
"webpack-cli": "^5.1.3"
|
|
155
155
|
},
|
|
156
156
|
"peerDependencies": {
|
|
157
|
-
"app-studio": ">= 0.1",
|
|
158
157
|
"react": ">= 17",
|
|
159
|
-
"
|
|
158
|
+
"app-studio": ">= 0.2.30"
|
|
160
159
|
},
|
|
161
160
|
"size-limit": [
|
|
162
161
|
{
|
|
@@ -166,7 +165,12 @@
|
|
|
166
165
|
{
|
|
167
166
|
"path": "dist/web.esm.js",
|
|
168
167
|
"limit": "100 KB"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"path": "dist/web.umd.production.min.js",
|
|
171
|
+
"limit": "100 KB"
|
|
169
172
|
}
|
|
170
173
|
],
|
|
171
|
-
"module": "dist/web.esm.js"
|
|
174
|
+
"module": "dist/web.esm.js",
|
|
175
|
+
"unpkg": "dist/web.umd.production.min.js"
|
|
172
176
|
}
|
package/dist/GlobalStyle.d.ts
DELETED