Questions tagged [ember-addon]

Extensions for ember.js applications

ember.js addons are specific extensions for ember.js applications.

To find ember.js addons have a look at these listings:

To develop ember.js addons have a look at these resources:

93 questions
7
votes
0 answers

How to use Ember Liquid-Fire to transition between two elements with different font sizes

I'm using Ember and Liquid Fire to create some interesting material-design-inspired animated transitions between routes. I've created two transitions. The first occurs during the transition from the index route to the about route and uses the…
Noranda Brown
  • 99
  • 1
  • 8
6
votes
2 answers

Add route to Ember Addon

i'm developing ember addon and i need to share one route between all applications that use this addon but i don't know how to achieve that or if it's even possible. Already i've add routes in addon, but application that counsume addon, doesn't see…
6
votes
1 answer

How to add css styles in app.css for ember js addon

I am creating ember addons and there are few css styles which this addon requires to work properly! How do i add them so that when a consuming application uses this addon the particular css styles are directly added to the app.css file of the…
wallop
  • 2,510
  • 1
  • 22
  • 39
5
votes
1 answer

How to override default functionality in Ember-addons

In the ember-cli documentation it describes bridging the addon within your host application by overriding the app/component/[addon-name.js] yourself. However, the documentation doesn't explicitly state how to do this. With trial and error I've…
sam
  • 753
  • 1
  • 6
  • 15
5
votes
1 answer

How to import Underscore into my Ember CLI addon as a module?

I'm trying to import Underscore as a named module into my Ember CLI addon. Looking at the Standard AMD Asset section of the guides, it seems this should work: app.import(app.bowerDirectory + '/underscore/underscore.js', { exports: { …
Sam Selikoff
  • 12,366
  • 13
  • 58
  • 104
4
votes
1 answer

Ember CLI - Shared Resource Addon

I am creating two ember applications that will have a lot of shared CSS/components/images between the two of them. I am using the latest version of Ember CLI for the two applications and I would like to create an Ember Addon with the Ember CLI to…
Primm
  • 1,438
  • 3
  • 12
  • 16
3
votes
1 answer

How to use "asNavFor" option in ember-cli-slick

I'm trying to implement slick slider in my ember application i found this ember-cli-slick via ember observer and i have to use Slider Syncing option.in jquery its possible by using below option.but in ember how to refer the class name? asNavFor:…
Vivekraj K R
  • 2,418
  • 2
  • 19
  • 38
3
votes
0 answers

Ember addon. Acceptance test: undefined is not a constructor

I'm building an addon from an Ember app that I built and passes all the tests. When I try to use the same acceptance tests for the dummy app and I run the tests I get this error for lots of tests (only in PhantomJS. All the tests pass in with any…
3
votes
1 answer

Correct process for upgrading an Ember-cli addon

What is the correct process for upgrading an Ember-cli addon? If I follow the normal process for upgrading an ember app: npm uninstall -g ember-cli npm cache clean bower cache clean npm install -g ember-cli@0.1.15 rm -rf node_modules…
Nikos
  • 7,295
  • 7
  • 52
  • 88
2
votes
1 answer

Import scss from node_modules within ember addon

I'm developing an ember addon which imports sass from it's dependencies. To use it I have the following in my addon - # my-addon/package.json ... "dependencies": { "lib1": "^1.5.3", "lib2": "1.2.3", "ember-cli-sass": "^10.0.1", "sass":…
aandis
  • 4,084
  • 4
  • 29
  • 40
2
votes
1 answer

Updating Ember.js environment variables do not take effect using in-repo addon config() method on ember serve

My goal here is to create an auto-increment build number that updates both on ember build and ember serve. In the end, if I can only use this on build, that's totally ok. I originally asked this question: In-repo addon writing public files on…
gregthegeek
  • 1,353
  • 3
  • 14
  • 24
2
votes
2 answers

Pods Structure in Ember Addon

With respect to this question, I created an ember-addon project and it is working fine as expected. But If I try to introduce pods structure in the ember-addon project it is not working. It throws error that the route is not found.What should I…
freakydavid
  • 114
  • 6
2
votes
1 answer

Ember-cli-build, exclude components ember addon

I'm using a "core" ember addon in a boilerplate, with npm link core-addon This addon contains generic components, helpers, routes... Is there a way to exclude some of these components in the boilerplate's ember-cli-build file? I already tried the…
Bert Huys
  • 91
  • 7
2
votes
2 answers

Wrapping npm modules as Ember Addons

I am working on an Ember application and would like to create an ember addon for it. The use case for the addon would be to create an ontology tree for the consuming application. The repository for the module I would like to make into an addon is…
Alex Virdee
  • 121
  • 11
2
votes
1 answer

Ember-models-table addon throws ember warn error while trying to use 'routeName' property

Am using ember-models-table to display table in my applicaiton. The table is great for sorting , pagination etc, but am trying to route from specific row to different page based on the id. it has mentioned in its example to use 'routeName' But when…
Sow Hari
  • 35
  • 7
1
2 3 4 5 6 7