6f9b59b224
Scaffolds `twenty-new-ui`, the next-gen replacement for `twenty-ui`, on **SCSS** Modules + **Base UI** (no Linaria). - **Tooling**: Vite lib build, subpaths mirror twenty-ui, typed SCSS Modules, Storybook + axe a11y, size-limit, Nx targets. - **Theme**: single token source → nx generateTheme emits the CSS vars + accessor; parity test asserts token-for-token match with twenty-ui. Migrated a first `Toggle` component with its stories to allow @charlesBochet to wire the new pixel-diff system. --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
// Proxy so `styles.anyClassName` resolves to its key when SCSS is imported in Jest.
|
|
module.exports = new Proxy(
|
|
{},
|
|
{
|
|
get: (_target, key) => (key === '__esModule' ? false : String(key)),
|
|
},
|
|
);
|