Skip to content

Commit

Permalink
refactor(densitycontainer): use relative import to prevent changeset …
Browse files Browse the repository at this point in the history
…generation error
  • Loading branch information
stephanLeece committed Jan 10, 2024
1 parent ede2fc9 commit 3c13c89
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/components/forms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
},
"dependencies": {
"@contentful/f36-core": "^4.58.0",
"@contentful/f36-density-container": "^4.0.0-alpha.3",
"@contentful/f36-icons": "^4.27.0",
"@contentful/f36-tokens": "^4.0.3",
"@contentful/f36-typography": "^4.58.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/components/forms/stories/Checkbox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SectionHeading } from '@contentful/f36-typography';
import { Flex } from '@contentful/f36-core';
import { Checkbox, CheckboxProps } from '../src';
import { type Density } from '@contentful/f36-utils';
import { DensityContainer } from '@contentful/f36-density-container';
import { DensityContainer } from '../../density-container';

export default {
title: 'Form Elements/Checkbox',
Expand Down
2 changes: 1 addition & 1 deletion packages/components/forms/stories/FormControl.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { TextLink } from '@contentful/f36-text-link';
import { LockIcon } from '@contentful/f36-icons';
import { Paragraph } from '@contentful/f36-typography';
import { type Density } from '@contentful/f36-utils';
import { DensityContainer } from '@contentful/f36-density-container';
import { DensityContainer } from '../../density-container';

export default {
title: 'Form Elements/FormControl',
Expand Down
2 changes: 1 addition & 1 deletion packages/components/forms/stories/Radio.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SectionHeading } from '@contentful/f36-typography';
import { Radio, RadioProps } from '../src';
import { Flex, Box } from '@contentful/f36-core';
import { type Density } from '@contentful/f36-utils';
import { DensityContainer } from '@contentful/f36-density-container';
import { DensityContainer } from '../../density-container';

export default {
title: 'Form Elements/Radio',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import type { Meta, Story } from '@storybook/react/types-6-0';
import { type Density } from '@contentful/f36-utils';
import { DensityContainer } from '@contentful/f36-density-container';
import { DensityContainer } from '../../density-container';

import { ValidationMessage } from '../src';
import type { ValidationMessageInternalProps } from '../src/ValidationMessage/ValidationMessage';
Expand Down

0 comments on commit 3c13c89

Please sign in to comment.