Ivan
Ivan
Is it possible to use a gradient fill instead of a single colour? ``` var def = svg.append('defs'); var gradient = def.append('linearGradient') .attr('id', 'custom_id_1') .attr('x1', '50%') .attr('y1', '0%') .attr('x2', '50%')...
Say we have the following code: ``` { function aa() { } var zz; } function bb() { } ``` which produces the following scope tree: ``` 0: GlobalScope 1:...
Similar to the way the treemap layout has `paddingInner` and `paddingOuter`. It would be awesome if the partition layout also had this.
# 🐛 Bug Report As per the discussion here: https://discourse.aurelia.io/t/typescript-to-vanilla-js-for-injecting-ihttpclient/5272/2 ## 🤔 Expected Behavior Should be able to inject a new instance of IHttpClient without getting an error. ## 😯...
# 🐛 Bug Report Created a new app with a router + child router with the following routes: `main.ts` ``` import Aurelia from 'aurelia'; import { RouterConfiguration } from '@aurelia/router';...
I might have found some inconsistencies in the router/route-lite documentation. Should all of the below not have the same parameters or the same naming conventions? ``` canLoad( params: Params, next:...
## Feature Request ### Plugin @capacitor/motion ### Description CheckPermissions method() similar to LocalNotifications Plugin ### Platform(s) iOS Android Web ### Preferred Solution ### Alternatives ### Additional Context
## Description Init client and set `connectionTimeoutSeconds` to 10. Create a bulk data import. Time this using node.js timers. ``` importing into collection time taken: 20.831406687006353s ``` No timeout error...
I was getting and error that `download` is not a function when using the import like this: ``` import SPPull from 'sppull'; const sppull = SPPull.download; //
I have a repo with the following structure: ``` - dialog - test-element-one.html - test-element-two.html ``` The `dialog` adds `test-element-one.html` to the view and `test-element-one.html` adds `test-element-two.html` to the view....