-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from 8845musign/fix/DSGNPB-201-fix-import-paths
Fix paths and Enable import lint checking
- Loading branch information
Showing
62 changed files
with
178 additions
and
117 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Small from '@components/react/examples/accordion/Small'; | ||
--- | ||
|
||
<ExampleLayout title="Small Example | Accordion"> | ||
<Small client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
4 changes: 2 additions & 2 deletions
4
src/pages/components/examples/action-half-modal/Customized.astro
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Customized from '@components/react/examples/action-half-modal/Customized'; | ||
--- | ||
|
||
<ExampleLayout title="Customized Example | ActionHalfModal"> | ||
<Customized client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
4 changes: 2 additions & 2 deletions
4
src/pages/components/examples/action-half-modal/fullscreen.astro
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Fullscreen from '@components/react/examples/action-half-modal/Fullscreen'; | ||
--- | ||
|
||
<ExampleLayout title="Fullscreen Example | ActionHalfModal"> | ||
<Fullscreen client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
4 changes: 2 additions & 2 deletions
4
src/pages/components/examples/action-half-modal/no-close-button.astro
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import NoCloseButton from '@components/react/examples/action-half-modal/NoCloseButton'; | ||
--- | ||
|
||
<ExampleLayout title="NoCloseButton Example | ActionHalfModal"> | ||
<NoCloseButton client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
4 changes: 2 additions & 2 deletions
4
src/pages/components/examples/action-half-modal/secondary.astro
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Secondary from '@components/react/examples/action-half-modal/Secondary'; | ||
--- | ||
|
||
<ExampleLayout title="Secondary Example | ActionHalfModal"> | ||
<Secondary client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Customized from '@components/react/examples/action-modal/Customized'; | ||
--- | ||
|
||
<ExampleLayout title="Customized Example | ActionModal"> | ||
<Customized client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
4 changes: 2 additions & 2 deletions
4
src/pages/components/examples/action-modal/fixed-height.astro
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import FixedHeight from '@components/react/examples/action-modal/FixedHeight'; | ||
--- | ||
|
||
<ExampleLayout title="FixedHeight Example | ActionModal"> | ||
<FixedHeight client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Secondary from '@components/react/examples/action-modal/Secondary'; | ||
--- | ||
|
||
<ExampleLayout title="Secondary Example | ActionModal"> | ||
<Secondary client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Block from '@components/react/examples/button/Block'; | ||
--- | ||
|
||
<ExampleLayout title="Block Example | Button"> | ||
<Block client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
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,8 +1,8 @@ | ||
--- | ||
import ExampleLayout from '@layouts/exampleLayout.astro'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
import Disabled from '@components/react/examples/button/Disabled'; | ||
--- | ||
|
||
<ExampleLayout title="Disabled Example | Button"> | ||
<Disabled client:only="react" /> | ||
</ExampleLayout> | ||
</ExampleLayout> |
Oops, something went wrong.