@progress/kendo-vue-inputs
Version:
35 lines (34 loc) • 983 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { defineComponent as t, createVNode as e } from "vue";
import { packageMetadata as r } from "../package-metadata.mjs";
import { validatePackage as a } from "@progress/kendo-vue-common";
const i = /* @__PURE__ */ t({
props: {
/**
* Specifies the orientation of the InputSeparator.
*
* @default `vertical`
*/
orientation: {
type: String,
default: "vertical"
}
},
created() {
a(r);
},
render() {
return e("span", {
class: `k-input-separator k-input-separator-${this.orientation}`
}, null);
}
});
export {
i as InputSeparator
};