feat(node-toolbar): remove css from node-toolbar component, set version to 1.0.0
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reactflow/node-toolbar",
|
"name": "@reactflow/node-toolbar",
|
||||||
"version": "0.0.1",
|
"version": "1.0.0",
|
||||||
"description": "A toolbar component for React Flow that can be attached to a node.",
|
"description": "A toolbar component for React Flow that can be attached to a node.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react",
|
"react",
|
||||||
@@ -31,9 +31,7 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "concurrently \"rollup --config node:@reactflow/rollup-config --watch\" pnpm:css-watch",
|
"dev": "concurrently \"rollup --config node:@reactflow/rollup-config --watch\" pnpm:css-watch",
|
||||||
"build": "rollup --config node:@reactflow/rollup-config --environment NODE_ENV:production && npm run css",
|
"build": "rollup --config node:@reactflow/rollup-config --environment NODE_ENV:production",
|
||||||
"css": "postcss src/*.css --config ../../tooling/postcss-config/postcss.config.js --dir dist",
|
|
||||||
"css-watch": "pnpm css --watch",
|
|
||||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -82,8 +82,9 @@ function NodeToolbar({
|
|||||||
const nodeRect: Rect = getRectOfNodes([node], nodeOrigin);
|
const nodeRect: Rect = getRectOfNodes([node], nodeOrigin);
|
||||||
|
|
||||||
const wrapperStyle: CSSProperties = {
|
const wrapperStyle: CSSProperties = {
|
||||||
|
position: 'absolute',
|
||||||
transform: getTransform(nodeRect, transform, position, offset),
|
transform: getTransform(nodeRect, transform, position, offset),
|
||||||
zIndex: node[internalsSymbol]?.z,
|
zIndex: (node[internalsSymbol]?.z || 1) + 1,
|
||||||
...style,
|
...style,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
.react-flow__node-toolbar {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
@import '@reactflow/core/dist/style.css';
|
@import '@reactflow/core/dist/style.css';
|
||||||
@import '@reactflow/controls/dist/style.css';
|
@import '@reactflow/controls/dist/style.css';
|
||||||
@import '@reactflow/minimap/dist/style.css';
|
@import '@reactflow/minimap/dist/style.css';
|
||||||
@import '@reactflow/node-toolbar/dist/style.css';
|
|
||||||
|
|||||||
Reference in New Issue
Block a user