-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Release 1.0.0 #17
Merged
Merged
Release 1.0.0 #17
Conversation
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
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
✅ Deploy Preview for bfs-markup ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 22:34 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 22:41 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 22:44 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 23:09 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 23:12 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 23:19 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 23:21 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 27, 2024 23:23 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 28, 2024 00:12 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 29, 2024 07:29 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 29, 2024 07:35 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 30, 2024 05:54 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
September 30, 2024 06:08 — with
GitHub Pages
Inactive
ECorreia45
temporarily deployed
to
github-pages
November 30, 2024 22:56 — with
GitHub Pages
Inactive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
✅ auto detect state usage and automatically handle template
✅ introduce
effect
to perform side-effects✅ state only broadcasts when values change
✅ state updates are batched
✅ support for object attribute
<button ${attrs} >...</button>
which allows for dynamic attribute setting✅ deprecates
helper
andHelper
✅ deprecates
attr
prefix and dotted attributes, e.g:class.active="..."
,style.primary="..."
as now these can dynamically be set with injected function values✅ effect to support a return value of any type for tracking
✅ optimize render and DOM elements creation where needed
✅ deprecates
onDestroy
. it can be provided as the return value ofonMount
✅ introduces
onMove
to actions for when the template is moved✅ calling lifecycles multiple times will no longer keep all callback function. only the last one will be used
✅ improves performance and internal logic with cached templates, easy cleanups, badged state updates
✅ changes event listeners from
<div onclick="${fn}, ${opt}" />
to<div onclick="${[fn, opt]}" />
✅ changes
nodes
tochildNodes
✅ introduces
parentNode
property✅ introduces
insertAfter
as a way to render the template✅ create docs website from .md files
✅ extend
repeat
to accept Set, Map, and object literals✅ update builder to use @bfs/builder
✅ imrpove@bfs/WebComponent and @bfs/router packages with new Markup