Skip to content

Commit

Permalink
Rename GraphicaCore to Core (#68)
Browse files Browse the repository at this point in the history
* Rename graphica to core

* v1.0.735
  • Loading branch information
jonasdeluna authored Jan 31, 2024
1 parent a5759e9 commit 0cbc9ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kateter-platform/graphica",
"version": "1.0.734",
"version": "1.0.735",
"source": "./src/index.ts",
"description": "A tool for advanced graphing and visualization",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/GraphicaCore.ts → src/Core.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 GraphicaCore {
class Core {
components: Component[];
draggables: Component[];
updateComponents: Component[];
Expand Down Expand Up @@ -270,4 +270,4 @@ class GraphicaCore {
}
}

export default GraphicaCore;
export default Core;
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 GraphicaCore } from "./GraphicaCore";
export { default as Core } from "./Core";
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 0cbc9ba

Please sign in to comment.