Skip to content

Commit

Permalink
fix: Fix eslint hint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hossein-nas committed May 11, 2024
1 parent 1d7d131 commit 1bada4d
Show file tree
Hide file tree
Showing 10 changed files with 385 additions and 362 deletions.
10 changes: 5 additions & 5 deletions src/pin-input-cell/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { customElement } from "lit/decorators.js";
import { PinInputCell } from "./pin-input-cell.js";
import styles from "./pin-input-cell.style.js";
import { customElement } from 'lit/decorators.js';
import { PinInputCell } from './pin-input-cell.js';
import styles from './pin-input-cell.style.js';

@customElement("tap-pin-input-cell")
@customElement('tap-pin-input-cell')
export class TapPinInputCell extends PinInputCell {
static readonly styles = [styles];
}

declare global {
interface HTMLElementTagNameMap {
"tap-pin-input-cell": TapPinInputCell;
'tap-pin-input-cell': TapPinInputCell;
}
}
10 changes: 5 additions & 5 deletions src/pin-input-cell/pin-input-cell.stories.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { html, TemplateResult } from "lit";
import "./index.js";
import { html, TemplateResult } from 'lit';
import './index.js';

export default {
title: "PinInput",
component: "tap-pin-input-cell",
title: 'PinInput',
component: 'tap-pin-input-cell',
argTypes: {},
};

Expand All @@ -15,7 +15,7 @@ interface Story<T> {

interface ArgTypes {}

const Template: Story<ArgTypes> = ({}: ArgTypes) => html`
const Template: Story<ArgTypes> = (/*{}: ArgTypes*/) => html`
<tap-pin-input-cell value="4"> </tap-pin-input-cell>
`;

Expand Down
2 changes: 1 addition & 1 deletion src/pin-input-cell/pin-input-cell.style.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { css } from "lit";
import { css } from 'lit';

export default css`
:host {
Expand Down
Loading

0 comments on commit 1bada4d

Please sign in to comment.