UNPKG

@sujalchoudhari/solaris-ui

Version:

A UI framework to create HTML pages with just JavaScript.

36 lines 2.15 kB
"use strict"; /** * @packageDocumentation * * SolarisUI is a UI component-based framework that allows you to easily create static * websites without worrying about writing your own HTML or CSS files. * * ## Index.ts * The `Index.ts` file imports and * re-exports all the underlying classes. * * ## SolarisUI class * The `SolarisUI` class provides the main functionality of the framework. * It allows you to create and manage UI components for your static website. * * @license MIT license * [[include:Example.md]] */ Object.defineProperty(exports, "__esModule", { value: true }); exports.Atomizer = exports.Atom = exports.Style = exports.String = exports.Script = exports.Component = exports.LogLevel = exports.Logger = exports.FileManager = exports.SolarisUI = void 0; const components_1 = require("./components"); Object.defineProperty(exports, "Component", { enumerable: true, get: function () { return components_1.Component; } }); Object.defineProperty(exports, "Script", { enumerable: true, get: function () { return components_1.Script; } }); Object.defineProperty(exports, "String", { enumerable: true, get: function () { return components_1.String; } }); Object.defineProperty(exports, "Style", { enumerable: true, get: function () { return components_1.Style; } }); const atom_1 = require("./atom"); Object.defineProperty(exports, "Atom", { enumerable: true, get: function () { return atom_1.Atom; } }); Object.defineProperty(exports, "Atomizer", { enumerable: true, get: function () { return atom_1.Atomizer; } }); const solaris_1 = require("./solaris"); Object.defineProperty(exports, "SolarisUI", { enumerable: true, get: function () { return solaris_1.SolarisUI; } }); const utils_1 = require("./utils"); Object.defineProperty(exports, "FileManager", { enumerable: true, get: function () { return utils_1.FileManager; } }); Object.defineProperty(exports, "Logger", { enumerable: true, get: function () { return utils_1.Logger; } }); Object.defineProperty(exports, "LogLevel", { enumerable: true, get: function () { return utils_1.LogLevel; } }); exports.default = solaris_1.SolarisUI; //# sourceMappingURL=index.js.map