You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to begin deprecating the following core features (remove in 0.0.74):
Highly likely
vanish-into-document (remove and recommend use of Include)
AssetManager class
Somewhat likely
Change default directive syntax to not use any potentially invalid characters / get implemented as a template substitution (This destroys interop with many libraries that manually copy DOM and use setAttribute) (also they can be searched for in QSA)
Component.dataProp -- not sure, but this might be a good simplification (events will not need the colon any more). The loader will still do it, since that is actually useful, and maybe props (so you can do it on Sub elements) but not Component
Artifact DOM bundling (remove, add a recipe to show how to do it with a BundlingArtifact subclass. Include will keep track going forward. This removes the need of modulo-asset as well. Include can just have a build callback.)
The text was updated successfully, but these errors were encountered:
Must start with - (just like preprocessor directives) (possibly x- for better compat)
ValueSetter logic (: and .) is always applied (also just like preprocessor directives)
If no directive name is specified (e.g. --click), then it ends up using the default (component.event e.g. so the full becomes component.eventUnmount etc)
The rest of the logic is the same, except the value always comes pre-computed
Note: Almost one-for-one with the old syntax of [...], with one exception: The value is always resolved in the new system. This means [state.bind]="keydown" will need to change to -state.bind-keydown instead, and [state.bind]statename will need to change to -state.bind--statename (e.g. an "empty" event name).
I need to begin deprecating the following core features (remove in 0.0.74):
Highly likely
Somewhat likely
setAttribute
) (also they can be searched for in QSA)The text was updated successfully, but these errors were encountered: