Skip to content

Commit

Permalink
fix: add missing extension to Lit directive imports (#7782) (#7784)
Browse files Browse the repository at this point in the history
Co-authored-by: Serhii Kulykov <[email protected]>
  • Loading branch information
vaadin-bot and web-padawan committed Sep 9, 2024
1 parent 793a2fd commit 4bcaa96
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/grid-pro/src/lit/column-renderer-directives.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* See https://vaadin.com/commercial-license-and-service-terms for the full
* license.
*/
import type { DirectiveResult } from 'lit/directive';
import type { DirectiveResult } from 'lit/directive.js';
import type { GridItemModel } from '@vaadin/grid';
import type { LitRendererResult } from '@vaadin/lit-renderer';
import { LitRendererDirective } from '@vaadin/lit-renderer';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { DirectiveResult } from 'lit/directive';
import type { DirectiveResult } from 'lit/directive.js';
import type { GridProColumnEditModeLitRenderer, GridProColumnEditModeRendererDirective } from '../../lit.js';
import { columnEditModeRenderer } from '../../lit.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/grid/src/lit/column-renderer-directives.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
/* eslint-disable max-classes-per-file */
import type { DirectiveResult } from 'lit/directive';
import type { DirectiveResult } from 'lit/directive.js';
import type { LitRenderer, LitRendererResult } from '@vaadin/lit-renderer';
import { LitRendererDirective } from '@vaadin/lit-renderer';
import type { GridItemModel } from '../vaadin-grid.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/src/lit/renderer-directives.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2023 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import type { DirectiveResult } from 'lit/directive';
import type { DirectiveResult } from 'lit/directive.js';
import type { LitRendererResult } from '@vaadin/lit-renderer';
import { LitRendererDirective } from '@vaadin/lit-renderer';
import type { Grid, GridItemModel } from '../vaadin-grid.js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { DirectiveResult } from 'lit/directive';
import type { DirectiveResult } from 'lit/directive.js';
import type {
GridColumnBodyLitRenderer,
GridColumnBodyRendererDirective,
Expand Down

0 comments on commit 4bcaa96

Please sign in to comment.