Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ const config: StorybookConfig = {
addons: [
"@storybook/addon-onboarding",
"@storybook/addon-links",
"@storybook/addon-essentials",
"@chromatic-com/storybook",
"@storybook/addon-interactions",
"@storybook/addon-docs"
],
framework: {
name: "@storybook/nextjs",
Expand Down
2 changes: 1 addition & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Preview } from "@storybook/react";
import type { Preview } from "@storybook/nextjs";

const preview: Preview = {
parameters: {
Expand Down
2,395 changes: 770 additions & 1,625 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 7 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,31 +55,27 @@
"yup": "^1.6.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.0.0",
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@playwright/test": "^1.53.0",
"@release-it/conventional-changelog": "^8.0.1",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-onboarding": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/nextjs": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/test": "^8.1.10",
"@storybook/addon-links": "^9.0.18",
"@storybook/addon-onboarding": "^9.0.18",
"@storybook/nextjs": "^9.0.18",
"@types/js-cookie": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-storybook": "^0.12.0",
"eslint-plugin-storybook": "^9.0.18",
"husky": "^9.1.7",
"hygen": "^6.2.11",
"is-ci": "^4.1.0",
"prettier": "^3.5.3",
"release-it": "^17.1.1",
"storybook": "^8.1.10"
"storybook": "^9.0.18",
"@storybook/addon-docs": "^9.0.18"
},
"release-it": {
"git": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Meta, StoryFn } from "@storybook/react";
import { Meta, StoryFn } from "@storybook/nextjs";
import { useForm, FormProvider } from "react-hook-form";
import FormAutocompleteInput, {
AutocompleteInputProps,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Meta, StoryFn } from "@storybook/react";
import { Meta, StoryFn } from "@storybook/nextjs";
import { useForm, FormProvider } from "react-hook-form";
import FormCheckboxBooleanInput, {
CheckboxBooleanInputProps,
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/checkbox/form-checkbox.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Meta, StoryFn } from "@storybook/react";
import { Meta, StoryFn } from "@storybook/nextjs";
import { useForm, FormProvider } from "react-hook-form";
import FormCheckboxInput, { CheckboxInputProps } from "./form-checkbox";

Expand Down
2 changes: 1 addition & 1 deletion src/components/form/switch/form-switch.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Meta, StoryFn } from "@storybook/react";
import { Meta, StoryFn } from "@storybook/nextjs";
import { useForm, FormProvider } from "react-hook-form";
import FormSwitchInput, { SwitchInputProps } from "./form-switch";

Expand Down