{"version":3,"file":"history-input.vue2.mjs","sources":["../../../../../../src/components/my/input/history-input.vue"],"sourcesContent":["<template>\n    <my-input :model-value=\"modelValue\"\n              @update:model-value=\"(val:any)=>emit('update:modelValue', val)\"\n              @change=\"(val:any)=>changeWrapper(val, historyLabel)\" />\n</template>\n\n<script setup lang=\"ts\">\nimport { definePropType } from '@myprint/design/constants/common';\nimport { changeWrapper } from '@myprint/design/utils/historyUtil';\nimport MyInput from '@myprint/design/components/my/input/my-input.vue';\n\nconst emit = defineEmits(['update:modelValue']);\n\ndefineProps({\n    modelValue: {\n        type: definePropType<string | number | null | undefined>([\n            String,\n            Number,\n            Object\n        ]), default: null\n    },\n    historyLabel: String\n});\n\n</script>\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAWA,IAAA,MAAM,IAAO,GAAA,MAAA,CAAA;;;;;;;;;;;;;"}