From c1923c00f779c9a62096ad123d519c8552a41d02 Mon Sep 17 00:00:00 2001 From: mahadevan <135952571+M-DEV-1@users.noreply.github.com> Date: Tue, 3 Jun 2025 18:29:54 +0530 Subject: [PATCH 1/2] Chore: Update sistent package --- site/src/components/ShapeBuilder/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/components/ShapeBuilder/index.js b/site/src/components/ShapeBuilder/index.js index 4bd3832..2c1580f 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 } from "./shapeBuilder.styles"; -import { Button, Typography, Box } from "@layer5/sistent"; +import { Button, Typography, Box } from "@sistent/sistent"; import { SVG, extend as SVGextend } from "@svgdotjs/svg.js"; import draw from "@svgdotjs/svg.draw.js"; From 2983491e5630d52f9c0bf67ed256f3b4d3021fa6 Mon Sep 17 00:00:00 2001 From: mahadevan <135952571+M-DEV-1@users.noreply.github.com> Date: Tue, 3 Jun 2025 13:10:11 +0000 Subject: [PATCH 2/2] update references --- site/package-lock.json | 6 +++--- site/package.json | 2 +- site/src/components/ShapeBuilder/shapeBuilder.styles.js | 2 +- site/src/components/utils/instructionsModal.js | 2 +- site/src/pages/index.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/site/package-lock.json b/site/package-lock.json index 0996d21..c31b38c 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", @@ -2812,9 +2812,9 @@ "react-dom": ">=17.0.2" } }, - "node_modules/@layer5/sistent": { + "node_modules/@sistent/sistent": { "version": "0.14.173", - "resolved": "https://registry.npmjs.org/@layer5/sistent/-/sistent-0.14.173.tgz", + "resolved": "https://registry.npmjs.org/@sistent/sistent/-/sistent-0.14.173.tgz", "integrity": "sha512-YtUIjbhYD9t0OqYv1cywfOgSM6gtmUir65YD/3ODckSc1ue3fwv75TkZpskOmp1z5SoQ4U1OMfJLxz/VazTMwg==", "dependencies": { "@emotion/react": "^11.11.3", diff --git a/site/package.json b/site/package.json index 644788b..31b58ce 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.14.173", "@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/shapeBuilder.styles.js b/site/src/components/ShapeBuilder/shapeBuilder.styles.js index 273c081..1a83128 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 = () => {