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
'use strict'; | |
const templates = require('./templates'); | |
const logger = require('aurelia-logging').getLogger('aurelia-i18n'); | |
const Q_SETUP = `Would you like to setup Aurelia I18N automatically? | |
This includes modifying your src/main.js file as well as creating default translations files`; | |
module.exports = class { | |
static inject() { return ['project', 'ui', 'fs']; }; |
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="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div repeat.for="a of b"> | |
<ak-grid k-data-source.bind="datasource" | |
k-pageable.bind="{ input: true, numeric: false}" | |
k-filterable.bind="true" | |
k-sortable.bind="true" |
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
.customer-photo { | |
display: inline-block; | |
width: 32px; | |
height: 32px; | |
border-radius: 50%; | |
background-size: 32px 35px; | |
background-position: center center; | |
vertical-align: middle; | |
line-height: 32px; | |
box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2); |
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
.customer-photo { | |
display: inline-block; | |
width: 32px; | |
height: 32px; | |
border-radius: 50%; | |
background-size: 32px 35px; | |
background-position: center center; | |
vertical-align: middle; | |
line-height: 32px; | |
box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2); |
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
.customer-photo { | |
display: inline-block; | |
width: 32px; | |
height: 32px; | |
border-radius: 50%; | |
background-size: 32px 35px; | |
background-position: center center; | |
vertical-align: middle; | |
line-height: 32px; | |
box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2); |
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="./b"></require> | |
<b> | |
<slot name="columns"></slot> | |
</b> | |
</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
'use strict'; | |
const logger = require('aurelia-logging').getLogger('aurelia-kendoui-bridge importer'); | |
module.exports = class { | |
static inject() { return ['package', 'project', 'ui', 'fs']; }; | |
constructor(pkg, project, ui, fs) { | |
this.package = pkg; |
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="aurelia-kendoui-bridge/button/button"></require> | |
<div k-on-click.delegate="test()"> | |
<button ak-button k-on-click.trigger="test($event)">Test</button> | |
</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> | |
<div style="width:200px;"> | |
<require from="aurelia-kendoui-bridge/autocomplete/autocomplete"></require> | |
<ak-autocomplete k-data-source.bind="items" k-value.two-way="selectedValue"> | |
<input style="width: 100%;"> | |
</ak-autocomplete> | |
<p class="demo-hint" style="word-break: break-all">Type a name, available values in the list are: ${ items } </p> | |
<br />Selected Value: | |
<input type="text" value.bind="selectedValue"> |
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="aurelia-kendoui-bridge/datetimepicker/datetimepicker"></require> | |
<div id="example"> | |
<div class="demo-section k-content" with.bind="person"> | |
<h2>Datetimes</h4> | |
<button click.delegate="toggle()">Toggle dates</button> | |
<h5>${value.date.dateOfBirth}</h5> | |
<input ak-datetimepicker="k-format: yyyy-MM-dd HH:mm:ss; k-value.two-way: person.value.date.dateOfBirth" /> | |