@hopper-ui/components 0.0.6 → 0.0.8
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/CHANGELOG.md +16 -0
- package/dist/HopperProvider.d.ts +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @hopper-ui/components
|
|
2
2
|
|
|
3
|
+
## 0.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2639596: Updated some dependencies + move some to peer dependency.
|
|
8
|
+
Fixed a warning that was being thrown in the console regarding SSR.
|
|
9
|
+
- Updated dependencies [2639596]
|
|
10
|
+
- @hopper-ui/styled-system@0.2.6
|
|
11
|
+
|
|
12
|
+
## 0.0.7
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [f5729c5]
|
|
17
|
+
- @hopper-ui/styled-system@0.2.5
|
|
18
|
+
|
|
3
19
|
## 0.0.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/HopperProvider.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ type HopperProviderProps = StyledSystemProviderProps;
|
|
|
10
10
|
*/
|
|
11
11
|
declare function HopperProvider({ children, withBodyStyle, colorScheme, withCssVariables, ...rest }: HopperProviderProps): react_jsx_runtime.JSX.Element;
|
|
12
12
|
|
|
13
|
-
export { HopperProvider, HopperProviderProps };
|
|
13
|
+
export { HopperProvider, type HopperProviderProps };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/components",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.8",
|
|
5
5
|
"description": "The components package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -36,30 +36,30 @@
|
|
|
36
36
|
"react-dom": "*"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@hopper-ui/styled-system": "0.2.
|
|
39
|
+
"@hopper-ui/styled-system": "0.2.6"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@swc/core": "1.3.
|
|
42
|
+
"@swc/core": "1.3.106",
|
|
43
43
|
"@swc/helpers": "0.5.3",
|
|
44
|
-
"@swc/jest": "0.2.
|
|
45
|
-
"@testing-library/jest-dom": "6.
|
|
46
|
-
"@testing-library/react": "14.1.
|
|
47
|
-
"@types/jest": "29.5.
|
|
48
|
-
"@types/react
|
|
49
|
-
"@types/react-
|
|
50
|
-
"@types/react": "18.
|
|
44
|
+
"@swc/jest": "0.2.31",
|
|
45
|
+
"@testing-library/jest-dom": "6.3.0",
|
|
46
|
+
"@testing-library/react": "14.1.2",
|
|
47
|
+
"@types/jest": "29.5.11",
|
|
48
|
+
"@types/react": "18.2.48",
|
|
49
|
+
"@types/react-dom": "18.2.18",
|
|
50
|
+
"@types/react-test-renderer": "18.0.7",
|
|
51
51
|
"@workleap/eslint-plugin": "3.0.0",
|
|
52
52
|
"@workleap/swc-configs": "2.1.2",
|
|
53
53
|
"@workleap/tsup-configs": "3.0.1",
|
|
54
54
|
"@workleap/typescript-configs": "3.0.2",
|
|
55
|
-
"jest-environment-jsdom": "29.7.0",
|
|
56
55
|
"jest": "29.7.0",
|
|
56
|
+
"jest-environment-jsdom": "29.7.0",
|
|
57
|
+
"react": "18.2.0",
|
|
57
58
|
"react-dom": "18.2.0",
|
|
58
59
|
"react-test-renderer": "18.2.0",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"typescript": "5.2.2"
|
|
60
|
+
"ts-jest": "29.1.2",
|
|
61
|
+
"tsup": "8.0.1",
|
|
62
|
+
"typescript": "5.3.3"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"dev": "tsup --config ./tsup.dev.ts",
|