@noya-app/noya-designsystem 0.0.9 → 0.0.11

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.
@@ -5,13 +5,13 @@ CLI tsup v8.0.1
5
5
  CLI Target: esnext
6
6
  CJS Build start
7
7
  ESM Build start
8
- ESM dist/index.mjs 167.98 KB
9
- ESM dist/index.mjs.map 366.02 KB
10
- ESM ⚡️ Build success in 79ms
11
8
  CJS dist/index.js 184.28 KB
12
9
  CJS dist/index.js.map 366.94 KB
13
- CJS ⚡️ Build success in 79ms
10
+ CJS ⚡️ Build success in 149ms
11
+ ESM dist/index.mjs 167.98 KB
12
+ ESM dist/index.mjs.map 366.02 KB
13
+ ESM ⚡️ Build success in 149ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 5889ms
15
+ DTS ⚡️ Build success in 5935ms
16
16
  DTS dist/index.d.ts 53.26 KB
17
17
  DTS dist/index.d.mts 53.26 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @noya-app/noya-designsystem
2
2
 
3
+ ## 0.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Update all packages
8
+ - Updated dependencies
9
+ - @noya-app/noya-colorpicker@0.0.5
10
+ - @noya-app/noya-geometry@0.0.9
11
+ - @noya-app/noya-icons@0.0.2
12
+ - @noya-app/noya-keymap@0.0.4
13
+ - @noya-app/noya-utils@0.0.8
14
+
15
+ ## 0.0.10
16
+
17
+ ### Patch Changes
18
+
19
+ - Fix deps
20
+
3
21
  ## 0.0.9
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,25 +1,16 @@
1
1
  {
2
2
  "name": "@noya-app/noya-designsystem",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": "./src/index.tsx"
9
9
  },
10
- "scripts": {
11
- "build": "tsup src/index.tsx --format cjs,esm --dts --sourcemap",
12
- "dev": "npm run build -- --watch"
13
- },
14
10
  "dependencies": {
15
11
  "@dnd-kit/core": "3.1.1",
16
12
  "@dnd-kit/modifiers": "3.0.0",
17
13
  "@dnd-kit/sortable": "4.0.0",
18
- "@noya-app/noya-colorpicker": "workspace:*",
19
- "@noya-app/noya-utils": "workspace:*",
20
- "@noya-app/noya-geometry": "workspace:*",
21
- "@noya-app/noya-icons": "workspace:*",
22
- "@noya-app/noya-keymap": "workspace:*",
23
14
  "@radix-ui/primitive": "^1.0.0",
24
15
  "@radix-ui/react-avatar": "^1.0.1",
25
16
  "@radix-ui/react-compose-refs": "^1.0.0",
@@ -42,9 +33,16 @@
42
33
  "react-virtualized": "^9.22.3",
43
34
  "react-window": "^1.8.8",
44
35
  "styled-components": "5.3.0",
45
- "vscode-fuzzy-scorer": "^0.0.4"
36
+ "vscode-fuzzy-scorer": "^0.0.4",
37
+ "@noya-app/noya-geometry": "0.0.9",
38
+ "@noya-app/noya-keymap": "0.0.4",
39
+ "@noya-app/noya-colorpicker": "0.0.5",
40
+ "@noya-app/noya-icons": "0.0.2",
41
+ "@noya-app/noya-utils": "0.0.8"
46
42
  },
47
43
  "devDependencies": {
44
+ "@types/react": "*",
45
+ "@types/react-dom": "*",
48
46
  "@types/react-virtualized": "^9.21.21",
49
47
  "@types/react-window": "^1.8.5",
50
48
  "@types/styled-components": "5.1.26"
@@ -52,5 +50,9 @@
52
50
  "peerDependencies": {
53
51
  "react": "*",
54
52
  "react-dom": "*"
53
+ },
54
+ "scripts": {
55
+ "build": "tsup src/index.tsx --format cjs,esm --dts --sourcemap",
56
+ "dev": "npm run build -- --watch"
55
57
  }
56
- }
58
+ }