2024-06-26 01:11:57 -05:00
|
|
|
import { ComponentShape } from '@ui/lib/types/shapes/componentShape';
|
|
|
|
import { TypographyStyle } from '@ui/lib/types/shapes/textShape';
|
|
|
|
import { FillStyle } from '@ui/lib/types/utils/fill';
|
|
|
|
import { ImageColor } from '@ui/lib/types/utils/imageColor';
|
|
|
|
import { Uuid } from '@ui/lib/types/utils/uuid';
|
2024-06-28 05:17:56 -05:00
|
|
|
import { ComponentProperty, UiComponent } from '@ui/types';
|
2024-06-26 01:11:57 -05:00
|
|
|
|
|
|
|
export const typographies: Map<string, TypographyStyle> = new Map();
|
|
|
|
export const images: Map<string, ImageColor> = new Map();
|
|
|
|
export const identifiers: Map<string, Uuid> = new Map();
|
|
|
|
export const components: Map<string, UiComponent> = new Map();
|
|
|
|
export const componentShapes: Map<string, ComponentShape> = new Map();
|
|
|
|
export const colors: Map<string, FillStyle> = new Map();
|
2024-06-28 05:17:56 -05:00
|
|
|
export const componentProperties: Map<string, ComponentProperty> = new Map();
|