Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small semver update for packages #2336

Open
wants to merge 4 commits into
base: legacy
Choose a base branch
from
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
17,440 changes: 5,236 additions & 12,204 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"compile_grammar": "npx lezer-generator --output src/Parser/doenet.js src/Parser/doenet.grammar"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/commands": "^0.19.5",
"@codemirror/gutter": "^0.19.9",
Expand Down Expand Up @@ -106,6 +106,7 @@
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@testing-library/react": "^11.2.7",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.11",
Expand All @@ -114,14 +115,14 @@
"chai": "^4.2.0",
"esbuild": "^0.14.54",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.5.0",
"http-proxy": "^1.18.1",
"mysql2": "^3.2.0",
"prettier": "^2.4.1",
"prettier": "^3.0.3",
"rollup": "^2.71.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import alias from '@rollup/plugin-alias';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import { terser } from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';

export default defineConfig({
input: 'src/Core/Core.js',
Expand Down
6 changes: 3 additions & 3 deletions src/Tools/_framework/Paths/CourseActivityEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ import { RxUpdate } from "react-icons/rx";
import axios from "axios";
import { useDropzone } from "react-dropzone";
import { CopyToClipboard } from "react-copy-to-clipboard";
import { GoKebabVertical } from "react-icons/go";
import { GoKebabHorizontal } from "react-icons/go";
import { useSaveDraft } from "../../../_utils/hooks/useSaveDraft";
import { cidFromText } from "../../../Core/utils/cid";
import { textEditorDoenetMLAtom } from "../../../_sharedRecoil/EditorViewerRecoil";
Expand Down Expand Up @@ -656,7 +656,7 @@ function SupportFilesControls({
<MenuButton
as={IconButton}
aria-label="Options"
icon={<GoKebabVertical />}
icon={<GoKebabHorizontal />}
variant="ghost"
/>
<MenuList>
Expand Down Expand Up @@ -837,7 +837,7 @@ function SupportFilesControls({
<MenuButton
as={IconButton}
aria-label="Options"
icon={<GoKebabVertical />}
icon={<GoKebabHorizontal />}
variant="ghost"
/>
<MenuList>
Expand Down
6 changes: 3 additions & 3 deletions src/Tools/_framework/Paths/PortfolioActivityEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import { RxUpdate } from "react-icons/rx";
import axios from "axios";
import { useDropzone } from "react-dropzone";
import { CopyToClipboard } from "react-copy-to-clipboard";
import { GoKebabVertical } from "react-icons/go";
import { GoKebabHorizontal } from "react-icons/go";
import { useSaveDraft } from "../../../_utils/hooks/useSaveDraft";
import { cidFromText } from "../../../Core/utils/cid";
import { textEditorDoenetMLAtom } from "../../../_sharedRecoil/EditorViewerRecoil";
Expand Down Expand Up @@ -546,7 +546,7 @@ function SupportFilesControls() {
<MenuButton
as={IconButton}
aria-label="Options"
icon={<GoKebabVertical />}
icon={<GoKebabHorizontal />}
variant="ghost"
/>
<MenuList>
Expand Down Expand Up @@ -727,7 +727,7 @@ function SupportFilesControls() {
<MenuButton
as={IconButton}
aria-label="Options"
icon={<GoKebabVertical />}
icon={<GoKebabHorizontal />}
variant="ghost"
/>
<MenuList>
Expand Down
4 changes: 2 additions & 2 deletions src/_reactComponents/PanelHeaderComponents/ActivityCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
Icon,
MenuList,
} from "@chakra-ui/react";
import { GoKebabVertical } from "react-icons/go";
import { GoKebabHorizontal } from "react-icons/go";
import { Link } from "react-router-dom";

export default function ActivityCard({
Expand Down Expand Up @@ -99,7 +99,7 @@ export default function ActivityCard({
{menuItems ? (
<Menu>
<MenuButton height="30px" data-test="Card Menu Button">
<Icon color="#949494" as={GoKebabVertical} boxSize={4} />
<Icon color="#949494" as={GoKebabHorizontal} boxSize={4} />
</MenuButton>
<MenuList zIndex="1000">{menuItems}</MenuList>
</Menu>
Expand Down
4 changes: 2 additions & 2 deletions src/_reactComponents/PanelHeaderComponents/CourseCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from "@chakra-ui/react";
import React, { useRef } from "react";
import { useFetcher, useNavigate } from "react-router-dom";
import { GoKebabVertical } from "react-icons/go";
import { GoKebabHorizontal } from "react-icons/go";
import { pageToolViewAtom } from "../../Tools/_framework/NewToolRoot";
import { useRecoilState } from "recoil";

Expand Down Expand Up @@ -109,7 +109,7 @@ export function CourseCard({
{course.canModifyCourseSettings == "1" && (
<Menu>
<MenuButton height="30px" data-test="Card Menu Button">
<Icon color="#949494" as={GoKebabVertical} boxSize={4} />
<Icon color="#949494" as={GoKebabHorizontal} boxSize={4} />
</MenuButton>
<MenuList zIndex="10">
<MenuItem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
Icon,
MenuList,
} from "@chakra-ui/react";
import { GoKebabVertical } from "react-icons/go";
import { GoKebabHorizontal } from "react-icons/go";
import { Link, useFetcher } from "react-router-dom";
import {
// itemByDoenetId,
Expand Down Expand Up @@ -93,7 +93,7 @@ export default function RecoilActivityCard({

<Menu>
<MenuButton height="30px" data-test="Card Menu Button">
<Icon color="#949494" as={GoKebabVertical} boxSize={4} />
<Icon color="#949494" as={GoKebabHorizontal} boxSize={4} />
</MenuButton>
<MenuList zIndex="1000">
{isPublic ? (
Expand Down