-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
@portaljs/components improvements (#933)
* [#912,@portaljs/components][s]: create LoadingSpinner component and add that to <Table /> when using the URL parameter * [#912,@portaljs/components][m]: refactor LineChart and add more params * [#912,@portaljs/components][m]: possibly fixes 'loading...' size on FlatUiTable on Firefox * [@portaljs/components][xs]: add storybook-static to .gitignore * Add changeset
- Loading branch information
Showing
162 changed files
with
127 additions
and
4,247 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@portaljs/components': patch | ||
--- | ||
|
||
More params added to <LineChart />, loading spinners added to <Table /> and <LineChart />, minor fixes |
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ lerna-debug.log* | |
|
||
node_modules | ||
dist | ||
storybook-static | ||
dist-ssr | ||
*.local | ||
|
||
|
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,4 +1,5 @@ | ||
import 'tailwindcss/tailwind.css' | ||
import '../src/index.css' | ||
|
||
import type { Preview } from '@storybook/react'; | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export default function LoadingSpinner() { | ||
return ( | ||
<div role="status w-fit mx-auto"> | ||
<svg | ||
aria-hidden="true" | ||
className="w-16 h-16 mr-2 text-gray-200 animate-spin dark:text-gray-600 fill-slate-600" | ||
viewBox="0 0 100 101" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" | ||
fill="currentColor" | ||
/> | ||
<path | ||
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" | ||
fill="currentFill" | ||
/> | ||
</svg> | ||
<span className="sr-only">Loading...</span> | ||
</div> | ||
); | ||
} |
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,3 +1,10 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@tailwind utilities; | ||
|
||
/* Temporary fix for a size issue with FlatUiTable loading indicator on Firefox */ | ||
@layer base { | ||
svg[tw^='animate-pulse w-12'] { | ||
max-width: 100px; | ||
} | ||
} |
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
157 changes: 0 additions & 157 deletions
157
packages/components/storybook-static/assets/Catalog.stories-ea9731da.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
packages/components/storybook-static/assets/Catalog.stories-ea9731da.js.map
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
packages/components/storybook-static/assets/Color-3YIJY6X7-f33052fb.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
packages/components/storybook-static/assets/Color-3YIJY6X7-f33052fb.js.map
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
packages/components/storybook-static/assets/DebouncedInput-c720676c.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
packages/components/storybook-static/assets/DebouncedInput-c720676c.js.map
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
packages/components/storybook-static/assets/DocsRenderer-EYKKDMVH-b61c696a.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
packages/components/storybook-static/assets/DocsRenderer-EYKKDMVH-b61c696a.js.map
This file was deleted.
Oops, something went wrong.
456 changes: 0 additions & 456 deletions
456
packages/components/storybook-static/assets/FlatUiTable.stories-36abe253.js
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
packages/components/storybook-static/assets/FlatUiTable.stories-36abe253.js.map
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
683159d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
portaljs-storybook – ./packages/components
portaljs-storybook-git-main-datopian1.vercel.app
portaljs-storybook.vercel.app
portaljs-storybook-datopian1.vercel.app
storybook.portaljs.org