Skip to content

Commit b0771c5

Browse files
committed
chore: update dependencies
1 parent b2789c1 commit b0771c5

File tree

121 files changed

+2081
-1961
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+2081
-1961
lines changed

example/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
"@rotki/ui-library": "workspace:*",
1717
"pinia": "3.0.3",
1818
"tailwindcss": "3.4.17",
19-
"vue": "3.5.16",
20-
"vue-i18n": "11.1.5",
19+
"vue": "3.5.19",
20+
"vue-i18n": "11.1.11",
2121
"vue-router": "4.5.1"
2222
},
2323
"devDependencies": {
2424
"@tsconfig/node22": "22.0.2",
25-
"@types/node": "22.15.30",
26-
"@vitejs/plugin-vue": "5.2.4",
25+
"@types/node": "22.17.2",
26+
"@vitejs/plugin-vue": "6.0.1",
2727
"@vue/tsconfig": "0.7.0",
2828
"autoprefixer": "10.4.21",
29-
"cypress": "14.4.1",
30-
"postcss": "8.5.4",
31-
"start-server-and-test": "2.0.12",
32-
"typescript": "5.8.3",
33-
"unplugin-auto-import": "19.3.0",
34-
"vite": "6.3.5",
35-
"vue-tsc": "2.2.10"
29+
"cypress": "15.0.0",
30+
"postcss": "8.5.6",
31+
"start-server-and-test": "2.0.13",
32+
"typescript": "5.9.2",
33+
"unplugin-auto-import": "20.0.0",
34+
"vite": "7.1.3",
35+
"vue-tsc": "3.0.6"
3636
}
3737
}

example/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script lang="ts" setup>
2+
import { RouterView } from 'vue-router';
23
import AppFooter from '@/components/AppFooter.vue';
34
import AppFootNav from '@/components/AppFootNav.vue';
45
import AppNav from '@/components/AppNav.vue';
56
import AppSideNav from '@/components/AppSideNav.vue';
6-
import { RouterView } from 'vue-router';
77
88
const navigation = ref([
99
{

example/src/components/buttons/ButtonGroups.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang='ts'>
2-
import ComponentGroup from '@/components/ComponentGroup.vue';
3-
import { type ButtonGroupData, generateButtonGroupData } from '@/utils/buttons';
42
import { RuiButton, RuiButtonGroup, RuiIcon } from '@rotki/ui-library';
53
import { objectOmit } from '@vueuse/shared';
4+
import ComponentGroup from '@/components/ComponentGroup.vue';
5+
import { type ButtonGroupData, generateButtonGroupData } from '@/utils/buttons';
66
77
const attributes: Partial<ButtonGroupData>[] = [
88
{},

example/src/components/buttons/MultiToggleButtonGroups.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang='ts'>
22
import type { ButtonGroupData } from '@/utils/buttons';
3-
import ComponentGroup from '@/components/ComponentGroup.vue';
43
import { RuiButton, RuiButtonGroup, RuiIcon } from '@rotki/ui-library';
54
import { objectOmit } from '@vueuse/shared';
5+
import ComponentGroup from '@/components/ComponentGroup.vue';
66
77
const attributes: Partial<ButtonGroupData>[] = [
88
{ activeColor: 'warning', required: true },

example/src/components/buttons/SingleButtons.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang='ts' setup>
2-
import ComponentGroup from '@/components/ComponentGroup.vue';
32
import { type ButtonProps, contextColors, type ContextColorsType, RuiButton, RuiIcon, type RuiIcons } from '@rotki/ui-library';
3+
import ComponentGroup from '@/components/ComponentGroup.vue';
44
55
interface ExtraProperties {
66
clicks: number;

example/src/components/buttons/ToggleButtonGroups.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang='ts'>
2-
import ComponentGroup from '@/components/ComponentGroup.vue';
3-
import { type ButtonGroupData, generateButtonGroupData } from '@/utils/buttons';
42
import { RuiButton, RuiButtonGroup, RuiIcon } from '@rotki/ui-library';
53
import { objectOmit } from '@vueuse/shared';
4+
import ComponentGroup from '@/components/ComponentGroup.vue';
5+
import { type ButtonGroupData, generateButtonGroupData } from '@/utils/buttons';
66
77
const attributes: Partial<ButtonGroupData>[] = [
88
{ activeColor: 'warning' },

example/src/components/tables/ApiTables.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<script lang="ts" setup>
22
import type { ExtendedUser, NormalizedUser } from '@/data/tables';
3-
import { columns, fixedColumns, sampleData } from '@/data/table-configs';
4-
import { fakeFetch } from '@/utils/table-utils';
53
import {
64
type DataTableOptions,
75
type DataTableProps,
@@ -12,6 +10,8 @@ import {
1210
} from '@rotki/ui-library/components';
1311
import { objectOmit, useDebounceFn } from '@vueuse/shared';
1412
import { ref } from 'vue';
13+
import { columns, fixedColumns, sampleData } from '@/data/table-configs';
14+
import { fakeFetch } from '@/utils/table-utils';
1515
1616
const props = defineProps<{
1717
users: NormalizedUser[];

example/src/components/tables/BasicTables.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script lang="ts" setup>
22
import type { ExtendedUser } from '@/data/tables';
3-
import { columns, fixedColumns, fixedRows } from '@/data/table-configs';
43
import {
54
type DataTableProps,
65
RuiButton,
@@ -10,6 +9,7 @@ import {
109
} from '@rotki/ui-library/components';
1110
import { objectOmit } from '@vueuse/shared';
1211
import { ref } from 'vue';
12+
import { columns, fixedColumns, fixedRows } from '@/data/table-configs';
1313
1414
const datatables = ref<{
1515
title: string;

example/src/components/tables/EmptyTables.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<script lang="ts" setup>
22
import type { ExtendedUser } from '@/data/tables';
3-
import { fixedColumns, fixedRows } from '@/data/table-configs';
4-
import { removeRow } from '@/utils/table-utils';
53
import {
64
type DataTableProps,
75
RuiButton,
@@ -10,6 +8,8 @@ import {
108
} from '@rotki/ui-library/components';
119
import { objectOmit } from '@vueuse/shared';
1210
import { ref } from 'vue';
11+
import { fixedColumns, fixedRows } from '@/data/table-configs';
12+
import { removeRow } from '@/utils/table-utils';
1313
1414
const emptyTables = ref<{
1515
title: string;

example/src/components/tables/ExpandableTables.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<script lang="ts" setup>
22
import type { ExtendedUser } from '@/data/tables';
3-
import { fixedColumns, fixedRows } from '@/data/table-configs';
4-
import { isExpanded, toggleRow } from '@/utils/table-utils';
53
import {
64
type DataTableProps,
75
RuiButton,
@@ -12,6 +10,8 @@ import {
1210
} from '@rotki/ui-library/components';
1311
import { objectOmit } from '@vueuse/shared';
1412
import { ref } from 'vue';
13+
import { fixedColumns, fixedRows } from '@/data/table-configs';
14+
import { isExpanded, toggleRow } from '@/utils/table-utils';
1515
1616
const expandableTables = ref<{
1717
title: string;

0 commit comments

Comments
 (0)