Skip to content

Commit

Permalink
Publish to npm, rename Graphica component to GraphicaCore
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasdeluna committed Jan 29, 2024
1 parent 3f0519f commit c67697c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Graphica.ts → src/GraphicaCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const defaultGraphicaOptions: GraphicaOptions = {

//Note for docs: minZoom is how far you are allowed to zoom IN. MaxZoom is how far you are allowed to zoom OUT.

class Graphica {
class GraphicaCore {
components: Component[];
draggables: Component[];
updateComponents: Component[];
Expand Down Expand Up @@ -270,4 +270,4 @@ class Graphica {
}
}

export default Graphica;
export default GraphicaCore;
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as Graphica } from "./Graphica";
export { default as GraphicaCore } from "./GraphicaCore";
export { default as Arc } from "./Components/Arc";
export { default as Bracket } from "./Components/Bracket";
export { default as Button } from "./Components/Button";
Expand Down

0 comments on commit c67697c

Please sign in to comment.