-
Notifications
You must be signed in to change notification settings - Fork 287
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
nuxt-picture: allow parsing format as array #886
Open
marcelxpfeifer
wants to merge
47
commits into
nuxt:main
Choose a base branch
from
wolvessoftware:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
50c8e66
feat: :sparkles: Add logic to handle multiple formats
marcelxpfeifer 8980005
feat: :memo: Add documentation
marcelxpfeifer 4679830
feat: :rewind: This reverts some changes to work like the original code
marcelxpfeifer 24df170
feat: :rewind: svg should only have a srcset
marcelxpfeifer cbe7367
feat: :sparkles: Use src as srcset if the image is an svg
marcelxpfeifer 57e0b7a
docs: :memo: Update documentation
marcelxpfeifer 0935131
feat: :twisted_rightwards_arrows: Merge newest changes
marcelxpfeifer 9f00f9a
fix: :bug: Use all sources
marcelxpfeifer c5c8e3a
style: :bug: Use eslint config
marcelxpfeifer ee3054d
Merge branch 'nuxt:main' into main
marcelxpfeifer 510b786
feat: :twisted_rightwards_arrows: Merge rc1
marcelxpfeifer 0ffbdcb
Merge branch 'develop'
marcelxpfeifer 92731e8
refactor: :rotating_light: Linting
marcelxpfeifer 047d257
refactor: Import order and remove type
marcelxpfeifer 0ad807f
refactor: Import order
marcelxpfeifer 453109f
refactor: import order
marcelxpfeifer 906c4da
refactor: Linebreaks
marcelxpfeifer 96c4103
fix: :bug: svg setup
marcelxpfeifer c627d18
refactor: formatting
marcelxpfeifer 9e5d845
feat: Imporve svg handling
marcelxpfeifer 36b2ecb
fix: Linitng
marcelxpfeifer f1c45ad
Merge branch 'main' into main
marcelxpfeifer 026c567
test: Add tests for multiple formats
marcelxpfeifer 6c965d8
fix:
marcelxpfeifer b8974d5
fix: remove invalid format
marcelxpfeifer 43702c5
Update docs/content/3.components/2.nuxt-picture.md
marcelxpfeifer d83f3ed
fix: preload most desired image
marcelxpfeifer a6cd5a1
Merge remote-tracking branch 'refs/remotes/origin/main'
marcelxpfeifer 9002dfe
fix: remove src from source tag
marcelxpfeifer 5aee165
Merge branch 'main' into main
marcelxpfeifer 765388b
test:
marcelxpfeifer 19b0c87
style: liniting error
marcelxpfeifer f032658
style: linting
marcelxpfeifer 714f3a2
style: linting
marcelxpfeifer d40af57
Merge remote-tracking branch 'upstream/main' into develop
marcelxpfeifer cdcd1a7
merge
marcelxpfeifer bf1fae6
feat: :sparkles: Allow generation of images via array
marcelxpfeifer 7823b72
feat: :sparkles: Update docs
marcelxpfeifer 5a11310
Merge pull request #3 from wolvessoftware/develop
marcelxpfeifer 16dffb3
feat: :label: Improve types
marcelxpfeifer 9c7b53f
Merge remote-tracking branch 'upstream/main' into develop
marcelxpfeifer 21a2ae9
feat: :sparkles: Update docs
marcelxpfeifer ffdeb75
feat: :sparkles: Update tag
marcelxpfeifer 3ac2ab1
fix: :bug: Failing test
marcelxpfeifer 4f36dd4
fix: :lipstick: Linting
marcelxpfeifer 93dbf92
Merge pull request #4 from wolvessoftware/develop
marcelxpfeifer ed2e268
Merge branch 'main' into main
marcelxpfeifer 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
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
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.
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.
For simplicity and reduced bundle size, do you think we can avoid splitting out
useBasePicture
and instead override the props directly innuxt-img
?