-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ | |
[submodule "packages/expression"] | ||
path = packages/expression | ||
url = [email protected]:Obsidian-OS/expressions.git | ||
[submodule "packages/logicx"] | ||
path = packages/logicx | ||
url = [email protected]:Obsidian-OS/logicx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule expression
updated
3 files
+4 −1 | Cargo.toml | |
+1 −1 | expression-js/README.md | |
+2 −2 | expression-js/build.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
.logicx-root, .logicx-root * { | ||
--toolbar-width: auto; | ||
--toolbar-height: auto; | ||
} | ||
|
||
.logicx-root { | ||
display: grid; | ||
|
||
grid-template-rows: var(--toolbar-height) 1fr var(--toolbar-height); | ||
grid-template-columns: var(--toolbar-width) 1fr var(--toolbar-width); | ||
|
||
grid-template-areas: | ||
"top top top" | ||
"left viewport right" | ||
"left bottom right"; | ||
|
||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.logicx-viewport { | ||
grid-area: viewport; | ||
} | ||
|
||
.logicx-toolbar { | ||
display: flex; | ||
|
||
align-items: center; | ||
justify-content: flex-start; | ||
} | ||
|
||
.logicx-toolbar.vertical { | ||
flex-direction: column; | ||
} | ||
|
||
.logicx-toolbar.horizontal { | ||
flex-direction: row; | ||
} | ||
|
||
.logicx-toolbar.left { | ||
grid-area: left | ||
} | ||
|
||
.logicx-toolbar.right { | ||
grid-area: right | ||
} | ||
|
||
.logicx-toolbar.top { | ||
grid-area: top | ||
} | ||
|
||
.logicx-toolbar.bottom { | ||
grid-area: bottom | ||
} |
Submodule spreadsheet
updated
31 files
+10 −0 | build.js | |
+0 −0 | inline.tsx | |
+11 −0 | layout.css | |
+6 −3 | package.json | |
+0 −215 | src/.formula.tsx | |
+2 −2 | src/actions.ts | |
+0 −18 | src/components/formulaEditor.tsx | |
+124 −72 | src/components/table.tsx | |
+2 −2 | src/components/toolbar.tsx | |
+64 −0 | src/components/valueEditor.old.tsx | |
+0 −52 | src/components/valueEditor.tsx | |
+112 −0 | src/contextMenu.ts | |
+273 −0 | src/csv.ts | |
+75 −0 | src/inline.tsx | |
+25 −2 | src/main.ts | |
+46 −0 | src/renameColumn.tsx | |
+179 −0 | src/selection.tsx | |
+4 −1 | src/settings/settingsTab.tsx | |
+269 −390 | src/spreadsheet.tsx | |
+0 −20 | src/units.ts | |
+0 −450 | src/viewport.tsx | |
+26 −51 | styles.css | |
+24 −0 | table.css | |
+2 −1 | tsconfig.json | |
+10 −0 | unitConverter/test.js | |
+73 −0 | unitConverter/unit.ts | |
+30 −0 | unitConverter/units.ts | |
+1 −0 | units/currency.json | |
+19 −0 | units/multipliers.json | |
+1 −1 | units/physics.json | |
+12 −12 | vars.md |