@sanity/ui 3.0.0-static.44 → 3.0.0-static.45

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": "3.0.0-static.44",
3
+ "version": "3.0.0-static.45",
4
4
  "keywords": [
5
5
  "react",
6
6
  "ui",
@@ -37,6 +37,13 @@ export type BoxElementType =
37
37
  | 'section'
38
38
  | 'span'
39
39
  | 'summary'
40
+ | 'table'
41
+ | 'tbody'
42
+ | 'td'
43
+ | 'tfoot'
44
+ | 'th'
45
+ | 'thead'
46
+ | 'tr'
40
47
  | 'ul'
41
48
  | ComponentType
42
49
 
@@ -21,6 +21,8 @@ export type TextElementType =
21
21
  | 'li'
22
22
  | 'p'
23
23
  | 'span'
24
+ | 'summary'
25
+ | 'time'
24
26
  | ComponentType
25
27
 
26
28
  /** @public */
@@ -28,7 +28,7 @@ export const root: string = _style(layers.primitives, {
28
28
  [vars.color.border]: vars.color.tinted.default.border[1],
29
29
  [vars.color.fg]: vars.color.tinted.default.fg[0],
30
30
  [vars.color.muted.bg]: vars.color.tinted.default.bg[1],
31
- [vars.color.muted.border]: vars.color.tinted.default.bg[0],
31
+ [vars.color.muted.border]: vars.color.tinted.default.border[0],
32
32
  [vars.color.muted.fg]: vars.color.tinted.default.fg[4],
33
33
  },
34
34
 
@@ -36,7 +36,7 @@ export const presentation: string = _style(layers.primitives, {
36
36
  borderRadius: vars.radius[2],
37
37
  lineHeight: 1,
38
38
  backgroundColor: vars.color.input.checkbox.bg,
39
- boxShadow: `inset 0 0 0 1px ${vars.color.input.checkbox.border}`,
39
+ boxShadow: `inset 0 0 0 ${vars.input.border.width} ${vars.color.input.checkbox.border}`,
40
40
  color: vars.color.input.checkbox.fg,
41
41
 
42
42
  vars: {