@mulmoclaude/accounting-plugin 0.1.1 → 0.2.0
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/style.css +10 -10
- package/dist/vue/hostContext.d.ts +8 -0
- package/dist/vue/hostContext.d.ts.map +1 -1
- package/dist/vue/index.d.ts +1 -1
- package/dist/vue/index.d.ts.map +1 -1
- package/dist/vue/lang/de.d.ts +4 -0
- package/dist/vue/lang/de.d.ts.map +1 -0
- package/dist/vue/lang/en.d.ts +220 -0
- package/dist/vue/lang/en.d.ts.map +1 -0
- package/dist/vue/lang/es.d.ts +4 -0
- package/dist/vue/lang/es.d.ts.map +1 -0
- package/dist/vue/lang/fr.d.ts +4 -0
- package/dist/vue/lang/fr.d.ts.map +1 -0
- package/dist/vue/lang/index.d.ts +233 -0
- package/dist/vue/lang/index.d.ts.map +1 -0
- package/dist/vue/lang/ja.d.ts +4 -0
- package/dist/vue/lang/ja.d.ts.map +1 -0
- package/dist/vue/lang/ko.d.ts +4 -0
- package/dist/vue/lang/ko.d.ts.map +1 -0
- package/dist/vue/lang/ptBR.d.ts +4 -0
- package/dist/vue/lang/ptBR.d.ts.map +1 -0
- package/dist/vue/lang/zh.d.ts +4 -0
- package/dist/vue/lang/zh.d.ts.map +1 -0
- package/dist/vue.cjs +1779 -19
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.js +1781 -21
- package/dist/vue.js.map +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1205,12 +1205,12 @@
|
|
|
1205
1205
|
step attribute still controls validation; this is purely UI.
|
|
1206
1206
|
Accounting amount fields don't benefit from a spinner — users
|
|
1207
1207
|
type the number and the up/down arrows just clutter the row. */
|
|
1208
|
-
input[type="number"][data-v-
|
|
1209
|
-
input[type="number"][data-v-
|
|
1208
|
+
input[type="number"][data-v-ba23c744]::-webkit-outer-spin-button,
|
|
1209
|
+
input[type="number"][data-v-ba23c744]::-webkit-inner-spin-button {
|
|
1210
1210
|
-webkit-appearance: none;
|
|
1211
1211
|
margin: 0;
|
|
1212
1212
|
}
|
|
1213
|
-
input[type="number"][data-v-
|
|
1213
|
+
input[type="number"][data-v-ba23c744] {
|
|
1214
1214
|
-moz-appearance: textfield;
|
|
1215
1215
|
appearance: textfield;
|
|
1216
1216
|
}
|
|
@@ -1222,17 +1222,17 @@ input[type="number"][data-v-22376c52] {
|
|
|
1222
1222
|
left/right/bottom, so together they read as one rectangle around
|
|
1223
1223
|
the selection. Color matches the focus-ring blue used elsewhere
|
|
1224
1224
|
in this list. */
|
|
1225
|
-
.row-selected > td[data-v-
|
|
1225
|
+
.row-selected > td[data-v-7446c210] {
|
|
1226
1226
|
background-color: rgb(239 246 255); /* tailwind blue-50 */
|
|
1227
1227
|
border-top: 2px solid rgb(59 130 246); /* tailwind blue-500 */
|
|
1228
1228
|
}
|
|
1229
|
-
.row-selected > td[data-v-
|
|
1229
|
+
.row-selected > td[data-v-7446c210]:first-child {
|
|
1230
1230
|
border-left: 2px solid rgb(59 130 246);
|
|
1231
1231
|
}
|
|
1232
|
-
.row-selected > td[data-v-
|
|
1232
|
+
.row-selected > td[data-v-7446c210]:last-child {
|
|
1233
1233
|
border-right: 2px solid rgb(59 130 246);
|
|
1234
1234
|
}
|
|
1235
|
-
.detail-selected > td[data-v-
|
|
1235
|
+
.detail-selected > td[data-v-7446c210] {
|
|
1236
1236
|
background-color: rgb(239 246 255);
|
|
1237
1237
|
border-left: 2px solid rgb(59 130 246);
|
|
1238
1238
|
border-right: 2px solid rgb(59 130 246);
|
|
@@ -1243,12 +1243,12 @@ input[type="number"][data-v-22376c52] {
|
|
|
1243
1243
|
step attribute still controls validation; this is purely UI.
|
|
1244
1244
|
Accounting amount fields don't benefit from a spinner — users
|
|
1245
1245
|
type the number and the up/down arrows just clutter the row. */
|
|
1246
|
-
input[type="number"][data-v-
|
|
1247
|
-
input[type="number"][data-v-
|
|
1246
|
+
input[type="number"][data-v-530643ac]::-webkit-outer-spin-button,
|
|
1247
|
+
input[type="number"][data-v-530643ac]::-webkit-inner-spin-button {
|
|
1248
1248
|
-webkit-appearance: none;
|
|
1249
1249
|
margin: 0;
|
|
1250
1250
|
}
|
|
1251
|
-
input[type="number"][data-v-
|
|
1251
|
+
input[type="number"][data-v-530643ac] {
|
|
1252
1252
|
-moz-appearance: textfield;
|
|
1253
1253
|
appearance: textfield;
|
|
1254
1254
|
}
|
|
@@ -17,9 +17,14 @@ export type AccountingApiCall = <T = unknown>(path: string, opts: {
|
|
|
17
17
|
}) => Promise<ApiResult<T>>;
|
|
18
18
|
/** Pub/sub seam — structurally compatible with `usePubSub().subscribe`. */
|
|
19
19
|
export type AccountingSubscribe = (channel: string, handler: (payload: unknown) => void) => () => void;
|
|
20
|
+
/** Locale seam — the host's active i18n locale tag (e.g. "en", "ja"), read
|
|
21
|
+
* reactively. The plugin owns a self-contained vue-i18n instance and mirrors
|
|
22
|
+
* this tag onto it, so it shares NO i18n resources with the host. */
|
|
23
|
+
export type AccountingLocaleTag = () => string;
|
|
20
24
|
export interface AccountingHostContext {
|
|
21
25
|
apiCall: AccountingApiCall;
|
|
22
26
|
subscribe: AccountingSubscribe;
|
|
27
|
+
localeTag: AccountingLocaleTag;
|
|
23
28
|
}
|
|
24
29
|
/** Called once by the host before any accounting View mounts. */
|
|
25
30
|
export declare function configureAccountingHost(context: AccountingHostContext): void;
|
|
@@ -28,4 +33,7 @@ export declare function hostApiCall<T = unknown>(path: string, opts: {
|
|
|
28
33
|
body?: unknown;
|
|
29
34
|
}): Promise<ApiResult<T>>;
|
|
30
35
|
export declare function hostSubscribe(channel: string, handler: (payload: unknown) => void): () => void;
|
|
36
|
+
/** The host's active i18n locale tag, read reactively by the plugin's own
|
|
37
|
+
* vue-i18n instance (see `./lang`). */
|
|
38
|
+
export declare function hostLocaleTag(): string;
|
|
31
39
|
//# sourceMappingURL=hostContext.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hostContext.d.ts","sourceRoot":"","sources":["../../src/vue/hostContext.ts"],"names":[],"mappings":"AAiBA;mEACmE;AACnE,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,IAAI,EAAE,CAAC,CAAA;CAAE,GAAG;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAEhG;;6DAE6D;AAC7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,GAAG,OAAO,EAC1C,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE;IAAE,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,KAC1E,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;AAE3B,2EAA2E;AAC3E,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;AAEvG,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,iBAAiB,CAAC;IAC3B,SAAS,EAAE,mBAAmB,CAAC;CAChC;AAID,iEAAiE;AACjE,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,qBAAqB,GAAG,IAAI,CAE5E;AASD,wBAAgB,WAAW,CAAC,CAAC,GAAG,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE;IAAE,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAE3J;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,GAAG,MAAM,IAAI,CAE9F"}
|
|
1
|
+
{"version":3,"file":"hostContext.d.ts","sourceRoot":"","sources":["../../src/vue/hostContext.ts"],"names":[],"mappings":"AAiBA;mEACmE;AACnE,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,IAAI,EAAE,CAAC,CAAA;CAAE,GAAG;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC;AAEhG;;6DAE6D;AAC7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,GAAG,OAAO,EAC1C,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE;IAAE,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,KAC1E,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;AAE3B,2EAA2E;AAC3E,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;AAEvG;;sEAEsE;AACtE,MAAM,MAAM,mBAAmB,GAAG,MAAM,MAAM,CAAC;AAE/C,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,iBAAiB,CAAC;IAC3B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,mBAAmB,CAAC;CAChC;AAID,iEAAiE;AACjE,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,qBAAqB,GAAG,IAAI,CAE5E;AASD,wBAAgB,WAAW,CAAC,CAAC,GAAG,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE;IAAE,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,CAAC;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAE3J;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,GAAG,MAAM,IAAI,CAE9F;AAED;wCACwC;AACxC,wBAAgB,aAAa,IAAI,MAAM,CAEtC"}
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import AccountingView from "./View.vue";
|
|
|
3
3
|
import AccountingPreview from "./Preview.vue";
|
|
4
4
|
export { AccountingView, AccountingPreview };
|
|
5
5
|
export { configureAccountingHost } from "./hostContext";
|
|
6
|
-
export type { AccountingHostContext, AccountingApiCall, AccountingSubscribe, ApiResult } from "./hostContext";
|
|
6
|
+
export type { AccountingHostContext, AccountingApiCall, AccountingSubscribe, AccountingLocaleTag, ApiResult } from "./hostContext";
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/vue/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vue/index.ts"],"names":[],"mappings":"AAWA,OAAO,cAAc,CAAC;AAEtB,OAAO,cAAc,MAAM,YAAY,CAAC;AACxC,OAAO,iBAAiB,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,CAAC;AAE7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AACxD,YAAY,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vue/index.ts"],"names":[],"mappings":"AAWA,OAAO,cAAc,CAAC;AAEtB,OAAO,cAAc,MAAM,YAAY,CAAC;AACxC,OAAO,iBAAiB,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,CAAC;AAE7C,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AACxD,YAAY,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/de.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBA6NjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
declare const enMessages: {
|
|
2
|
+
pluginAccounting: {
|
|
3
|
+
title: string;
|
|
4
|
+
noBook: string;
|
|
5
|
+
common: {
|
|
6
|
+
cancel: string;
|
|
7
|
+
loading: string;
|
|
8
|
+
error: string;
|
|
9
|
+
empty: string;
|
|
10
|
+
};
|
|
11
|
+
tabs: {
|
|
12
|
+
journal: string;
|
|
13
|
+
newEntry: string;
|
|
14
|
+
opening: string;
|
|
15
|
+
accounts: string;
|
|
16
|
+
ledger: string;
|
|
17
|
+
balanceSheet: string;
|
|
18
|
+
profitLoss: string;
|
|
19
|
+
settings: string;
|
|
20
|
+
};
|
|
21
|
+
bookSwitcher: {
|
|
22
|
+
label: string;
|
|
23
|
+
newBook: string;
|
|
24
|
+
create: string;
|
|
25
|
+
nameLabel: string;
|
|
26
|
+
currencyLabel: string;
|
|
27
|
+
countryLabel: string;
|
|
28
|
+
countryPlaceholder: string;
|
|
29
|
+
countryHint: string;
|
|
30
|
+
fiscalYearEndLabel: string;
|
|
31
|
+
fiscalYearEndQ1: string;
|
|
32
|
+
fiscalYearEndQ2: string;
|
|
33
|
+
fiscalYearEndQ3: string;
|
|
34
|
+
fiscalYearEndQ4: string;
|
|
35
|
+
fiscalYearEndHint: string;
|
|
36
|
+
placeholder: string;
|
|
37
|
+
firstRunHint: string;
|
|
38
|
+
};
|
|
39
|
+
deletedNotice: {
|
|
40
|
+
title: string;
|
|
41
|
+
body: string;
|
|
42
|
+
};
|
|
43
|
+
journalList: {
|
|
44
|
+
fromLabel: string;
|
|
45
|
+
toLabel: string;
|
|
46
|
+
accountLabel: string;
|
|
47
|
+
allAccounts: string;
|
|
48
|
+
void: string;
|
|
49
|
+
edit: string;
|
|
50
|
+
voidConfirm: string;
|
|
51
|
+
voidReason: string;
|
|
52
|
+
columns: {
|
|
53
|
+
date: string;
|
|
54
|
+
kind: string;
|
|
55
|
+
memo: string;
|
|
56
|
+
lines: string;
|
|
57
|
+
};
|
|
58
|
+
kind: {
|
|
59
|
+
normal: string;
|
|
60
|
+
opening: string;
|
|
61
|
+
void: string;
|
|
62
|
+
voidMarker: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
entryForm: {
|
|
66
|
+
title: string;
|
|
67
|
+
editTitle: string;
|
|
68
|
+
editBanner: string;
|
|
69
|
+
dateLabel: string;
|
|
70
|
+
memoLabel: string;
|
|
71
|
+
accountLabel: string;
|
|
72
|
+
debitLabel: string;
|
|
73
|
+
creditLabel: string;
|
|
74
|
+
taxRegistrationIdLabel: string;
|
|
75
|
+
taxRegistrationIdPlaceholder: string;
|
|
76
|
+
taxRegistrationIdMissingWarning: string;
|
|
77
|
+
addLine: string;
|
|
78
|
+
removeLine: string;
|
|
79
|
+
submit: string;
|
|
80
|
+
submitting: string;
|
|
81
|
+
update: string;
|
|
82
|
+
updating: string;
|
|
83
|
+
cancelEdit: string;
|
|
84
|
+
success: string;
|
|
85
|
+
editSuccess: string;
|
|
86
|
+
editVoidReason: string;
|
|
87
|
+
imbalance: string;
|
|
88
|
+
balanced: string;
|
|
89
|
+
};
|
|
90
|
+
openingForm: {
|
|
91
|
+
title: string;
|
|
92
|
+
asOfLabel: string;
|
|
93
|
+
explainer: string;
|
|
94
|
+
emptyHint: string;
|
|
95
|
+
explainer2: string;
|
|
96
|
+
submit: string;
|
|
97
|
+
replaceWarning: string;
|
|
98
|
+
none: string;
|
|
99
|
+
setBy: string;
|
|
100
|
+
success: string;
|
|
101
|
+
};
|
|
102
|
+
ledger: {
|
|
103
|
+
selectAccount: string;
|
|
104
|
+
closingBalance: string;
|
|
105
|
+
columns: {
|
|
106
|
+
date: string;
|
|
107
|
+
memo: string;
|
|
108
|
+
debit: string;
|
|
109
|
+
credit: string;
|
|
110
|
+
balance: string;
|
|
111
|
+
taxRegistrationId: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
dateRange: {
|
|
115
|
+
shortcutLabel: string;
|
|
116
|
+
currentQuarter: string;
|
|
117
|
+
previousQuarter: string;
|
|
118
|
+
currentYear: string;
|
|
119
|
+
previousYear: string;
|
|
120
|
+
lifetime: string;
|
|
121
|
+
all: string;
|
|
122
|
+
fromLabel: string;
|
|
123
|
+
toLabel: string;
|
|
124
|
+
};
|
|
125
|
+
balanceSheet: {
|
|
126
|
+
asOfLabel: string;
|
|
127
|
+
sections: {
|
|
128
|
+
asset: string;
|
|
129
|
+
liability: string;
|
|
130
|
+
equity: string;
|
|
131
|
+
};
|
|
132
|
+
total: string;
|
|
133
|
+
imbalance: string;
|
|
134
|
+
currentEarnings: string;
|
|
135
|
+
shortcutLabel: string;
|
|
136
|
+
thisMonth: string;
|
|
137
|
+
lastMonth: string;
|
|
138
|
+
lastQuarter: string;
|
|
139
|
+
lastYear: string;
|
|
140
|
+
};
|
|
141
|
+
profitLoss: {
|
|
142
|
+
fromLabel: string;
|
|
143
|
+
toLabel: string;
|
|
144
|
+
income: string;
|
|
145
|
+
expense: string;
|
|
146
|
+
netIncome: string;
|
|
147
|
+
};
|
|
148
|
+
accounts: {
|
|
149
|
+
listEmpty: string;
|
|
150
|
+
openLedgerAria: string;
|
|
151
|
+
manageButton: string;
|
|
152
|
+
modalTitle: string;
|
|
153
|
+
addAccount: string;
|
|
154
|
+
sectionTitle: {
|
|
155
|
+
asset: string;
|
|
156
|
+
liability: string;
|
|
157
|
+
equity: string;
|
|
158
|
+
income: string;
|
|
159
|
+
expense: string;
|
|
160
|
+
};
|
|
161
|
+
columnCode: string;
|
|
162
|
+
columnName: string;
|
|
163
|
+
columnType: string;
|
|
164
|
+
columnNote: string;
|
|
165
|
+
typeOption: {
|
|
166
|
+
asset: string;
|
|
167
|
+
liability: string;
|
|
168
|
+
equity: string;
|
|
169
|
+
income: string;
|
|
170
|
+
expense: string;
|
|
171
|
+
};
|
|
172
|
+
edit: string;
|
|
173
|
+
save: string;
|
|
174
|
+
cancel: string;
|
|
175
|
+
saving: string;
|
|
176
|
+
addToCategory: string;
|
|
177
|
+
deactivate: string;
|
|
178
|
+
reactivate: string;
|
|
179
|
+
deactivateConfirm: string;
|
|
180
|
+
errorEmptyCode: string;
|
|
181
|
+
errorReservedCode: string;
|
|
182
|
+
errorInvalidCodeFormat: string;
|
|
183
|
+
errorCodeTypeMismatch: string;
|
|
184
|
+
errorEmptyName: string;
|
|
185
|
+
errorDuplicateCode: string;
|
|
186
|
+
errorDuplicateName: string;
|
|
187
|
+
success: string;
|
|
188
|
+
codeReadOnlyHint: string;
|
|
189
|
+
noteOptional: string;
|
|
190
|
+
};
|
|
191
|
+
settings: {
|
|
192
|
+
bookInfo: string;
|
|
193
|
+
bookInfoExplain: string;
|
|
194
|
+
countryUnset: string;
|
|
195
|
+
fiscalYearEndExplain: string;
|
|
196
|
+
saveChanges: string;
|
|
197
|
+
updateOk: string;
|
|
198
|
+
rebuild: string;
|
|
199
|
+
rebuildExplain: string;
|
|
200
|
+
rebuildOk: string;
|
|
201
|
+
advanced: string;
|
|
202
|
+
deleteBook: string;
|
|
203
|
+
deleteBookExplain: string;
|
|
204
|
+
deleteBookConfirm: string;
|
|
205
|
+
deleteBookButton: string;
|
|
206
|
+
};
|
|
207
|
+
preview: {
|
|
208
|
+
entry: string;
|
|
209
|
+
pl: string;
|
|
210
|
+
bs: string;
|
|
211
|
+
bookCreated: string;
|
|
212
|
+
};
|
|
213
|
+
previewSummary: string;
|
|
214
|
+
previewError: string;
|
|
215
|
+
previewGeneric: string;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
export default enMessages;
|
|
219
|
+
export type AccountingMessages = typeof enMessages;
|
|
220
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/en.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgMf,CAAC;AAEF,eAAe,UAAU,CAAC;AAE1B,MAAM,MAAM,kBAAkB,GAAG,OAAO,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/es.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBA2NjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fr.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/fr.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBA6NjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
declare const i18n: import("vue-i18n").I18n<{
|
|
2
|
+
[x: string]: {
|
|
3
|
+
pluginAccounting: {
|
|
4
|
+
title: string;
|
|
5
|
+
noBook: string;
|
|
6
|
+
common: {
|
|
7
|
+
cancel: string;
|
|
8
|
+
loading: string;
|
|
9
|
+
error: string;
|
|
10
|
+
empty: string;
|
|
11
|
+
};
|
|
12
|
+
tabs: {
|
|
13
|
+
journal: string;
|
|
14
|
+
newEntry: string;
|
|
15
|
+
opening: string;
|
|
16
|
+
accounts: string;
|
|
17
|
+
ledger: string;
|
|
18
|
+
balanceSheet: string;
|
|
19
|
+
profitLoss: string;
|
|
20
|
+
settings: string;
|
|
21
|
+
};
|
|
22
|
+
bookSwitcher: {
|
|
23
|
+
label: string;
|
|
24
|
+
newBook: string;
|
|
25
|
+
create: string;
|
|
26
|
+
nameLabel: string;
|
|
27
|
+
currencyLabel: string;
|
|
28
|
+
countryLabel: string;
|
|
29
|
+
countryPlaceholder: string;
|
|
30
|
+
countryHint: string;
|
|
31
|
+
fiscalYearEndLabel: string;
|
|
32
|
+
fiscalYearEndQ1: string;
|
|
33
|
+
fiscalYearEndQ2: string;
|
|
34
|
+
fiscalYearEndQ3: string;
|
|
35
|
+
fiscalYearEndQ4: string;
|
|
36
|
+
fiscalYearEndHint: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
firstRunHint: string;
|
|
39
|
+
};
|
|
40
|
+
deletedNotice: {
|
|
41
|
+
title: string;
|
|
42
|
+
body: string;
|
|
43
|
+
};
|
|
44
|
+
journalList: {
|
|
45
|
+
fromLabel: string;
|
|
46
|
+
toLabel: string;
|
|
47
|
+
accountLabel: string;
|
|
48
|
+
allAccounts: string;
|
|
49
|
+
void: string;
|
|
50
|
+
edit: string;
|
|
51
|
+
voidConfirm: string;
|
|
52
|
+
voidReason: string;
|
|
53
|
+
columns: {
|
|
54
|
+
date: string;
|
|
55
|
+
kind: string;
|
|
56
|
+
memo: string;
|
|
57
|
+
lines: string;
|
|
58
|
+
};
|
|
59
|
+
kind: {
|
|
60
|
+
normal: string;
|
|
61
|
+
opening: string;
|
|
62
|
+
void: string;
|
|
63
|
+
voidMarker: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
entryForm: {
|
|
67
|
+
title: string;
|
|
68
|
+
editTitle: string;
|
|
69
|
+
editBanner: string;
|
|
70
|
+
dateLabel: string;
|
|
71
|
+
memoLabel: string;
|
|
72
|
+
accountLabel: string;
|
|
73
|
+
debitLabel: string;
|
|
74
|
+
creditLabel: string;
|
|
75
|
+
taxRegistrationIdLabel: string;
|
|
76
|
+
taxRegistrationIdPlaceholder: string;
|
|
77
|
+
taxRegistrationIdMissingWarning: string;
|
|
78
|
+
addLine: string;
|
|
79
|
+
removeLine: string;
|
|
80
|
+
submit: string;
|
|
81
|
+
submitting: string;
|
|
82
|
+
update: string;
|
|
83
|
+
updating: string;
|
|
84
|
+
cancelEdit: string;
|
|
85
|
+
success: string;
|
|
86
|
+
editSuccess: string;
|
|
87
|
+
editVoidReason: string;
|
|
88
|
+
imbalance: string;
|
|
89
|
+
balanced: string;
|
|
90
|
+
};
|
|
91
|
+
openingForm: {
|
|
92
|
+
title: string;
|
|
93
|
+
asOfLabel: string;
|
|
94
|
+
explainer: string;
|
|
95
|
+
emptyHint: string;
|
|
96
|
+
explainer2: string;
|
|
97
|
+
submit: string;
|
|
98
|
+
replaceWarning: string;
|
|
99
|
+
none: string;
|
|
100
|
+
setBy: string;
|
|
101
|
+
success: string;
|
|
102
|
+
};
|
|
103
|
+
ledger: {
|
|
104
|
+
selectAccount: string;
|
|
105
|
+
closingBalance: string;
|
|
106
|
+
columns: {
|
|
107
|
+
date: string;
|
|
108
|
+
memo: string;
|
|
109
|
+
debit: string;
|
|
110
|
+
credit: string;
|
|
111
|
+
balance: string;
|
|
112
|
+
taxRegistrationId: string;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
dateRange: {
|
|
116
|
+
shortcutLabel: string;
|
|
117
|
+
currentQuarter: string;
|
|
118
|
+
previousQuarter: string;
|
|
119
|
+
currentYear: string;
|
|
120
|
+
previousYear: string;
|
|
121
|
+
lifetime: string;
|
|
122
|
+
all: string;
|
|
123
|
+
fromLabel: string;
|
|
124
|
+
toLabel: string;
|
|
125
|
+
};
|
|
126
|
+
balanceSheet: {
|
|
127
|
+
asOfLabel: string;
|
|
128
|
+
sections: {
|
|
129
|
+
asset: string;
|
|
130
|
+
liability: string;
|
|
131
|
+
equity: string;
|
|
132
|
+
};
|
|
133
|
+
total: string;
|
|
134
|
+
imbalance: string;
|
|
135
|
+
currentEarnings: string;
|
|
136
|
+
shortcutLabel: string;
|
|
137
|
+
thisMonth: string;
|
|
138
|
+
lastMonth: string;
|
|
139
|
+
lastQuarter: string;
|
|
140
|
+
lastYear: string;
|
|
141
|
+
};
|
|
142
|
+
profitLoss: {
|
|
143
|
+
fromLabel: string;
|
|
144
|
+
toLabel: string;
|
|
145
|
+
income: string;
|
|
146
|
+
expense: string;
|
|
147
|
+
netIncome: string;
|
|
148
|
+
};
|
|
149
|
+
accounts: {
|
|
150
|
+
listEmpty: string;
|
|
151
|
+
openLedgerAria: string;
|
|
152
|
+
manageButton: string;
|
|
153
|
+
modalTitle: string;
|
|
154
|
+
addAccount: string;
|
|
155
|
+
sectionTitle: {
|
|
156
|
+
asset: string;
|
|
157
|
+
liability: string;
|
|
158
|
+
equity: string;
|
|
159
|
+
income: string;
|
|
160
|
+
expense: string;
|
|
161
|
+
};
|
|
162
|
+
columnCode: string;
|
|
163
|
+
columnName: string;
|
|
164
|
+
columnType: string;
|
|
165
|
+
columnNote: string;
|
|
166
|
+
typeOption: {
|
|
167
|
+
asset: string;
|
|
168
|
+
liability: string;
|
|
169
|
+
equity: string;
|
|
170
|
+
income: string;
|
|
171
|
+
expense: string;
|
|
172
|
+
};
|
|
173
|
+
edit: string;
|
|
174
|
+
save: string;
|
|
175
|
+
cancel: string;
|
|
176
|
+
saving: string;
|
|
177
|
+
addToCategory: string;
|
|
178
|
+
deactivate: string;
|
|
179
|
+
reactivate: string;
|
|
180
|
+
deactivateConfirm: string;
|
|
181
|
+
errorEmptyCode: string;
|
|
182
|
+
errorReservedCode: string;
|
|
183
|
+
errorInvalidCodeFormat: string;
|
|
184
|
+
errorCodeTypeMismatch: string;
|
|
185
|
+
errorEmptyName: string;
|
|
186
|
+
errorDuplicateCode: string;
|
|
187
|
+
errorDuplicateName: string;
|
|
188
|
+
success: string;
|
|
189
|
+
codeReadOnlyHint: string;
|
|
190
|
+
noteOptional: string;
|
|
191
|
+
};
|
|
192
|
+
settings: {
|
|
193
|
+
bookInfo: string;
|
|
194
|
+
bookInfoExplain: string;
|
|
195
|
+
countryUnset: string;
|
|
196
|
+
fiscalYearEndExplain: string;
|
|
197
|
+
saveChanges: string;
|
|
198
|
+
updateOk: string;
|
|
199
|
+
rebuild: string;
|
|
200
|
+
rebuildExplain: string;
|
|
201
|
+
rebuildOk: string;
|
|
202
|
+
advanced: string;
|
|
203
|
+
deleteBook: string;
|
|
204
|
+
deleteBookExplain: string;
|
|
205
|
+
deleteBookConfirm: string;
|
|
206
|
+
deleteBookButton: string;
|
|
207
|
+
};
|
|
208
|
+
preview: {
|
|
209
|
+
entry: string;
|
|
210
|
+
pl: string;
|
|
211
|
+
bs: string;
|
|
212
|
+
bookCreated: string;
|
|
213
|
+
};
|
|
214
|
+
previewSummary: string;
|
|
215
|
+
previewError: string;
|
|
216
|
+
previewGeneric: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
}, {
|
|
220
|
+
[x: string]: import("vue-i18n").IntlDateTimeFormat;
|
|
221
|
+
}, {
|
|
222
|
+
[x: string]: import("vue-i18n").IntlNumberFormat;
|
|
223
|
+
}, string, false>;
|
|
224
|
+
/** The plugin's i18n composable — a drop-in for vue-i18n's `useI18n()` over the
|
|
225
|
+
* plugin's own self-contained instance. Returns `{ t, locale }` (destructured at
|
|
226
|
+
* the call site, exactly like `useI18n()`), with `t` reading the plugin's keys
|
|
227
|
+
* and `locale` the reactive tag for date/number formatting. */
|
|
228
|
+
export declare function useAccountingI18n(): {
|
|
229
|
+
t: (typeof i18n.global)["t"];
|
|
230
|
+
locale: (typeof i18n.global)["locale"];
|
|
231
|
+
};
|
|
232
|
+
export {};
|
|
233
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/index.ts"],"names":[],"mappings":"AAuBA,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAcR,CAAC;AAsBH;;;gEAGgE;AAChE,wBAAgB,iBAAiB,IAAI;IAAE,CAAC,EAAE,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC;IAAC,MAAM,EAAE,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,CAAA;CAAE,CAG5G"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ja.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAyNjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ko.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ko.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAyNjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ptBR.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/ptBR.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,YAAY,EAAE,kBA0NnB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh.d.ts","sourceRoot":"","sources":["../../../src/vue/lang/zh.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE/C,QAAA,MAAM,UAAU,EAAE,kBAwNjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|