You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here it is said that cssClasses is an option but the option doc does not mention it, and no matter what I pass to the option, it always ends in undefined classes produced in the HTML.
well... it produces HTML elements with noUi- string, which makes absolutely no sense to me. it seems to replace the class rather than append, and only works if we overwrite them all?
Indeed, I can then also overwrite that with cssPrefix: '', but... that fully defies the purpose of this, IMO.
The final goal is to add classes from Bootstrap - and that just becomes impossible, if we have to either remove the noUi prefix just to add something like a bg-danger (thus totally breaking noUI) or append to it, therefore breaking Bootstrap.
Is there any solution to this?
The text was updated successfully, but these errors were encountered:
Here it is said that
cssClasses
is an option but the option doc does not mention it, and no matter what I pass to the option, it always ends inundefined
classes produced in the HTML.I then found
noUiSlider/src/nouislider.ts
Line 4 in faa3252
well... it produces HTML elements with
noUi- string
, which makes absolutely no sense to me. it seems to replace the class rather than append, and only works if we overwrite them all?Indeed, I can then also overwrite that with
cssPrefix: ''
, but... that fully defies the purpose of this, IMO.The final goal is to add classes from Bootstrap - and that just becomes impossible, if we have to either remove the
noUi
prefix just to add something like a bg-danger (thus totally breaking noUI) or append to it, therefore breaking Bootstrap.Is there any solution to this?
The text was updated successfully, but these errors were encountered: