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
The following public/external/postinstall.js code can parse all relevant multiword classes:
// assert classes with space data in Atk4\Ui\Xxx are up to date
const classesWithSpace = new Set();
walkFilesSync(path.join(__dirname, 'fomantic-ui'), (f) => {
if (!f.endsWith('.css')) {
return;
}
const data = fs.readFileSync(f, 'binary');
for (const m of data.match(/(?<=class\*=")([^"]+ [^"]+)(?=")/g)) {
classesWithSpace.add(m);
}
});
marking as feature request as the support was never added.
The text was updated successfully, but these errors were encountered:
mvorisek
changed the title
Fomantic-UI multiword class should be supported natively
Fomantic-UI multiword class (class with space) should be supported natively
Feb 10, 2023
The following
public/external/postinstall.js
code can parse all relevant multiword classes:marking as feature request as the support was never added.
The text was updated successfully, but these errors were encountered: