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

Commit 38f5033

Browse files
authored
Merge pull request #556 from trey-wallis/dev
6.18.1
2 parents b02566c + a3847bc commit 38f5033

File tree

118 files changed

+329
-330
lines changed

Some content is hidden

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

118 files changed

+329
-330
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"authorUrl": "https://github.com/trey-wallis",
88
"isDesktopOnly": false,
99
"fundingUrl": "https://www.buymeacoffee.com/treywallis",
10-
"version": "6.18.1"
10+
"version": "6.18.2"
1111
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-notion-like-tables",
3-
"version": "6.18.1",
3+
"version": "6.18.2",
44
"description": "Notion-like tables for Obsidian.md",
55
"main": "main.js",
66
"scripts": {

src/data/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const CURRENT_PLUGIN_VERSION = "6.18.1";
1+
export const CURRENT_PLUGIN_VERSION = "6.18.2";
22

33
export const DEFAULT_TABLE_NAME = "Untitled";
44

src/data/serialize-table-state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
Column,
77
TableState,
88
Tag,
9-
} from "../shared/types/types";
9+
} from "../shared/types";
1010
import { TableState630 } from "src/shared/types/types-6.3.0";
1111
import {
1212
GeneralFunction670,

src/data/table-state-factory.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ import {
1919
SortDir,
2020
TableState,
2121
Tag,
22-
} from "../shared/types/types";
22+
} from "../shared/types";
2323

2424
import { v4 as uuidv4 } from "uuid";
2525
import { CHECKBOX_MARKDOWN_UNCHECKED } from "src/shared/table-state/constants";
26-
import { Color } from "src/shared/types/types";
26+
import { Color } from "src/shared/types";
2727

2828
export const createColumn = (options?: { cellType?: CellType }): Column => {
2929
const { cellType = CellType.TEXT } = options || {};

src/obsidian-shim/build/export-events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { exportToCSV } from "src/shared/export/export-to-csv";
1010
import { exportToMarkdown } from "src/shared/export/export-to-markdown";
1111
import { ExportType } from "src/shared/export/types";
12-
import { TableState } from "src/shared/types/types";
12+
import { TableState } from "src/shared/types";
1313
import { useMountState } from "./mount-context";
1414

1515
export const useExportEvents = (state: TableState) => {

src/obsidian-shim/build/notion-like-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import MountProvider from "./mount-context";
2-
import { TableState } from "src/shared/types/types";
2+
import { TableState } from "src/shared/types";
33
import TableWrapper from "src/react/table-app";
44
import { WorkspaceLeaf } from "obsidian";
55
import { Store } from "@reduxjs/toolkit";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TableState } from "src/shared/types/types";
1+
import { TableState } from "src/shared/types";
22

33
// eslint-disable-next-line @typescript-eslint/no-unused-vars
44
export const useExportEvents = (_tableState: TableState) => {};

src/obsidian-shim/development/notion-like-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import MountProvider from "./mount-context";
2-
import { TableState } from "src/shared/types/types";
2+
import { TableState } from "src/shared/types";
33
import TableWrapper from "src/react/table-app";
44
import { Store } from "@reduxjs/toolkit";
55

src/obsidian/nlt-embedded-plugin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { deserializeTableState } from "src/data/serialize-table-state";
77
import NotionLikeTable from "src/obsidian-shim/build/notion-like-table";
88
import { store } from "src/redux/global/store";
99
import { EVENT_REFRESH_TABLES } from "src/shared/events";
10-
import { TableState } from "src/shared/types/types";
10+
import { TableState } from "src/shared/types";
1111
import _ from "lodash";
1212
import {
1313
findEmbeddedTableFile,

0 commit comments

Comments
 (0)