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="./sort"></require> | |
<require from="./customele"></require> | |
<table> | |
<tr | |
as-element="customele" | |
repeat.for="entry of entries | sort: { propertyName: 'on', direction: 'descending' }" | |
entry.bind="entry"> | |
</tr> | |
</table> |
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text.RegularExpressions; | |
using Newtonsoft.Json.Linq; | |
using Microsoft.Extensions.Configuration; | |
namespace Settings | |
{ |
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
<!-- See https://winterlimelight.com/2017/02/21/typeahead-and-aurelia/ for details on prepare-query --> | |
<contractui-element-typeahead | |
style="display: inline-block" | |
initial-value.bind="value" | |
labeltext="" | |
hinttext="Type a..." | |
prepare-query.bind="prepareQueryFn" | |
on-select.call="processResult(suggestion)"> | |
</contractui-element-typeahead> |