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
<template> | |
<require from="./my-control"></require> | |
<require from="./my-other"></require> | |
<h1>${message}</h1> | |
<my-control></my-control> | |
<br/> | |
<my-other></my-other> | |
</template> |
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
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<ak-grid k-data-source.bind="datasource" | |
k-pageable.bind="pageable" | |
k-sortable.bind="true" | |
k-on-detail-init.delegate="detailInit($event.detail)"> | |
<ak-col k-title="First Name" k-field="FirstName"></ak-col> |
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
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<ak-grid k-data-source.bind="datasource" | |
k-pageable.bind="pageable" | |
k-sortable.bind="true" | |
k-on-data-bound.delegate="onDataBound($event.detail)" | |
k-on-detail-init.delegate="detailInit($event.detail)"> |
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
<template> | |
<require from="./my-control"></require> | |
<require from="./my-other"></require> | |
<h1>${message}</h1> | |
<my-control></my-control> | |
<br/> | |
<my-other></my-other> | |
</template> |
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
<template> | |
<h1>${message}</h1> | |
<button click.delegate="go()">go to second</button> | |
<router-view></router-view> | |
<router-view name="secondary"></router-view> | |
</template> |
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
interface Person { | |
name: string; | |
age: number; | |
location: string; | |
} | |
type K1 = keyof Person; // "name" | "age" | "location" | |
type K2 = keyof Person[]; // "length" | "push" | "pop" | "concat" | ... | |
type K3 = keyof { [x: string]: Person }; // string |
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
<template> | |
<require from='./value-converter'></require> | |
<require from='./clock.html'></require> | |
<div> | |
Change locale to | |
<div> | |
<button | |
repeat.for='locale of locales' | |
click.delegate='changeLocale(locale.locale)'>${locale.name}</button> |
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"globals": { |
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
git fetch origin main | |
git merge origin/main |
OlderNewer