@sanity/ui 2.0.0-gamma.1 → 2.0.1
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/dist/index.d.ts +4 -0
- package/dist/index.esm.js +3 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/theme.d.ts +6 -1
- package/dist/theme.esm.js +2 -1
- package/dist/theme.esm.js.map +1 -1
- package/dist/theme.js +2 -1
- package/dist/theme.js.map +1 -1
- package/package.json +2 -6
- package/src/core/__workshop__/fontsPlugin.tsx +48 -8
- package/src/core/primitives/button/button.tsx +1 -1
- package/src/core/primitives/popover/popover.tsx +6 -1
- package/src/theme/defaults/colorTokens.ts +1 -1
- package/src/theme/system/color/state.ts +6 -0
- package/src/theme/system/v0/color/color.ts +0 -1
- package/src/theme/versioning/v2_v0.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"source": "./exports/index.ts",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@floating-ui/react-dom": "^2.0.4",
|
|
75
|
-
"@sanity/color": "3.0.0
|
|
75
|
+
"@sanity/color": "^3.0.0",
|
|
76
76
|
"@sanity/icons": "^2.7.0",
|
|
77
77
|
"csstype": "^3.1.2",
|
|
78
78
|
"framer-motion": "^10.16.5",
|
|
@@ -206,10 +206,6 @@
|
|
|
206
206
|
{
|
|
207
207
|
"name": "alpha",
|
|
208
208
|
"prerelease": true
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"name": "gamma",
|
|
212
|
-
"prerelease": true
|
|
213
209
|
}
|
|
214
210
|
]
|
|
215
211
|
}
|
|
@@ -3,20 +3,60 @@ import {createGlobalStyle} from 'styled-components'
|
|
|
3
3
|
|
|
4
4
|
const GlobalStyle = createGlobalStyle`
|
|
5
5
|
@font-face {
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: Inter;
|
|
7
7
|
font-style: normal;
|
|
8
|
-
font-weight:
|
|
8
|
+
font-weight: 400;
|
|
9
9
|
font-display: swap;
|
|
10
|
-
src: url('https://studio-static.sanity.io/
|
|
11
|
-
font-named-instance: 'Regular';
|
|
10
|
+
src: url('https://studio-static.sanity.io/Inter-Regular.woff2') format('woff2');
|
|
12
11
|
}
|
|
13
12
|
@font-face {
|
|
14
|
-
font-family:
|
|
13
|
+
font-family: Inter;
|
|
15
14
|
font-style: italic;
|
|
16
|
-
font-weight:
|
|
15
|
+
font-weight: 400;
|
|
17
16
|
font-display: swap;
|
|
18
|
-
src: url('https://studio-static.sanity.io/
|
|
19
|
-
|
|
17
|
+
src: url('https://studio-static.sanity.io/Inter-Italic.woff2') format('woff2');
|
|
18
|
+
}
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: Inter;
|
|
21
|
+
font-style: normal;
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
font-display: swap;
|
|
24
|
+
src: url('https://studio-static.sanity.io/Inter-Medium.woff2') format('woff2');
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: Inter;
|
|
28
|
+
font-style: italic;
|
|
29
|
+
font-weight: 500;
|
|
30
|
+
font-display: swap;
|
|
31
|
+
src: url('https://studio-static.sanity.io/Inter-MediumItalic.woff2') format('woff2');
|
|
32
|
+
}
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: Inter;
|
|
35
|
+
font-style: normal;
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
font-display: swap;
|
|
38
|
+
src: url('https://studio-static.sanity.io/Inter-SemiBold.woff2') format('woff2');
|
|
39
|
+
}
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: Inter;
|
|
42
|
+
font-style: italic;
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
font-display: swap;
|
|
45
|
+
src: url('https://studio-static.sanity.io/Inter-SemiBoldItalic.woff2') format('woff2');
|
|
46
|
+
}
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: Inter;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
font-weight: 700;
|
|
51
|
+
font-display: swap;
|
|
52
|
+
src: url('https://studio-static.sanity.io/Inter-Bold.woff2') format('woff2');
|
|
53
|
+
}
|
|
54
|
+
@font-face {
|
|
55
|
+
font-family: Inter;
|
|
56
|
+
font-style: italic;
|
|
57
|
+
font-weight: 700;
|
|
58
|
+
font-display: swap;
|
|
59
|
+
src: url('https://studio-static.sanity.io/Inter-BoldItalic.woff2') format('woff2');
|
|
20
60
|
}
|
|
21
61
|
`
|
|
22
62
|
|
|
@@ -98,6 +98,10 @@ export interface PopoverProps
|
|
|
98
98
|
portal?: boolean | string
|
|
99
99
|
preventOverflow?: boolean
|
|
100
100
|
referenceBoundary?: HTMLElement | null
|
|
101
|
+
/**
|
|
102
|
+
* When defined, the popover will be positioned relative to this element.
|
|
103
|
+
* The children of the popover won't be rendered.
|
|
104
|
+
*/
|
|
101
105
|
referenceElement?: HTMLElement | null
|
|
102
106
|
scheme?: ThemeColorSchemeKey
|
|
103
107
|
tone?: CardTone
|
|
@@ -376,8 +380,9 @@ export const Popover = memo(
|
|
|
376
380
|
}, [update, updateRef])
|
|
377
381
|
|
|
378
382
|
useEffect(() => {
|
|
383
|
+
if (child) return
|
|
379
384
|
refs.setReference(referenceElement || null)
|
|
380
|
-
}, [referenceElement, refs])
|
|
385
|
+
}, [referenceElement, refs, child])
|
|
381
386
|
|
|
382
387
|
if (disabled) {
|
|
383
388
|
return childProp || <></>
|
|
@@ -12,7 +12,13 @@ export interface ThemeColorState_v2 {
|
|
|
12
12
|
accent: {
|
|
13
13
|
fg: string
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @internal This may be removed in a future release
|
|
17
|
+
* */
|
|
15
18
|
avatar: ThemeColorAvatar_v2
|
|
19
|
+
/**
|
|
20
|
+
* @internal This may be removed in a future release
|
|
21
|
+
* */
|
|
16
22
|
badge: ThemeColorBadge_v2
|
|
17
23
|
bg: string
|
|
18
24
|
border: string
|
|
@@ -91,6 +91,7 @@ function themeColor_v2_v0(color_v2: ThemeColorCard_v2): ThemeColor {
|
|
|
91
91
|
...color_v2.button.default,
|
|
92
92
|
transparent: color_v2.button.default.default,
|
|
93
93
|
},
|
|
94
|
+
selectable: color_v2.selectable,
|
|
94
95
|
spot: {
|
|
95
96
|
gray: color_v2.avatar.gray.bg,
|
|
96
97
|
blue: color_v2.avatar.blue.bg,
|