├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Routes.php │ ├── Routing.php │ ├── Security.php │ ├── Services.php │ ├── Session.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── Alokasi.php │ ├── BaseController.php │ ├── Cabang.php │ ├── Home.php │ ├── KartuStok.php │ ├── KategoriProduk.php │ ├── Konsumen.php │ ├── Login.php │ ├── Penjualan.php │ ├── Produk.php │ ├── Salesman.php │ ├── Supplier.php │ ├── User.php │ └── UserProfile.php ├── Database │ ├── Migrations │ │ ├── .gitkeep │ │ ├── 2024-07-27-125132_create_ostock_tables.php │ │ └── 2024-07-27-134447_create_auth_tables.php │ └── Seeds │ │ ├── .gitkeep │ │ ├── AuthGroupsSeeder.php │ │ ├── AuthGroupsUsersSeeder.php │ │ ├── KantorSeeder.php │ │ ├── KategoriProdukSeeder.php │ │ ├── KonsumenSeeder.php │ │ ├── ProdukSeeder.php │ │ ├── SalesmanSeeder.php │ │ ├── SupplierSeeder.php │ │ └── UserSeeder.php ├── Filters │ └── .gitkeep ├── Helpers │ └── .gitkeep ├── Language │ ├── .gitkeep │ └── en │ │ └── Validation.php ├── Libraries │ └── .gitkeep ├── Models │ ├── .gitkeep │ ├── AlokasiModel.php │ ├── AlokasiPerProdukModel.php │ ├── CabangModel.php │ ├── KartuStokModel.php │ ├── KategoriProdukModel.php │ ├── KonsumenModel.php │ ├── PenjualanModel.php │ ├── PenjualanPerProduk.php │ ├── ProdukModel.php │ ├── RoleModel.php │ ├── SalesmanModel.php │ ├── SupplierModel.php │ ├── UsersModel.php │ └── UsersRoleModel.php ├── ThirdParty │ └── .gitkeep ├── ValidationRules │ └── MyRules.php ├── Views │ ├── Pagers │ │ └── pagination.php │ ├── alokasi │ │ ├── detail.php │ │ ├── edit-produk.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── auth │ │ └── login.php │ ├── cabang │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404 copy.php │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ ├── home │ │ └── index.php │ ├── kartu_stok │ │ ├── hasil-cari.php │ │ ├── index.php │ │ ├── pilih-cabang.php │ │ └── tambah-stok-awal.php │ ├── kategori │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── konsumen │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── partials │ │ ├── footer.php │ │ ├── header.php │ │ └── navbar.php │ ├── penjualan │ │ ├── cetak-invoice.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── produk │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── profile │ │ ├── edit.php │ │ ├── index.php │ │ └── ubah-password.php │ ├── salesman │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── supplier │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ ├── templates │ │ └── index.php │ ├── user │ │ ├── edit.php │ │ ├── hasil-cari.php │ │ ├── index.php │ │ └── tambah.php │ └── welcome_message.php └── index.html ├── builds ├── composer.json ├── composer.lock ├── env ├── phpunit.xml.dist ├── preload.php ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── demo.css │ │ ├── demo.min.css │ │ ├── demo.rtl.css │ │ ├── demo.rtl.min.css │ │ ├── tabler-flags.css │ │ ├── tabler-flags.min.css │ │ ├── tabler-flags.rtl.css │ │ ├── tabler-flags.rtl.min.css │ │ ├── tabler-payments.css │ │ ├── tabler-payments.min.css │ │ ├── tabler-payments.rtl.css │ │ ├── tabler-payments.rtl.min.css │ │ ├── tabler-social.css │ │ ├── tabler-social.min.css │ │ ├── tabler-social.rtl.css │ │ ├── tabler-social.rtl.min.css │ │ ├── tabler-vendors.css │ │ ├── tabler-vendors.min.css │ │ ├── tabler-vendors.rtl.css │ │ ├── tabler-vendors.rtl.min.css │ │ ├── tabler.css │ │ ├── tabler.min.css │ │ ├── tabler.rtl.css │ │ └── tabler.rtl.min.css │ ├── img │ │ ├── company │ │ │ └── logo.png │ │ ├── flags │ │ │ ├── ad.svg │ │ │ ├── ae.svg │ │ │ ├── af.svg │ │ │ ├── ag.svg │ │ │ ├── ai.svg │ │ │ ├── al.svg │ │ │ ├── am.svg │ │ │ ├── ao.svg │ │ │ ├── aq.svg │ │ │ ├── ar.svg │ │ │ ├── as.svg │ │ │ ├── at.svg │ │ │ ├── au.svg │ │ │ ├── aw.svg │ │ │ ├── ax.svg │ │ │ ├── az.svg │ │ │ ├── ba.svg │ │ │ ├── bb.svg │ │ │ ├── bd.svg │ │ │ ├── be.svg │ │ │ ├── bf.svg │ │ │ ├── bg.svg │ │ │ ├── bh.svg │ │ │ ├── bi.svg │ │ │ ├── bj.svg │ │ │ ├── bl.svg │ │ │ ├── bm.svg │ │ │ ├── bn.svg │ │ │ ├── bo.svg │ │ │ ├── bq.svg │ │ │ ├── br.svg │ │ │ ├── bs.svg │ │ │ ├── bt.svg │ │ │ ├── bv.svg │ │ │ ├── bw.svg │ │ │ ├── by.svg │ │ │ ├── bz.svg │ │ │ ├── ca.svg │ │ │ ├── cc.svg │ │ │ ├── cd.svg │ │ │ ├── cf.svg │ │ │ ├── cg.svg │ │ │ ├── ch.svg │ │ │ ├── ci.svg │ │ │ ├── ck.svg │ │ │ ├── cl.svg │ │ │ ├── cm.svg │ │ │ ├── cn.svg │ │ │ ├── co.svg │ │ │ ├── cr.svg │ │ │ ├── cu.svg │ │ │ ├── cv.svg │ │ │ ├── cw.svg │ │ │ ├── cx.svg │ │ │ ├── cy.svg │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── dj.svg │ │ │ ├── dk.svg │ │ │ ├── dm.svg │ │ │ ├── do.svg │ │ │ ├── dz.svg │ │ │ ├── ec.svg │ │ │ ├── ee.svg │ │ │ ├── eg.svg │ │ │ ├── eh.svg │ │ │ ├── er.svg │ │ │ ├── es-ct.svg │ │ │ ├── es.svg │ │ │ ├── et.svg │ │ │ ├── eu.svg │ │ │ ├── fi.svg │ │ │ ├── fj.svg │ │ │ ├── fk.svg │ │ │ ├── fm.svg │ │ │ ├── fo.svg │ │ │ ├── fr.svg │ │ │ ├── ga.svg │ │ │ ├── gb-eng.svg │ │ │ ├── gb-nir.svg │ │ │ ├── gb-sct.svg │ │ │ ├── gb-wls.svg │ │ │ ├── gb.svg │ │ │ ├── gd.svg │ │ │ ├── ge.svg │ │ │ ├── gf.svg │ │ │ ├── gg.svg │ │ │ ├── gh.svg │ │ │ ├── gi.svg │ │ │ ├── gl.svg │ │ │ ├── gm.svg │ │ │ ├── gn.svg │ │ │ ├── gp.svg │ │ │ ├── gq.svg │ │ │ ├── gr.svg │ │ │ ├── gs.svg │ │ │ ├── gt.svg │ │ │ ├── gu.svg │ │ │ ├── gw.svg │ │ │ ├── gy.svg │ │ │ ├── hk.svg │ │ │ ├── hm.svg │ │ │ ├── hn.svg │ │ │ ├── hr.svg │ │ │ ├── ht.svg │ │ │ ├── hu.svg │ │ │ ├── id.svg │ │ │ ├── ie.svg │ │ │ ├── il.svg │ │ │ ├── im.svg │ │ │ ├── in.svg │ │ │ ├── io.svg │ │ │ ├── iq.svg │ │ │ ├── ir.svg │ │ │ ├── is.svg │ │ │ ├── it.svg │ │ │ ├── je.svg │ │ │ ├── jm.svg │ │ │ ├── jo.svg │ │ │ ├── jp.svg │ │ │ ├── ke.svg │ │ │ ├── kg.svg │ │ │ ├── kh.svg │ │ │ ├── ki.svg │ │ │ ├── km.svg │ │ │ ├── kn.svg │ │ │ ├── kp.svg │ │ │ ├── kr.svg │ │ │ ├── kw.svg │ │ │ ├── ky.svg │ │ │ ├── kz.svg │ │ │ ├── la.svg │ │ │ ├── lb.svg │ │ │ ├── lc.svg │ │ │ ├── li.svg │ │ │ ├── lk.svg │ │ │ ├── lr.svg │ │ │ ├── ls.svg │ │ │ ├── lt.svg │ │ │ ├── lu.svg │ │ │ ├── lv.svg │ │ │ ├── ly.svg │ │ │ ├── ma.svg │ │ │ ├── mc.svg │ │ │ ├── md.svg │ │ │ ├── me.svg │ │ │ ├── mf.svg │ │ │ ├── mg.svg │ │ │ ├── mh.svg │ │ │ ├── mk.svg │ │ │ ├── ml.svg │ │ │ ├── mm.svg │ │ │ ├── mn.svg │ │ │ ├── mo.svg │ │ │ ├── mp.svg │ │ │ ├── mq.svg │ │ │ ├── mr.svg │ │ │ ├── ms.svg │ │ │ ├── mt.svg │ │ │ ├── mu.svg │ │ │ ├── mv.svg │ │ │ ├── mw.svg │ │ │ ├── mx.svg │ │ │ ├── my.svg │ │ │ ├── mz.svg │ │ │ ├── na.svg │ │ │ ├── nc.svg │ │ │ ├── ne.svg │ │ │ ├── nf.svg │ │ │ ├── ng.svg │ │ │ ├── ni.svg │ │ │ ├── nl.svg │ │ │ ├── no.svg │ │ │ ├── np.svg │ │ │ ├── nr.svg │ │ │ ├── nu.svg │ │ │ ├── nz.svg │ │ │ ├── om.svg │ │ │ ├── pa.svg │ │ │ ├── pe.svg │ │ │ ├── pf.svg │ │ │ ├── pg.svg │ │ │ ├── ph.svg │ │ │ ├── pk.svg │ │ │ ├── pl.svg │ │ │ ├── pm.svg │ │ │ ├── pn.svg │ │ │ ├── pr.svg │ │ │ ├── ps.svg │ │ │ ├── pt.svg │ │ │ ├── pw.svg │ │ │ ├── py.svg │ │ │ ├── qa.svg │ │ │ ├── re.svg │ │ │ ├── ro.svg │ │ │ ├── rs.svg │ │ │ ├── ru.svg │ │ │ ├── rw.svg │ │ │ ├── sa.svg │ │ │ ├── sb.svg │ │ │ ├── sc.svg │ │ │ ├── sd.svg │ │ │ ├── se.svg │ │ │ ├── sg.svg │ │ │ ├── sh.svg │ │ │ ├── si.svg │ │ │ ├── sj.svg │ │ │ ├── sk.svg │ │ │ ├── sl.svg │ │ │ ├── sm.svg │ │ │ ├── sn.svg │ │ │ ├── so.svg │ │ │ ├── sr.svg │ │ │ ├── ss.svg │ │ │ ├── st.svg │ │ │ ├── sv.svg │ │ │ ├── sx.svg │ │ │ ├── sy.svg │ │ │ ├── sz.svg │ │ │ ├── tc.svg │ │ │ ├── td.svg │ │ │ ├── tf.svg │ │ │ ├── tg.svg │ │ │ ├── th.svg │ │ │ ├── tj.svg │ │ │ ├── tk.svg │ │ │ ├── tl.svg │ │ │ ├── tm.svg │ │ │ ├── tn.svg │ │ │ ├── to.svg │ │ │ ├── tr.svg │ │ │ ├── tt.svg │ │ │ ├── tv.svg │ │ │ ├── tw.svg │ │ │ ├── tz.svg │ │ │ ├── ua.svg │ │ │ ├── ug.svg │ │ │ ├── um.svg │ │ │ ├── un.svg │ │ │ ├── us.svg │ │ │ ├── uy.svg │ │ │ ├── uz.svg │ │ │ ├── va.svg │ │ │ ├── vc.svg │ │ │ ├── ve.svg │ │ │ ├── vg.svg │ │ │ ├── vi.svg │ │ │ ├── vn.svg │ │ │ ├── vu.svg │ │ │ ├── wf.svg │ │ │ ├── ws.svg │ │ │ ├── ye.svg │ │ │ ├── yt.svg │ │ │ ├── za.svg │ │ │ ├── zm.svg │ │ │ └── zw.svg │ │ ├── payments │ │ │ ├── 2checkout-dark.svg │ │ │ ├── 2checkout.svg │ │ │ ├── alipay-dark.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-dark.svg │ │ │ ├── amazon.svg │ │ │ ├── americanexpress-dark.svg │ │ │ ├── americanexpress.svg │ │ │ ├── applepay-dark.svg │ │ │ ├── applepay.svg │ │ │ ├── bancontact-dark.svg │ │ │ ├── bancontact.svg │ │ │ ├── bitcoin-dark.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bitpay-dark.svg │ │ │ ├── bitpay.svg │ │ │ ├── blik-dark.svg │ │ │ ├── blik.svg │ │ │ ├── cirrus-dark.svg │ │ │ ├── cirrus.svg │ │ │ ├── clickandbuy-dark.svg │ │ │ ├── clickandbuy.svg │ │ │ ├── coinkite-dark.svg │ │ │ ├── coinkite.svg │ │ │ ├── dinersclub-dark.svg │ │ │ ├── dinersclub.svg │ │ │ ├── directdebit-dark.svg │ │ │ ├── directdebit.svg │ │ │ ├── discover-dark.svg │ │ │ ├── discover.svg │ │ │ ├── dotpay-dark.svg │ │ │ ├── dotpay.svg │ │ │ ├── dwolla-dark.svg │ │ │ ├── dwolla.svg │ │ │ ├── ebay-dark.svg │ │ │ ├── ebay.svg │ │ │ ├── epayco-dark.svg │ │ │ ├── epayco.svg │ │ │ ├── eway-dark.svg │ │ │ ├── eway.svg │ │ │ ├── giropay-dark.svg │ │ │ ├── giropay.svg │ │ │ ├── googlewallet-dark.svg │ │ │ ├── googlewallet.svg │ │ │ ├── ingenico-dark.svg │ │ │ ├── ingenico.svg │ │ │ ├── jcb-dark.svg │ │ │ ├── jcb.svg │ │ │ ├── klarna-dark.svg │ │ │ ├── klarna.svg │ │ │ ├── laser-dark.svg │ │ │ ├── laser.svg │ │ │ ├── maestro-dark.svg │ │ │ ├── maestro.svg │ │ │ ├── mastercard-dark.svg │ │ │ ├── mastercard.svg │ │ │ ├── mir-dark.svg │ │ │ ├── mir.svg │ │ │ ├── monero-dark.svg │ │ │ ├── monero.svg │ │ │ ├── neteller-dark.svg │ │ │ ├── neteller.svg │ │ │ ├── ogone-dark.svg │ │ │ ├── ogone.svg │ │ │ ├── okpay-dark.svg │ │ │ ├── okpay.svg │ │ │ ├── paybox-dark.svg │ │ │ ├── paybox.svg │ │ │ ├── paymill-dark.svg │ │ │ ├── paymill.svg │ │ │ ├── payone-dark.svg │ │ │ ├── payone.svg │ │ │ ├── payoneer-dark.svg │ │ │ ├── payoneer.svg │ │ │ ├── paypal-dark.svg │ │ │ ├── paypal.svg │ │ │ ├── paysafecard-dark.svg │ │ │ ├── paysafecard.svg │ │ │ ├── payu-dark.svg │ │ │ ├── payu.svg │ │ │ ├── payza-dark.svg │ │ │ ├── payza.svg │ │ │ ├── przelewy24-dark.svg │ │ │ ├── przelewy24.svg │ │ │ ├── ripple-dark.svg │ │ │ ├── ripple.svg │ │ │ ├── sage-dark.svg │ │ │ ├── sage.svg │ │ │ ├── sepa-dark.svg │ │ │ ├── sepa.svg │ │ │ ├── shopify-dark.svg │ │ │ ├── shopify.svg │ │ │ ├── skrill-dark.svg │ │ │ ├── skrill.svg │ │ │ ├── solo-dark.svg │ │ │ ├── solo.svg │ │ │ ├── square-dark.svg │ │ │ ├── square.svg │ │ │ ├── stripe-dark.svg │ │ │ ├── stripe.svg │ │ │ ├── switch-dark.svg │ │ │ ├── switch.svg │ │ │ ├── tpay-dark.svg │ │ │ ├── tpay.svg │ │ │ ├── ukash-dark.svg │ │ │ ├── ukash.svg │ │ │ ├── unionpay-dark.svg │ │ │ ├── unionpay.svg │ │ │ ├── verifone-dark.svg │ │ │ ├── verifone.svg │ │ │ ├── verisign-dark.svg │ │ │ ├── verisign.svg │ │ │ ├── visa-dark.svg │ │ │ ├── visa.svg │ │ │ ├── webmoney-dark.svg │ │ │ ├── webmoney.svg │ │ │ ├── westernunion-dark.svg │ │ │ ├── westernunion.svg │ │ │ ├── worldpay-dark.svg │ │ │ └── worldpay.svg │ │ ├── readme │ │ │ ├── db_ostock.png │ │ │ └── mockup_ostock.png │ │ └── user_profile │ │ │ └── user.png │ ├── js │ │ ├── demo-theme.js │ │ ├── demo-theme.min.js │ │ ├── demo.js │ │ ├── demo.min.js │ │ ├── tabler.esm.js │ │ ├── tabler.esm.min.js │ │ ├── tabler.js │ │ └── tabler.min.js │ └── libs │ │ ├── apexcharts │ │ └── dist │ │ │ ├── apexcharts.amd.js │ │ │ ├── apexcharts.common.js │ │ │ ├── apexcharts.css │ │ │ ├── apexcharts.esm.js │ │ │ ├── apexcharts.js │ │ │ ├── apexcharts.min.js │ │ │ └── locales │ │ │ ├── ar.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── hy.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ka.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt-br.json │ │ │ ├── pt.json │ │ │ ├── rs.json │ │ │ ├── ru.json │ │ │ ├── se.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sq.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── fslightbox │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ │ └── tinymce │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── icons │ │ └── default │ │ │ ├── icons.js │ │ │ ├── icons.min.js │ │ │ └── index.js │ │ ├── license.txt │ │ ├── models │ │ └── dom │ │ │ ├── index.js │ │ │ ├── model.js │ │ │ └── model.min.js │ │ ├── package.json │ │ ├── plugins │ │ ├── advlist │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── index.js │ │ │ ├── js │ │ │ │ ├── emojiimages.js │ │ │ │ ├── emojiimages.min.js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ ├── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ └── content.min.css │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── oxide │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ └── skin.shadowdom.min.css │ │ │ ├── tinymce-5-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ └── skin.shadowdom.min.css │ │ │ └── tinymce-5 │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.shadowdom.css │ │ │ └── skin.shadowdom.min.css │ │ ├── themes │ │ └── silver │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── favicon.ico ├── index.php ├── js │ └── code.jquery.com_jquery-3.7.0.min.js └── robots.txt ├── spark ├── tests ├── README.md ├── _support │ ├── Database │ │ ├── Migrations │ │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ │ └── ExampleSeeder.php │ ├── Libraries │ │ └── ConfigReader.php │ └── Models │ │ └── ExampleModel.php ├── database │ └── ExampleDatabaseTest.php ├── session │ └── ExampleSessionTest.php └── unit │ └── HealthTest.php └── writable ├── .htaccess ├── cache └── index.html ├── debugbar └── .gitkeep ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | vendor/* linguist-vendored 2 | public/* linguist-vendored 3 | *.php linguist-detectable 4 | *.js linguist-detectable=false 5 | *.css linguist-detectable=false 6 | assets/js/* linguist-generated -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2019 British Columbia Institute of Technology 4 | Copyright (c) 2019-2024 CodeIgniter Foundation 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- 1 | {label}'; 28 | 29 | /** 30 | * Honeypot container 31 | * 32 | * If you enabled CSP, you can remove `style="display:none"`. 33 | */ 34 | public string $container = '
{template}
'; 35 | 36 | /** 37 | * The id attribute for Honeypot container tag 38 | * 39 | * Used when CSP is enabled. 40 | */ 41 | public string $containerId = 'hpc'; 42 | } 43 | -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- 1 | 26 | */ 27 | public array $handlers = [ 28 | 'gd' => GDHandler::class, 29 | 'imagick' => ImageMagickHandler::class, 30 | ]; 31 | } 32 | -------------------------------------------------------------------------------- /app/Config/Publisher.php: -------------------------------------------------------------------------------- 1 | 23 | */ 24 | public $restrictions = [ 25 | ROOTPATH => '*', 26 | FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i', 27 | ]; 28 | } 29 | -------------------------------------------------------------------------------- /app/Config/Services.php: -------------------------------------------------------------------------------- 1 | 'Login', 11 | 'config' => config('Auth'), 12 | ]; 13 | 14 | return view('auth/login', $data); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/Database/Seeds/.gitkeep -------------------------------------------------------------------------------- /app/Database/Seeds/AuthGroupsSeeder.php: -------------------------------------------------------------------------------- 1 | 'pusat', 14 | 'description' => 'staff kantor pusat.', 15 | ], 16 | [ 17 | 'name' => 'cabang', 18 | 'description' => 'staff cabang.', 19 | ], 20 | ]; 21 | 22 | // Using Query Builder 23 | $this->db->table('auth_groups')->insertBatch($data); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Database/Seeds/AuthGroupsUsersSeeder.php: -------------------------------------------------------------------------------- 1 | 1, 14 | 'user_id' => 1, 15 | ], 16 | [ 17 | 'group_id' => 2, 18 | 'user_id' => 2, 19 | ], 20 | [ 21 | 'group_id' => 2, 22 | 'user_id' => 3, 23 | ], 24 | ]; 25 | 26 | // Using Query Builder 27 | $this->db->table('auth_groups_users')->insertBatch($data); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Database/Seeds/KategoriProdukSeeder.php: -------------------------------------------------------------------------------- 1 | 'Elektronik', 14 | 'slug' => 'elektronik', 15 | ], 16 | [ 17 | 'nama' => 'Peralatan Rumah Tangga', 18 | 'slug' => 'peralatan-rumah-tangga', 19 | ], 20 | ]; 21 | 22 | // Using Query Builder 23 | $this->db->table('kategori_produk')->insertBatch($data); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Database/Seeds/KonsumenSeeder.php: -------------------------------------------------------------------------------- 1 | 2, 14 | 'nama' => 'PT. Sinar Jaya', 15 | 'slug' => 'pt-sinar-jaya', 16 | 'alamat' => 'Jl. Merdeka No. 123', 17 | 'kota' => 'Jakarta', 18 | 'no_telp' => '0214567890', 19 | ], 20 | [ 21 | 'id_cabang' => 3, 22 | 'nama' => 'CV. Makmur Abadi', 23 | 'slug' => 'cv-makmur-abadi', 24 | 'alamat' => ' Jl. Diponegoro No. 456', 25 | 'kota' => 'Bandung', 26 | 'no_telp' => '0225678901', 27 | ], 28 | ]; 29 | 30 | // Using Query Builder 31 | $this->db->table('konsumen')->insertBatch($data); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Database/Seeds/ProdukSeeder.php: -------------------------------------------------------------------------------- 1 | 1, 14 | 'id_supplier' => 1, 15 | 'kode_produk' => 'TLED42', 16 | 'nama' => 'Televisi LED 42"', 17 | 'slug' => 'televisi-led-42', 18 | 'harga_jual' => 5000000, 19 | ], 20 | [ 21 | 'id_kategori' => 2, 22 | 'id_supplier' => 2, 23 | 'kode_produk' => 'MCTBG1', 24 | 'nama' => 'Mesin Cuci 1 Tabung', 25 | 'slug' => 'mesin-cuci-1-tabung', 26 | 'harga_jual' => 2500000, 27 | ], 28 | ]; 29 | 30 | // Using Query Builder 31 | $this->db->table('produk')->insertBatch($data); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Database/Seeds/SalesmanSeeder.php: -------------------------------------------------------------------------------- 1 | 2, 14 | 'nama' => 'Budi Santoso', 15 | 'slug' => 'budi-santoso', 16 | 'no_telp' => '081234567890', 17 | ], 18 | [ 19 | 'id_cabang' => 3, 20 | 'nama' => 'Rina Wijaya', 21 | 'slug' => 'rina-wijaya', 22 | 'no_telp' => '081987654321', 23 | ], 24 | ]; 25 | 26 | // Using Query Builder 27 | $this->db->table('salesman')->insertBatch($data); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Database/Seeds/SupplierSeeder.php: -------------------------------------------------------------------------------- 1 | 'PT. Sumber Sejahtera', 14 | 'slug' => 'pt-sumber-sejahtera', 15 | ], 16 | [ 17 | 'nama' => 'CV. Maju Bersama', 18 | 'slug' => 'cv-maju-bersama', 19 | ], 20 | ]; 21 | 22 | // Using Query Builder 23 | $this->db->table('supplier')->insertBatch($data); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Filters/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/Filters/.gitkeep -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/Helpers/.gitkeep -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/Language/.gitkeep -------------------------------------------------------------------------------- /app/Language/en/Validation.php: -------------------------------------------------------------------------------- 1 | table($this->table); 20 | $builder->select('penjualan_per_produk.*, produk.nama as nama_produk, produk.kode_produk'); 21 | $builder->join('produk', 'produk.id = penjualan_per_produk.id_produk'); 22 | $builder->where('id_penjualan', $id_penjualan); 23 | $builder->limit($perPage, $offset); // Paginasi 24 | 25 | $result = $builder->get()->getResultArray(); 26 | 27 | return $result; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Models/RoleModel.php: -------------------------------------------------------------------------------- 1 | find($user_id); 26 | } else { 27 | // Jika user_id tidak diberikan, kembalikan semua data role pengguna 28 | return $this->findAll(); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/app/ThirdParty/.gitkeep -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | <?= lang('Errors.whoops') ?> 8 | 9 | 12 | 13 | 14 | 15 |
16 | 17 |

