UNPKG

@sujalchoudhari/solaris-ui

Version:

A UI framework to create HTML pages with just JavaScript.

40 lines 1.39 kB
"use strict"; /** * @packageDocumentation * * Components * ----- * * ### Component * Component is the representation of a single HTML element. * A component tree can be built using the Component class. * A vDom is created using the Component class, which is then compiled to HTML. * * ### Script * Script is the representation of a single JavaScript script. * A script can be either infile or external. * * ### String * String is the representation of a single string. * Text in Html, other than tags and attributes, is represented by String. * * ### Style * Style is the representation of a single CSS style. * A style can be either inline or external. * * @license MIT license */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Style = exports.String = exports.Script = exports.Component = void 0; const component_1 = __importDefault(require("./component")); exports.Component = component_1.default; const scripts_1 = __importDefault(require("./scripts")); exports.Script = scripts_1.default; const string_1 = __importDefault(require("./string")); exports.String = string_1.default; const styles_1 = __importDefault(require("./styles")); exports.Style = styles_1.default; //# sourceMappingURL=index.js.map