Export templateified PopupStartEndInput

This commit is contained in:
Maximilian Harz 2025-03-06 20:32:01 +01:00
parent 0e5aa31d0e
commit 65bdcef99b
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import { TextInput } from '#components/Input'
import type { Item } from '#types/Item'
interface StartEndInputProps {
export interface StartEndInputProps {
item?: Item
showLabels?: boolean
updateStartValue?: (value: string) => void

View File

@ -5,6 +5,7 @@ import {
PopupButton as PlainPopupButton,
PopupCheckboxInput as PlainPopupCheckboxInput,
PopupTextAreaInput as PlainPopupTextAreaInput,
PopupStartEndInput as PlainPopupStartEndInput,
} from '#components/Map/Subcomponents/ItemPopupComponents'
import { Templateify } from './Templateify'
@ -18,6 +19,7 @@ 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 Test = () => {
return <TextView truncate />