Skip to content

Commit

Permalink
Merge branch '688-bug-pagination-buttons-are-inaccessible-in-mobile'
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Jan 14, 2023
2 parents 4186520 + ff1972d commit e9da096
Show file tree
Hide file tree
Showing 8 changed files with 202 additions and 202 deletions.
370 changes: 185 additions & 185 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "10.0.1",
"@rollup/plugin-terser": "0.2.1",
"@rollup/plugin-typescript": "11.0.0",
"@rollup/plugin-terser": "0.3.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.5",
Expand All @@ -36,38 +36,38 @@
"@types/react-datepicker": "4.8.0",
"@types/react-dom": "18.0.10",
"@types/react-window": "1.8.5",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.31.0",
"jest": "29.3.1",
"jest-mock-extended": "3.0.1",
"jest-environment-jsdom": "29.3.1",
"obsidian": "1.1.1",
"rollup": "3.9.1",
"rollup": "3.10.0",
"rollup-plugin-typescript2": "0.34.1",
"ts-jest": "29.0.3",
"ts-jest": "29.0.4",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"dependencies": {
"@emotion/styled": "11.10.5",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.3",
"@mui/material": "5.11.4",
"@popperjs/core": "2.11.6",
"@tanstack/match-sorter-utils": "8.7.2",
"@tanstack/react-table": "8.7.4",
"@tanstack/match-sorter-utils": "8.7.6",
"@tanstack/react-table": "8.7.6",
"eventemitter3": "5.0.0",
"fuse.js": "6.6.2",
"luxon": "3.2.1",
"monkey-around": "2.3.0",
"obsidian-dataview": "0.5.52",
"obsidian-dataview": "0.5.53",
"obsidian-projects-types": "0.7.1",
"react": "18.2.0",
"react-csv": "2.2.2",
"react-datepicker": "4.8.0",
"react-dom": "18.2.0",
"react-select": "5.7.0",
"react-window": "1.8.8",
"zustand": "4.2.0"
"zustand": "4.3.1"
}
}
2 changes: 1 addition & 1 deletion src/stateManagement/useAutomationStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AutomationState, TableActionResponse } from "cdm/TableStateInterface";
import { DatabaseView } from "DatabaseView";
import create from "zustand";
import { create } from "zustand";
import automation_state_actions from "stateManagement/automations/AutomationStateActions";

const useAutomationStore = (view: DatabaseView) => {
Expand Down
2 changes: 1 addition & 1 deletion src/stateManagement/useColumnsStore.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ColumnsState, TableActionResponse } from "cdm/TableStateInterface";
import { DatabaseView } from "DatabaseView";
import create from "zustand";
import { create } from "zustand";
import column_state_actions from "stateManagement/columns/ColumnsStateActions";

const useColumnsStore = (view: DatabaseView) => {
Expand Down
2 changes: 1 addition & 1 deletion src/stateManagement/useConfigStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FilterSettings, GlobalSettings, LocalSettings } from "cdm/SettingsModel
import { ConfigState, EphimeralSettings } from "cdm/TableStateInterface";
import { DatabaseView } from "DatabaseView";
import { EphimeralConfiguration } from "helpers/Constants";
import create from "zustand";
import { create } from "zustand";

const useConfigStore = (view: DatabaseView) => {
const { global_settings } = view.plugin.settings;
Expand Down
2 changes: 1 addition & 1 deletion src/stateManagement/useDataStore.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DataState, TableActionResponse } from "cdm/TableStateInterface";
import { DatabaseView } from "DatabaseView";
import create from "zustand";
import { create } from "zustand";
import data_state_actions from "stateManagement/data/DataStateActions";

const useDataStore = (view: DatabaseView) => {
Expand Down
2 changes: 1 addition & 1 deletion src/stateManagement/useRowTemplateStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { RowTemplateState } from "cdm/TableStateInterface";
import { DatabaseView } from "DatabaseView";
import { get_tfiles_from_folder } from "helpers/FileManagement";
import create from "zustand";
import { create } from "zustand";

const useRowTemplateStore = (view: DatabaseView) => {

Expand Down
2 changes: 1 addition & 1 deletion src/stateManagement/useSortingStore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { SortingState } from "@tanstack/react-table";
import { ColumnSortingState } from "cdm/TableStateInterface"
import { DatabaseView } from "DatabaseView";
import create from "zustand"
import { create } from "zustand"

const useSortingStore = (view: DatabaseView) => {
return create<ColumnSortingState>()(
Expand Down

0 comments on commit e9da096

Please sign in to comment.