-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from VertekCorp/upgrade
Upgrade to 3.14
- Loading branch information
Showing
69 changed files
with
20,037 additions
and
478 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
/bower_components | ||
# compiled output | ||
/dist/ | ||
/tmp/ | ||
|
||
# dependencies | ||
|
||
# misc | ||
/.editorconfig | ||
/.ember-cli.js | ||
/.env* | ||
/.eslintignore | ||
/.eslintrc.js | ||
/.git/ | ||
/.gitignore | ||
/.template-lintrc.js | ||
/.travis.yml | ||
/.watchmanconfig | ||
/config/ember-try.js | ||
/dist | ||
/tests | ||
/tmp | ||
**/.gitkeep | ||
.bowerrc | ||
.editorconfig | ||
.ember-cli | ||
.eslintrc.js | ||
.gitignore | ||
.watchmanconfig | ||
.travis.yml | ||
bower.json | ||
ember-cli-build.js | ||
testem.js | ||
yarn.lock | ||
/CONTRIBUTING.md | ||
/ember-cli-build.js | ||
/testem.js | ||
/tests/ | ||
/yarn.lock | ||
.gitkeep | ||
|
||
# ember-try | ||
.node_modules.ember-try/ | ||
bower.json.ember-try | ||
package.json.ember-try | ||
/.node_modules.ember-try/ | ||
/package.json.ember-try |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: 'recommended' | ||
}; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# How To Contribute | ||
|
||
## Installation | ||
|
||
* `git clone <repository-url>` | ||
* `cd my-addon` | ||
* `npm install` | ||
|
||
## Linting | ||
|
||
* `npm run lint:hbs` | ||
* `npm run lint:js` | ||
* `npm run lint:js -- --fix` | ||
|
||
## Running tests | ||
|
||
* `ember test` – Runs the test suite on the current Ember version | ||
* `ember test --server` – Runs the test suite in "watch mode" | ||
* `ember try:each` – Runs the test suite against multiple Ember versions | ||
|
||
## Running the dummy application | ||
|
||
* `ember serve` | ||
* Visit the dummy application at [http://localhost:4200](http://localhost:4200). | ||
|
||
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/). |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import SortableGroup from 'ember-sortable/components/sortable-group'; | ||
import layout from '../templates/components/g-sortable-group'; | ||
|
||
export default SortableGroup.extend({ | ||
layout | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<label class="g-input-field-label">{{label}}</label> | ||
{{g-pikaday value=value disabled=disabled class="g-date"}} | ||
{{#if validation.message}} | ||
{{g-invalid text="!" tooltipContent=validation.message tooltipPlace='right'}} | ||
{{g-invalid text="!" tooltipContent=validation.message tooltipPlace="right"}} | ||
{{else}} | ||
<div class="g-valid"></div> | ||
{{/if}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{{#if selector}} | ||
{{input type="checkbox" checked=_selected disabled=disabled}} | ||
{{!-- {{else if dragHandle}} | ||
dragMe --}} | ||
{{else}} | ||
{{yield}} | ||
{{/if}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{{! template-lint-disable no-triple-curlies }} | ||
{{{heading}}} | ||
{{#if isSorted}} | ||
{{#if isSortAsc}} | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{{text}} | ||
{{#attach-tooltip animation='fade' placement=tooltipPlace arrow=true}} | ||
{{tooltipContent}} | ||
{{#attach-tooltip animation="fade" placement=tooltipPlace arrow=true}} | ||
{{tooltipContent}} | ||
{{/attach-tooltip}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{{#modal-dialog renderInPlace=renderInPlace targetAttachment="center" translucentOverlay=true | ||
container-class="g-modal-container" close="closeModal"}} | ||
<div class="g-modal-title">{{title}}</div> | ||
{{yield}} | ||
<div class="g-modal-title">{{title}}</div> | ||
{{yield}} | ||
{{/modal-dialog}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div {{action "previous"}} disabled={{_previousDisabled}} class="g-page left-arrow"></div> | ||
<div {{action "previous"}} role="button" disabled={{_previousDisabled}} class="g-page left-arrow"></div> | ||
<span class="vertical-center">{{start}} - {{end}} of {{total}}</span> | ||
<div {{action "next"}} disabled={{_nextDisabled}} class="g-page right-arrow"></div> | ||
<div {{action "next"}} role="button" disabled={{_nextDisabled}} class="g-page right-arrow"></div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,31 @@ | ||
<label for={{id}} class="g-input-field-label">{{label}}</label> | ||
{{ember-selectize id=id | ||
placeholder=placeholder | ||
content=content | ||
optionValuePath=optionValuePath | ||
optionLabelPath=optionLabelPath | ||
select-item="select-item" | ||
selection=selection | ||
value=value | ||
disabled=disabled}} | ||
{{#if lookups}} | ||
<PowerSelect @options={{this.lookupValues}} | ||
@selected={{this.selection}} | ||
@disabled={{this.disabled}} | ||
@placeholder={{this.placeholder}} | ||
@onChange={{this.onChange}} as |item|> | ||
{{#if optionLabelPath}} | ||
{{get item this.optionLabelPath}} | ||
{{else}} | ||
{{item}} | ||
{{/if}} | ||
</PowerSelect> | ||
{{else}} | ||
<PowerSelect @options={{this.content}} | ||
@selected={{this.selection}} | ||
@disabled={{this.disabled}} | ||
@placeholder={{this.placeholder}} | ||
@onChange={{this.onChange}} as |item|> | ||
{{#if optionLabelPath}} | ||
{{get item this.optionLabelPath}} | ||
{{else}} | ||
{{item}} | ||
{{/if}} | ||
</PowerSelect> | ||
{{/if}} | ||
{{#if validation.message}} | ||
{{g-invalid text="!" tooltipContent=validation.message tooltipPlace='right'}} | ||
{{g-invalid text="!" tooltipContent=validation.message tooltipPlace="right"}} | ||
{{else}} | ||
<div class="g-valid"></div> | ||
{{/if}} |
Oops, something went wrong.