tsondb 0.7.11 → 0.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ export const Git = () => {
14
14
  if (!client || !client.isRepo) {
15
15
  return null;
16
16
  }
17
- return (_jsxs(_Fragment, { children: [_jsxs(ModalDialog, { open: isOpen, class: "git", closedBy: "any", onClose: () => {
17
+ return (_jsxs(_Fragment, { children: [_jsxs(ModalDialog, { open: isOpen, class: "git" + (!isGitAlwaysOpen ? " git--no-sidebar" : ""), closedBy: "any", onClose: () => {
18
18
  setIsOpen(false);
19
19
  }, children: [_jsxs("header", { children: [_jsx("h2", { children: (() => {
20
20
  switch (mode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsondb",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Lukas Obermann",
@@ -1081,7 +1081,7 @@ dialog.git {
1081
1081
  }
1082
1082
 
1083
1083
  @media (min-width: 80rem) {
1084
- dialog.git header .git__tab--files {
1084
+ dialog.git:not(.git--no-sidebar) header .git__tab--files {
1085
1085
  display: none;
1086
1086
  }
1087
1087
  }