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
``` | |
yarn create redwood-app --ts . | |
yarn create v1.22.19 | |
[1/4] 🔍 Resolving packages... | |
[2/4] 🚚 Fetching packages... | |
[3/4] 🔗 Linking dependencies... | |
warning "create-redwood-app > @redwoodjs/internal > @graphql-codegen/[email protected]" has unmet peer dependency "graphql-tag@^2.0.0". | |
warning "create-redwood-app > @redwoodjs/internal > [email protected]" has unmet peer dependency "graphql-tag@^2.10.1". | |
warning "create-redwood-app > @redwoodjs/internal > @redwoodjs/graphql-server > @envelop/[email protected]" has unmet peer dependency "@envelop/core@^2.4.0". |
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
Aurelia Tools LLC Individual Contributor License Agreement | |
Thank you for Your interest in Aurelia Tools and Aurelia UI Toolkits open source projects. This document clarifies the terms under which You, the person listed below, may make Contributions — which may include without limitation, software, bug fixes, configuration changes, documentation, or any other materials — to any of the projects owned or managed by Aurelia Tools. | |
Please complete the following information about You and the Contributions. If You have questions about these terms, please contact us at [email protected]. You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Blue Spire projects. Except for the license granted herein to Aurelia Tools, You reserve all right, title, and interest in and to Your Contributions. | |
Licenses | |
Aurelia Tools public projects (code, documentation, and any other materials) are released under the terms of the MIT license, with the following exception: | |
Co |
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 id="example"> | |
<div class="demo-section k-content"> | |
<p><strong>People:</strong></p> | |
<ak-autocomplete k-data-source.bind="items"> | |
<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> | |
</div> | |
</div> |
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> | |
<ak-chart k-title.bind="{text: 'Gross Domestic product growth \n /GDP annual %/'}" | |
k-legend.bind="{position: 'bottom'}" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
k-tooltip.bind="tooltip"> | |
</ak-chart> | |
</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
<!-- put your view here --> | |
<template> | |
<p>Loaded</p> | |
</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> | |
<section> | |
<h4>About</h4> | |
</section> | |
</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
<!-- app.html --> |
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 id="example"> | |
<div class="box wide hidden-on-narrow" style="z-index:10000"> | |
<div class="box-col"> | |
<h4>API Functions</h4> | |
<ul class="options"> | |
<li> | |
<button click.delegate="window.open()" ak-button>Open</button> | |
<button click.delegate="window.close()" ak-button>Close</button> | |
</li> |
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="./logger.js"></require> | |
<require from="./events.css"></require> | |
<div id="example"> | |
<div class="box"> | |
<h4>Console log</h4> | |
<logger view-model.ref="logger"></logger> | |
</div> |
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
#undo { | |
text-align: center; | |
position: absolute; | |
white-space: nowrap; | |
border-width: 1px; | |
border-style: solid; | |
padding: 2em; | |
cursor: pointer; | |
} |
NewerOlder