UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

27 lines (26 loc) 1.04 kB
import { defineComponent as o } from "vue"; import { NeonFunctionalColor as e } from "../../../model/common/color/NeonFunctionalColor.es.js"; import { NeonInputIndicatorStyle as t } from "../../../model/user-input/input-indicator/NeonInputIndicatorStyle.es.js"; const i = o({ name: "NeonFieldGroup", props: { /** * The style of input indicators to use, either <em>internal</em> where the indicator is inside the adjoined input * field or <em>external</em> where the indicator is external to the adjoining field separated by a border & not * highlighted as part of the field. */ indicatorStyle: { type: String, default: t.Internal }, /** * The border highlight color when the indicator style is <em>internal</em>. */ color: { type: String, default: e.Primary }, /** * Use the disabled color styles when the indicator style is <em>internal</em>. */ disabled: { type: Boolean, default: !1 } } }); export { i as default }; //# sourceMappingURL=NeonFieldGroup.es.js.map