UNPKG

@playcanvas/pcui

Version:

User interface component library for the web

58 lines (55 loc) 3.01 kB
export { BindingBase } from './binding/BindingBase/index.mjs'; export { BindingElementToObservers } from './binding/BindingElementToObservers/index.mjs'; export { BindingObserversToElement } from './binding/BindingObserversToElement/index.mjs'; export { BindingTwoWay } from './binding/BindingTwoWay/index.mjs'; export { ArrayInput } from './components/ArrayInput/index.mjs'; export { BooleanInput } from './components/BooleanInput/index.mjs'; export { Button } from './components/Button/index.mjs'; export { Canvas } from './components/Canvas/index.mjs'; export { Code } from './components/Code/index.mjs'; export { ColorPicker } from './components/ColorPicker/index.mjs'; export { Container } from './components/Container/index.mjs'; export { Divider } from './components/Divider/index.mjs'; export { Element } from './components/Element/index.mjs'; export { GradientPicker } from './components/GradientPicker/index.mjs'; export { GridView } from './components/GridView/index.mjs'; export { GridViewItem } from './components/GridViewItem/index.mjs'; export { InfoBox } from './components/InfoBox/index.mjs'; export { InputElement } from './components/InputElement/index.mjs'; export { Label } from './components/Label/index.mjs'; export { LabelGroup } from './components/LabelGroup/index.mjs'; export { Menu } from './components/Menu/index.mjs'; export { MenuItem } from './components/MenuItem/index.mjs'; export { NumericInput } from './components/NumericInput/index.mjs'; export { Overlay } from './components/Overlay/index.mjs'; export { Panel } from './components/Panel/index.mjs'; export { Progress } from './components/Progress/index.mjs'; export { RadioButton } from './components/RadioButton/index.mjs'; export { SelectInput } from './components/SelectInput/index.mjs'; export { SliderInput } from './components/SliderInput/index.mjs'; export { Spinner } from './components/Spinner/index.mjs'; export { TextAreaInput } from './components/TextAreaInput/index.mjs'; export { TextInput } from './components/TextInput/index.mjs'; export { TreeView } from './components/TreeView/index.mjs'; export { TreeViewItem } from './components/TreeViewItem/index.mjs'; export { VectorInput } from './components/VectorInput/index.mjs'; /** * PCUI is a front-end framework designed for creating user interfaces in web applications. It is * particularly well-suited for building browser-based tools. It offers a comprehensive set of UI * components like buttons, sliders, menus and data inputs. * * PCUI is written in TypeScript. The API can be used from both TypeScript and JavaScript. A React * wrapper is provided for easy integration with React applications. * * @module PCUI */ /** * The version of the PCUI library. This is a string in semantic version format of `major.minor.patch`. */ const version = '5.2.3'; /** * The git revision of the PCUI library. This is a string of the git commit hash. */ const revision = 'be45dc9'; export { revision, version }; //# sourceMappingURL=index.mjs.map