mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-22 08:56:39 -06:00
Rebuild frontend.
This commit is contained in:
parent
d8a7bb4dc7
commit
a13af41e9f
@ -89,7 +89,7 @@
|
||||
<script>
|
||||
import TransactionListLarge from "../transactions/TransactionListLarge";
|
||||
import format from "date-fns/format";
|
||||
import {mapGetters, mapMutations} from "vuex";
|
||||
import {mapGetters} from "vuex";
|
||||
|
||||
export default {
|
||||
name: "Show",
|
||||
@ -100,44 +100,49 @@ export default {
|
||||
return null !== this.start && null !== this.end && null !== this.listPageSize && this.ready;
|
||||
},
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
accountId: 0,
|
||||
transactions: [],
|
||||
ready: false,
|
||||
currentPage: 1,
|
||||
perPage: 51,
|
||||
locale: 'en-US'
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.ready = true;
|
||||
let parts = window.location.pathname.split('/');
|
||||
this.accountId = parseInt(parts[parts.length - 1]);
|
||||
this.perPage = this.listPageSize ?? 51;
|
||||
|
||||
let params = new URLSearchParams(window.location.search);
|
||||
this.currentPage = params.get('page') ? parseInt(params.get('page')) : 1;
|
||||
//this.getTransactions();
|
||||
this.getTransactions();
|
||||
},
|
||||
components: {TransactionListLarge},
|
||||
methods: {
|
||||
getTransactions: function() {
|
||||
getTransactions: function () {
|
||||
console.log('goooooo');
|
||||
let startStr = format(this.start, 'y-MM-dd');
|
||||
let endStr = format(this.end, 'y-MM-dd');
|
||||
axios.get('./api/v1/accounts/' + this.accountId + '/transactions?page=1&limit=10&start=' + startStr + '&end=' + endStr)
|
||||
.then(response => {
|
||||
this.transactions = response.data.data;
|
||||
//this.loading = false;
|
||||
//this.error = false;
|
||||
}
|
||||
);
|
||||
if (this.showReady) {
|
||||
let startStr = format(this.start, 'y-MM-dd');
|
||||
let endStr = format(this.end, 'y-MM-dd');
|
||||
axios.get('./api/v1/accounts/' + this.accountId + '/transactions?page=1&limit=' + this.perPage + '&start=' + startStr + '&end=' + endStr)
|
||||
.then(response => {
|
||||
this.transactions = response.data.data;
|
||||
//this.loading = false;
|
||||
//this.error = false;
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
showReady: function (value) {
|
||||
if (true === value) {
|
||||
this.getTransactions();
|
||||
}
|
||||
start: function () {
|
||||
this.getTransactions();
|
||||
},
|
||||
end: function () {
|
||||
this.getTransactions();
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
|
||||
"repeat_freq_monthly": "\u043c\u0435\u0441\u0435\u0447\u043d\u043e",
|
||||
"repeat_freq_weekly": "\u0435\u0436\u0435\u0441\u0435\u0434\u043c\u0438\u0447\u043d\u043e",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0437\u0430\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435",
|
||||
"update_expense_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u0438",
|
||||
"update_revenue_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u043f\u0440\u0438\u0445\u043e\u0434\u0438",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u0441\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u041a\u0430\u0441\u0438\u0447\u043a\u0430",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u010dtvrtletn\u011b",
|
||||
"repeat_freq_monthly": "m\u011bs\u00ed\u010dn\u011b",
|
||||
"repeat_freq_weekly": "t\u00fddn\u011b",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Aktualizovat z\u00e1vazek",
|
||||
"update_expense_account": "Aktualizovat v\u00fddajov\u00fd \u00fa\u010det",
|
||||
"update_revenue_account": "Aktualizovat p\u0159\u00edjmov\u00fd \u00fa\u010det",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Aktualizovat v\u00fddajov\u00fd \u00fa\u010det",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pokladni\u010dka",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "viertelj\u00e4hrlich",
|
||||
"repeat_freq_monthly": "monatlich",
|
||||
"repeat_freq_weekly": "w\u00f6chentlich",
|
||||
"credit_card_type_monthlyFull": "Vollst\u00e4ndige Zahlung jeden Monat",
|
||||
"update_liabilities_account": "Verbindlichkeit aktualisieren",
|
||||
"update_expense_account": "Ausgabenkonto aktualisieren",
|
||||
"update_revenue_account": "Einnahmenkonto aktualisieren",
|
||||
"update_undefined_account": "Konto aktualisieren",
|
||||
"update_asset_account": "Bestandskonto aktualisieren",
|
||||
"updated_account_js": "Konto \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\" aktualisiert."
|
||||
"credit_card_type_monthlyFull": "Vollst\u00e4ndige Zahlung jeden Monat"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Sparschwein",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u03c4\u03c1\u03b9\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
|
||||
"repeat_freq_monthly": "\u03bc\u03b7\u03bd\u03b9\u03b1\u03af\u03c9\u03c2",
|
||||
"repeat_freq_weekly": "\u03b5\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03c9\u03c2",
|
||||
"credit_card_type_monthlyFull": "\u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7 \u03ba\u03ac\u03b8\u03b5 \u03bc\u03ae\u03bd\u03b1",
|
||||
"update_liabilities_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7\u03c2",
|
||||
"update_expense_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b4\u03b1\u03c0\u03b1\u03bd\u03ce\u03bd",
|
||||
"update_revenue_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03b5\u03c3\u03cc\u03b4\u03c9\u03bd",
|
||||
"update_undefined_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd",
|
||||
"update_asset_account": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
|
||||
"updated_account_js": "\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "\u0395\u03be\u03cc\u03c6\u03bb\u03b7\u03c3\u03b7 \u03ba\u03ac\u03b8\u03b5 \u03bc\u03ae\u03bd\u03b1"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u039a\u03bf\u03c5\u03bc\u03c0\u03b1\u03c1\u03ac\u03c2",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "quarterly",
|
||||
"repeat_freq_monthly": "monthly",
|
||||
"repeat_freq_weekly": "weekly",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Update liability",
|
||||
"update_expense_account": "Update expense account",
|
||||
"update_revenue_account": "Update revenue account",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Update asset account",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Piggy bank",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "quarterly",
|
||||
"repeat_freq_monthly": "monthly",
|
||||
"repeat_freq_weekly": "weekly",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Update liability",
|
||||
"update_expense_account": "Update expense account",
|
||||
"update_revenue_account": "Update revenue account",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Update asset account",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Piggy bank",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestralmente",
|
||||
"repeat_freq_monthly": "mensualmente",
|
||||
"repeat_freq_weekly": "semanalmente",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Actualizar pasivo",
|
||||
"update_expense_account": "Actualizar cuenta de gastos",
|
||||
"update_revenue_account": "Actualizar cuenta de ingresos",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Actualizar cuenta de activos",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Alcancilla",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "nelj\u00e4nnesvuosittain",
|
||||
"repeat_freq_monthly": "kuukausittain",
|
||||
"repeat_freq_weekly": "viikoittain",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "P\u00e4ivit\u00e4 vastuu",
|
||||
"update_expense_account": "P\u00e4ivit\u00e4 kulutustili",
|
||||
"update_revenue_account": "P\u00e4ivit\u00e4 tuottotili",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "P\u00e4ivit\u00e4 omaisuustili",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "S\u00e4\u00e4st\u00f6possu",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestriel",
|
||||
"repeat_freq_monthly": "mensuel",
|
||||
"repeat_freq_weekly": "hebdomadaire",
|
||||
"credit_card_type_monthlyFull": "Paiement complet tous les mois",
|
||||
"update_liabilities_account": "Mettre \u00e0 jour le passif",
|
||||
"update_expense_account": "Mettre \u00e0 jour le compte de d\u00e9penses",
|
||||
"update_revenue_account": "Mettre \u00e0 jour le compte de recettes",
|
||||
"update_undefined_account": "Mettre \u00e0 jour le compte",
|
||||
"update_asset_account": "Mettre \u00e0 jour le compte d\u2019actif",
|
||||
"updated_account_js": "Compte \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\" mis \u00e0 jour."
|
||||
"credit_card_type_monthlyFull": "Paiement complet tous les mois"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Tirelire",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "negyed\u00e9ves",
|
||||
"repeat_freq_monthly": "havi",
|
||||
"repeat_freq_weekly": "heti",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "K\u00f6telezetts\u00e9g friss\u00edt\u00e9se",
|
||||
"update_expense_account": "K\u00f6lts\u00e9gsz\u00e1mla friss\u00edt\u00e9se",
|
||||
"update_revenue_account": "J\u00f6vedelemsz\u00e1mla friss\u00edt\u00e9se",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Eszk\u00f6zsz\u00e1mla friss\u00edt\u00e9se",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Malacpersely",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestralmente",
|
||||
"repeat_freq_monthly": "mensilmente",
|
||||
"repeat_freq_weekly": "settimanalmente",
|
||||
"credit_card_type_monthlyFull": "Pagamento intero ogni mese",
|
||||
"update_liabilities_account": "Aggiorna passivit\u00e0",
|
||||
"update_expense_account": "Aggiorna conto uscite",
|
||||
"update_revenue_account": "Aggiorna conto entrate",
|
||||
"update_undefined_account": "Aggiorna conto",
|
||||
"update_asset_account": "Aggiorna conto attivit\u00e0",
|
||||
"updated_account_js": "Conto \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\" aggiornato."
|
||||
"credit_card_type_monthlyFull": "Pagamento intero ogni mese"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Salvadanaio",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "kvartalsvis",
|
||||
"repeat_freq_monthly": "m\u00e5nedlig",
|
||||
"repeat_freq_weekly": "ukentlig",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Oppdater gjeld",
|
||||
"update_expense_account": "Oppdater utgiftskonto",
|
||||
"update_revenue_account": "Oppdater inntektskonto",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Oppdater aktivakonto",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Sparegris",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "elk kwartaal",
|
||||
"repeat_freq_monthly": "maandelijks",
|
||||
"repeat_freq_weekly": "wekelijks",
|
||||
"credit_card_type_monthlyFull": "Volledige betaling elke maand",
|
||||
"update_liabilities_account": "Update passiva",
|
||||
"update_expense_account": "Wijzig crediteur",
|
||||
"update_revenue_account": "Wijzig debiteur",
|
||||
"update_undefined_account": "Account bijwerken",
|
||||
"update_asset_account": "Wijzig betaalrekening",
|
||||
"updated_account_js": "Account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\" bijgewerkt."
|
||||
"credit_card_type_monthlyFull": "Volledige betaling elke maand"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Spaarpotje",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "kwartalnie",
|
||||
"repeat_freq_monthly": "miesi\u0119cznie",
|
||||
"repeat_freq_weekly": "tygodniowo",
|
||||
"credit_card_type_monthlyFull": "Pe\u0142na p\u0142atno\u015b\u0107 co miesi\u0105c",
|
||||
"update_liabilities_account": "Modyfikuj zobowi\u0105zanie",
|
||||
"update_expense_account": "Aktualizuj konto wydatk\u00f3w",
|
||||
"update_revenue_account": "Aktualizuj konto przychod\u00f3w",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Aktualizuj konto aktyw\u00f3w",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Pe\u0142na p\u0142atno\u015b\u0107 co miesi\u0105c"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Skarbonka",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestral",
|
||||
"repeat_freq_monthly": "mensal",
|
||||
"repeat_freq_weekly": "semanal",
|
||||
"credit_card_type_monthlyFull": "Pagamento completo todo m\u00eas",
|
||||
"update_liabilities_account": "Atualizar passivo",
|
||||
"update_expense_account": "Atualizar conta de despesas",
|
||||
"update_revenue_account": "Atualizar conta de receita",
|
||||
"update_undefined_account": "Atualizar conta",
|
||||
"update_asset_account": "Atualizar de conta de ativo",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Pagamento completo todo m\u00eas"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Cofrinho",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestral",
|
||||
"repeat_freq_monthly": "mensalmente",
|
||||
"repeat_freq_weekly": "semanalmente",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Actualizar passivo",
|
||||
"update_expense_account": "Alterar conta de despesas",
|
||||
"update_revenue_account": "Alterar conta de receitas",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Actualizar conta de activos",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Mealheiro",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "trimestrial",
|
||||
"repeat_freq_monthly": "lunar",
|
||||
"repeat_freq_weekly": "s\u0103pt\u0103m\u00e2nal",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Actualiza\u021bi provizionul",
|
||||
"update_expense_account": "Actualiza\u021bi cont de cheltuieli",
|
||||
"update_revenue_account": "Actualiza\u021bi cont de venituri",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Actualiza\u021bi contul de active",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pu\u0219culi\u021b\u0103",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u0440\u0430\u0437 \u0432 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"repeat_freq_monthly": "\u0435\u0436\u0435\u043c\u0435\u0441\u044f\u0447\u043d\u043e",
|
||||
"repeat_freq_weekly": "\u0435\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043b\u0433\u043e\u0432\u043e\u0439 \u0441\u0447\u0451\u0442",
|
||||
"update_expense_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442 \u0440\u0430\u0441\u0445\u043e\u0434\u0430",
|
||||
"update_revenue_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0447\u0451\u0442 \u0434\u043e\u0445\u043e\u0434\u0430",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u041a\u043e\u043f\u0438\u043b\u043a\u0430",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u0161tvr\u0165ro\u010dne",
|
||||
"repeat_freq_monthly": "mesa\u010dne",
|
||||
"repeat_freq_weekly": "t\u00fd\u017edenne",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "Upravi\u0165 z\u00e1v\u00e4zok",
|
||||
"update_expense_account": "Upravi\u0165 v\u00fddavkov\u00fd \u00fa\u010det",
|
||||
"update_revenue_account": "Upravi\u0165 pr\u00edjmov\u00fd \u00fa\u010det",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Upravi\u0165 v\u00fddajov\u00fd \u00fa\u010det",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Pokladni\u010dka",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "kvartal",
|
||||
"repeat_freq_monthly": "m\u00e5nadsvis",
|
||||
"repeat_freq_weekly": "veckovis",
|
||||
"credit_card_type_monthlyFull": "Full betalning varje m\u00e5nad",
|
||||
"update_liabilities_account": "Uppdatera skuld",
|
||||
"update_expense_account": "Uppdatera utgiftskonto",
|
||||
"update_revenue_account": "Uppdatera int\u00e4ktskonto",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "Uppdatera tillg\u00e5ngskonto",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full betalning varje m\u00e5nad"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Spargris",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "h\u00e0ng qu\u00fd",
|
||||
"repeat_freq_monthly": "h\u00e0ng th\u00e1ng",
|
||||
"repeat_freq_weekly": "h\u00e0ng tu\u1ea7n",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "C\u1eadp nh\u1eadt n\u1ee3",
|
||||
"update_expense_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n chi ph\u00ed",
|
||||
"update_revenue_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n doanh thu",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "C\u1eadp nh\u1eadt t\u00e0i kho\u1ea3n",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u1ed0ng heo con",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u6bcf\u5b63",
|
||||
"repeat_freq_monthly": "\u6bcf\u6708",
|
||||
"repeat_freq_weekly": "\u6bcf\u5468",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "\u66f4\u65b0\u503a\u52a1\u8d26\u6237",
|
||||
"update_expense_account": "\u66f4\u65b0\u652f\u51fa\u8d26\u6237",
|
||||
"update_revenue_account": "\u66f4\u65b0\u6536\u5165\u8d26\u6237",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "\u66f4\u65b0\u8d44\u4ea7\u8d26\u6237",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u5b58\u94b1\u7f50",
|
||||
|
@ -169,13 +169,7 @@
|
||||
"repeat_freq_quarterly": "\u6bcf\u5b63",
|
||||
"repeat_freq_monthly": "\u6bcf\u6708",
|
||||
"repeat_freq_weekly": "\u6bcf\u9031",
|
||||
"credit_card_type_monthlyFull": "Full payment every month",
|
||||
"update_liabilities_account": "\u66f4\u65b0\u50b5\u52d9",
|
||||
"update_expense_account": "\u66f4\u65b0\u652f\u51fa\u5e33\u6236",
|
||||
"update_revenue_account": "\u66f4\u65b0\u6536\u5165\u5e33\u6236",
|
||||
"update_undefined_account": "Update account",
|
||||
"update_asset_account": "\u66f4\u65b0\u8cc7\u7522\u5e33\u6236",
|
||||
"updated_account_js": "Updated account \"<a href=\"accounts\/show\/{ID}\">{title}<\/a>\"."
|
||||
"credit_card_type_monthlyFull": "Full payment every month"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "\u5c0f\u8c6c\u64b2\u6eff",
|
||||
|
13
frontend/src/pages/accounts/show.js
vendored
13
frontend/src/pages/accounts/show.js
vendored
@ -36,5 +36,16 @@ const app = new Vue({
|
||||
store,
|
||||
render(createElement) {
|
||||
return createElement(Show, {props: props});
|
||||
}
|
||||
},
|
||||
beforeCreate() {
|
||||
// See reference nr. 10
|
||||
this.$store.commit('initialiseStore');
|
||||
this.$store.dispatch('updateCurrencyPreference');
|
||||
|
||||
// init the new root store (dont care about results)
|
||||
this.$store.dispatch('root/initialiseStore');
|
||||
|
||||
// also init the dashboard store.
|
||||
this.$store.dispatch('dashboard/index/initialiseStore');
|
||||
},
|
||||
}).$mount('#accounts_show');
|
||||
|
@ -1071,9 +1071,9 @@
|
||||
integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
|
||||
|
||||
"@types/node@*":
|
||||
version "16.6.2"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.6.2.tgz#331b7b9f8621c638284787c5559423822fdffc50"
|
||||
integrity sha512-LSw8TZt12ZudbpHc6EkIyDM3nHVWKYrAvGy6EAJfNfjusbwnThqjqxUKKRwuV3iWYeW/LYMzNgaq3MaLffQ2xA==
|
||||
version "16.7.4"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.7.4.tgz#68a9384694af63ceab8848e95d76d9a3519e84b6"
|
||||
integrity sha512-25QXpDsTiDnl2rZGUenagVMwO46way8dOUdvoC3R3p+6TrbpxeJBo/v87BEG1IHI31Jhaa8lPeSHcqwxsVBeYQ==
|
||||
|
||||
"@types/parse-json@^4.0.0":
|
||||
version "4.0.0"
|
||||
@ -1508,13 +1508,13 @@ at-least-node@^1.0.0:
|
||||
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
|
||||
|
||||
autoprefixer@^10.2.6:
|
||||
version "10.3.1"
|
||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.1.tgz#954214821d3aa06692406c6a0a9e9d401eafbed2"
|
||||
integrity sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==
|
||||
version "10.3.3"
|
||||
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.3.tgz#4bac89c74ef98e6a40fe1c5b76c0d1c91db153ce"
|
||||
integrity sha512-yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ==
|
||||
dependencies:
|
||||
browserslist "^4.16.6"
|
||||
caniuse-lite "^1.0.30001243"
|
||||
colorette "^1.2.2"
|
||||
browserslist "^4.16.8"
|
||||
caniuse-lite "^1.0.30001252"
|
||||
colorette "^1.3.0"
|
||||
fraction.js "^4.1.1"
|
||||
normalize-range "^0.1.2"
|
||||
postcss-value-parser "^4.1.0"
|
||||
@ -1820,7 +1820,7 @@ browserify-zlib@^0.2.0:
|
||||
dependencies:
|
||||
pako "~1.0.5"
|
||||
|
||||
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.6, browserslist@^4.16.7:
|
||||
browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.6, browserslist@^4.16.8:
|
||||
version "4.16.8"
|
||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.8.tgz#cb868b0b554f137ba6e33de0ecff2eda403c4fb0"
|
||||
integrity sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==
|
||||
@ -1921,10 +1921,10 @@ caniuse-api@^3.0.0:
|
||||
lodash.memoize "^4.1.2"
|
||||
lodash.uniq "^4.5.0"
|
||||
|
||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001243, caniuse-lite@^1.0.30001251:
|
||||
version "1.0.30001251"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001251.tgz#6853a606ec50893115db660f82c094d18f096d85"
|
||||
integrity sha512-HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A==
|
||||
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001251, caniuse-lite@^1.0.30001252:
|
||||
version "1.0.30001252"
|
||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz#cb16e4e3dafe948fc4a9bb3307aea054b912019a"
|
||||
integrity sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw==
|
||||
|
||||
chalk@^2.0.0, chalk@^2.4.2:
|
||||
version "2.4.2"
|
||||
@ -2062,9 +2062,9 @@ clone@^1.0.4:
|
||||
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
|
||||
|
||||
codemirror@^5.60.0:
|
||||
version "5.62.2"
|
||||
resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.62.2.tgz#bce6d19c9829e6e788f83886d48ecf5c1e106e65"
|
||||
integrity sha512-tVFMUa4J3Q8JUd1KL9yQzQB0/BJt7ZYZujZmTPgo/54Lpuq3ez4C8x/ATUY/wv7b7X3AUq8o3Xd+2C5ZrCGWHw==
|
||||
version "5.62.3"
|
||||
resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.62.3.tgz#5cfdee6931c8b2d1b39ae773aaaaec2cc6b5558e"
|
||||
integrity sha512-zZAyOfN8TU67ngqrxhOgtkSAGV9jSpN1snbl8elPtnh9Z5A11daR405+dhLzLnuXrwX0WCShWlybxPN3QC/9Pg==
|
||||
|
||||
collect.js@^4.28.5:
|
||||
version "4.28.6"
|
||||
@ -2120,7 +2120,7 @@ commander@^4.1.1:
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
|
||||
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
|
||||
|
||||
commander@^7.0.0, commander@^7.1.0, commander@^7.2.0:
|
||||
commander@^7.0.0, commander@^7.2.0:
|
||||
version "7.2.0"
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
|
||||
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
|
||||
@ -2229,11 +2229,11 @@ cookie@0.4.0:
|
||||
integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
|
||||
|
||||
core-js-compat@^3.14.0, core-js-compat@^3.16.0:
|
||||
version "3.16.2"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.16.2.tgz#442ef1d933ca6fc80859bd5a1db7a3ba716aaf56"
|
||||
integrity sha512-4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ==
|
||||
version "3.16.3"
|
||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.16.3.tgz#ae12a6e20505a1d79fbd16b6689dfc77fc989114"
|
||||
integrity sha512-A/OtSfSJQKLAFRVd4V0m6Sep9lPdjD8bpN8v3tCCGwE0Tmh0hOiVDm9tw6mXmWOKOSZIyr3EkywPo84cJjGvIQ==
|
||||
dependencies:
|
||||
browserslist "^4.16.7"
|
||||
browserslist "^4.16.8"
|
||||
semver "7.0.0"
|
||||
|
||||
core-js@^2.4.0:
|
||||
@ -2242,9 +2242,9 @@ core-js@^2.4.0:
|
||||
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
|
||||
|
||||
core-js@^3.15.2:
|
||||
version "3.16.2"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.2.tgz#3f485822889c7fc48ef463e35be5cc2a4a01a1f4"
|
||||
integrity sha512-P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ==
|
||||
version "3.16.3"
|
||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.16.3.tgz#1f2d43c51a9ed014cc6c83440af14697ae4b75f2"
|
||||
integrity sha512-lM3GftxzHNtPNUJg0v4pC2RC6puwMd6VZA7vXUczi+SKmCWSf4JwO89VJGMqbzmB7jlK7B5hr3S64PqwFL49cA==
|
||||
|
||||
core-util-is@~1.0.0:
|
||||
version "1.0.2"
|
||||
@ -2252,9 +2252,9 @@ core-util-is@~1.0.0:
|
||||
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
||||
|
||||
cosmiconfig@^7.0.0:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
|
||||
integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
|
||||
version "7.0.1"
|
||||
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
|
||||
integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==
|
||||
dependencies:
|
||||
"@types/parse-json" "^4.0.0"
|
||||
import-fresh "^3.2.1"
|
||||
@ -2368,7 +2368,7 @@ css-select@^4.1.3:
|
||||
domutils "^2.6.0"
|
||||
nth-check "^2.0.0"
|
||||
|
||||
css-tree@^1.1.2:
|
||||
css-tree@^1.1.2, css-tree@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
|
||||
integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
|
||||
@ -2558,20 +2558,20 @@ datatables.net-fixedheader@3.1.9:
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-keytable-bs4@^2.6.1:
|
||||
version "2.6.2"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-keytable-bs4/-/datatables.net-keytable-bs4-2.6.2.tgz#168a3d51592332c3bf24d92091ec9124cc76309e"
|
||||
integrity sha512-lQlbCh4WIJ8X7zPFzlMb95LhrkjTFIETIv0EMsi9+JKDa226LUTdWI3FuMgFj06OjYjM9M/loTTRqSPbOlzs6A==
|
||||
version "2.6.4"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-keytable-bs4/-/datatables.net-keytable-bs4-2.6.4.tgz#dd4ea7d4758f7354e9f179441754a57d4e648e86"
|
||||
integrity sha512-eB10kvSY7OpuI6efqqJyIUyXHY8FIEyTjG+i6w2NVkiTLFHG4P+5L1a4/hZxciGUwVirAxX+3YXW1SrWwb9IKQ==
|
||||
dependencies:
|
||||
datatables.net-bs4 "^1.10.15"
|
||||
datatables.net-keytable "2.6.2"
|
||||
datatables.net-bs4 ">=1.10.25"
|
||||
datatables.net-keytable ">=2.6.2"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-keytable@2.6.2:
|
||||
version "2.6.2"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-keytable/-/datatables.net-keytable-2.6.2.tgz#10ba00f6c6568472b3f41e903e6e2d21c05e7031"
|
||||
integrity sha512-R8UONeejFSqiFbcOZwOXDVc97nI//hzd5r0NT+MJM+j/gs7FjB9MZlNLHF1CVS2HpYIijEWTiYBVBgeAX7FWvA==
|
||||
datatables.net-keytable@>=2.6.2:
|
||||
version "2.6.4"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-keytable/-/datatables.net-keytable-2.6.4.tgz#0cb355441a87d1c7aa6d230641157d17829892a2"
|
||||
integrity sha512-84ldg8S3rAzHKJw4inz/a4lWUWaVhrSrH16+zO9sxUdBgT+rTTjx7aN5d3JwrdroEYB3z2uWfd0MOxNlNXeuUQ==
|
||||
dependencies:
|
||||
datatables.net "^1.10.15"
|
||||
datatables.net ">=1.10.25"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-responsive-bs4@^2.2.7:
|
||||
@ -2626,54 +2626,54 @@ datatables.net-rowreorder@1.2.8:
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-scroller-bs4@^2.0.3:
|
||||
version "2.0.4"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-scroller-bs4/-/datatables.net-scroller-bs4-2.0.4.tgz#c3eef3edc6161f1410abe868aeb1d49dceadcebe"
|
||||
integrity sha512-bL06RWnJwKMrVO7JYFQJ4WQ8mp5a46wPnU0LbHcwcvkU0MpqXcij9O+DW2B00/906H30IBdoeQYVVrGA+Y8dBw==
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-scroller-bs4/-/datatables.net-scroller-bs4-2.0.5.tgz#0a2c559659d3c3a4f860ecc8735976f9d847f52e"
|
||||
integrity sha512-NtAECXBBNsxKo8ocJxkkNcP7AIIwET5lK8/ZyzI+zhjnj8zac5IyiDmfKuBrX9UNzee1o5Yrhn2tsz06olz6Pw==
|
||||
dependencies:
|
||||
datatables.net-bs4 "^1.10.15"
|
||||
datatables.net-scroller "2.0.4"
|
||||
datatables.net-bs4 ">=1.10.25"
|
||||
datatables.net-scroller ">=2.0.4"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-scroller@2.0.4:
|
||||
version "2.0.4"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-scroller/-/datatables.net-scroller-2.0.4.tgz#ee56d919138a0b053af4d96cc37a776526118365"
|
||||
integrity sha512-+Pwj27/wWNRl4MWzJTl1Etdk0TRYTpaEXx7OpU/WgDrDiN6Jn4ye8fVDVMB/1/ELLhkeYb0YmviZMHLC3BITEQ==
|
||||
datatables.net-scroller@>=2.0.4:
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-scroller/-/datatables.net-scroller-2.0.5.tgz#bc2fce084617c29b12709dc641daaaa7409e237e"
|
||||
integrity sha512-gXxQcbUgDURcxGUCIj+5YBepJJcWWGJgFlewGy/odaAi+H1Ol8TKcXoQD20y2zcO7l5DWEbzNwHwN0bciBONPw==
|
||||
dependencies:
|
||||
datatables.net "^1.10.15"
|
||||
datatables.net ">=1.10.25"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-searchbuilder-bs4@^1.0.1:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder-bs4/-/datatables.net-searchbuilder-bs4-1.1.0.tgz#be7b3d12d689a391d2b89d13727fe5e85f2b051b"
|
||||
integrity sha512-ER4Ma2vFcEyAI95/uRX+Ux0RXIsCsimshSOo5m5HLTrFOW4z6kcZ4VFpsqZFG/tAkaQLboQ8/w1mJRpvOc3v9w==
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder-bs4/-/datatables.net-searchbuilder-bs4-1.2.0.tgz#dd7c3a628fae677144a0896b214270b198979ddf"
|
||||
integrity sha512-he28hLpUDEqRtsJZJ9NEIYNeVon7WVqIJ5w5qaVwOVVVLkph+cQw2xJFPF6LcPJAtEOmtcSTXOuLCpkhj5dCfA==
|
||||
dependencies:
|
||||
datatables.net-bs4 "^1.10.15"
|
||||
datatables.net-searchbuilder "1.1.0"
|
||||
datatables.net-bs4 ">=1.10.25"
|
||||
datatables.net-searchbuilder ">=1.1.0"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-searchbuilder@1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder/-/datatables.net-searchbuilder-1.1.0.tgz#f5895a31770cb736cabd033f53e90c81da25978a"
|
||||
integrity sha512-dYkCizbrii7hcNDAsNmMulR1F/e3BwFrOy50yMmTvIJL92b5yjSSSRMIJhVn3vlxi0Dggk507iPy7PdLqA5LJg==
|
||||
datatables.net-searchbuilder@>=1.1.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchbuilder/-/datatables.net-searchbuilder-1.2.0.tgz#c400b54f6defebc1961e366d424cd55447d2bc14"
|
||||
integrity sha512-PuMmwpsKBaqrB3KAPxHCE3YIopXVSsI0EKOlJa7Gbl9v5AdjlXdnAi3V6hglAeI1ZEhNeQjt7/XyswotkYrMRA==
|
||||
dependencies:
|
||||
datatables.net "^1.10.15"
|
||||
datatables.net ">=1.10.25"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-searchpanes-bs4@^1.2.2:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchpanes-bs4/-/datatables.net-searchpanes-bs4-1.3.0.tgz#9e9940e147eeae6f1172e8ecc49d368c1f125426"
|
||||
integrity sha512-TgN5jCRksaT3jn/k654tiTNzdWvqbGY45Pfh8JDzFPluR1E/BKrLbGJaG3nxneupe9pYvmzZCIX0h5aeOuHxPw==
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchpanes-bs4/-/datatables.net-searchpanes-bs4-1.4.0.tgz#efe09f8093fabd5ef311467eac198480873fb9bd"
|
||||
integrity sha512-Floxzmw2cQkUQdI7Vv4IWtLqLmwPrmY6MPncbEWq4YvkSeaZW7OHzSmZLLUjMn2P6Huvz59WUVcwL0lSDui6GQ==
|
||||
dependencies:
|
||||
datatables.net-bs4 "^1.10.15"
|
||||
datatables.net-searchpanes "1.3.0"
|
||||
datatables.net-bs4 ">=1.10.25"
|
||||
datatables.net-searchpanes ">=1.3.0"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-searchpanes@1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchpanes/-/datatables.net-searchpanes-1.3.0.tgz#16201d2f9b64d9d895d7df3e776aba24e31f853f"
|
||||
integrity sha512-1K+hoOJp1jypS+Fg1/AC/4tWTfFSatHjDCN4kDk1JJ++U3HeaPcj9zkpgrj0NfuRUJjDUrkEOvZtf3ojq1AJQw==
|
||||
datatables.net-searchpanes@>=1.3.0:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/datatables.net-searchpanes/-/datatables.net-searchpanes-1.4.0.tgz#a923b6e46de3fe99da0acc2244dc7e8673368b3b"
|
||||
integrity sha512-97elV0u2wVosnSq2wS2LXJK3VFEqHKD1o2lz6DnxIobX+OcCD2Y4hKCobp/WFU7TmS20XxydTSoNOZIwTK4E0g==
|
||||
dependencies:
|
||||
datatables.net "^1.10.15"
|
||||
datatables.net ">=1.10.25"
|
||||
jquery ">=1.7"
|
||||
|
||||
datatables.net-select-bs4@^1.3.2:
|
||||
@ -2892,9 +2892,9 @@ domhandler@^4.2.0:
|
||||
domelementtype "^2.2.0"
|
||||
|
||||
domutils@^2.0.0, domutils@^2.6.0:
|
||||
version "2.7.0"
|
||||
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442"
|
||||
integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==
|
||||
version "2.8.0"
|
||||
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
|
||||
integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
|
||||
dependencies:
|
||||
dom-serializer "^1.0.1"
|
||||
domelementtype "^2.2.0"
|
||||
@ -2941,9 +2941,9 @@ ekko-lightbox@^5.3.0:
|
||||
integrity sha512-mbacwySuVD3Ad6F2hTkjSTvJt59bcVv2l/TmBerp4xZnLak8tPtA4AScUn4DL42c1ksTiAO6sGhJZ52P/1Qgew==
|
||||
|
||||
electron-to-chromium@^1.3.811:
|
||||
version "1.3.813"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.813.tgz#751a007d71c00faed8b5e9edaf3634c14b9c5a1f"
|
||||
integrity sha512-YcSRImHt6JZZ2sSuQ4Bzajtk98igQ0iKkksqlzZLzbh4p0OIyJRSvUbsgqfcR8txdfsoYCc4ym306t4p2kP/aw==
|
||||
version "1.3.822"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.822.tgz#7036edc7f669b0aa79e9801dc5f56866c6ddc0b2"
|
||||
integrity sha512-k7jG5oYYHxF4jx6PcqwHX3JVME/OjzolqOZiIogi9xtsfsmTjTdie4x88OakYFPEa8euciTgCCzvVNwvmjHb1Q==
|
||||
|
||||
elliptic@^6.5.3:
|
||||
version "6.5.4"
|
||||
@ -3246,11 +3246,11 @@ express@^4.17.1:
|
||||
vary "~1.1.2"
|
||||
|
||||
ext@^1.1.2:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244"
|
||||
integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==
|
||||
version "1.5.0"
|
||||
resolved "https://registry.yarnpkg.com/ext/-/ext-1.5.0.tgz#e93b97ae0cb23f8370380f6107d2d2b7887687ad"
|
||||
integrity sha512-+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q==
|
||||
dependencies:
|
||||
type "^2.0.0"
|
||||
type "^2.5.0"
|
||||
|
||||
fast-deep-equal@^3.1.1:
|
||||
version "3.1.3"
|
||||
@ -4057,9 +4057,9 @@ isobject@^3.0.1:
|
||||
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
|
||||
|
||||
jest-worker@^27.0.2:
|
||||
version "27.0.6"
|
||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.6.tgz#a5fdb1e14ad34eb228cfe162d9f729cdbfa28aed"
|
||||
integrity sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==
|
||||
version "27.1.0"
|
||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.1.0.tgz#65f4a88e37148ed984ba8ca8492d6b376938c0aa"
|
||||
integrity sha512-mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg==
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
merge-stream "^2.0.0"
|
||||
@ -5699,9 +5699,9 @@ sass-loader@^12.0.0:
|
||||
neo-async "^2.6.2"
|
||||
|
||||
sass@^1.37.0:
|
||||
version "1.38.0"
|
||||
resolved "https://registry.yarnpkg.com/sass/-/sass-1.38.0.tgz#2f3e60a1efdcdc910586fa79dc89d3399a145b4f"
|
||||
integrity sha512-WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g==
|
||||
version "1.38.2"
|
||||
resolved "https://registry.yarnpkg.com/sass/-/sass-1.38.2.tgz#970045d9966180002a8c8f3820fc114cddb42822"
|
||||
integrity sha512-Bz1fG6qiyF0FX6m/I+VxtdVKz1Dfmg/e9kfDy2PhWOkq3T384q2KxwIfP0fXpeI+EyyETdOauH+cRHQDFASllA==
|
||||
dependencies:
|
||||
chokidar ">=3.0.0 <4.0.0"
|
||||
|
||||
@ -6140,15 +6140,15 @@ svg-to-pdfkit@^0.1.8:
|
||||
pdfkit ">=0.8.1"
|
||||
|
||||
svgo@^2.3.0:
|
||||
version "2.4.0"
|
||||
resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.4.0.tgz#0c42653101fd668692c0f69b55b8d7b182ef422b"
|
||||
integrity sha512-W25S1UUm9Lm9VnE0TvCzL7aso/NCzDEaXLaElCUO/KaVitw0+IBicSVfM1L1c0YHK5TOFh73yQ2naCpVHEQ/OQ==
|
||||
version "2.5.0"
|
||||
resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.5.0.tgz#3c9051b606d85a02fcb59f459b19970d2cc2c9bf"
|
||||
integrity sha512-FSdBOOo271VyF/qZnOn1PgwCdt1v4Dx0Sey+U1jgqm1vqRYjPGdip0RGrFW6ItwtkBB8rHgHk26dlVr0uCs82Q==
|
||||
dependencies:
|
||||
"@trysound/sax" "0.1.1"
|
||||
colorette "^1.2.2"
|
||||
commander "^7.1.0"
|
||||
colorette "^1.3.0"
|
||||
commander "^7.2.0"
|
||||
css-select "^4.1.3"
|
||||
css-tree "^1.1.2"
|
||||
css-tree "^1.1.3"
|
||||
csso "^4.2.0"
|
||||
stable "^0.1.8"
|
||||
|
||||
@ -6195,9 +6195,9 @@ terser@^4.6.3:
|
||||
source-map-support "~0.5.12"
|
||||
|
||||
terser@^5.7.0:
|
||||
version "5.7.1"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.1.tgz#2dc7a61009b66bb638305cb2a824763b116bf784"
|
||||
integrity sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==
|
||||
version "5.7.2"
|
||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.2.tgz#d4d95ed4f8bf735cb933e802f2a1829abf545e3f"
|
||||
integrity sha512-0Omye+RD4X7X69O0eql3lC4Heh/5iLj3ggxR/B5ketZLOtLiOqukUgjw3q4PDnNQbsrkKr3UMypqStQG3XKRvw==
|
||||
dependencies:
|
||||
commander "^2.20.0"
|
||||
source-map "~0.7.2"
|
||||
@ -6307,7 +6307,7 @@ type@^1.0.1:
|
||||
resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
|
||||
integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
|
||||
|
||||
type@^2.0.0:
|
||||
type@^2.5.0:
|
||||
version "2.5.0"
|
||||
resolved "https://registry.yarnpkg.com/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d"
|
||||
integrity sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==
|
||||
@ -6318,9 +6318,9 @@ typedarray@^0.0.6:
|
||||
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
||||
|
||||
uiv@^1.3.1:
|
||||
version "1.3.1"
|
||||
resolved "https://registry.yarnpkg.com/uiv/-/uiv-1.3.1.tgz#27affa5863a2f19b6c5131b9cc7734ced26b186b"
|
||||
integrity sha512-ME5XTO6K6qLrprkOxS68s/M+MtosyaooxcJM5mFjX+XlBSNkNGHNXJmw1WUf2kDznGZhrXx9GIU0C0DVybqCGg==
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/uiv/-/uiv-1.4.0.tgz#286fa50b66ff6cda7ae7aa7e516c4f909db420cc"
|
||||
integrity sha512-qFcRYFAqETZYNhxSkKd+MdnWmhtz1H9j2nhayoI/TyLATm6vg1RC8jHA0i+yOjQtsbht7Gmn9fpUqJrQr5Pscg==
|
||||
dependencies:
|
||||
portal-vue "^2.1.7"
|
||||
vue-functional-data-merge "^3.0.0"
|
||||
@ -6527,9 +6527,9 @@ vue-template-es2015-compiler@^1.9.0:
|
||||
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
|
||||
|
||||
vue-typeahead-bootstrap@^2.8.0:
|
||||
version "2.11.1"
|
||||
resolved "https://registry.yarnpkg.com/vue-typeahead-bootstrap/-/vue-typeahead-bootstrap-2.11.1.tgz#62478c6c497254725942696bf57a37138eae7b37"
|
||||
integrity sha512-2gHzFFbSnpEhRSkqEF1Xjj8N9kZyzRZxQZUIzYVg4p+Bv5IzwlLDL2MDqDaZLNbs5WUecUeHvCnFgzXtvuq3AA==
|
||||
version "2.12.0"
|
||||
resolved "https://registry.yarnpkg.com/vue-typeahead-bootstrap/-/vue-typeahead-bootstrap-2.12.0.tgz#7d7301abbc9535d8954a6155113f3b11e02be3b2"
|
||||
integrity sha512-8TAe6UkR796oZA1xVuKlEqSBfg4YpZ3tCO5RNUHexxlOl2N3x5HpOOMqQp/qbRSzuwal2n/hKLjUkYaifgGSxQ==
|
||||
dependencies:
|
||||
lodash "^4.17.20"
|
||||
resize-observer-polyfill "^1.5.0"
|
||||
|
2
public/v2/js/accounts/create.js
vendored
2
public/v2/js/accounts/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/delete.js
vendored
2
public/v2/js/accounts/delete.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/edit.js
vendored
2
public/v2/js/accounts/edit.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/index.js
vendored
2
public/v2/js/accounts/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/show.js
vendored
2
public/v2/js/accounts/show.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/bills/create.js
vendored
2
public/v2/js/bills/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/bills/index.js
vendored
2
public/v2/js/bills/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/budgets/index.js
vendored
2
public/v2/js/budgets/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/dashboard.js
vendored
2
public/v2/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/create.js
vendored
2
public/v2/js/transactions/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/edit.js
vendored
2
public/v2/js/transactions/edit.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/index.js
vendored
2
public/v2/js/transactions/index.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/vendor.js
vendored
2
public/v2/js/vendor.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user