gui.config.ts declared the console's type/radius/space ladder. It is not the console's ladder — it is the ladder every @hanzo/ui/product component is drawn at, and the dedicated Hanzo Social app renders those same components. A private copy would have forked the moment either side tuned a size. It now ships with the components (@hanzo/ui/gui-config, 8.0.17); this file is the console's import path onto it, so `~/gui.config` call sites are unchanged. Co-authored-by: Hanzo Dev <dev@hanzo.ai>
12 lines
551 B
TypeScript
12 lines
551 B
TypeScript
/**
|
|
* The console's GUI config IS the shared one. The type/radius/space scale used to be
|
|
* declared here; it now ships with the components it scales (`@hanzo/ui/gui-config`),
|
|
* because the dedicated Hanzo Social app renders the same @hanzo/ui/product set and a
|
|
* second copy of the ladder would fork silently — same components, different sizes.
|
|
*
|
|
* Kept as a file so `~/gui.config` stays the console's one import path.
|
|
*/
|
|
export { config, default } from '@hanzo/ui/gui-config'
|
|
|
|
export type Conf = typeof import('@hanzo/ui/gui-config').config
|