Visual bug fixes for v1.29

This commit is contained in:
Scott Nonnenberg 2019-11-19 15:03:00 -08:00
parent 1a3c41fc46
commit 0876bf7ae7
14 changed files with 124 additions and 34 deletions

5
ts/components/_util.ts Normal file
View file

@ -0,0 +1,5 @@
// A separate file so this doesn't get picked up by StyleGuidist over real components
export function cleanId(id: string): string {
return id.replace(/[^\u0020-\u007e\u00a0-\u00ff]/g, '_');
}