Skip to content

Commit

Permalink
Add docs for vue3 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Jul 9, 2023
1 parent 3380246 commit af4d339
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions photon-client/src/components/Dashboard/CamerasCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
}>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
}>();
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-number-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-radio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-range-slider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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[]
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-slider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions photon-client/src/components/common/cv-switch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit af4d339

Please sign in to comment.