Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronny Krammer committed Aug 16, 2023
1 parent 6da7312 commit 9b63a4b
Show file tree
Hide file tree
Showing 13 changed files with 4,218 additions and 3,863 deletions.
7,973 changes: 4,182 additions & 3,791 deletions package-lock.json

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "React UI component library built with Tailwind CSS",
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"version": "1.0.0",
"version": "1.0.1",
"license": "Apache-2.0",
"author": "Ronny Krammer",
"repository": {
Expand Down Expand Up @@ -43,47 +43,47 @@
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2"
"react-hook-form": "^7.45.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/core": "^7.22.10",
"@salzpate/eslint-config": "^3.0.0",
"@storybook/addon-actions": "^7.2.0",
"@storybook/addon-essentials": "^7.2.0",
"@storybook/addon-links": "^7.2.0",
"@storybook/addon-styling": "^1.3.5",
"@storybook/react": "^7.2.0",
"@storybook/react-webpack5": "^7.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@storybook/addon-actions": "^7.3.0",
"@storybook/addon-essentials": "^7.3.0",
"@storybook/addon-links": "^7.3.0",
"@storybook/addon-styling": "^1.3.6",
"@storybook/react": "^7.3.0",
"@storybook/react-webpack5": "^7.3.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.17.1",
"@types/react": "^18.2.18",
"@types/node": "^18.17.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.14",
"esbuild": "^0.18.17",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.15",
"esbuild": "^0.19.2",
"esbuild-node-externals": "^1.8.0",
"esbuild-plugin-svgr": "^2.0.0",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.9.0",
"esbuild-plugin-svgr": "^2.1.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.16",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"next": "^13.4.12",
"postcss": "^8.4.27",
"postcss-preset-env": "^9.1.0",
"prettier": "^3.0.0",
"next": "^13.4.16",
"postcss": "^8.4.28",
"postcss-preset-env": "^9.1.1",
"prettier": "^3.0.2",
"react-is": "^18.2.0",
"storybook": "^7.2.0",
"storybook": "^7.3.0",
"style-loader": "^3.3.3",
"styled-components": "^6.0.6",
"styled-components": "^6.0.7",
"stylelint": "^15.10.2",
"stylelint-config-recommended": "^13.0.0",
"stylelint-order": "^6.0.3",
Expand Down
3 changes: 1 addition & 2 deletions src/components/Banner/Banner.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React, { PropsWithChildren } from 'react';
import React, { JSX, PropsWithChildren } from 'react';
import cn from 'classnames';

export enum BannerTypes {
Expand Down
3 changes: 1 addition & 2 deletions src/components/Contact/ContactCard/ContactCard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @next/next/no-img-element */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React from 'react';
import React, { JSX } from 'react';

export type ContactCardProps = {
className?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/DisplayMore/DisplayMore.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from 'react';
import React, { JSX, useState } from 'react';

export type DisplayMoreProps = {
id?: string;
Expand Down
3 changes: 1 addition & 2 deletions src/components/Footer/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React, { ReactNode } from 'react';
import React, { JSX, ReactNode } from 'react';
import { NavMenuItem } from '../../commons';
import { FooterLink } from '../FooterLink';

Expand Down
3 changes: 1 addition & 2 deletions src/components/Footer/FooterLink/FooterLink.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React from 'react';
import React, { JSX } from 'react';
import Link from 'next/link';
import { NavMenu } from '../../commons';

Expand Down
3 changes: 1 addition & 2 deletions src/components/Header/NavLink/NavLink.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React from 'react';
import React, { JSX } from 'react';
import { NavMenu } from '../../commons';
import Link from 'next/link';

Expand Down
3 changes: 1 addition & 2 deletions src/components/HeadlineTextElement/HeadlineTextElement.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @next/next/no-img-element */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React, { PropsWithChildren, ReactNode } from 'react';
import React, { JSX, PropsWithChildren, ReactNode } from 'react';
import cn from 'classnames';

export type HeadlineTextElementProps = {
Expand Down
3 changes: 1 addition & 2 deletions src/components/MoreLink/MoreLink.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @next/next/no-img-element */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React, { PropsWithChildren, ReactNode } from 'react';
import React, { JSX, PropsWithChildren, ReactNode } from 'react';
import { UrlObject } from 'url';
import cn from 'classnames';
import Link from 'next/link';
Expand Down
3 changes: 1 addition & 2 deletions src/components/PageSection/PageSection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React, { PropsWithChildren, ReactNode } from 'react';
import React, { JSX, PropsWithChildren, ReactNode } from 'react';

export interface PageSectionProps {
id: string;
Expand Down
3 changes: 1 addition & 2 deletions src/components/SnackBar/SnackBar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React from 'react';
import React, { JSX } from 'react';
import cn from 'classnames';

export enum SnackBarTypes {
Expand Down
27 changes: 0 additions & 27 deletions stories/SnackBarProvider.stories.tsx

This file was deleted.

0 comments on commit 9b63a4b

Please sign in to comment.