@mulmoclaude/accounting-plugin 0.3.1 → 0.3.3
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.
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server.cjs +7 -6
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +7 -7
- package/dist/server.js.map +1 -1
- package/dist/style.css +6 -5
- package/package.json +9 -9
package/dist/style.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.3.
|
|
1
|
+
/*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties {
|
|
3
3
|
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
|
4
4
|
*, :before, :after, ::backdrop {
|
|
@@ -38,8 +38,9 @@
|
|
|
38
38
|
|
|
39
39
|
@layer theme {
|
|
40
40
|
:root, :host {
|
|
41
|
-
--font-sans:
|
|
42
|
-
"
|
|
41
|
+
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
|
|
42
|
+
"Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
|
43
|
+
"Segoe UI Symbol", "Noto Color Emoji";
|
|
43
44
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
44
45
|
"Courier New", monospace;
|
|
45
46
|
--color-red-300: oklch(80.8% .114 19.571);
|
|
@@ -104,7 +105,7 @@
|
|
|
104
105
|
-webkit-text-size-adjust: 100%;
|
|
105
106
|
tab-size: 4;
|
|
106
107
|
line-height: 1.5;
|
|
107
|
-
font-family: var(--default-font-family,
|
|
108
|
+
font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
108
109
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
109
110
|
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
110
111
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -170,7 +171,7 @@
|
|
|
170
171
|
border-collapse: collapse;
|
|
171
172
|
}
|
|
172
173
|
|
|
173
|
-
:-moz-focusring {
|
|
174
|
+
:-moz-focusring:where(:not(iframe)) {
|
|
174
175
|
outline: auto;
|
|
175
176
|
}
|
|
176
177
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mulmoclaude/accounting-plugin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Double-entry accounting plugin for MulmoClaude and MulmoTerminal. Three surfaces: ./shared (isomorphic enums/meta, browser-safe), ./vue (chat View/Preview + canvas app), ./server (createAccountingRouter — the workspace-file-backed backend, wired via dependency injection so it pulls zero host-only infra).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -56,19 +56,19 @@
|
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@tailwindcss/vite": "^4.3.
|
|
59
|
+
"@tailwindcss/vite": "^4.3.3",
|
|
60
60
|
"@types/express": "^5.0.6",
|
|
61
|
-
"@types/node": "^26.
|
|
62
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
61
|
+
"@types/node": "^26.1.1",
|
|
62
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
63
63
|
"express": "^5.2.1",
|
|
64
64
|
"gui-chat-protocol": "0.4.0",
|
|
65
|
-
"tailwindcss": "^4.3.
|
|
66
|
-
"tsx": "^4.
|
|
65
|
+
"tailwindcss": "^4.3.3",
|
|
66
|
+
"tsx": "^4.23.1",
|
|
67
67
|
"typescript": "^6.0.3",
|
|
68
|
-
"vite": "^8.1.
|
|
69
|
-
"vue": "^3.5.
|
|
68
|
+
"vite": "^8.1.5",
|
|
69
|
+
"vue": "^3.5.40",
|
|
70
70
|
"vue-i18n": "11.4.6",
|
|
71
|
-
"vue-tsc": "^3.
|
|
71
|
+
"vue-tsc": "^3.3.7"
|
|
72
72
|
},
|
|
73
73
|
"license": "MIT"
|
|
74
74
|
}
|