@sanity/ui 2.0.0-alpha.28 → 2.0.0-alpha.29

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": "@sanity/ui",
3
- "version": "2.0.0-alpha.28",
3
+ "version": "2.0.0-alpha.29",
4
4
  "sideEffects": false,
5
5
  "types": "./dist/index.d.ts",
6
6
  "source": "./exports/index.ts",
@@ -91,7 +91,6 @@ export const Tab = forwardRef(function Tab(
91
91
  onBlur={handleBlur}
92
92
  onFocus={handleFocus}
93
93
  padding={padding}
94
- radius="full"
95
94
  ref={setRef}
96
95
  role="tab"
97
96
  selected={selected}
@@ -401,7 +401,8 @@ export const Tooltip = forwardRef(function Tooltip(
401
401
  <motion.div
402
402
  initial={{opacity: 0.5, scale: 0.95}}
403
403
  animate={{opacity: 1, scale: 1}}
404
- exit={{opacity: 0, scale: 0.95, transition: {duration: 0.4, type: 'spring'}}}
404
+ exit={{opacity: 0, scale: 0.95}}
405
+ transition={{duration: 0.3, type: 'spring'}}
405
406
  >
406
407
  {children}
407
408
  </motion.div>
@@ -24,8 +24,8 @@ export const config: Omit<RootTheme, 'color' | 'fonts'> = {
24
24
  },
25
25
  container: [480, 640, 960, 1280, 1600, 1920],
26
26
  focusRing: {
27
- offset: 1,
28
- width: 2,
27
+ offset: -1,
28
+ width: 1,
29
29
  },
30
30
  media: [360, 600, 900, 1200, 1800, 2400],
31
31
  radius: [0, 1, 3, 6, 9, 12, 21],