Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/ShapeBuilder/index.js
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion site/src/components/ShapeBuilder/shapeBuilder.styles.js
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion site/src/components/utils/instructionsModal.js
Original file line number Diff line number Diff line change
@@ -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 = [
{
Expand Down
2 changes: 1 addition & 1 deletion site/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {
Expand Down
Loading