diff --git a/site/package-lock.json b/site/package-lock.json index a7af53d..87969a4 100644 --- a/site/package-lock.json +++ b/site/package-lock.json @@ -8,7 +8,7 @@ "name": "site", "version": "1.0.0", "dependencies": { - "@layer5/sistent": "^0.14.173", + "@sistent/sistent": "^0.14.173", "@mui/icons-material": "^5.15.14", "@svgdotjs/svg.draw.js": "^3.0.2", "@svgdotjs/svg.js": "^3.2.4", @@ -3150,11 +3150,10 @@ } } }, - "node_modules/@layer5/sistent/node_modules/@mui/utils": { - "version": "6.4.9", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.4.9.tgz", - "integrity": "sha512-Y12Q9hbK9g+ZY0T3Rxrx9m2m10gaphDuUMgWxyV5kNJevVxXYCLclYUCC9vXaIk1/NdNDTcW2Yfr2OGvNFNmHg==", - "license": "MIT", + "node_modules/@sistent/sistent": { + "version": "0.14.173", + "resolved": "https://registry.npmjs.org/@sistent/sistent/-/sistent-0.14.173.tgz", + "integrity": "sha512-YtUIjbhYD9t0OqYv1cywfOgSM6gtmUir65YD/3ODckSc1ue3fwv75TkZpskOmp1z5SoQ4U1OMfJLxz/VazTMwg==", "dependencies": { "@babel/runtime": "^7.26.0", "@mui/types": "~7.2.24", diff --git a/site/package.json b/site/package.json index e083ba5..5381e3b 100644 --- a/site/package.json +++ b/site/package.json @@ -18,7 +18,7 @@ "pretest": "eslint --ignore-path .gitignore ." }, "dependencies": { - "@layer5/sistent": "^0.14.173", + "@sistent/sistent": "^0.15.12", "@mui/icons-material": "^5.15.14", "@svgdotjs/svg.draw.js": "^3.0.2", "@svgdotjs/svg.js": "^3.2.4", diff --git a/site/src/components/ShapeBuilder/index.js b/site/src/components/ShapeBuilder/index.js index 1aa481b..f4ba310 100644 --- a/site/src/components/ShapeBuilder/index.js +++ b/site/src/components/ShapeBuilder/index.js @@ -1,7 +1,7 @@ // /* global window */ import React, { useEffect, useRef, useState } from "react"; import { Wrapper, CanvasContainer, OutputBox, StyledSVG, CopyButton } from "./shapeBuilder.styles"; -import { Button, Typography, Box, CopyIcon } from "@layer5/sistent"; +import { Button, Typography, Box, CopyIcon } from "@sistent/sistent"; import { draw, SVG, extend as SVGextend } from "@svgdotjs/svg.js"; SVGextend(SVG.Polygon, draw); diff --git a/site/src/components/ShapeBuilder/shapeBuilder.styles.js b/site/src/components/ShapeBuilder/shapeBuilder.styles.js index 31e0cbe..aa53f48 100644 --- a/site/src/components/ShapeBuilder/shapeBuilder.styles.js +++ b/site/src/components/ShapeBuilder/shapeBuilder.styles.js @@ -1,5 +1,5 @@ import styled from "styled-components"; -// import styled from "@layer5/sistent"; +// import styled from "@sistent/sistent"; // NOTE: background colors are hardcoded-temporarily for testing diff --git a/site/src/components/utils/instructionsModal.js b/site/src/components/utils/instructionsModal.js index 56ba7e6..df3df47 100644 --- a/site/src/components/utils/instructionsModal.js +++ b/site/src/components/utils/instructionsModal.js @@ -1,5 +1,5 @@ import React from "react"; -import { Modal, ModalBody, Typography, List, ListItem, ListItemText, ModalFooter } from "@layer5/sistent"; +import { Modal, ModalBody, Typography, List, ListItem, ListItemText, ModalFooter } from "@sistent/sistent"; const instructionPoints = [ { diff --git a/site/src/pages/index.js b/site/src/pages/index.js index 6a2e698..157514d 100644 --- a/site/src/pages/index.js +++ b/site/src/pages/index.js @@ -5,7 +5,7 @@ import { useDarkMode } from "../components/useDarkMode"; import Navigation from "../components/Navigation"; import Footer from "../components/Footer"; import ShapeBuilder from "../components/ShapeBuilder"; -import { Button, SistentThemeProviderWithoutBaseLine, Box } from "@layer5/sistent"; +import { Button, SistentThemeProviderWithoutBaseLine, Box } from "@sistent/sistent"; import InstructionsModal from "../components/utils/instructionsModal"; const IndexPage = () => {