Skip to content

DataDeck 1.7.1

Latest

Choose a tag to compare

@SVM0N SVM0N released this 18 Jul 05:33

Compliance/bugfix release ahead of the community-plugin submission — no user-facing feature changes.

Fixed

  • Resolved the automated review's !important warnings by rewriting selectors for higher specificity instead (mobile toolbar search, the ⚙ Config column table, a checkbox-column header/cell pairing, a couple of Kanban/select text-decoration rules). A handful of !important uses are kept deliberately — they override Obsidian's own core .modal chrome, which loads after the plugin and isn't ours to control via specificity alone.
  • Replaced a :has() selector (flagged for perf) with a JS-toggled class on the root element.
  • Rewrote two duplicate-property vh/dvh fallback chains using @supports instead, so mobile modal sizing degrades the same way on older browsers without tripping the "duplicate declaration" check.
  • TFile casts now go through a real instanceof TFile check first; the duck-typed fallback (needed for cross-bundle identity in the smoke tests) is unchanged but no longer flagged.

Internal

  • Bumped the obsidian devDependency to pick up current API types.