I'm integrating joints / rappid with an existing project which uses sass (as in dart-sass / libsass) and I'm having trouble making rappid's css work with it.
The problem seems to be an invalid css in a few css files.
To be more specific, some of the calc operators are missing whitespaces.
in "calc" must have surrounding whitespaces.
E.g.:
node_modules/rappid/dist/rappid.css 6104:22 height: calc(100%-2px);
It should be: height: calc(100% - 2px);
After scanning all the css files I think these are the only errors:
* rappid.css:6104 - height: calc(100%-2px);
* joint.ui.selectBox.css:108 - height: calc(100%-2px);
* rappid/plugins/ui/SelectBox/css/theme/dark.css:55 - height: calc(100%-2px);
The rest of the calc operations in the css files are correctly written with spaces.
Since the fix is a minor change and the current code is breaking the build process with external tools, can we get a minor release with that fixed?
Regards!