Skip to content

Instantly share code, notes, and snippets.

View adriatic's full-sized avatar
💭
I may be slow to respond.

Nikolaj Ivancic adriatic

💭
I may be slow to respond.
  • Congral, LLC
  • Ann Arbor, MI
  • 09:45 (UTC -04:00)
View GitHub Profile
@adriatic
adriatic / yarn-create-redwood-app--ts.log
Created August 10, 2022 00:49
log of yarn create redwood-app --ts .
```
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/typescript-react-apollo@3.3.2" has unmet peer dependency "graphql-tag@^2.0.0".
warning "create-redwood-app > @redwoodjs/internal > babel-plugin-graphql-tag@3.3.0" has unmet peer dependency "graphql-tag@^2.10.1".
warning "create-redwood-app > @redwoodjs/internal > @redwoodjs/graphql-server > @envelop/depth-limit@1.6.0" has unmet peer dependency "@envelop/core@^2.4.0".
@adriatic
adriatic / app.html
Last active May 9, 2021 23:26
Upload: asynchronous upload
<template>
<div id="example">
<div class="box">
<h4>Information</h4>
<p>
The Upload is able to upload files out-of-band using the
HTML5 File API with fallback for legacy browsers.
</p>
<p>
You need to configure save action that will receive
@adriatic
adriatic / app.html
Last active August 16, 2020 00:41
ResponsivePanel: basic usage
<template>
<div id="example">
<p>
Resize your window to see the effect of the responsive panel
</p>
<div class="demo-section k-content">
<nav id="navigation" ak-responsivepanel="k-auto-close.bind: false">
<a href="#">Home</a>
<a href="#">Products</a>
</nav>
@adriatic
adriatic / app.html
Last active August 16, 2020 00:41
ListView:editing
<template>
<require from="./editing.css"></require>
<a class="k-button ak-button-icontext k-add-button" href="#"><span class="k-icon k-add"></span>Add new record</a>
<div id="listview-editing">
<ak-list-view k-data-source.bind="dataSource">
<ak-template>
<div class="product-view k-widget" data-uid="${uid}">
<dl>
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 legal@bluespire.com. 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
@adriatic
adriatic / app.html
Last active March 14, 2017 07:57
DropDownList: cascading dropdownlist
<template>
<div id="example">
<div class="demo-section k-content">
<h4>Categories:</h4>
<ak-drop-down-list k-option-label="Select category..."
k-data-text-field="CategoryName"
k-data-value-field="CategoryID"
k-widget.bind="categories"
k-data-source.bind="{
type: 'odata',
@adriatic
adriatic / app.html
Last active October 14, 2016 20:57
Grid: basic usage
<template>
<require from="./basic-use.css"></require>
<ak-grid k-data-source.bind="datasource" k-pageable.bind="pageable" k-sortable.bind="true">
<ak-col k-title="Contact Name" k-field="ContactName">
<ak-template>
<div class='customer-photo' style="background-image: url(http://demos.telerik.com/kendo-ui/content/web/Customers/${CustomerID}.jpg);"></div>
<div class='customer-name'>${ContactName}</div>
</ak-template>
</ak-col>
@adriatic
adriatic / app.html
Last active October 4, 2016 08:31
DropDownList:customizing templates
<template>
<require from="./customizing-templates.css"></require>
<div id="example">
<div class="demo-section k-content">
<h4>Customers</h4>
<ak-drop-down-list k-data-text-field="ContactName"
k-data-value-field="CustomerID"
k-height="400"
k-data-source.bind="dataSource"
id="dropdownlist-customizing-templates-customers"
@adriatic
adriatic / app.html
Last active September 28, 2016 08:52
DateTimePicker: basic usage
<template>
<div id="example">
<div class="demo-section k-content">
<h4>Remind me on</h4>
<input ak-datetimepicker="k-value.bind: today" style="width: 100%" />
</div>
</template>
@adriatic
adriatic / app.html
Last active September 25, 2016 19:09
Grid: editing custom editor
<template>
<div id="example">
<ak-grid k-pageable.bind="true" k-height.bind="500" k-toolbar.bind="['create']" k-editable.bind="true" k-data-source.bind="dataSource">
<ak-col k-field="ProductName" k-title="Product Name"></ak-col>
<ak-col k-field="Category" k-title="Category" k-width="180px" k-editor.bind="categoryDropDownEditor" k-template.bind="categoryTemplate"></ak-col>
<ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="130px"></ak-col>
<ak-col k-command="destroy" k-title=" " k-width="150px"></ak-col>
</ak-grid>
</div>
</template>