@sanity/ui 2.0.0-alpha.30 → 2.0.0-alpha.32

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.30",
3
+ "version": "2.0.0-alpha.32",
4
4
  "sideEffects": false,
5
5
  "types": "./dist/index.d.ts",
6
6
  "source": "./exports/index.ts",
@@ -254,7 +254,7 @@ const DialogCard = forwardRef(function DialogCard(
254
254
  <Flex align="center" padding={3}>
255
255
  <Box flex={1} padding={2}>
256
256
  {header && (
257
- <Text id={labelId} size={1} weight="medium">
257
+ <Text id={labelId} size={1} weight="semibold">
258
258
  {header}
259
259
  </Text>
260
260
  )}
@@ -1,4 +1,4 @@
1
- import {SelectIcon} from '@sanity/icons'
1
+ import {ChevronDownIcon} from '@sanity/icons'
2
2
  import {Button, Flex, Menu, MenuButton, MenuButtonProps, MenuItem} from '@sanity/ui'
3
3
  import {useBoolean} from '@sanity/ui-workshop'
4
4
 
@@ -16,7 +16,7 @@ export default function DisableFocusOnCloseStory() {
16
16
  __unstable_disableRestoreFocusOnClose={disableRestoreFocusOnClose}
17
17
  button={
18
18
  <Button
19
- iconRight={SelectIcon}
19
+ iconRight={ChevronDownIcon}
20
20
  mode="ghost"
21
21
  text={
22
22
  disableRestoreFocusOnClose
@@ -1,4 +1,4 @@
1
- import {SelectIcon} from '@sanity/icons'
1
+ import {ChevronDownIcon} from '@sanity/icons'
2
2
  import {forwardRef} from 'react'
3
3
  import styled from 'styled-components'
4
4
  import {useForwardedRef, useCustomValidity, useArrayProp} from '../../hooks'
@@ -72,7 +72,7 @@ export const Select = forwardRef(function Select(
72
72
 
73
73
  <IconBox padding={padding}>
74
74
  <Text size={fontSize}>
75
- <SelectIcon />
75
+ <ChevronDownIcon />
76
76
  </Text>
77
77
  </IconBox>
78
78
  </Root>