0.1.9 • Published 2 years ago

gantt-component v0.1.9

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

gantt-lit-component

This project is kind of fork of apside-resources-manager. Its biggest difference is that extracts all the logic was coupled with the frontend framework. Now you can use this component at wherever you want!

For example, I will use it inside React js app

import 'gantt-component'; // Import component
import * as data from 'resource/data.json'; // Import the component's data

export const GanttCustom() {
  const ganttCustomContainerStyles = {
    height: '300px',
    width: '500px',
    overflow: 'auto',
    backgroundColor: 'white'
  };

  return (
    <>
      <div style={ganttCustomContainerStyles}>
        {data && <gantt-custom data={data} />} // The component will render!!
      </div>
    </>
  );
}

Setup project for developers

npm install && npm run dev
0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago