Skip to content

Commit

Permalink
fix: add missing .js extension to utilities (#3438) (#3439)
Browse files Browse the repository at this point in the history
Co-authored-by: Serhii Kulykov <iamkulykov@gmail.com>
  • Loading branch information
vaadin-bot and web-padawan committed Feb 14, 2022
1 parent f7d9547 commit 2ada66f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/accessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const accessibility = css`
/* === Screen readers === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const background = css`
/* === Background color === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/border.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const border = css`
/* === Border === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/flexbox-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const flexboxAndGrid = css`
/* === Align content === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const layout = css`
/* === Box sizing === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/shadows.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const shadows = css`
/* === Box shadows === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/sizing.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const sizing = css`
/* === Height === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/spacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const spacing = css`
/* === Margin === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utilities/typography.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';

export const typography = css`
/* === Font size === */
Expand Down
2 changes: 1 addition & 1 deletion packages/vaadin-lumo-styles/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Copyright (c) 2017 - 2022 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/register-styles';
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/register-styles.js';
import { accessibility } from './utilities/accessibility.js';
import { background } from './utilities/background.js';
import { border } from './utilities/border.js';
Expand Down

0 comments on commit 2ada66f

Please sign in to comment.