@blocklet/ui-react 2.12.19 → 2.12.20

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.
@@ -158,7 +158,12 @@ export default function ThirdPartyLogin({ user }) {
158
158
  createButtonText: "Add Passkey",
159
159
  onSuccess: noop,
160
160
  onError: noop,
161
- dense: true
161
+ dense: true,
162
+ sx: {
163
+ px: 1.5,
164
+ py: 1,
165
+ gap: 0.75
166
+ }
162
167
  }
163
168
  )
164
169
  ] })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/ui-react",
3
- "version": "2.12.19",
3
+ "version": "2.12.20",
4
4
  "description": "Some useful front-end web components that can be used in Blocklets.",
5
5
  "keywords": [
6
6
  "react",
@@ -33,10 +33,10 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@abtnode/constant": "^1.16.39",
36
- "@arcblock/bridge": "^2.12.19",
37
- "@arcblock/react-hooks": "^2.12.19",
36
+ "@arcblock/bridge": "^2.12.20",
37
+ "@arcblock/react-hooks": "^2.12.20",
38
38
  "@arcblock/ws": "^1.19.15",
39
- "@blocklet/did-space-react": "^1.0.31",
39
+ "@blocklet/did-space-react": "^1.0.33",
40
40
  "@iconify-icons/logos": "^1.2.36",
41
41
  "@iconify-icons/material-symbols": "^1.2.58",
42
42
  "@iconify/react": "^4.1.1",
@@ -87,5 +87,5 @@
87
87
  "jest": "^29.7.0",
88
88
  "unbuild": "^2.0.0"
89
89
  },
90
- "gitHead": "982f9b9e2a0df1f953893620c73e58856706fbad"
90
+ "gitHead": "c2b00ec84f106657107bb415f255855e22e1de26"
91
91
  }
@@ -182,6 +182,11 @@ export default function ThirdPartyLogin({ user }: { user: User }) {
182
182
  onSuccess={noop}
183
183
  onError={noop}
184
184
  dense
185
+ sx={{
186
+ px: 1.5,
187
+ py: 1,
188
+ gap: 0.75,
189
+ }}
185
190
  />
186
191
  </>
187
192
  )}