forked from shoelace-style/shoelace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing extensions (shoelace-style#1770)
* fix(typescript): add missing extension to imports in typescript This is required for the types to work with the new `--module-resolution=node16`. The list of places to fix was obtained by a crude script: ```sh rg -g'**/*.ts' -g'!**/*.test.ts' ' from\s+.\.' | rg -v '\.js' ``` References shoelace-style#1765 * add missing extensions * revert tsconfig * prettier * fix test files for NodeNext * prettier * changelog entry * prettier * prettier * prettier --------- Co-authored-by: Andrey Lushnikov <[email protected]>
- Loading branch information
1 parent
b4ed398
commit 7891dbe
Showing
36 changed files
with
86 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
export type { SlAfterCollapseEvent } from './sl-after-collapse'; | ||
export type { SlAfterExpandEvent } from './sl-after-expand'; | ||
export type { SlAfterHideEvent } from './sl-after-hide'; | ||
export type { SlAfterShowEvent } from './sl-after-show'; | ||
export type { SlBlurEvent } from './sl-blur'; | ||
export type { SlCancelEvent } from './sl-cancel'; | ||
export type { SlChangeEvent } from './sl-change'; | ||
export type { SlClearEvent } from './sl-clear'; | ||
export type { SlCloseEvent } from './sl-close'; | ||
export type { SlCollapseEvent } from './sl-collapse'; | ||
export type { SlCopyEvent } from './sl-copy'; | ||
export type { SlErrorEvent } from './sl-error'; | ||
export type { SlExpandEvent } from './sl-expand'; | ||
export type { SlFinishEvent } from './sl-finish'; | ||
export type { SlFocusEvent } from './sl-focus'; | ||
export type { SlHideEvent } from './sl-hide'; | ||
export type { SlHoverEvent } from './sl-hover'; | ||
export type { SlInitialFocusEvent } from './sl-initial-focus'; | ||
export type { SlInputEvent } from './sl-input'; | ||
export type { SlInvalidEvent } from './sl-invalid'; | ||
export type { SlLazyChangeEvent } from './sl-lazy-change'; | ||
export type { SlLazyLoadEvent } from './sl-lazy-load'; | ||
export type { SlLoadEvent } from './sl-load'; | ||
export type { SlMutationEvent } from './sl-mutation'; | ||
export type { SlRemoveEvent } from './sl-remove'; | ||
export type { SlRepositionEvent } from './sl-reposition'; | ||
export type { SlRequestCloseEvent } from './sl-request-close'; | ||
export type { SlResizeEvent } from './sl-resize'; | ||
export type { SlSelectEvent } from './sl-select'; | ||
export type { SlSelectionChangeEvent } from './sl-selection-change'; | ||
export type { SlShowEvent } from './sl-show'; | ||
export type { SlSlideChangeEvent } from './sl-slide-change'; | ||
export type { SlStartEvent } from './sl-start'; | ||
export type { SlTabHideEvent } from './sl-tab-hide'; | ||
export type { SlTabShowEvent } from './sl-tab-show'; | ||
export type { SlAfterCollapseEvent } from './sl-after-collapse.js'; | ||
export type { SlAfterExpandEvent } from './sl-after-expand.js'; | ||
export type { SlAfterHideEvent } from './sl-after-hide.js'; | ||
export type { SlAfterShowEvent } from './sl-after-show.js'; | ||
export type { SlBlurEvent } from './sl-blur.js'; | ||
export type { SlCancelEvent } from './sl-cancel.js'; | ||
export type { SlChangeEvent } from './sl-change.js'; | ||
export type { SlClearEvent } from './sl-clear.js'; | ||
export type { SlCloseEvent } from './sl-close.js'; | ||
export type { SlCollapseEvent } from './sl-collapse.js'; | ||
export type { SlCopyEvent } from './sl-copy.js'; | ||
export type { SlErrorEvent } from './sl-error.js'; | ||
export type { SlExpandEvent } from './sl-expand.js'; | ||
export type { SlFinishEvent } from './sl-finish.js'; | ||
export type { SlFocusEvent } from './sl-focus.js'; | ||
export type { SlHideEvent } from './sl-hide.js'; | ||
export type { SlHoverEvent } from './sl-hover.js'; | ||
export type { SlInitialFocusEvent } from './sl-initial-focus.js'; | ||
export type { SlInputEvent } from './sl-input.js'; | ||
export type { SlInvalidEvent } from './sl-invalid.js'; | ||
export type { SlLazyChangeEvent } from './sl-lazy-change.js'; | ||
export type { SlLazyLoadEvent } from './sl-lazy-load.js'; | ||
export type { SlLoadEvent } from './sl-load.js'; | ||
export type { SlMutationEvent } from './sl-mutation.js'; | ||
export type { SlRemoveEvent } from './sl-remove.js'; | ||
export type { SlRepositionEvent } from './sl-reposition.js'; | ||
export type { SlRequestCloseEvent } from './sl-request-close.js'; | ||
export type { SlResizeEvent } from './sl-resize.js'; | ||
export type { SlSelectEvent } from './sl-select.js'; | ||
export type { SlSelectionChangeEvent } from './sl-selection-change.js'; | ||
export type { SlShowEvent } from './sl-show.js'; | ||
export type { SlSlideChangeEvent } from './sl-slide-change.js'; | ||
export type { SlStartEvent } from './sl-start.js'; | ||
export type { SlTabHideEvent } from './sl-tab-hide.js'; | ||
export type { SlTabShowEvent } from './sl-tab-show.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.