mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 08:02:26 +00:00
4b2b3467d2
* feat: Update app component types * fix: Typos * feat: Add select input type to components * fix: Remove width property from component types * fix: Make button full width in editor * fix: Types Co-authored-by: Faton Ramadani <faton.ramadani14@gmail.com>
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import type { Aligned } from "../../types"
|
|
|
|
const defaultProps = {
|
|
inputs: {},
|
|
componentInputs: {}
|
|
}
|
|
|
|
const defaultAlignement: Aligned = {
|
|
horizontalAlignment: 'center',
|
|
verticalAlignment: 'center'
|
|
}
|
|
|
|
export { defaultProps, defaultAlignement }
|