Skip to content
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

feat: Add native support for custom elements. #715

Closed
wants to merge 4 commits into from

Commits on May 31, 2017

  1. feat: Add native support for custom elements.

    You can now pass custom element constructors as the node name of a virtual element. This was implemented at the diff level so that it could efficiently, and correctly, check based on constructors as opposed to somehow determining the node name and reusing the existing algorithms. This is both more efficient than the aforementioned and spec compliant.
    treshugart committed May 31, 2017
    Configuration menu
    Copy the full SHA
    3927012 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2017

  1. Configuration menu
    Copy the full SHA
    ab756ee View commit details
    Browse the repository at this point in the history
  2. refactor: refactor PR to implement review comments.

    - No destructuring
    - No lowercase() function, use .toLowerCase() instead
    - Favour property access (no variable saving, unless necessary)
    - Use `'nodeName' in vnodeName.prototype` instead of HTMLElement instance checking
    treshugart committed Jun 6, 2017
    Configuration menu
    Copy the full SHA
    c90d907 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2017

  1. Configuration menu
    Copy the full SHA
    3d68b2a View commit details
    Browse the repository at this point in the history