Skip to content

Commit

Permalink
feat(dialog): fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
endv-bogdanb committed Jun 14, 2023
1 parent db466f1 commit be9f1b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/bee-q/src/components/button/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Buttons are designed for users to take action on a page or a screen.

### Used by

- [bq-notification](../notification)
- [bq-dialog](../dialog)
- [bq-notification](../notification)

### Depends on

Expand All @@ -60,8 +60,8 @@ Buttons are designed for users to take action on a page or a screen.
```mermaid
graph TD;
bq-button --> bq-icon
bq-notification --> bq-button
bq-dialog --> bq-button
bq-notification --> bq-button
style bq-button fill:#f9f,stroke:#333,stroke-width:4px
```

Expand Down
4 changes: 2 additions & 2 deletions packages/bee-q/src/components/dialog/bq-dialog.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { h, Component, Prop, Element, Watch, State, Method, Host } from '@stencil/core';

import { validatePropValue } from '../../shared/utils';
import { DIALOG_SIZE, DIALOG_FOOTER_VARIANT, TDialogSize, TDialogFooterVariant } from './bq-dialog.types';
import { validatePropValue } from '../../shared/utils';

/**
* @part base - The component wrapper container inside the shadow DOM
Expand Down Expand Up @@ -139,7 +139,7 @@ export class BqDialog {
</header>
<footer
class={{
'flex h-[72px] w-full items-center justify-end py-6 px-6': true,
'flex h-[72px] w-full items-center justify-end px-6 py-6': true,
'rounded-s bg-ui-secondary-light': this.variant === 'light',
}}
>
Expand Down
4 changes: 2 additions & 2 deletions packages/bee-q/src/components/icon/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ Icons are simplified images that graphically explain the meaning of an object on
### Used by

- [bq-button](../button)
- [bq-notification](../notification)
- [bq-dialog](../dialog)
- [bq-notification](../notification)
- [bq-switch](../switch)

### Graph
```mermaid
graph TD;
bq-button --> bq-icon
bq-notification --> bq-icon
bq-dialog --> bq-icon
bq-notification --> bq-icon
bq-switch --> bq-icon
style bq-icon fill:#f9f,stroke:#333,stroke-width:4px
```
Expand Down

0 comments on commit be9f1b1

Please sign in to comment.