UNPKG

@squirrel-forge/ui-core

Version:

A collection of interface, classes, functions and abstracts made for the browser and babel compatible.

27 lines (23 loc) 748 B
/* ! * @module : @squirrel-forge/ui-core * @version : 0.11.4 * @license : MIT * @copyright : 2022 squirrel-forge * @author : Daniel Hartwell aka. siux <me@siux.info> * @description : A collection of interface, classes, functions and abstracts made for the browser and babel compatible. */ /** * Abstracts */ export { UiComponent } from './Abstracts/UiComponent.js'; export { UiPlugin } from './Abstracts/UiPlugin.js'; export { UiTemplate } from './Abstracts/UiTemplate.js'; /** * Renderers */ export { UiTemplateRenderer } from './Renderers/UiTemplateRenderer.js' /** * States */ export { ComponentStates } from './States/ComponentStates.js'; export { ElementClassStates } from './States/ElementClassStates.js';