@dxos/react-ui-pickers 0.8.4-main.74a063c4e0 → 0.8.4-main.765dc60934

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": "@dxos/react-ui-pickers",
3
- "version": "0.8.4-main.74a063c4e0",
3
+ "version": "0.8.4-main.765dc60934",
4
4
  "description": "A collection of picker components.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/dxos/dxos"
10
10
  },
11
- "license": "MIT",
11
+ "license": "FSL-1.1-Apache-2.0",
12
12
  "author": "DXOS.org",
13
13
  "type": "module",
14
14
  "exports": {
@@ -26,13 +26,6 @@
26
26
  }
27
27
  },
28
28
  "types": "dist/types/src/index.d.ts",
29
- "typesVersions": {
30
- "*": {
31
- "icons": [
32
- "./dist/types/src/components/IconPicker/icons.d.ts"
33
- ]
34
- }
35
- },
36
29
  "files": [
37
30
  "dist",
38
31
  "src"
@@ -42,25 +35,25 @@
42
35
  "@emoji-mart/react": "^1.1.1",
43
36
  "@radix-ui/react-use-controllable-state": "1.1.0",
44
37
  "react-resize-detector": "^11.0.1",
45
- "@dxos/ui-types": "0.8.4-main.74a063c4e0",
46
- "@dxos/log": "0.8.4-main.74a063c4e0",
47
- "@dxos/util": "0.8.4-main.74a063c4e0"
38
+ "@dxos/log": "0.8.4-main.765dc60934",
39
+ "@dxos/ui-types": "0.8.4-main.765dc60934",
40
+ "@dxos/util": "0.8.4-main.765dc60934"
48
41
  },
49
42
  "devDependencies": {
50
43
  "@types/react": "~19.2.7",
51
44
  "@types/react-dom": "~19.2.3",
52
45
  "react": "~19.2.3",
53
46
  "react-dom": "~19.2.3",
54
- "vite": "^7.1.11",
55
- "@dxos/react-ui": "0.8.4-main.74a063c4e0",
56
- "@dxos/storybook-utils": "0.8.4-main.74a063c4e0",
57
- "@dxos/ui-theme": "0.8.4-main.74a063c4e0"
47
+ "vite": "^8.0.13",
48
+ "@dxos/storybook-utils": "0.8.4-main.765dc60934",
49
+ "@dxos/ui-theme": "0.8.4-main.765dc60934",
50
+ "@dxos/react-ui": "0.8.4-main.765dc60934"
58
51
  },
59
52
  "peerDependencies": {
60
53
  "react": "~19.2.3",
61
54
  "react-dom": "~19.2.3",
62
- "@dxos/react-ui": "0.8.4-main.74a063c4e0",
63
- "@dxos/ui-theme": "0.8.4-main.74a063c4e0"
55
+ "@dxos/ui-theme": "0.8.4-main.765dc60934",
56
+ "@dxos/react-ui": "0.8.4-main.765dc60934"
64
57
  },
65
58
  "publishConfig": {
66
59
  "access": "public"
@@ -33,7 +33,7 @@ export const HuePicker = (props: ThemedClassName<HuePickerProps>) => {
33
33
 
34
34
  const HuePreview = ({ value, size = 5 }: { value: string; size?: IconProps['size'] }) => {
35
35
  return (
36
- <div role='none' className='flex justify-center items-center'>
36
+ <div className='flex justify-center items-center'>
37
37
  <svg viewBox={`0 0 ${size} ${size}`} className={getSize(size)}>
38
38
  <rect x={0} y={0} width={size} height={size} fill={`var(--color-${value}-surface)`} strokeWidth={4} />
39
39
  </svg>