Skip to content

Commit

Permalink
move DialogLayout to layouts directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nighto committed Feb 26, 2025
1 parent 8f63104 commit 81030cc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion app/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export { Panel } from '../src/components/containers/Panel/Panel.tsx';
export { Card } from '../src/components/containers/Card/Card.tsx';
export { Banner } from '../src/components/containers/Banner/Banner.tsx';
export { Dialog } from '../src/components/containers/Dialog/Dialog.tsx';
export { DialogLayout } from '../src/components/containers/DialogLayout/DialogLayout.tsx';
export { Disclosure } from '../src/components/containers/Disclosure/Disclosure.tsx';
export { Accordion } from '../src/components/containers/Accordion/Accordion.tsx';

Expand Down Expand Up @@ -107,4 +106,6 @@ export { Logo } from '../src/layouts/AppLayout/Logo/Logo.tsx';
export { Nav } from '../src/layouts/AppLayout/Nav/Nav.tsx';
export { Sidebar } from '../src/layouts/AppLayout/Sidebar/Sidebar.tsx';

export { DialogLayout } from '../src/layouts/DialogLayout/DialogLayout.tsx';

export { FormLayout } from '../src/layouts/FormLayout/FormLayout.tsx';
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
|* This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of
|* the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */

@use '../../../styling/defs.scss' as bk;
@use '../../styling/defs.scss' as bk;

@layer baklava.components {
.bk-dialog-layout {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ import * as React from 'react';

import type { Meta, StoryObj } from '@storybook/react';

import { Dialog } from '../Dialog/Dialog';
import { Logo } from '../../../layouts/AppLayout/Logo/Logo.tsx';
import { H4 } from '../../../typography/Heading/Heading.tsx';
import { Form } from '../../forms/context/Form/Form.tsx';
import { FormLayout } from '../../../layouts/FormLayout/FormLayout.tsx';
import { CheckboxGroup } from '../../forms/controls/CheckboxGroup/CheckboxGroup.tsx';
import { InputField } from '../../forms/fields/InputField/InputField.tsx';
import { Button } from '../../actions/Button/Button.tsx';
import { Stepper } from '../../navigations/Stepper/Stepper.tsx';
import { Icon } from '../../graphics/Icon/Icon.tsx';
import { FieldLayout } from '../../forms/fields/FieldLayout/FieldLayout.tsx';
import { Dialog } from '../../components/containers/Dialog/Dialog.tsx';
import { Logo } from '../../layouts/AppLayout/Logo/Logo.tsx';
import { H4 } from '../../typography/Heading/Heading.tsx';
import { Form } from '../../components/forms/context/Form/Form.tsx';
import { FormLayout } from '../FormLayout/FormLayout.tsx';
import { CheckboxGroup } from '../../components/forms/controls/CheckboxGroup/CheckboxGroup.tsx';
import { InputField } from '../../components/forms/fields/InputField/InputField.tsx';
import { Button } from '../../components/actions/Button/Button.tsx';
import { Stepper } from '../../components/navigations/Stepper/Stepper.tsx';
import { Icon } from '../../components/graphics/Icon/Icon.tsx';
import { FieldLayout } from '../../components/forms/fields/FieldLayout/FieldLayout.tsx';

import { DialogLayout } from './DialogLayout';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
|* the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */

import * as React from 'react';
import { classNames as cx, type ComponentProps } from '../../../util/componentUtil.ts';
import { classNames as cx, type ComponentProps } from '../../util/componentUtil.ts';

import { H3 } from '../../../typography/Heading/Heading.tsx';
import { H3 } from '../../typography/Heading/Heading.tsx';

import cl from './DialogLayout.module.scss';

Expand Down

0 comments on commit 81030cc

Please sign in to comment.