dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
Bump grunt from 1.0.2 to 1.5.2 … (compare)
KaneFreeman on v8
KaneFreeman on master
Revert to node 12 (#415) (compare)
KaneFreeman on v7
Use state in processes in real … Moving to Vercel for example de… Fixed all the typos (#409) Fix… and 3 more (compare)
KaneFreeman on master
Update to version 8 (#414) (compare)
credentials
property of the RequestOptions
( https://github.com/dojo/core/blob/fdeba616fafbaf6edcf9eb152a5bc6ffb6ae1e60/src/request/interfaces.d.ts#L43 ) is not used in the xhr provider.
@salmau if you want to make a few differently-themed buttons, you can either extend Button
for each one, or extend it and add a buttonStyle
property that controls a class added to the root. The first option is as simple as this:
@theme(validateButtonCSS)
export default class ValidateButton extends Button { }
For the second option, you'd need to override the getModifierClasses
method on Button
:
export interface MyButtonProperties extends ButtonProperties {
buttonStyle: 'validate' | 'cancel';
}
@theme(myButtonCSS)
export default class ValidateButton extends Button<MyButtonProperties> {
getModifierClasses() {
// add some logic for appending classes here
}
}
3.0.0
version from npm
and try again? Just an FYI, we are migrating from gitter to discord as the official dojo support forum (https://discord.gg/M7yRngE)
Hello dojo experts,
I'm working with dojo2 from beta version on and everything was fine till I did upgrade from dojo4 to dojo5. In this version I found out that generated dist files don't change hash codes, so all the time I have the same name of 'bootstrap.repeating_hash_code.bundle.js' file. This has impact on the browser caching after new deployment. I thought that this will be solved in dojo6 and I did upgrade but it's the same. It's easy to reproduce using dojo/cli-create-app and doing build afterwards.
Does anyone else has the same problems?
Looking forward for your help...