Questions tagged [glimmer.js]

Glimmer is a UI library for building custom components.

Glimmer is a UI library for building powerful and fast custom components, brought to you by the Ember.js team.

39 questions
0
votes
1 answer

emberjs child component not re-rendering after property update

I have a page component (five-whys) with a number of inputs that the user can choose to finalize the input. When the user clicks finalize, all questions are made to be disabled. Page component five-whys.hbs: {{#each this.whys as |why i|}} …
Ian Kirkpatrick
  • 1,861
  • 14
  • 33
0
votes
2 answers

Self closing void tags with Ember Glimmer components

I am in the process of upgrading an Ember app to the latest version (3.17) and have run into an issue with the new Glimmer components. Not having to specify a tag name is great, but I'm not sure how to handle self closing void elements such as an…
Newfoundland
  • 497
  • 6
  • 17
0
votes
0 answers

Where do I add a Typescript type definition within an Ember CLI app?

I already ember -v ember-cli: 3.0.4 yarn add typescript -D ember install ember-cli-typescript@latest I changed the extension of some files from js to ts. Everything works ;D I haven't been able to find an example for adding a new type. Possibly a…
givanse
  • 14,503
  • 8
  • 51
  • 75
0
votes
1 answer

Can I use ember-data with Glimmer?

Is it possible to use ember-data with Glimmer, or is the full ember install required? If so how much of Ember core is it possible to ignore (e.g. just use components, no router, etc)? Also if it isn't possible is there a library that would provide a…
Meep3D
  • 3,803
  • 4
  • 36
  • 55
0
votes
1 answer

Glimmer child component does not re-render when the parent passes it a different argument

To be more explicit, the child component creates a property which is dependent on the argument passed by the parent component. I am not using the parent argument directly in the child template (this case works just fine). Coming from a React…
Arijit Bhattacharya
  • 1,265
  • 12
  • 12
0
votes
1 answer

trees:{ mergetrees(['src',external js file])} in ember-cli-build.js is not working

In glimmer application, I want to bundle the external Js file with app.js file. I want to use svg in glimmer application. Instead of ember-inline-svg,I used broccoli-flatiron and broccoli-merge-trees packages to bundle external js file with…
Kishore
  • 1
  • 4
0
votes
1 answer

How to use if inline helper in glimmer application

when i tried to use if helper in glimmer application.It gives me an error like Uncaught Error: Compile Error: if is not a helper
Kishore
  • 1
  • 4
0
votes
1 answer

GlimmerJS: how to use Glimmer as a lib (e.g. AMD) without building with ember-cli/broccoli

GlimmerJS provides a bunch of npm packages (actually 20 packages are installed for simple demo in official tutorial https://glimmerjs.com/guides/). Every package contains in dist/ folder several variants of scripts in the following subfolder:…
Shrike
  • 9,218
  • 7
  • 68
  • 105
-2
votes
1 answer

emberjs: Glimmer web component pass array/objects not working

One of our business problem statement is, we have to create component such that any consumer can use them as a widget and embed in their website. And the thing is we already have those component made with ember. We're not aware that which stack the…
Pankaj Parkar
  • 134,766
  • 23
  • 234
  • 299
1 2
3