Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit e9da096

Browse files
committed
Merge branch '688-bug-pagination-buttons-are-inaccessible-in-mobile'
2 parents 4186520 + ff1972d commit e9da096

File tree

8 files changed

+202
-202
lines changed

8 files changed

+202
-202
lines changed

package-lock.json

Lines changed: 185 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"@rollup/plugin-json": "6.0.0",
2525
"@rollup/plugin-node-resolve": "15.0.1",
2626
"@rollup/plugin-replace": "5.0.2",
27-
"@rollup/plugin-typescript": "10.0.1",
28-
"@rollup/plugin-terser": "0.2.1",
27+
"@rollup/plugin-typescript": "11.0.0",
28+
"@rollup/plugin-terser": "0.3.0",
2929
"@testing-library/jest-dom": "5.16.5",
3030
"@testing-library/react": "13.4.0",
3131
"@types/jest": "29.2.5",
@@ -36,38 +36,38 @@
3636
"@types/react-datepicker": "4.8.0",
3737
"@types/react-dom": "18.0.10",
3838
"@types/react-window": "1.8.5",
39-
"@typescript-eslint/eslint-plugin": "5.48.0",
40-
"@typescript-eslint/parser": "5.48.0",
39+
"@typescript-eslint/eslint-plugin": "5.48.1",
40+
"@typescript-eslint/parser": "5.48.1",
4141
"eslint": "8.31.0",
4242
"jest": "29.3.1",
4343
"jest-mock-extended": "3.0.1",
4444
"jest-environment-jsdom": "29.3.1",
4545
"obsidian": "1.1.1",
46-
"rollup": "3.9.1",
46+
"rollup": "3.10.0",
4747
"rollup-plugin-typescript2": "0.34.1",
48-
"ts-jest": "29.0.3",
48+
"ts-jest": "29.0.4",
4949
"tslib": "2.4.1",
5050
"typescript": "4.9.4"
5151
},
5252
"dependencies": {
5353
"@emotion/styled": "11.10.5",
5454
"@mui/icons-material": "5.11.0",
55-
"@mui/material": "5.11.3",
55+
"@mui/material": "5.11.4",
5656
"@popperjs/core": "2.11.6",
57-
"@tanstack/match-sorter-utils": "8.7.2",
58-
"@tanstack/react-table": "8.7.4",
57+
"@tanstack/match-sorter-utils": "8.7.6",
58+
"@tanstack/react-table": "8.7.6",
5959
"eventemitter3": "5.0.0",
6060
"fuse.js": "6.6.2",
6161
"luxon": "3.2.1",
6262
"monkey-around": "2.3.0",
63-
"obsidian-dataview": "0.5.52",
63+
"obsidian-dataview": "0.5.53",
6464
"obsidian-projects-types": "0.7.1",
6565
"react": "18.2.0",
6666
"react-csv": "2.2.2",
6767
"react-datepicker": "4.8.0",
6868
"react-dom": "18.2.0",
6969
"react-select": "5.7.0",
7070
"react-window": "1.8.8",
71-
"zustand": "4.2.0"
71+
"zustand": "4.3.1"
7272
}
7373
}

src/stateManagement/useAutomationStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { AutomationState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import automation_state_actions from "stateManagement/automations/AutomationStateActions";
55

66
const useAutomationStore = (view: DatabaseView) => {

src/stateManagement/useColumnsStore.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ColumnsState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import column_state_actions from "stateManagement/columns/ColumnsStateActions";
55

66
const useColumnsStore = (view: DatabaseView) => {

src/stateManagement/useConfigStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { FilterSettings, GlobalSettings, LocalSettings } from "cdm/SettingsModel
22
import { ConfigState, EphimeralSettings } from "cdm/TableStateInterface";
33
import { DatabaseView } from "DatabaseView";
44
import { EphimeralConfiguration } from "helpers/Constants";
5-
import create from "zustand";
5+
import { create } from "zustand";
66

77
const useConfigStore = (view: DatabaseView) => {
88
const { global_settings } = view.plugin.settings;

src/stateManagement/useDataStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DataState, TableActionResponse } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
3-
import create from "zustand";
3+
import { create } from "zustand";
44
import data_state_actions from "stateManagement/data/DataStateActions";
55

66
const useDataStore = (view: DatabaseView) => {

src/stateManagement/useRowTemplateStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { RowTemplateState } from "cdm/TableStateInterface";
22
import { DatabaseView } from "DatabaseView";
33
import { get_tfiles_from_folder } from "helpers/FileManagement";
4-
import create from "zustand";
4+
import { create } from "zustand";
55

66
const useRowTemplateStore = (view: DatabaseView) => {
77

src/stateManagement/useSortingStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { SortingState } from "@tanstack/react-table";
22
import { ColumnSortingState } from "cdm/TableStateInterface"
33
import { DatabaseView } from "DatabaseView";
4-
import create from "zustand"
4+
import { create } from "zustand"
55

66
const useSortingStore = (view: DatabaseView) => {
77
return create<ColumnSortingState>()(

0 commit comments

Comments
 (0)