18 | 19 |

20 | 21 |
22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/Views/partials/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codeigniter4/appstarter", 3 | "description": "CodeIgniter4 starter app", 4 | "license": "MIT", 5 | "type": "project", 6 | "homepage": "https://codeigniter.com", 7 | "support": { 8 | "forum": "https://forum.codeigniter.com/", 9 | "source": "https://github.com/codeigniter4/CodeIgniter4", 10 | "slack": "https://codeigniterchat.slack.com" 11 | }, 12 | "require": { 13 | "php": "^7.4 || ^8.0", 14 | "codeigniter4/framework": "^4.0", 15 | "myth/auth": "^1.2", 16 | "phpoffice/phpspreadsheet": "^2.0" 17 | }, 18 | "require-dev": { 19 | "fakerphp/faker": "^1.9", 20 | "mikey179/vfsstream": "^1.6", 21 | "phpunit/phpunit": "^9.1" 22 | }, 23 | "autoload": { 24 | "exclude-from-classmap": [ 25 | "**/Database/Migrations/**" 26 | ] 27 | }, 28 | "autoload-dev": { 29 | "psr-4": { 30 | "Tests\\Support\\": "tests/_support" 31 | } 32 | }, 33 | "config": { 34 | "optimize-autoloader": true, 35 | "preferred-install": "dist", 36 | "sort-packages": true 37 | }, 38 | "scripts": { 39 | "test": "phpunit" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /public/assets/css/tabler-social.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | /* prettier-ignore */ 10 | /* prettier-ignore */ -------------------------------------------------------------------------------- /public/assets/css/tabler-social.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | -------------------------------------------------------------------------------- /public/assets/css/tabler-social.rtl.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | /* prettier-ignore */ 10 | /* prettier-ignore */ -------------------------------------------------------------------------------- /public/assets/css/tabler-social.rtl.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | -------------------------------------------------------------------------------- /public/assets/img/company/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/public/assets/img/company/logo.png -------------------------------------------------------------------------------- /public/assets/img/flags/ae.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/am.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/at.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/au.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ax.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/az.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ba.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/be.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bq.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/bw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ca.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ci.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/co.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/cz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/de.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/dj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/dk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/dz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/eh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/es-ct.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/et.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/eu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/fi.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/fm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/fo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/fr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ga.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gb-eng.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gb-sct.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/gy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/hm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/hn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/hu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/id.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/il.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/is.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/it.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/jm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/jo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/jp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ke.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/km.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/kn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/kp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/kw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/la.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/lc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/lr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ls.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/lt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/lu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/lv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mh.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ml.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mq.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/mv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/my.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/na.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/nc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ne.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ng.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/nl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/no.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/np.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/nr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ps.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/pw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/qa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/re.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ro.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ru.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/rw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/se.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/so.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/st.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/sy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/td.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/th.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/to.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/tz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ua.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/uz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/vc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ve.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/vn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/wf.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ws.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/ye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/yt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/flags/za.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/2checkout-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/2checkout.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/blik-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/blik.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/dotpay-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/dotpay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/mir-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/mir.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/neteller-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/neteller.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/skrill-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/skrill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/visa-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/payments/visa.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/readme/db_ostock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/public/assets/img/readme/db_ostock.png -------------------------------------------------------------------------------- /public/assets/img/readme/mockup_ostock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/public/assets/img/readme/mockup_ostock.png -------------------------------------------------------------------------------- /public/assets/img/user_profile/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/public/assets/img/user_profile/user.png -------------------------------------------------------------------------------- /public/assets/js/demo-theme.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | (function (factory) { 10 | typeof define === 'function' && define.amd ? define(factory) : 11 | factory(); 12 | })((function () { 'use strict'; 13 | 14 | var themeStorageKey = "tablerTheme"; 15 | var defaultTheme = "light"; 16 | var selectedTheme; 17 | var params = new Proxy(new URLSearchParams(window.location.search), { 18 | get: function get(searchParams, prop) { 19 | return searchParams.get(prop); 20 | } 21 | }); 22 | if (!!params.theme) { 23 | localStorage.setItem(themeStorageKey, params.theme); 24 | selectedTheme = params.theme; 25 | } else { 26 | var storedTheme = localStorage.getItem(themeStorageKey); 27 | selectedTheme = storedTheme ? storedTheme : defaultTheme; 28 | } 29 | if (selectedTheme === 'dark') { 30 | document.body.setAttribute("data-bs-theme", selectedTheme); 31 | } else { 32 | document.body.removeAttribute("data-bs-theme"); 33 | } 34 | 35 | })); 36 | -------------------------------------------------------------------------------- /public/assets/js/demo-theme.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Tabler v1.0.0-beta19 (https://tabler.io) 3 | * @version 1.0.0-beta19 4 | * @link https://tabler.io 5 | * Copyright 2018-2023 The Tabler Authors 6 | * Copyright 2018-2023 codecalm.net Paweł Kuna 7 | * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE) 8 | */ 9 | !function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";var e,t="tablerTheme",a=new Proxy(new URLSearchParams(window.location.search),{get:function(e,t){return e.get(t)}});if(a.theme)localStorage.setItem(t,a.theme),e=a.theme;else{var n=localStorage.getItem(t);e=n||"light"}"dark"===e?document.body.setAttribute("data-bs-theme",e):document.body.removeAttribute("data-bs-theme")})); -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ar", 3 | "options": { 4 | "months": [ 5 | "يناير", 6 | "فبراير", 7 | "مارس", 8 | "أبريل", 9 | "مايو", 10 | "يونيو", 11 | "يوليو", 12 | "أغسطس", 13 | "سبتمبر", 14 | "أكتوبر", 15 | "نوفمبر", 16 | "ديسمبر" 17 | ], 18 | "shortMonths": [ 19 | "يناير", 20 | "فبراير", 21 | "مارس", 22 | "أبريل", 23 | "مايو", 24 | "يونيو", 25 | "يوليو", 26 | "أغسطس", 27 | "سبتمبر", 28 | "أكتوبر", 29 | "نوفمبر", 30 | "ديسمبر" 31 | ], 32 | "days": [ 33 | "الأحد", 34 | "الإثنين", 35 | "الثلاثاء", 36 | "الأربعاء", 37 | "الخميس", 38 | "الجمعة", 39 | "السبت" 40 | ], 41 | "shortDays": [ 42 | "أحد", 43 | "إثنين", 44 | "ثلاثاء", 45 | "أربعاء", 46 | "خميس", 47 | "جمعة", 48 | "سبت" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "تحميل بصيغة SVG", 52 | "exportToPNG": "تحميل بصيغة PNG", 53 | "exportToCSV": "تحميل بصيغة CSV", 54 | "menu": "القائمة", 55 | "selection": "تحديد", 56 | "selectionZoom": "تكبير التحديد", 57 | "zoomIn": "تكبير", 58 | "zoomOut": "تصغير", 59 | "pan": "تحريك", 60 | "reset": "إعادة التعيين" 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ca", 3 | "options": { 4 | "months": [ 5 | "Gener", 6 | "Febrer", 7 | "Març", 8 | "Abril", 9 | "Maig", 10 | "Juny", 11 | "Juliol", 12 | "Agost", 13 | "Setembre", 14 | "Octubre", 15 | "Novembre", 16 | "Desembre" 17 | ], 18 | "shortMonths": [ 19 | "Gen.", 20 | "Febr.", 21 | "Març", 22 | "Abr.", 23 | "Maig", 24 | "Juny", 25 | "Jul.", 26 | "Ag.", 27 | "Set.", 28 | "Oct.", 29 | "Nov.", 30 | "Des." 31 | ], 32 | "days": [ 33 | "Diumenge", 34 | "Dilluns", 35 | "Dimarts", 36 | "Dimecres", 37 | "Dijous", 38 | "Divendres", 39 | "Dissabte" 40 | ], 41 | "shortDays": ["Dg", "Dl", "Dt", "Dc", "Dj", "Dv", "Ds"], 42 | "toolbar": { 43 | "exportToSVG": "Descarregar SVG", 44 | "exportToPNG": "Descarregar PNG", 45 | "exportToCSV": "Descarregar CSV", 46 | "menu": "Menú", 47 | "selection": "Seleccionar", 48 | "selectionZoom": "Seleccionar Zoom", 49 | "zoomIn": "Augmentar", 50 | "zoomOut": "Disminuir", 51 | "pan": "Navegació", 52 | "reset": "Reiniciar Zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cs", 3 | "options": { 4 | "months": [ 5 | "Leden", 6 | "Únor", 7 | "Březen", 8 | "Duben", 9 | "Květen", 10 | "Červen", 11 | "Červenec", 12 | "Srpen", 13 | "Září", 14 | "Říjen", 15 | "Listopad", 16 | "Prosinec" 17 | ], 18 | "shortMonths": [ 19 | "Led", 20 | "Úno", 21 | "Bře", 22 | "Dub", 23 | "Kvě", 24 | "Čvn", 25 | "Čvc", 26 | "Srp", 27 | "Zář", 28 | "Říj", 29 | "Lis", 30 | "Pro" 31 | ], 32 | "days": [ 33 | "Neděle", 34 | "Pondělí", 35 | "Úterý", 36 | "Středa", 37 | "Čtvrtek", 38 | "Pátek", 39 | "Sobota" 40 | ], 41 | "shortDays": ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"], 42 | "toolbar": { 43 | "exportToSVG": "Stáhnout SVG", 44 | "exportToPNG": "Stáhnout PNG", 45 | "exportToCSV": "Stáhnout CSV", 46 | "menu": "Menu", 47 | "selection": "Vybrat", 48 | "selectionZoom": "Zoom: Vybrat", 49 | "zoomIn": "Zoom: Přiblížit", 50 | "zoomOut": "Zoom: Oddálit", 51 | "pan": "Přesouvat", 52 | "reset": "Resetovat" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "de", 3 | "options": { 4 | "months": [ 5 | "Januar", 6 | "Februar", 7 | "März", 8 | "April", 9 | "Mai", 10 | "Juni", 11 | "Juli", 12 | "August", 13 | "September", 14 | "Oktober", 15 | "November", 16 | "Dezember" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mär", 22 | "Apr", 23 | "Mai", 24 | "Jun", 25 | "Jul", 26 | "Aug", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dez" 31 | ], 32 | "days": [ 33 | "Sonntag", 34 | "Montag", 35 | "Dienstag", 36 | "Mittwoch", 37 | "Donnerstag", 38 | "Freitag", 39 | "Samstag" 40 | ], 41 | "shortDays": ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"], 42 | "toolbar": { 43 | "exportToSVG": "SVG speichern", 44 | "exportToPNG": "PNG speichern", 45 | "exportToCSV": "CSV speichern", 46 | "menu": "Menü", 47 | "selection": "Auswahl", 48 | "selectionZoom": "Auswahl vergrößern", 49 | "zoomIn": "Vergrößern", 50 | "zoomOut": "Verkleinern", 51 | "pan": "Verschieben", 52 | "reset": "Zoom zurücksetzen" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "en", 3 | "options": { 4 | "months": [ 5 | "January", 6 | "February", 7 | "March", 8 | "April", 9 | "May", 10 | "June", 11 | "July", 12 | "August", 13 | "September", 14 | "October", 15 | "November", 16 | "December" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "May", 24 | "Jun", 25 | "Jul", 26 | "Aug", 27 | "Sep", 28 | "Oct", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Sunday", 34 | "Monday", 35 | "Tuesday", 36 | "Wednesday", 37 | "Thursday", 38 | "Friday", 39 | "Saturday" 40 | ], 41 | "shortDays": ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 42 | "toolbar": { 43 | "exportToSVG": "Download SVG", 44 | "exportToPNG": "Download PNG", 45 | "exportToCSV": "Download CSV", 46 | "menu": "Menu", 47 | "selection": "Selection", 48 | "selectionZoom": "Selection Zoom", 49 | "zoomIn": "Zoom In", 50 | "zoomOut": "Zoom Out", 51 | "pan": "Panning", 52 | "reset": "Reset Zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "es", 3 | "options": { 4 | "months": [ 5 | "Enero", 6 | "Febrero", 7 | "Marzo", 8 | "Abril", 9 | "Mayo", 10 | "Junio", 11 | "Julio", 12 | "Agosto", 13 | "Septiembre", 14 | "Octubre", 15 | "Noviembre", 16 | "Diciembre" 17 | ], 18 | "shortMonths": [ 19 | "Ene", 20 | "Feb", 21 | "Mar", 22 | "Abr", 23 | "May", 24 | "Jun", 25 | "Jul", 26 | "Ago", 27 | "Sep", 28 | "Oct", 29 | "Nov", 30 | "Dic" 31 | ], 32 | "days": [ 33 | "Domingo", 34 | "Lunes", 35 | "Martes", 36 | "Miércoles", 37 | "Jueves", 38 | "Viernes", 39 | "Sábado" 40 | ], 41 | "shortDays": ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"], 42 | "toolbar": { 43 | "exportToSVG": "Descargar SVG", 44 | "exportToPNG": "Descargar PNG", 45 | "exportToCSV": "Descargar CSV", 46 | "menu": "Menu", 47 | "selection": "Seleccionar", 48 | "selectionZoom": "Seleccionar Zoom", 49 | "zoomIn": "Aumentar", 50 | "zoomOut": "Disminuir", 51 | "pan": "Navegación", 52 | "reset": "Reiniciar Zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/fa.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fa", 3 | "options": { 4 | "months": [ 5 | "فروردین", 6 | "اردیبهشت", 7 | "خرداد", 8 | "تیر", 9 | "مرداد", 10 | "شهریور", 11 | "مهر", 12 | "آبان", 13 | "آذر", 14 | "دی", 15 | "بهمن", 16 | "اسفند" 17 | ], 18 | "shortMonths": [ 19 | "فرو", 20 | "ارد", 21 | "خرد", 22 | "تیر", 23 | "مرد", 24 | "شهر", 25 | "مهر", 26 | "آبا", 27 | "آذر", 28 | "دی", 29 | "بهمـ", 30 | "اسفـ" 31 | ], 32 | "days": [ 33 | "یکشنبه", 34 | "دوشنبه", 35 | "سه شنبه", 36 | "چهارشنبه", 37 | "پنجشنبه", 38 | "جمعه", 39 | "شنبه" 40 | ], 41 | "shortDays": ["ی", "د", "س", "چ", "پ", "ج", "ش"], 42 | "toolbar": { 43 | "exportToSVG": "دانلود SVG", 44 | "exportToPNG": "دانلود PNG", 45 | "exportToCSV": "دانلود CSV", 46 | "menu": "منو", 47 | "selection": "انتخاب", 48 | "selectionZoom": "بزرگنمایی انتخابی", 49 | "zoomIn": "بزرگنمایی", 50 | "zoomOut": "کوچکنمایی", 51 | "pan": "پیمایش", 52 | "reset": "بازنشانی بزرگنمایی" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "he", 3 | "options": { 4 | "months": [ 5 | "ינואר", 6 | "פברואר", 7 | "מרץ", 8 | "אפריל", 9 | "מאי", 10 | "יוני", 11 | "יולי", 12 | "אוגוסט", 13 | "ספטמבר", 14 | "אוקטובר", 15 | "נובמבר", 16 | "דצמבר" 17 | ], 18 | "shortMonths": [ 19 | "ינו׳", 20 | "פבר׳", 21 | "מרץ", 22 | "אפר׳", 23 | "מאי", 24 | "יוני", 25 | "יולי", 26 | "אוג׳", 27 | "ספט׳", 28 | "אוק׳", 29 | "נוב׳", 30 | "דצמ׳" 31 | ], 32 | "days": [ 33 | "ראשון", 34 | "שני", 35 | "שלישי", 36 | "רביעי", 37 | "חמישי", 38 | "שישי", 39 | "שבת" 40 | ], 41 | "shortDays": ["א׳", "ב׳", "ג׳", "ד׳", "ה׳", "ו׳", "ש׳"], 42 | "toolbar": { 43 | "exportToSVG": "הורד SVG", 44 | "exportToPNG": "הורד PNG", 45 | "exportToCSV": "הורד CSV", 46 | "menu": "תפריט", 47 | "selection": "בחירה", 48 | "selectionZoom": "זום בחירה", 49 | "zoomIn": "הגדלה", 50 | "zoomOut": "הקטנה", 51 | "pan": "הזזה", 52 | "reset": "איפוס תצוגה" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/hi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hi", 3 | "options": { 4 | "months": [ 5 | "जनवरी", 6 | "फ़रवरी", 7 | "मार्च", 8 | "अप्रैल", 9 | "मई", 10 | "जून", 11 | "जुलाई", 12 | "अगस्त", 13 | "सितंबर", 14 | "अक्टूबर", 15 | "नवंबर", 16 | "दिसंबर" 17 | ], 18 | "shortMonths": [ 19 | "जनवरी", 20 | "फ़रवरी", 21 | "मार्च", 22 | "अप्रैल", 23 | "मई", 24 | "जून", 25 | "जुलाई", 26 | "अगस्त", 27 | "सितंबर", 28 | "अक्टूबर", 29 | "नवंबर", 30 | "दिसंबर" 31 | ], 32 | "days": [ 33 | "रविवार", 34 | "सोमवार", 35 | "मंगलवार", 36 | "बुधवार", 37 | "गुरुवार", 38 | "शुक्रवार", 39 | "शनिवार" 40 | ], 41 | "shortDays": ["रवि", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि"], 42 | "toolbar": { 43 | "exportToSVG": "निर्यात SVG", 44 | "exportToPNG": "निर्यात PNG", 45 | "exportToCSV": "निर्यात CSV", 46 | "menu": "सूची", 47 | "selection": "चयन", 48 | "selectionZoom": "ज़ूम करना", 49 | "zoomIn": "ज़ूम इन", 50 | "zoomOut": "ज़ूम आउट", 51 | "pan": "पैनिंग", 52 | "reset": "फिर से कायम करना" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "id", 3 | "options": { 4 | "months": [ 5 | "Januari", 6 | "Februari", 7 | "Maret", 8 | "April", 9 | "Mei", 10 | "Juni", 11 | "Juli", 12 | "Agustus", 13 | "September", 14 | "Oktober", 15 | "November", 16 | "Desember" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Mei", 24 | "Jun", 25 | "Jul", 26 | "Agu", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Des" 31 | ], 32 | "days": ["Minggu", "Senin", "Selasa", "Rabu", "kamis", "Jumat", "Sabtu"], 33 | "shortDays": ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"], 34 | "toolbar": { 35 | "exportToSVG": "Unduh SVG", 36 | "exportToPNG": "Unduh PNG", 37 | "exportToCSV": "Unduh CSV", 38 | "menu": "Menu", 39 | "selection": "Pilihan", 40 | "selectionZoom": "Perbesar Pilihan", 41 | "zoomIn": "Perbesar", 42 | "zoomOut": "Perkecil", 43 | "pan": "Geser", 44 | "reset": "Atur Ulang Zoom" 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "it", 3 | "options": { 4 | "months": [ 5 | "Gennaio", 6 | "Febbraio", 7 | "Marzo", 8 | "Aprile", 9 | "Maggio", 10 | "Giugno", 11 | "Luglio", 12 | "Agosto", 13 | "Settembre", 14 | "Ottobre", 15 | "Novembre", 16 | "Dicembre" 17 | ], 18 | "shortMonths": [ 19 | "Gen", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Mag", 24 | "Giu", 25 | "Lug", 26 | "Ago", 27 | "Set", 28 | "Ott", 29 | "Nov", 30 | "Dic" 31 | ], 32 | "days": [ 33 | "Domenica", 34 | "Lunedì", 35 | "Martedì", 36 | "Mercoledì", 37 | "Giovedì", 38 | "Venerdì", 39 | "Sabato" 40 | ], 41 | "shortDays": ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], 42 | "toolbar": { 43 | "exportToSVG": "Scarica SVG", 44 | "exportToPNG": "Scarica PNG", 45 | "exportToCSV": "Scarica CSV", 46 | "menu": "Menu", 47 | "selection": "Selezione", 48 | "selectionZoom": "Seleziona Zoom", 49 | "zoomIn": "Zoom In", 50 | "zoomOut": "Zoom Out", 51 | "pan": "Sposta", 52 | "reset": "Reimposta Zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ja", 3 | "options": { 4 | "months": [ 5 | "1月", 6 | "2月", 7 | "3月", 8 | "4月", 9 | "5月", 10 | "6月", 11 | "7月", 12 | "8月", 13 | "9月", 14 | "10月", 15 | "11月", 16 | "12月" 17 | ], 18 | "shortMonths": [ 19 | "1月", 20 | "2月", 21 | "3月", 22 | "4月", 23 | "5月", 24 | "6月", 25 | "7月", 26 | "8月", 27 | "9月", 28 | "10月", 29 | "11月", 30 | "12月" 31 | ], 32 | "days": [ 33 | "日曜日", 34 | "月曜日", 35 | "火曜日", 36 | "水曜日", 37 | "木曜日", 38 | "金曜日", 39 | "土曜日" 40 | ], 41 | "shortDays": ["日", "月", "火", "水", "木", "金", "土"], 42 | "toolbar": { 43 | "exportToSVG": "SVGダウンロード", 44 | "exportToPNG": "PNGダウンロード", 45 | "exportToCSV": "CSVダウンロード", 46 | "menu": "メニュー", 47 | "selection": "選択", 48 | "selectionZoom": "選択ズーム", 49 | "zoomIn": "拡大", 50 | "zoomOut": "縮小", 51 | "pan": "パン", 52 | "reset": "ズームリセット" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ko", 3 | "options": { 4 | "months": [ 5 | "1월", 6 | "2월", 7 | "3월", 8 | "4월", 9 | "5월", 10 | "6월", 11 | "7월", 12 | "8월", 13 | "9월", 14 | "10월", 15 | "11월", 16 | "12월" 17 | ], 18 | "shortMonths": [ 19 | "1월", 20 | "2월", 21 | "3월", 22 | "4월", 23 | "5월", 24 | "6월", 25 | "7월", 26 | "8월", 27 | "9월", 28 | "10월", 29 | "11월", 30 | "12월" 31 | ], 32 | "days": [ 33 | "일요일", 34 | "월요일", 35 | "화요일", 36 | "수요일", 37 | "목요일", 38 | "금요일", 39 | "토요일" 40 | ], 41 | "shortDays": ["일", "월", "화", "수", "목", "금", "토"], 42 | "toolbar": { 43 | "exportToSVG": "SVG 다운로드", 44 | "exportToPNG": "PNG 다운로드", 45 | "exportToCSV": "CSV 다운로드", 46 | "menu": "메뉴", 47 | "selection": "선택", 48 | "selectionZoom": "선택영역 확대", 49 | "zoomIn": "확대", 50 | "zoomOut": "축소", 51 | "pan": "패닝", 52 | "reset": "원래대로" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nb", 3 | "options": { 4 | "months": [ 5 | "Januar", 6 | "Februar", 7 | "Mars", 8 | "April", 9 | "Mai", 10 | "Juni", 11 | "Juli", 12 | "August", 13 | "September", 14 | "Oktober", 15 | "November", 16 | "Desember" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Mai", 24 | "Jun", 25 | "Jul", 26 | "Aug", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Des" 31 | ], 32 | "days": [ 33 | "Søndag", 34 | "Mandag", 35 | "Tirsdag", 36 | "Onsdag", 37 | "Torsdag", 38 | "Fredag", 39 | "Lørdag" 40 | ], 41 | "shortDays": ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø"], 42 | "toolbar": { 43 | "exportToSVG": "Last ned SVG", 44 | "exportToPNG": "Last ned PNG", 45 | "exportToCSV": "Last ned CSV", 46 | "menu": "Menu", 47 | "selection": "Velg", 48 | "selectionZoom": "Zoom: Velg", 49 | "zoomIn": "Zoome inn", 50 | "zoomOut": "Zoome ut", 51 | "pan": "Skyving", 52 | "reset": "Start på nytt" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nl", 3 | "options": { 4 | "months": [ 5 | "Januari", 6 | "Februari", 7 | "Maart", 8 | "April", 9 | "Mei", 10 | "Juni", 11 | "Juli", 12 | "Augustus", 13 | "September", 14 | "Oktober", 15 | "November", 16 | "December" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mrt", 22 | "Apr", 23 | "Mei", 24 | "Jun", 25 | "Jul", 26 | "Aug", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Zondag", 34 | "Maandag", 35 | "Dinsdag", 36 | "Woensdag", 37 | "Donderdag", 38 | "Vrijdag", 39 | "Zaterdag" 40 | ], 41 | "shortDays": ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"], 42 | "toolbar": { 43 | "exportToSVG": "Download SVG", 44 | "exportToPNG": "Download PNG", 45 | "exportToCSV": "Download CSV", 46 | "menu": "Menu", 47 | "selection": "Selectie", 48 | "selectionZoom": "Zoom selectie", 49 | "zoomIn": "Zoom in", 50 | "zoomOut": "Zoom out", 51 | "pan": "Verplaatsen", 52 | "reset": "Standaardwaarden" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pl", 3 | "options": { 4 | "months": [ 5 | "Styczeń", 6 | "Luty", 7 | "Marzec", 8 | "Kwiecień", 9 | "Maj", 10 | "Czerwiec", 11 | "Lipiec", 12 | "Sierpień", 13 | "Wrzesień", 14 | "Październik", 15 | "Listopad", 16 | "Grudzień" 17 | ], 18 | "shortMonths": [ 19 | "Sty", 20 | "Lut", 21 | "Mar", 22 | "Kwi", 23 | "Maj", 24 | "Cze", 25 | "Lip", 26 | "Sie", 27 | "Wrz", 28 | "Paź", 29 | "Lis", 30 | "Gru" 31 | ], 32 | "days": [ 33 | "Niedziela", 34 | "Poniedziałek", 35 | "Wtorek", 36 | "Środa", 37 | "Czwartek", 38 | "Piątek", 39 | "Sobota" 40 | ], 41 | "shortDays": ["Nd", "Pn", "Wt", "Śr", "Cz", "Pt", "Sb"], 42 | "toolbar": { 43 | "exportToSVG": "Pobierz SVG", 44 | "exportToPNG": "Pobierz PNG", 45 | "exportToCSV": "Pobierz CSV", 46 | "menu": "Menu", 47 | "selection": "Wybieranie", 48 | "selectionZoom": "Zoom: Wybieranie", 49 | "zoomIn": "Zoom: Przybliż", 50 | "zoomOut": "Zoom: Oddal", 51 | "pan": "Przesuwanie", 52 | "reset": "Resetuj" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/pt-br.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pt-br", 3 | "options": { 4 | "months": [ 5 | "Janeiro", 6 | "Fevereiro", 7 | "Março", 8 | "Abril", 9 | "Maio", 10 | "Junho", 11 | "Julho", 12 | "Agosto", 13 | "Setembro", 14 | "Outubro", 15 | "Novembro", 16 | "Dezembro" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Fev", 21 | "Mar", 22 | "Abr", 23 | "Mai", 24 | "Jun", 25 | "Jul", 26 | "Ago", 27 | "Set", 28 | "Out", 29 | "Nov", 30 | "Dez" 31 | ], 32 | "days": [ 33 | "Domingo", 34 | "Segunda", 35 | "Terça", 36 | "Quarta", 37 | "Quinta", 38 | "Sexta", 39 | "Sábado" 40 | ], 41 | "shortDays": ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"], 42 | "toolbar": { 43 | "exportToSVG": "Baixar SVG", 44 | "exportToPNG": "Baixar PNG", 45 | "exportToCSV": "Baixar CSV", 46 | "menu": "Menu", 47 | "selection": "Selecionar", 48 | "selectionZoom": "Selecionar Zoom", 49 | "zoomIn": "Aumentar", 50 | "zoomOut": "Diminuir", 51 | "pan": "Navegação", 52 | "reset": "Reiniciar Zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pt", 3 | "options": { 4 | "months": [ 5 | "Janeiro", 6 | "Fevereiro", 7 | "Março", 8 | "Abril", 9 | "Maio", 10 | "Junho", 11 | "Julho", 12 | "Agosto", 13 | "Setembro", 14 | "Outubro", 15 | "Novembro", 16 | "Dezembro" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Fev", 21 | "Mar", 22 | "Abr", 23 | "Mai", 24 | "Jun", 25 | "Jul", 26 | "Ag", 27 | "Set", 28 | "Out", 29 | "Nov", 30 | "Dez" 31 | ], 32 | "days": [ 33 | "Domingo", 34 | "Segunda-feira", 35 | "Terça-feira", 36 | "Quarta-feira", 37 | "Quinta-feira", 38 | "Sexta-feira", 39 | "Sábado" 40 | ], 41 | "shortDays": ["Do", "Se", "Te", "Qa", "Qi", "Sx", "Sa"], 42 | "toolbar": { 43 | "exportToSVG": "Baixar SVG", 44 | "exportToPNG": "Baixar PNG", 45 | "exportToCSV": "Baixar CSV", 46 | "menu": "Menu", 47 | "selection": "Selecionar", 48 | "selectionZoom": "Zoom: Selecionar", 49 | "zoomIn": "Zoom: Aumentar", 50 | "zoomOut": "Zoom: Diminuir", 51 | "pan": "Deslocamento", 52 | "reset": "Redefinir" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/rs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rs", 3 | "options": { 4 | "months": [ 5 | "Januar", 6 | "Februar", 7 | "Mart", 8 | "April", 9 | "Maj", 10 | "Jun", 11 | "Jul", 12 | "Avgust", 13 | "Septembar", 14 | "Oktobar", 15 | "Novembar", 16 | "Decembar" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Maj", 24 | "Jun", 25 | "Jul", 26 | "Avg", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Nedelja", 34 | "Ponedeljak", 35 | "Utorak", 36 | "Sreda", 37 | "Četvrtak", 38 | "Petak", 39 | "Subota" 40 | ], 41 | "shortDays": ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub"], 42 | "toolbar": { 43 | "exportToSVG": "Preuzmi SVG", 44 | "exportToPNG": "Preuzmi PNG", 45 | "exportToCSV": "Preuzmi CSV", 46 | "menu": "Meni", 47 | "selection": "Odabir", 48 | "selectionZoom": "Odabirno povećanje", 49 | "zoomIn": "Uvećajte prikaz", 50 | "zoomOut": "Umanjite prikaz", 51 | "pan": "Pomeranje", 52 | "reset": "Resetuj prikaz" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ru", 3 | "options": { 4 | "months": [ 5 | "Январь", 6 | "Февраль", 7 | "Март", 8 | "Апрель", 9 | "Май", 10 | "Июнь", 11 | "Июль", 12 | "Август", 13 | "Сентябрь", 14 | "Октябрь", 15 | "Ноябрь", 16 | "Декабрь" 17 | ], 18 | "shortMonths": [ 19 | "Янв", 20 | "Фев", 21 | "Мар", 22 | "Апр", 23 | "Май", 24 | "Июн", 25 | "Июл", 26 | "Авг", 27 | "Сен", 28 | "Окт", 29 | "Ноя", 30 | "Дек" 31 | ], 32 | "days": [ 33 | "Воскресенье", 34 | "Понедельник", 35 | "Вторник", 36 | "Среда", 37 | "Четверг", 38 | "Пятница", 39 | "Суббота" 40 | ], 41 | "shortDays": ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 42 | "toolbar": { 43 | "exportToSVG": "Сохранить SVG", 44 | "exportToPNG": "Сохранить PNG", 45 | "exportToCSV": "Сохранить CSV", 46 | "menu": "Меню", 47 | "selection": "Выбор", 48 | "selectionZoom": "Выбор с увеличением", 49 | "zoomIn": "Увеличить", 50 | "zoomOut": "Уменьшить", 51 | "pan": "Перемещение", 52 | "reset": "Сбросить увеличение" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/se.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "se", 3 | "options": { 4 | "months": [ 5 | "Januari", 6 | "Februari", 7 | "Mars", 8 | "April", 9 | "Maj", 10 | "Juni", 11 | "Juli", 12 | "Augusti", 13 | "September", 14 | "Oktober", 15 | "November", 16 | "December" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Maj", 24 | "Juni", 25 | "Juli", 26 | "Aug", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Söndag", 34 | "Måndag", 35 | "Tisdag", 36 | "Onsdag", 37 | "Torsdag", 38 | "Fredag", 39 | "Lördag" 40 | ], 41 | "shortDays": ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör"], 42 | "toolbar": { 43 | "exportToSVG": "Ladda SVG", 44 | "exportToPNG": "Ladda PNG", 45 | "exportToCSV": "Ladda CSV", 46 | "menu": "Meny", 47 | "selection": "Selektion", 48 | "selectionZoom": "Val av zoom", 49 | "zoomIn": "Zooma in", 50 | "zoomOut": "Zooma ut", 51 | "pan": "Panorering", 52 | "reset": "Återställ zoomning" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sk", 3 | "options": { 4 | "months": [ 5 | "Január", 6 | "Február", 7 | "Marec", 8 | "Apríl", 9 | "Máj", 10 | "Jún", 11 | "Júl", 12 | "August", 13 | "September", 14 | "Október", 15 | "November", 16 | "December" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Máj", 24 | "Jún", 25 | "Júl", 26 | "Aug", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Nedeľa", 34 | "Pondelok", 35 | "Utorok", 36 | "Streda", 37 | "Štvrtok", 38 | "Piatok", 39 | "Sobota" 40 | ], 41 | "shortDays": ["Ne", "Po", "Ut", "St", "Št", "Pi", "So"], 42 | "toolbar": { 43 | "exportToSVG": "Stiahnuť SVG", 44 | "exportToPNG": "Stiahnuť PNG", 45 | "exportToCSV": "Stiahnuť CSV", 46 | "menu": "Menu", 47 | "selection": "Vyberanie", 48 | "selectionZoom": "Zoom: Vyberanie", 49 | "zoomIn": "Zoom: Priblížiť", 50 | "zoomOut": "Zoom: Vzdialiť", 51 | "pan": "Presúvanie", 52 | "reset": "Resetovať" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sl", 3 | "options": { 4 | "months": [ 5 | "Januar", 6 | "Februar", 7 | "Marec", 8 | "April", 9 | "Maj", 10 | "Junij", 11 | "Julij", 12 | "Avgust", 13 | "Septemer", 14 | "Oktober", 15 | "November", 16 | "December" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Feb", 21 | "Mar", 22 | "Apr", 23 | "Maj", 24 | "Jun", 25 | "Jul", 26 | "Avg", 27 | "Sep", 28 | "Okt", 29 | "Nov", 30 | "Dec" 31 | ], 32 | "days": [ 33 | "Nedelja", 34 | "Ponedeljek", 35 | "Torek", 36 | "Sreda", 37 | "Četrtek", 38 | "Petek", 39 | "Sobota" 40 | ], 41 | "shortDays": ["Ne", "Po", "To", "Sr", "Če", "Pe", "So"], 42 | "toolbar": { 43 | "exportToSVG": "Prenesi SVG", 44 | "exportToPNG": "Prenesi PNG", 45 | "exportToCSV": "Prenesi CSV", 46 | "menu": "Menu", 47 | "selection": "Izbiranje", 48 | "selectionZoom": "Zoom: Izbira", 49 | "zoomIn": "Zoom: Približaj", 50 | "zoomOut": "Zoom: Oddalji", 51 | "pan": "Pomikanje", 52 | "reset": "Resetiraj" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/sq.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sq", 3 | "options": { 4 | "months": [ 5 | "Janar", 6 | "Shkurt", 7 | "Mars", 8 | "Prill", 9 | "Maj", 10 | "Qershor", 11 | "Korrik", 12 | "Gusht", 13 | "Shtator", 14 | "Tetor", 15 | "Nëntor", 16 | "Dhjetor" 17 | ], 18 | "shortMonths": [ 19 | "Jan", 20 | "Shk", 21 | "Mar", 22 | "Pr", 23 | "Maj", 24 | "Qer", 25 | "Korr", 26 | "Gush", 27 | "Sht", 28 | "Tet", 29 | "Nën", 30 | "Dhj" 31 | ], 32 | "days": [ 33 | "e Dielë", 34 | "e Hënë", 35 | "e Martë", 36 | "e Mërkurë", 37 | "e Enjte", 38 | "e Premte", 39 | "e Shtunë" 40 | ], 41 | "shortDays": ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Sht"], 42 | "toolbar": { 43 | "exportToSVG": "Shkarko SVG", 44 | "exportToPNG": "Shkarko PNG", 45 | "exportToCSV": "Shkarko CSV", 46 | "menu": "Menu", 47 | "selection": "Seleksiono", 48 | "selectionZoom": "Seleksiono Zmadhim", 49 | "zoomIn": "Zmadho", 50 | "zoomOut": "Zvogëlo", 51 | "pan": "Spostoje", 52 | "reset": "Rikthe dimensionin" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/th.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "th", 3 | "options": { 4 | "months": [ 5 | "มกราคม", 6 | "กุมภาพันธ์", 7 | "มีนาคม", 8 | "เมษายน", 9 | "พฤษภาคม", 10 | "มิถุนายน", 11 | "กรกฎาคม", 12 | "สิงหาคม", 13 | "กันยายน", 14 | "ตุลาคม", 15 | "พฤศจิกายน", 16 | "ธันวาคม" 17 | ], 18 | "shortMonths": [ 19 | "ม.ค.", 20 | "ก.พ.", 21 | "มี.ค.", 22 | "เม.ย.", 23 | "พ.ค.", 24 | "มิ.ย.", 25 | "ก.ค.", 26 | "ส.ค.", 27 | "ก.ย.", 28 | "ต.ค.", 29 | "พ.ย.", 30 | "ธ.ค." 31 | ], 32 | "days": [ 33 | "อาทิตย์", 34 | "จันทร์", 35 | "อังคาร", 36 | "พุธ", 37 | "พฤหัสบดี", 38 | "ศุกร์", 39 | "เสาร์" 40 | ], 41 | "shortDays": ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส"], 42 | "toolbar": { 43 | "exportToSVG": "ดาวน์โหลด SVG", 44 | "exportToPNG": "ดาวน์โหลด PNG", 45 | "exportToCSV": "ดาวน์โหลด CSV", 46 | "menu": "เมนู", 47 | "selection": "เลือก", 48 | "selectionZoom": "เลือกจุดที่จะซูม", 49 | "zoomIn": "ซูมเข้า", 50 | "zoomOut": "ซูมออก", 51 | "pan": "ปรากฎว่า", 52 | "reset": "รีเซ็ตการซูม" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tr", 3 | "options": { 4 | "months": [ 5 | "Ocak", 6 | "Şubat", 7 | "Mart", 8 | "Nisan", 9 | "Mayıs", 10 | "Haziran", 11 | "Temmuz", 12 | "Ağustos", 13 | "Eylül", 14 | "Ekim", 15 | "Kasım", 16 | "Aralık" 17 | ], 18 | "shortMonths": [ 19 | "Oca", 20 | "Şub", 21 | "Mar", 22 | "Nis", 23 | "May", 24 | "Haz", 25 | "Tem", 26 | "Ağu", 27 | "Eyl", 28 | "Eki", 29 | "Kas", 30 | "Ara" 31 | ], 32 | "days": [ 33 | "Pazar", 34 | "Pazartesi", 35 | "Salı", 36 | "Çarşamba", 37 | "Perşembe", 38 | "Cuma", 39 | "Cumartesi" 40 | ], 41 | "shortDays": ["Paz", "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt"], 42 | "toolbar": { 43 | "exportToSVG": "SVG İndir", 44 | "exportToPNG": "PNG İndir", 45 | "exportToCSV": "CSV İndir", 46 | "menu": "Menü", 47 | "selection": "Seçim", 48 | "selectionZoom": "Seçim Yakınlaştır", 49 | "zoomIn": "Yakınlaştır", 50 | "zoomOut": "Uzaklaştır", 51 | "pan": "Kaydır", 52 | "reset": "Yakınlaştırmayı Sıfırla" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/ua.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ua", 3 | "options": { 4 | "months": [ 5 | "Січень", 6 | "Лютий", 7 | "Березень", 8 | "Квітень", 9 | "Травень", 10 | "Червень", 11 | "Липень", 12 | "Серпень", 13 | "Вересень", 14 | "Жовтень", 15 | "Листопад", 16 | "Грудень" 17 | ], 18 | "shortMonths": [ 19 | "Січ", 20 | "Лют", 21 | "Бер", 22 | "Кві", 23 | "Тра", 24 | "Чер", 25 | "Лип", 26 | "Сер", 27 | "Вер", 28 | "Жов", 29 | "Лис", 30 | "Гру" 31 | ], 32 | "days": [ 33 | "Неділя", 34 | "Понеділок", 35 | "Вівторок", 36 | "Середа", 37 | "Четвер", 38 | "П'ятниця", 39 | "Субота" 40 | ], 41 | "shortDays": ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], 42 | "toolbar": { 43 | "exportToSVG": "Зберегти SVG", 44 | "exportToPNG": "Зберегти PNG", 45 | "exportToCSV": "Зберегти CSV", 46 | "menu": "Меню", 47 | "selection": "Вибір", 48 | "selectionZoom": "Вибір із збільшенням", 49 | "zoomIn": "Збільшити", 50 | "zoomOut": "Зменшити", 51 | "pan": "Переміщення", 52 | "reset": "Скинути збільшення" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zh-cn", 3 | "options": { 4 | "months": [ 5 | "一月", 6 | "二月", 7 | "三月", 8 | "四月", 9 | "五月", 10 | "六月", 11 | "七月", 12 | "八月", 13 | "九月", 14 | "十月", 15 | "十一月", 16 | "十二月" 17 | ], 18 | "shortMonths": [ 19 | "一月", 20 | "二月", 21 | "三月", 22 | "四月", 23 | "五月", 24 | "六月", 25 | "七月", 26 | "八月", 27 | "九月", 28 | "十月", 29 | "十一月", 30 | "十二月" 31 | ], 32 | "days": [ 33 | "星期天", 34 | "星期一", 35 | "星期二", 36 | "星期三", 37 | "星期四", 38 | "星期五", 39 | "星期六" 40 | ], 41 | "shortDays": ["周日", "周一", "周二", "周三", "周四", "周五", "周六"], 42 | "toolbar": { 43 | "exportToSVG": "下载 SVG", 44 | "exportToPNG": "下载 PNG", 45 | "exportToCSV": "下载 CSV", 46 | "menu": "菜单", 47 | "selection": "选择", 48 | "selectionZoom": "选择缩放", 49 | "zoomIn": "放大", 50 | "zoomOut": "缩小", 51 | "pan": "平移", 52 | "reset": "重置缩放" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/apexcharts/dist/locales/zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zh-tw", 3 | "options": { 4 | "months": [ 5 | "一月", 6 | "二月", 7 | "三月", 8 | "四月", 9 | "五月", 10 | "六月", 11 | "七月", 12 | "八月", 13 | "九月", 14 | "十月", 15 | "十一月", 16 | "十二月" 17 | ], 18 | "shortMonths": [ 19 | "一月", 20 | "二月", 21 | "三月", 22 | "四月", 23 | "五月", 24 | "六月", 25 | "七月", 26 | "八月", 27 | "九月", 28 | "十月", 29 | "十一月", 30 | "十二月" 31 | ], 32 | "days": [ 33 | "星期日", 34 | "星期一", 35 | "星期二", 36 | "星期三", 37 | "星期四", 38 | "星期五", 39 | "星期六" 40 | ], 41 | "shortDays": ["週日", "週一", "週二", "週三", "週四", "週五", "週六"], 42 | "toolbar": { 43 | "exportToSVG": "下載 SVG", 44 | "exportToPNG": "下載 PNG", 45 | "exportToCSV": "下載 CSV", 46 | "menu": "菜單", 47 | "selection": "選擇", 48 | "selectionZoom": "選擇縮放", 49 | "zoomIn": "放大", 50 | "zoomOut": "縮小", 51 | "pan": "平移", 52 | "reset": "重置縮放" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /public/assets/libs/fslightbox/LICENSE: -------------------------------------------------------------------------------- 1 | ## The MIT License (MIT) ## 2 | 3 | Copyright (c) Piotr Zdziarski 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tinymce", 3 | "description": "Web based JavaScript HTML WYSIWYG editor control.", 4 | "license": "MIT", 5 | "keywords": [ 6 | "wysiwyg", 7 | "tinymce", 8 | "richtext", 9 | "javascript", 10 | "html", 11 | "text", 12 | "rich editor", 13 | "rich text editor", 14 | "rte", 15 | "rich text", 16 | "contenteditable", 17 | "editing" 18 | ], 19 | "homepage": "https://www.tiny.cloud/", 20 | "ignore": [ 21 | "README.md", 22 | "composer.json", 23 | "package.json", 24 | ".npmignore", 25 | "CHANGELOG.md" 26 | ] 27 | } -------------------------------------------------------------------------------- /public/assets/libs/tinymce/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tinymce/tinymce", 3 | "version": "6.4.2", 4 | "description": "Web based JavaScript HTML WYSIWYG editor control.", 5 | "license": [ 6 | "MIT-only" 7 | ], 8 | "keywords": [ 9 | "wysiwyg", 10 | "tinymce", 11 | "richtext", 12 | "javascript", 13 | "html", 14 | "text", 15 | "rich editor", 16 | "rich text editor", 17 | "rte", 18 | "rich text", 19 | "contenteditable", 20 | "editing" 21 | ], 22 | "homepage": "https://www.tiny.cloud/", 23 | "type": "component", 24 | "extra": { 25 | "component": { 26 | "scripts": [ 27 | "tinymce.js", 28 | "plugins/*/plugin.js", 29 | "themes/*/theme.js", 30 | "models/*/model.js", 31 | "icons/*/icons.js" 32 | ], 33 | "files": [ 34 | "tinymce.min.js", 35 | "plugins/*/plugin.min.js", 36 | "themes/*/theme.min.js", 37 | "models/*/model.min.js", 38 | "skins/**", 39 | "icons/*/icons.min.js" 40 | ] 41 | } 42 | }, 43 | "archive": { 44 | "exclude": [ 45 | "README.md", 46 | "bower.js", 47 | "package.json", 48 | ".npmignore", 49 | "CHANGELOG.md" 50 | ] 51 | } 52 | } -------------------------------------------------------------------------------- /public/assets/libs/tinymce/icons/default/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "default" icons for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/icons/default') 5 | // ES2015: 6 | // import 'tinymce/icons/default' 7 | require('./icons.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/license.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "dom" model for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/models/dom') 5 | // ES2015: 6 | // import 'tinymce/models/dom' 7 | require('./model.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tinymce", 3 | "version": "6.4.2", 4 | "repository": { 5 | "type": "git", 6 | "url": "https://github.com/tinymce/tinymce.git", 7 | "directory": "modules/tinymce" 8 | }, 9 | "description": "Web based JavaScript HTML WYSIWYG editor control.", 10 | "author": "Ephox Corporation DBA Tiny Technologies, Inc", 11 | "main": "tinymce.js", 12 | "types": "tinymce.d.ts", 13 | "license": "MIT", 14 | "keywords": [ 15 | "wysiwyg", 16 | "tinymce", 17 | "richtext", 18 | "javascript", 19 | "html", 20 | "text", 21 | "rich editor", 22 | "rich text editor", 23 | "rte", 24 | "rich text", 25 | "contenteditable", 26 | "editing" 27 | ], 28 | "homepage": "https://www.tiny.cloud/", 29 | "bugs": { 30 | "url": "https://github.com/tinymce/tinymce/issues" 31 | } 32 | } -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/advlist/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "advlist" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/advlist') 5 | // ES2015: 6 | // import 'tinymce/plugins/advlist' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/anchor/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "anchor" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/anchor') 5 | // ES2015: 6 | // import 'tinymce/plugins/anchor' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/autolink/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autolink" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autolink') 5 | // ES2015: 6 | // import 'tinymce/plugins/autolink' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/autoresize/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autoresize" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autoresize') 5 | // ES2015: 6 | // import 'tinymce/plugins/autoresize' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/autosave/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "autosave" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/autosave') 5 | // ES2015: 6 | // import 'tinymce/plugins/autosave' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/charmap/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "charmap" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/charmap') 5 | // ES2015: 6 | // import 'tinymce/plugins/charmap' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "code" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/code') 5 | // ES2015: 6 | // import 'tinymce/plugins/code' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * TinyMCE version 6.4.2 (2023-04-26) 3 | */ 4 | !function(){"use strict";tinymce.util.Tools.resolve("tinymce.PluginManager").add("code",(e=>((e=>{e.addCommand("mceCodeEditor",(()=>{(e=>{const o=(e=>e.getContent({source_view:!0}))(e);e.windowManager.open({title:"Source Code",size:"large",body:{type:"panel",items:[{type:"textarea",name:"code"}]},buttons:[{type:"cancel",name:"cancel",text:"Cancel"},{type:"submit",name:"save",text:"Save",primary:!0}],initialData:{code:o},onSubmit:o=>{((e,o)=>{e.focus(),e.undoManager.transact((()=>{e.setContent(o)})),e.selection.setCursorLocation(),e.nodeChanged()})(e,o.getData().code),o.close()}})})(e)}))})(e),(e=>{const o=()=>e.execCommand("mceCodeEditor");e.ui.registry.addButton("code",{icon:"sourcecode",tooltip:"Source code",onAction:o}),e.ui.registry.addMenuItem("code",{icon:"sourcecode",text:"Source code",onAction:o})})(e),{})))}(); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/codesample/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "codesample" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/codesample') 5 | // ES2015: 6 | // import 'tinymce/plugins/codesample' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/directionality/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "directionality" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/directionality') 5 | // ES2015: 6 | // import 'tinymce/plugins/directionality' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/emoticons/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "emoticons" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/emoticons') 5 | // ES2015: 6 | // import 'tinymce/plugins/emoticons' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/fullscreen/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "fullscreen" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/fullscreen') 5 | // ES2015: 6 | // import 'tinymce/plugins/fullscreen' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "help" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/help') 5 | // ES2015: 6 | // import 'tinymce/plugins/help' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/image/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "image" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/image') 5 | // ES2015: 6 | // import 'tinymce/plugins/image' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/importcss/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "importcss" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/importcss') 5 | // ES2015: 6 | // import 'tinymce/plugins/importcss' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/insertdatetime/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "insertdatetime" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/insertdatetime') 5 | // ES2015: 6 | // import 'tinymce/plugins/insertdatetime' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "link" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/link') 5 | // ES2015: 6 | // import 'tinymce/plugins/link' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/lists/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "lists" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/lists') 5 | // ES2015: 6 | // import 'tinymce/plugins/lists' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/media/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "media" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/media') 5 | // ES2015: 6 | // import 'tinymce/plugins/media' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/nonbreaking/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "nonbreaking" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/nonbreaking') 5 | // ES2015: 6 | // import 'tinymce/plugins/nonbreaking' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/pagebreak/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "pagebreak" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/pagebreak') 5 | // ES2015: 6 | // import 'tinymce/plugins/pagebreak' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/preview/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "preview" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/preview') 5 | // ES2015: 6 | // import 'tinymce/plugins/preview' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/quickbars/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "quickbars" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/quickbars') 5 | // ES2015: 6 | // import 'tinymce/plugins/quickbars' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "save" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/save') 5 | // ES2015: 6 | // import 'tinymce/plugins/save' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/searchreplace/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "searchreplace" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/searchreplace') 5 | // ES2015: 6 | // import 'tinymce/plugins/searchreplace' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/table/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "table" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/table') 5 | // ES2015: 6 | // import 'tinymce/plugins/table' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/template/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "template" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/template') 5 | // ES2015: 6 | // import 'tinymce/plugins/template' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/visualblocks/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "visualblocks" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/visualblocks') 5 | // ES2015: 6 | // import 'tinymce/plugins/visualblocks' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/visualblocks/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * TinyMCE version 6.4.2 (2023-04-26) 3 | */ 4 | !function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const s=(t,s,o)=>{t.dom.toggleClass(t.getBody(),"mce-visualblocks"),o.set(!o.get()),((t,s)=>{t.dispatch("VisualBlocks",{state:s})})(t,o.get())},o=("visualblocks_default_state",t=>t.options.get("visualblocks_default_state"));const e=(t,s)=>o=>{o.setActive(s.get());const e=t=>o.setActive(t.state);return t.on("VisualBlocks",e),()=>t.off("VisualBlocks",e)};t.add("visualblocks",((t,l)=>{(t=>{(0,t.options.register)("visualblocks_default_state",{processor:"boolean",default:!1})})(t);const a=(t=>{let s=!1;return{get:()=>s,set:t=>{s=t}}})();((t,o,e)=>{t.addCommand("mceVisualBlocks",(()=>{s(t,0,e)}))})(t,0,a),((t,s)=>{const o=()=>t.execCommand("mceVisualBlocks");t.ui.registry.addToggleButton("visualblocks",{icon:"visualblocks",tooltip:"Show blocks",onAction:o,onSetup:e(t,s)}),t.ui.registry.addToggleMenuItem("visualblocks",{text:"Show blocks",icon:"visualblocks",onAction:o,onSetup:e(t,s)})})(t,a),((t,e,l)=>{t.on("PreviewFormats AfterPreviewFormats",(s=>{l.get()&&t.dom.toggleClass(t.getBody(),"mce-visualblocks","afterpreviewformats"===s.type)})),t.on("init",(()=>{o(t)&&s(t,0,l)}))})(t,0,a)}))}(); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/visualchars/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "visualchars" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/visualchars') 5 | // ES2015: 6 | // import 'tinymce/plugins/visualchars' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/plugins/wordcount/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "wordcount" plugin for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/plugins/wordcount') 5 | // ES2015: 6 | // import 'tinymce/plugins/wordcount' 7 | require('./plugin.js'); -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/dark/content.min.css: -------------------------------------------------------------------------------- 1 | body{background-color:#222f3e;color:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/default/content.min.css: -------------------------------------------------------------------------------- 1 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/document/content.min.css: -------------------------------------------------------------------------------- 1 | @media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/tinymce-5-dark/content.min.css: -------------------------------------------------------------------------------- 1 | body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/tinymce-5/content.min.css: -------------------------------------------------------------------------------- 1 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/content/writer/content.min.css: -------------------------------------------------------------------------------- 1 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/oxide-dark/skin.shadowdom.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll { 2 | overflow: hidden; 3 | } 4 | .tox-fullscreen { 5 | border: 0; 6 | height: 100%; 7 | margin: 0; 8 | overflow: hidden; 9 | overscroll-behavior: none; 10 | padding: 0; 11 | touch-action: pinch-zoom; 12 | width: 100%; 13 | } 14 | .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle { 15 | display: none; 16 | } 17 | .tox.tox-tinymce.tox-fullscreen, 18 | .tox-shadowhost.tox-fullscreen { 19 | left: 0; 20 | position: fixed; 21 | top: 0; 22 | z-index: 1200; 23 | } 24 | .tox.tox-tinymce.tox-fullscreen { 25 | background-color: transparent; 26 | } 27 | .tox-fullscreen .tox.tox-tinymce-aux, 28 | .tox-fullscreen ~ .tox.tox-tinymce-aux { 29 | z-index: 1201; 30 | } 31 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/oxide/skin.shadowdom.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll { 2 | overflow: hidden; 3 | } 4 | .tox-fullscreen { 5 | border: 0; 6 | height: 100%; 7 | margin: 0; 8 | overflow: hidden; 9 | overscroll-behavior: none; 10 | padding: 0; 11 | touch-action: pinch-zoom; 12 | width: 100%; 13 | } 14 | .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle { 15 | display: none; 16 | } 17 | .tox.tox-tinymce.tox-fullscreen, 18 | .tox-shadowhost.tox-fullscreen { 19 | left: 0; 20 | position: fixed; 21 | top: 0; 22 | z-index: 1200; 23 | } 24 | .tox.tox-tinymce.tox-fullscreen { 25 | background-color: transparent; 26 | } 27 | .tox-fullscreen .tox.tox-tinymce-aux, 28 | .tox-fullscreen ~ .tox.tox-tinymce-aux { 29 | z-index: 1201; 30 | } 31 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/oxide/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll { 2 | overflow: hidden; 3 | } 4 | .tox-fullscreen { 5 | border: 0; 6 | height: 100%; 7 | margin: 0; 8 | overflow: hidden; 9 | overscroll-behavior: none; 10 | padding: 0; 11 | touch-action: pinch-zoom; 12 | width: 100%; 13 | } 14 | .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle { 15 | display: none; 16 | } 17 | .tox.tox-tinymce.tox-fullscreen, 18 | .tox-shadowhost.tox-fullscreen { 19 | left: 0; 20 | position: fixed; 21 | top: 0; 22 | z-index: 1200; 23 | } 24 | .tox.tox-tinymce.tox-fullscreen { 25 | background-color: transparent; 26 | } 27 | .tox-fullscreen .tox.tox-tinymce-aux, 28 | .tox-fullscreen ~ .tox.tox-tinymce-aux { 29 | z-index: 1201; 30 | } 31 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/tinymce-5/skin.shadowdom.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll { 2 | overflow: hidden; 3 | } 4 | .tox-fullscreen { 5 | border: 0; 6 | height: 100%; 7 | margin: 0; 8 | overflow: hidden; 9 | overscroll-behavior: none; 10 | padding: 0; 11 | touch-action: pinch-zoom; 12 | width: 100%; 13 | } 14 | .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle { 15 | display: none; 16 | } 17 | .tox.tox-tinymce.tox-fullscreen, 18 | .tox-shadowhost.tox-fullscreen { 19 | left: 0; 20 | position: fixed; 21 | top: 0; 22 | z-index: 1200; 23 | } 24 | .tox.tox-tinymce.tox-fullscreen { 25 | background-color: transparent; 26 | } 27 | .tox-fullscreen .tox.tox-tinymce-aux, 28 | .tox-fullscreen ~ .tox.tox-tinymce-aux { 29 | z-index: 1201; 30 | } 31 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css: -------------------------------------------------------------------------------- 1 | body.tox-dialog__disable-scroll{overflow:hidden}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201} 2 | -------------------------------------------------------------------------------- /public/assets/libs/tinymce/themes/silver/index.js: -------------------------------------------------------------------------------- 1 | // Exports the "silver" theme for usage with module loaders 2 | // Usage: 3 | // CommonJS: 4 | // require('tinymce/themes/silver') 5 | // ES2015: 6 | // import 'tinymce/themes/silver' 7 | require('./theme.js'); -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /tests/_support/Libraries/ConfigReader.php: -------------------------------------------------------------------------------- 1 | set('logged_in', 123); 16 | $this->assertSame(123, $session->get('logged_in')); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | 7 | -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/debugbar/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephines1/o-stock/d3ecd5560b319a7a31f20add0b3434b699fa5b03/writable/debugbar/.gitkeep -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | --------------------------------------------------------------------------------