Skip to content

Commit

Permalink
pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
softmarshmallow committed Feb 24, 2024
1 parent 35cce16 commit 170dd82
Show file tree
Hide file tree
Showing 17 changed files with 212 additions and 62 deletions.
18 changes: 17 additions & 1 deletion packages/editor-ui-button/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"name": "@editor-ui/button",
"version": "0.0.0"
"version": "0.0.0",
"devDependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"dependencies": {
"@editor-ui/theme": "workspace:^",
"@editor-ui/tooltip": "workspace:^"
}
}
15 changes: 14 additions & 1 deletion packages/editor-ui-context-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0",
"@radix-ui/react-context-menu": "^0.1.1"
"@editor-ui/menu": "workspace:^",
"@editor-ui/spacer": "workspace:^",
"@radix-ui/react-context-menu": "^0.1.1",
"@radix-ui/react-icons": "^1.0.3"
},
"devDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
3 changes: 2 additions & 1 deletion packages/editor-ui-dropdown-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.0.0",
"private": false,
"dependencies": {
"@radix-ui/react-dropdown-menu": "^0.1.6"
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@stitches/react": "^1.2.8"
}
}
16 changes: 15 additions & 1 deletion packages/editor-ui-hierarchy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
"name": "@editor-ui/hierarchy",
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0"
"@editor-ui/foundation": "0.0.0",
"@editor-ui/icons": "workspace:^",
"@editor-ui/listview": "workspace:^",
"@editor-ui/spacer": "workspace:^",
"@radix-ui/react-icons": "^1.0.3"
},
"devDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
10 changes: 9 additions & 1 deletion packages/editor-ui-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"name": "@editor-ui/hooks",
"version": "0.0.0",
"description": "React hooks fro editor-ui on for react"
"description": "React hooks fro editor-ui on for react",
"devDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
10 changes: 10 additions & 0 deletions packages/editor-ui-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0"
},
"devDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
41 changes: 29 additions & 12 deletions packages/editor-ui-listview/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
{
"name": "@editor-ui/listview",
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.6"
},
"devDependencies": {
"@types/react-virtualized": "^9.21.13",
"@types/react-window": "^1.8.5"
}
}
"name": "@editor-ui/listview",
"version": "0.0.0",
"dependencies": {
"@editor-ui/context-menu": "workspace:^",
"@editor-ui/foundation": "0.0.0",
"@editor-ui/hooks": "workspace:^",
"@editor-ui/scroll-area": "workspace:^",
"@editor-ui/sortable": "workspace:^",
"@editor-ui/spacer": "workspace:^",
"@editor-ui/theme": "workspace:^",
"@editor-ui/utils": "workspace:^",
"@radix-ui/react-compose-refs": "^1.0.1",
"@reflect-ui/uiutils": "0.1.2-2",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.6"
},
"peerDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"devDependencies": {
"@emotion/styled": "^11.11.0",
"@types/react": "18.2.58",
"@types/react-virtualized": "^9.21.13",
"@types/react-window": "^1.8.5",
"react": "^18.2.0"
}
}
9 changes: 8 additions & 1 deletion packages/editor-ui-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
"name": "@editor-ui/menu",
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0"
"@editor-ui/foundation": "0.0.0",
"@editor-ui/theme": "workspace:^"
},
"devDependencies": {
"@emotion/css": "^11.11.2"
},
"peerDependencies": {
"@emotion/css": "^11.11.2"
}
}
4 changes: 2 additions & 2 deletions packages/editor-ui-property/layout/dnd-wrapper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function DnDWrapper(props: DnDWrapperProps) {
const { active, over } = event;

if (over && active.id !== over.id) {
const oldIndex = keys.indexOf(active.id);
const newIndex = keys.indexOf(over.id);
const oldIndex = keys.indexOf(active.id as string);
const newIndex = keys.indexOf(over.id as string);

onMoveItem?.(oldIndex, newIndex);
}
Expand Down
12 changes: 10 additions & 2 deletions packages/editor-ui-property/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,25 @@
"build-storybook": "build-storybook"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@editor-ui/foundation": "0.0.0",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-select": "^1.2.0"
},
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5"
"@emotion/styled": "^11.10.5",
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
9 changes: 9 additions & 0 deletions packages/editor-ui-scroll-area/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
"authors": "Grida.co",
"version": "0.0.0",
"dependencies": {
"@editor-ui/theme": "workspace:^",
"@radix-ui/react-scroll-area": "^0.0.16"
},
"devDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
12 changes: 12 additions & 0 deletions packages/editor-ui-sortable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,17 @@
"@dnd-kit/sortable": "^4.0.0",
"@dnd-kit/utilities": "^2.0.0",
"@editor-ui/foundation": "0.0.0"
},
"devDependencies": {
"@types/react": "18.2.58",
"@types/react-dom": "^18.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@types/react": "18.2.58",
"@types/react-dom": "^18.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
6 changes: 6 additions & 0 deletions packages/editor-ui-spacer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0"
},
"devDependencies": {
"@emotion/styled": "^11.11.0"
},
"peerDependencies": {
"@emotion/styled": "^11.11.0"
}
}
8 changes: 7 additions & 1 deletion packages/editor-ui-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
"version": "0.0.0",
"peerDependencies": {
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@emotion/css": "^11.1.3"
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"dependencies": {
"immer": "^9.0.3"
},
"devDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
13 changes: 11 additions & 2 deletions packages/editor-ui-tooltip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@
"name": "@editor-ui/tooltip",
"version": "0.0.0",
"dependencies": {
"@editor-ui/foundation": "0.0.0",
"@editor-ui/theme": "workspace:^",
"@radix-ui/react-slot": "^0.0.11",
"@radix-ui/react-tooltip": "^0.0.19",
"@editor-ui/foundation": "0.0.0"
"@radix-ui/react-tooltip": "^0.0.19"
},
"devDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
9 changes: 9 additions & 0 deletions packages/editor-ui-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
"name": "@editor-ui/utils",
"version": "0.0.0",
"dependencies": {
"@radix-ui/primitive": "^1.0.1",
"react-use-gesture": "^9.1.3"
},
"devDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
},
"peerDependencies": {
"@types/react": "18.2.58",
"react": "^18.2.0"
}
}
79 changes: 42 additions & 37 deletions packages/editor-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,46 @@
{
"name": "@editor-ui/editor",
"version": "0.0.0",
"description": "full package of editor ui packages",
"dependencies": {
"@dnd-kit/core": "^2.1.2",
"@dnd-kit/modifiers": "^1.0.5",
"@dnd-kit/sortable": "^2.0.1",
"@dnd-kit/utilities": "^1.0.3",
"@editor-ui/foundation": "0.0.0",
"@editor-ui/multiplayer": "0.0.0",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-progress": "^0.0.13",
"@radix-ui/react-slider": "^0.0.11",
"@radix-ui/react-tooltip": "^0.0.18",
"@stitches/react": "^1.2.8",
"emotion-icons": "^3.7.0"
"name": "@editor-ui/editor",
"version": "0.0.0",
"description": "full package of editor ui packages",
"dependencies": {
"@dnd-kit/core": "^2.1.2",
"@dnd-kit/modifiers": "^1.0.5",
"@dnd-kit/sortable": "^2.0.1",
"@dnd-kit/utilities": "^1.0.3",
"@editor-ui/button": "workspace:^",
"@editor-ui/foundation": "workspace:^",
"@editor-ui/hierarchy": "workspace:^",
"@editor-ui/hooks": "workspace:^",
"@editor-ui/multiplayer": "workspace:^",
"@editor-ui/spacer": "workspace:^",
"@editor-ui/utils": "workspace:^",
"@radix-ui/react-dropdown-menu": "^0.1.6",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-progress": "^0.0.13",
"@radix-ui/react-slider": "^0.0.11",
"@radix-ui/react-tooltip": "^0.0.18",
"@stitches/react": "^1.2.8",
"emotion-icons": "^3.7.0"
},
"peerDependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"react": "^17.0.1 || ^18.2.0",
"react-dom": "^17.0.1 || ^18.2.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"peerDependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"react": "^17.0.1 || ^18.2.0",
"react-dom": "^17.0.1 || ^18.2.0"
"@emotion/react": {
"optional": true
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@emotion/react": {
"optional": true
},
"@emotion/styled": {
"optional": true
}
},
"publishConfig": {
"access": "public"
"@emotion/styled": {
"optional": true
}
}
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 170dd82

Please sign in to comment.