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

fix(Import): standardize how components are imported #455

Merged
merged 1 commit into from
Jan 8, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import Button from './Button.js';
import Button from './Button';
import * as styles from './ButtonSmall.styles.js';

export default class ButtonSmall extends Button {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import Card from './Card.js';
import Card from './Card';
import TextBox from '../TextBox';
import * as styles from './CardTitle.styles';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import Card from '../Card/Card';
import Card from '../Card';
import utils from '../../utils';
import Tile from '../Tile';
import MetadataCardContent from '../MetadataCardContent';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import Checkbox from './Checkbox.js';
import Checkbox from './Checkbox';
import * as styles from './CheckboxSmall.styles.js';

export default class CheckboxSmall extends Checkbox {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import ButtonSmall from '../Button/ButtonSmall.js';
import { ButtonSmall } from '../Button';
import Icon from '../Icon';
import * as styles from './Control.styles.js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import Control from './Control.js';
import Control from './Control';
import * as styles from './ControlSmall.styles.js';

export default class ControlSmall extends Control {
Expand Down
Loading