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
| import {LitElement} from './node_modules/@polymer/lit-element/lit-element.js' | |
| import { html } from './node_modules/lit-html/lib/lit-extended.js'; | |
| class MySweetValentine extends LitElement { | |
| constructor() { | |
| super(); | |
| } | |
| render() { |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>DEEP-UI Playground</title> | |
| <link rel="stylesheet" href="https://cdn.voya.com/global/deep-ui/2.x/deep-ui-core.css"> | |
| <link rel="stylesheet" href="https://cdn.voya.com/global/deep-ui/2.x/voya-button.css"> | |
| <link rel="stylesheet" href="https://cdn.voya.com/global/deep-ui/2.x/voya-header.css"> | |
| <link rel="stylesheet" href="my-app.css"> |
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
| <template> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>selects</th> | |
| <th>inputs</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr repeat.for="item of items"> |
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
| import { Container, Loader, Aurelia } from 'aurelia-framework'; | |
| import { starting, bootstrap } from 'aurelia-bootstrapper'; | |
| //GistRun Issue: none of the above imports are defined due to some syntax error it claims | |
| // Returns: a promise that resolves with a new Aurelia instance | |
| export function aureliaFactory() { | |
| return starting.then(function() { | |
| return (Container.instance ? Promise.resolve() : bootstrap(function(){})).then(function() { | |
| return new Aurelia( | |
| Container.instance.get(Loader), |
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
| <template> | |
| <require from='./my-element'></require> | |
| <my-element some-boolean.bind="someBoolean"></my-element> | |
| </template> |
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
| <template> | |
| <h1>HttpClient Headers</h1> | |
| <h3>headers</h3> | |
| <ul> | |
| <li repeat.for="header of headers"> | |
| ${header} | |
| </li> | |
| </ul> | |
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
| <template> | |
| <div class="pending-transaction" innerhtml.bind="message"></div> | |
| </template> |
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
| <template> | |
| <require from='./my-element'></require> | |
| <my-element some-boolean.bind="someBoolean"></my-element> | |
| </template> |
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
| <template> | |
| <require from='./my-element'></require> | |
| <my-element some-boolean.bind="someBoolean"></my-element> | |
| </template> |
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
| <template> | |
| <require from='./my-element'></require> | |
| <my-element some-boolean.bind="someBoolean"></my-element> | |
| </template> |
NewerOlder