@citygross/components_v2 0.0.56 → 0.0.58

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.
@@ -14,6 +14,6 @@ declare type TBox = {
14
14
  marginVertical?: TSpacingKeys;
15
15
  children: React.ReactNode;
16
16
  };
17
- declare function Box({ background, borderColor, borderRadius, hoverBackgroundColor, padding, paddingVertical, paddingHorizontal, margin, marginHorizontal, marginVertical, children, ...props }: TBox): JSX.Element;
17
+ declare function Box({ background, borderColor, borderRadius, hoverBackgroundColor, padding, paddingVertical, paddingHorizontal, margin, marginHorizontal, marginVertical, children }: TBox): JSX.Element;
18
18
 
19
19
  export { Box, TBox };
@@ -12,10 +12,9 @@ function Box({
12
12
  margin,
13
13
  marginHorizontal,
14
14
  marginVertical,
15
- children,
16
- ...props
15
+ children
17
16
  }) {
18
- return /* @__PURE__ */ React.createElement("div", { ...props }, /* @__PURE__ */ React.createElement(
17
+ return /* @__PURE__ */ React.createElement(
19
18
  "div",
20
19
  {
21
20
  className: BoxStyle({
@@ -33,7 +32,7 @@ function Box({
33
32
  })
34
33
  },
35
34
  children
36
- ));
35
+ );
37
36
  }
38
37
 
39
38
  export { Box };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citygross/components_v2",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "license": "ISC",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -45,7 +45,6 @@
45
45
  "@types/jest": "^26.0.0",
46
46
  "@types/react": "^17.0.0",
47
47
  "@types/react-dom": "^17.0.0",
48
- "@types/react-router-dom": "^5.1.7",
49
48
  "@types/react-slick": "^0.23.13",
50
49
  "@vanilla-extract/rollup-plugin": "1.3.10",
51
50
  "@vanilla-extract/webpack-plugin": "2.3.14",
@@ -55,7 +54,6 @@
55
54
  "react": "^17.0.1",
56
55
  "react-docgen-typescript-loader": "^3.7.2",
57
56
  "react-dom": "^17.0.1",
58
- "react-router-dom": "^5.2.0",
59
57
  "ts-jest": "^27.0.3",
60
58
  "ts-loader": "^9.2.3",
61
59
  "webpack-merge": "6.0.1"
@@ -69,7 +67,7 @@
69
67
  "@citygross/icons_v2": "^0.0.5",
70
68
  "@citygross/react-use-bg-wizard": "^0.0.8",
71
69
  "@citygross/typography": "^0.0.89",
72
- "@citygross/utils": "^0.0.42",
70
+ "@citygross/utils": "^0.0.43",
73
71
  "@vanilla-extract/css": "^1.14.1",
74
72
  "@vanilla-extract/css-utils": "^0.1.3",
75
73
  "@vanilla-extract/recipes": "^0.5.1",
@@ -79,5 +77,5 @@
79
77
  "react-slick": "^0.30.1",
80
78
  "slick-carousel": "^1.8.1"
81
79
  },
82
- "gitHead": "fc1009c67829050fbc4e15999644e665bed85139"
80
+ "gitHead": "961e05b14868e4153d7062da5b823f5abe5c13d9"
83
81
  }