diff --git a/photon-client/src/components/Dashboard/CamerasCard.vue b/photon-client/src/components/Dashboard/CamerasCard.vue index 924dd541c6..392e64e671 100644 --- a/photon-client/src/components/Dashboard/CamerasCard.vue +++ b/photon-client/src/components/Dashboard/CamerasCard.vue @@ -7,6 +7,7 @@ import {PipelineType} from "@/types/PipelineTypes"; import PhotonCameraStream from "@/components/app/photon-camera-stream.vue"; defineProps<{ + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number[] }>(); diff --git a/photon-client/src/components/Dashboard/StreamConfigCard.vue b/photon-client/src/components/Dashboard/StreamConfigCard.vue index 65f14fe495..01f395e016 100644 --- a/photon-client/src/components/Dashboard/StreamConfigCard.vue +++ b/photon-client/src/components/Dashboard/StreamConfigCard.vue @@ -3,6 +3,7 @@ import {computed, defineEmits, defineProps} from "vue"; import {useCameraSettingsStore} from "@/stores/settings/CameraSettingsStore"; const props = defineProps<{ + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number[] }>(); diff --git a/photon-client/src/components/common/cv-input.vue b/photon-client/src/components/common/cv-input.vue index c725091e0b..fa41d52aac 100644 --- a/photon-client/src/components/common/cv-input.vue +++ b/photon-client/src/components/common/cv-input.vue @@ -5,6 +5,7 @@ import TooltippedLabel from "@/components/common/cv-tooltipped-label.vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: string, disabled?: boolean, errorMessage?: string, diff --git a/photon-client/src/components/common/cv-number-input.vue b/photon-client/src/components/common/cv-number-input.vue index 898769c22e..bba6e94cb3 100644 --- a/photon-client/src/components/common/cv-number-input.vue +++ b/photon-client/src/components/common/cv-number-input.vue @@ -5,6 +5,7 @@ import { computed, defineEmits, defineProps } from "vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number, disabled?: boolean, labelCols?: number, diff --git a/photon-client/src/components/common/cv-radio.vue b/photon-client/src/components/common/cv-radio.vue index 3da8537890..8053f363a3 100644 --- a/photon-client/src/components/common/cv-radio.vue +++ b/photon-client/src/components/common/cv-radio.vue @@ -5,6 +5,7 @@ import TooltippedLabel from "@/components/common/cv-tooltipped-label.vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number, disabled?: boolean, inputCols?: number, diff --git a/photon-client/src/components/common/cv-range-slider.vue b/photon-client/src/components/common/cv-range-slider.vue index 4c673e497d..353d3ab149 100644 --- a/photon-client/src/components/common/cv-range-slider.vue +++ b/photon-client/src/components/common/cv-range-slider.vue @@ -5,6 +5,7 @@ import TooltippedLabel from "@/components/common/cv-tooltipped-label.vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: [number, number], min: number, max: number, diff --git a/photon-client/src/components/common/cv-select.vue b/photon-client/src/components/common/cv-select.vue index b25ebde107..487d96d0cf 100644 --- a/photon-client/src/components/common/cv-select.vue +++ b/photon-client/src/components/common/cv-select.vue @@ -11,6 +11,7 @@ const props = withDefaults(defineProps<{ label?: string, tooltip?: string, selectCols?: number, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number, disabled?: boolean, items: string[] | number[] | SelectItem[] diff --git a/photon-client/src/components/common/cv-slider.vue b/photon-client/src/components/common/cv-slider.vue index 9642f13876..d37b6a415e 100644 --- a/photon-client/src/components/common/cv-slider.vue +++ b/photon-client/src/components/common/cv-slider.vue @@ -5,6 +5,7 @@ import TooltippedLabel from "@/components/common/cv-tooltipped-label.vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: number, min: number, max: number, diff --git a/photon-client/src/components/common/cv-switch.vue b/photon-client/src/components/common/cv-switch.vue index 29fd4d495d..0a7bce114e 100644 --- a/photon-client/src/components/common/cv-switch.vue +++ b/photon-client/src/components/common/cv-switch.vue @@ -5,6 +5,7 @@ import { computed, defineEmits, defineProps } from "vue"; const props = withDefaults(defineProps<{ label?: string, tooltip?: string, + // TODO fully update v-model usage in custom components on Vue3 update modelValue: boolean, disabled?: boolean, labelCols?: number,