@app-studio/web 0.7.17 → 0.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@app-studio/web",
3
- "version": "0.7.17",
3
+ "version": "0.8.0",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/components/index.d.ts",
6
6
  "files": [
@@ -110,7 +110,7 @@
110
110
  "@types/react-test-renderer": "^18.0.0",
111
111
  "@typescript-eslint/eslint-plugin": "^5.59.7",
112
112
  "@typescript-eslint/parser": "^5.59.7",
113
- "app-studio": "^0.1.40",
113
+ "app-studio": "^0.2.29",
114
114
  "babel-jest": "^29.5.0",
115
115
  "babel-loader": "^9.1.2",
116
116
  "babel-plugin-named-exports-order": "^0.0.2",
@@ -142,7 +142,6 @@
142
142
  "release-it": "^16.2.1",
143
143
  "router": "^1.3.8",
144
144
  "style-loader": "^3.3.2",
145
- "styled-components": "^6.1.1",
146
145
  "stylis": "^4.3.0",
147
146
  "ts-loader": "^9.4.2",
148
147
  "tsc-alias": "^1.8.8",
@@ -154,9 +153,7 @@
154
153
  "webpack-cli": "^5.1.3"
155
154
  },
156
155
  "peerDependencies": {
157
- "app-studio": ">= 0.1",
158
- "react": ">= 17",
159
- "styled-components": ">= 6"
156
+ "react": ">= 17"
160
157
  },
161
158
  "size-limit": [
162
159
  {
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const GlobalStyle: import("react").NamedExoticComponent<import("styled-components").ExecutionProps & object>;
3
- export default GlobalStyle;
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- interface Props {
3
- children?: React.ReactNode;
4
- }
5
- declare const StyleGuideWrapper: ({ children }: Props) => React.JSX.Element;
6
- export default StyleGuideWrapper;