@progress/kendo-vue-dateinputs
Version:
25 lines (24 loc) • 730 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 { getDefaultSlots as o } from "@progress/kendo-vue-common";
const s = /* @__PURE__ */ t({
props: {
id: String
},
render() {
const r = o(this);
return e("span", {
id: this.$props.id,
class: "k-picker-wrap"
}, [r]);
}
});
export {
s as PickerWrap
};