-
Couldn't load subscription status.
- Fork 11
refactor: unraid-ui-web-migration #1106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b3df4b3
refactor: migrate stepper and swap out Button component in notifications
c36e830
refactor: move over stepper, improive web component handling, and add…
c207e92
refactor: update BrandLoading component to be variants based and move…
4e4b3b0
refactor: completely replace BrandButton, create BrandLoading variant…
9da3eff
refactor: replace and remove loading components
9870aff
refactor: migrate several shadcn components, ui folder, and several o…
8360c7a
refactor: remove remaining shadcn components, fix tyepscript errors a…
6c21459
refactor: update conditional icon components
69b09e0
test: reset notification state for test snapshot
ae6ef4b
test: add notification back to unread
998a49e
fix: update css asset path in model component
e29cb78
fix: update css import nesting in root component folder
3b978f1
fix: add unraid-ui imports for notification components
cb544ba
feat: prod set base font size
elibosley 5f12e73
feat: do not set font size in production
elibosley 5198521
fix: add import for SelectValue component
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
5 changes: 0 additions & 5 deletions
5
api/dev/notifications/archive/Unraid_Parity_check_1683971161.notify
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 @@ | ||
| VITE_TAILWIND_BASE_FONT_SIZE=16 |
This file contains hidden or 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 @@ | ||
| !.env.development |
This file contains hidden or 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 hidden or 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,10 +1,11 @@ | ||
| import baseConfig from "../tailwind.config"; | ||
| import baseConfig from '../tailwind.config'; | ||
|
|
||
| export default { | ||
| ...baseConfig, | ||
| content: [ | ||
| "../src/components/**/*.{js,vue,ts}", | ||
| "../src/composables/**/*.{js,vue,ts}", | ||
| "../stories/**/*.stories.{js,ts,jsx,tsx,mdx}" | ||
| '../src/components/**/*.{js,vue,ts}', | ||
| '../src/components/**/*.ce.{js,vue,ts}', | ||
| '../src/composables/**/*.{js,vue,ts}', | ||
| '../stories/**/*.stories.{js,ts,jsx,tsx,mdx}', | ||
| ], | ||
| }; |
This file contains hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,27 @@ | ||
| import { cva } from 'class-variance-authority'; | ||
|
|
||
| export const brandLoadingVariants = cva('inline-flex items-center justify-center w-full h-full', { | ||
| variants: { | ||
| variant: { | ||
| default: '', | ||
| black: 'text-black fill-black', | ||
| white: 'text-white fill-white', | ||
| }, | ||
| size: { | ||
| sm: 'h-12 w-12', | ||
| md: 'h-16 w-16', | ||
| lg: 'h-20 w-20', | ||
| full: 'h-full w-full', | ||
| }, | ||
| }, | ||
| defaultVariants: { | ||
| variant: 'default', | ||
| }, | ||
| }); | ||
|
|
||
| export const markAnimations = { | ||
| mark_2_4: 'animate-mark-2', | ||
| mark_3: 'animate-mark-3', | ||
| mark_6_8: 'animate-mark-6', | ||
| mark_7: 'animate-mark-7', | ||
| }; | ||
mdatelle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or 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,6 +1,9 @@ | ||
| export { default as BrandButton } from "./BrandButton.vue"; | ||
| export { brandButtonVariants } from "./brand-button.variants"; | ||
| export { default as BrandLoading } from "./BrandLoading.ce.vue"; | ||
| export { default as BrandLoadingWhite } from "./BrandLoadingWhite.vue"; | ||
| export { default as BrandLogo } from "./BrandLogo.vue"; | ||
| export { default as BrandLogoConnect } from "./BrandLogoConnect.vue"; | ||
| export { default as BrandButton } from './BrandButton.vue'; | ||
| export { brandButtonVariants } from './brand-button.variants'; | ||
| export { default as BrandLoading } from './BrandLoading.ce.vue'; | ||
| export { brandLoadingVariants } from './brand-loading.variants'; | ||
| export { default as BrandLogo } from './BrandLogo.vue'; | ||
| export { default as BrandLogoConnect } from './BrandLogoConnect.vue'; | ||
|
|
||
| // Type exports | ||
| export type { BrandButtonProps } from './BrandButton.vue'; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.