update packages

This commit is contained in:
Eric Fennis
2021-04-30 01:19:45 +02:00
parent c130e58c46
commit 269d5fa2d0
12 changed files with 18 additions and 16 deletions

View File

@@ -11,16 +11,18 @@
"test": "jest"
},
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.8",
"@chakra-ui/react": "^1.6.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"downloadjs": "^1.4.7",
"framer-motion": "^3.3.0",
"framer-motion": "^4",
"jszip": "^3.4.0",
"lodash": "^4.17.20",
"lucide-react": "0.14.0",
"next": "^10.0.4",
"react": "^16.13.1",
"react-color": "2.17.3",
"react-dom": "^16.13.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-svg-loader": "^3.0.3"
},
"devDependencies": {

View File

@@ -1,5 +1,5 @@
import { SyntheticEvent, useEffect, useRef, useState } from 'react';
import { FormLabel, Icon, Input, InputGroup, InputLeftElement } from '@chakra-ui/core';
import { FormLabel, Icon, Input, InputGroup, InputLeftElement } from '@chakra-ui/react';
import { CustomPicker } from 'react-color';
const { Saturation, Hue } = require('react-color/lib/components/common');

View File

@@ -1,4 +1,4 @@
import { Button, Flex, Link, WrapItem, Text, Wrap } from "@chakra-ui/core";
import { Button, Flex, Link, WrapItem, Text, Wrap } from "@chakra-ui/react";
import download from "downloadjs";
import JSZip from "jszip";
import { Download, Github } from 'lucide-react';

View File

@@ -18,7 +18,7 @@ import {
SliderTrack,
Flex,
Text,
} from '@chakra-ui/core';
} from '@chakra-ui/react';
import ColorPicker from './ColorPicker';
export function IconCustomizerDrawer() {

View File

@@ -1,4 +1,4 @@
import { Box, Text, IconButton, useColorMode, Flex, Slide, ButtonGroup, Button, useToast, Heading, Avatar, AvatarGroup, Link, Tooltip, useMediaQuery, useDisclosure } from "@chakra-ui/core";
import { Box, Text, IconButton, useColorMode, Flex, Slide, ButtonGroup, Button, useToast, Heading, Avatar, AvatarGroup, Link, Tooltip, useMediaQuery, useDisclosure } from "@chakra-ui/react";
import theme from "../lib/theme";
import download from 'downloadjs';
import copy from "copy-to-clipboard";

View File

@@ -1,4 +1,4 @@
import { Button, Flex, Grid, Text, useToast } from "@chakra-ui/core";
import { Button, Flex, Grid, Text, useToast } from "@chakra-ui/react";
import download from 'downloadjs';
import Link from 'next/link'
import copy from "copy-to-clipboard";

View File

@@ -6,7 +6,7 @@ import {
Text,
useColorMode,
Icon,
} from '@chakra-ui/core';
} from '@chakra-ui/react';
import IconList from './IconList';
import { useEffect, useMemo, useRef, useState } from 'react';
import useSearch from '../lib/useSearch';

View File

@@ -1,4 +1,4 @@
import { Box, Divider, Flex, Text, Link, Icon, useColorMode, useColorModeValue, IconButton } from "@chakra-ui/core";
import { Box, Divider, Flex, Text, Link, Icon, useColorMode, useColorModeValue, IconButton } from "@chakra-ui/react";
import { useKeyBindings } from "../lib/key";
import { useRouter } from "next/router";
import NextLink from "next/link"

View File

@@ -1,4 +1,4 @@
import { Box, Tooltip, useColorMode } from "@chakra-ui/core";
import { Box, Tooltip, useColorMode } from "@chakra-ui/react";
import theme from '../lib/theme';
const ModifiedTooltip = ({}) => {

View File

@@ -1,4 +1,4 @@
import { theme as chakraTheme } from "@chakra-ui/core";
import { theme as chakraTheme } from "@chakra-ui/react";
const theme = {
...chakraTheme,

View File

@@ -1,4 +1,4 @@
import { ChakraProvider } from '@chakra-ui/core';
import { ChakraProvider } from '@chakra-ui/react';
import customTheme from '../lib/theme';
import '../assets/styling.css';
import Head from 'next/head';

View File

@@ -1,5 +1,5 @@
import Document, { Head, Html, Main, NextScript } from "next/document";
import { ColorModeScript } from "@chakra-ui/core"
import { ColorModeScript } from "@chakra-ui/react"
class MyDocument extends Document {
render() {