npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@digiforce-cloud/flowdesigner

v1.2.2

Published

Flowchart

Downloads

7

Readme

@digiforce-cloud/flowdesigner

Flowchart solutions, based on XFlow.

npm npm GitHub stars npm License

Case

✨ Features

  • Easy to use
  • TypeScript

📦 Installation

$ npm install @digiforce-cloud/flowdesigner

🔨 Usage

import React from 'react';
import { Flowchart } from '@digiforce-cloud/flowdesigner';
import "antd/dist/antd.css";
import "@digiforce-cloud/flowdesigner/dist/index.css";

const DemoFlowchart = () => {
  return (
    <div style={{ height: 600 }}>
      <Flowchart
        onSave={(d) => {
          console.log(d, JSON.stringify(d));
        }}
        toolbarPanelProps={{
          position: {
            top: 0,
            left: 0,
            right: 0,
          },
        }}
        scaleToolbarPanelProps={{
          layout: 'horizontal',
          position: {
            right: 0,
            top: -40,
          },
          style: {
            width: 150,
            height: 39,
            left: 'auto',
            background: 'transparent',
          },
        }}
        canvasProps={{
          position: {
            top: 40,
            left: 0,
            right: 0,
            bottom: 0,
          },
        }}
        nodePanelProps={{
          position: { width: 160, top: 40, bottom: 0, left: 0 },
        }}
        detailPanelProps={{
          position: { width: 200, top: 40, bottom: 0, right: 0 },
        }}
      />
    </div>
  );
};
export default DemoFlowchart;

Preview

📜 Document & API

export interface FlowchartProps extends FlowchartContainerProps {
  /** 默认数据 */
  data?: Datum;
  
  /** 画布是否自动居中 */
  isAutoCenter?: boolean;
  
  /** 节点面板配置 */
  nodePanelProps?: NodePanelProps;
  
  /** 画布主要区域配置 */
  canvasProps?: CanvasProps;
  
  /**
   * @title 画布状态
   * @description scan 会禁用一些画布事件,例如连线、鼠标右键等
   * @default "edit"
   */
  mode?: 'edit' | 'scan';
  
  /** toolbar */
  toolbarPanelProps?: ToolbarPanelProps;
  
  /** keyBinding */
  keyBindingProps?: false | KeybindingConfig;
  
  /** scale toolbar */
  scaleToolbarPanelProps?: ScaleToolbarPanelProps;
  
  /** form editor */
  detailPanelProps?: DetailPanelProps;
  
  /** 右键菜单配置 */
  contextMenuPanelProps?: ContextMenuPanelProps;
  
  /** popover */
  popoverProps?: PopoverProps;
  
  /** onReady */
  onReady?: (graph: IFlowchartGraph, app: IApplication) => void;
  
  /** 点击回调,仅支持 save-graph-data */
  onSave?: (data: Datum) => void;
  
  /** 新增节点时回调 */
  onAddNode?: (node: NsGraph.INodeConfig) => void;
  
  /** 新增边时回调 */
  onAddEdge?: (edge: NsGraph.IEdgeConfig) => void;
  
  /** xflow app 销毁前的回调 */
  onDestroy?: IAppDestroy;
  
  /** xflow app 初始化后的回调 */
  onConfigReady?: IAppConfigReady;
  
  /** 节点或边更新数据时调用 */
  onConfigChange?: (params: { data: Datum; type: string; config?: NsGraph.INodeConfig | NsGraph.IEdgeConfig }) => void;
}

🤝 How to Contribute

Your contributions are always welcome! Please Do have a look at the issues first.

📧 Contact us

DingTalk group number: 44788198 .

License

MIT