mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
* small form edits * fix linting * custom button label * more popup customizing * reset dev port
25 lines
1015 B
TypeScript
25 lines
1015 B
TypeScript
import {
|
|
TextView as PlainTextView,
|
|
StartEndView as PlainStartEndView,
|
|
PopupTextInput as PlainPopupTextInput,
|
|
PopupButton as PlainPopupButton,
|
|
PopupCheckboxInput as PlainPopupCheckboxInput,
|
|
PopupTextAreaInput as PlainPopupTextAreaInput,
|
|
PopupStartEndInput as PlainPopupStartEndInput,
|
|
HeaderView as PlainHeaderView,
|
|
} from '#components/Map/Subcomponents/ItemPopupComponents'
|
|
|
|
import { templateify } from './templateify'
|
|
|
|
export { PopupForm } from './PopupForm'
|
|
export { PopupView } from './PopupView'
|
|
|
|
export const TextView = templateify(PlainTextView)
|
|
export const StartEndView = templateify(PlainStartEndView)
|
|
export const PopupTextInput = templateify(PlainPopupTextInput)
|
|
export const PopupButton = templateify(PlainPopupButton)
|
|
export const PopupCheckboxInput = templateify(PlainPopupCheckboxInput)
|
|
export const PopupTextAreaInput = templateify(PlainPopupTextAreaInput)
|
|
export const PopupStartEndInput = templateify(PlainPopupStartEndInput)
|
|
export const HeaderView = templateify(PlainHeaderView)
|