@blocklet/did-domain-react 0.3.118 → 0.3.119

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/es/domain.js CHANGED
@@ -75,7 +75,7 @@ export function Domain({
75
75
  title: t("common.subscription"),
76
76
  width: isMobile ? "320px" : "400px",
77
77
  height: "350px",
78
- style: { border: 0 },
78
+ style: { border: 0, display: "block" },
79
79
  src: iframeSrc
80
80
  }
81
81
  )
package/lib/domain.js CHANGED
@@ -86,7 +86,8 @@ function Domain({
86
86
  width: isMobile ? "320px" : "400px",
87
87
  height: "350px",
88
88
  style: {
89
- border: 0
89
+ border: 0,
90
+ display: "block"
90
91
  },
91
92
  src: iframeSrc
92
93
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/did-domain-react",
3
- "version": "0.3.118",
3
+ "version": "0.3.119",
4
4
  "description": "Reusable react components for DID Domain",
5
5
  "keywords": [
6
6
  "react",
@@ -95,12 +95,12 @@
95
95
  "react-dom": "18.2.0",
96
96
  "rollup-plugin-node-builtins": "^2.1.2",
97
97
  "storybook": "^7.6.20",
98
- "ts-jest": "^29.3.2",
98
+ "ts-jest": "^29.3.3",
99
99
  "type-fest": "^4.41.0",
100
100
  "typescript": "^4.9.5",
101
101
  "unbuild": "^2.0.0",
102
102
  "vite-plugin-babel": "^1.3.1",
103
103
  "vite-plugin-node-polyfills": "^0.21.0"
104
104
  },
105
- "gitHead": "2a7fb2e871a717ffa3e7ce0b0878310ba3f036e4"
105
+ "gitHead": "1b51bd0af103f4afb51b91ce64a03f27e4932f74"
106
106
  }
package/src/domain.tsx CHANGED
@@ -86,7 +86,7 @@ export function Domain({
86
86
  title={t('common.subscription')}
87
87
  width={isMobile ? '320px' : '400px'}
88
88
  height="350px"
89
- style={{ border: 0 }}
89
+ style={{ border: 0, display: 'block' }}
90
90
  src={iframeSrc}
91
91
  />
92
92
  </Popover>