Skip to content

Commit

Permalink
Vuetify upgrade and add cell menu fix (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carson-Shaar authored Mar 4, 2024
1 parent 1e879c4 commit 84cde7e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = zero-true
description = A collaborative notebook built for data scientists
long_description = file: README.md
long_description_content_type = text/markdown
version = 0.0.dev61
version = 0.0.dev62


[options]
Expand Down
2 changes: 1 addition & 1 deletion zt_frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"vue": "^3.2.0",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.2.5",
"vuetify": "^3.0.0",
"vuetify": "^3.5.7",
"webfontloader": "^1.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion zt_frontend/src/components/AddCell.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-menu transition="scale-transition">
<v-menu transition="scale-transition" minWidth="0" target="cursor">
<template v-slot:activator="{ props }">
<div v-bind="cellId ? { ...props, id: 'addCell' + cellId } : props" class="activator-area">
<div class="divider">
Expand Down
2 changes: 1 addition & 1 deletion zt_frontend/src/components/CodeComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ import {
VAutocomplete,
VCard,
} from "vuetify/lib/components/index.mjs";
import { VDataTable } from "vuetify/labs/VDataTable";
import { VDataTable } from "vuetify/components/VDataTable";
import { CodeCell, Layout } from "@/types/notebook";
import LayoutComponent from "@/components/LayoutComponent.vue";
import TextComponent from "@/components/TextComponent.vue"
Expand Down
2 changes: 1 addition & 1 deletion zt_frontend/src/components/LayoutComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ import {
VAutocomplete,
VCard,
} from "vuetify/lib/components/index.mjs";
import { VDataTable } from "vuetify/labs/VDataTable";
import { VDataTable } from "vuetify/components/VDataTable";
import { Column, ZTComponent, Row } from "@/types/notebook";
import PlotlyPlot from "@/components/PlotlyComponent.vue";
import TextComponent from "@/components/TextComponent.vue"
Expand Down
2 changes: 1 addition & 1 deletion zt_frontend/src/components/SQLComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<script lang="ts">
import type { PropType, ShallowRef } from "vue";
import { shallowRef } from "vue";
import { VDataTable } from "vuetify/labs/VDataTable";
import { VDataTable } from "vuetify/components/VDataTable";
import { Codemirror } from "vue-codemirror";
import { sql } from "@codemirror/lang-sql";
import { oneDark } from "@codemirror/theme-one-dark";
Expand Down
8 changes: 4 additions & 4 deletions zt_frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1701,10 +1701,10 @@ vue@^3.2.0:
"@vue/server-renderer" "3.3.4"
"@vue/shared" "3.3.4"

vuetify@^3.0.0:
version "3.3.20"
resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.3.20.tgz#1362e121b49730bac6e96880b23c1e8da28ae0ba"
integrity sha512-7z3rv1j94WXO1y9CYQXygtCuct0bJNPao0T5no95c++atvPf5+WfgvnYK+XrMyjq4Y0xe6z5mhJfv9taeVelpQ==
vuetify@^3.5.7:
version "3.5.7"
resolved "https://registry.yarnpkg.com/vuetify/-/vuetify-3.5.7.tgz#9dfa027a582aa7d2211c8019c33ef7cadd66c5c0"
integrity sha512-BFj/puY8odRwY50pRfE1gpawnxreY8PtPb/tDw3oumxSLXhoXw8q6YLA6QUvqZrYEzcYpojxZIYhNWUky2KN1w==

w3c-keyname@^2.2.4:
version "2.2.8"
Expand Down

0 comments on commit 84cde7e

Please sign in to comment.