0.1.9 • Published 3 years ago

gantt-component v0.1.9

Weekly downloads
-
License
-
Repository
-
Last release
3 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

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago