├── .gitignore ├── README.md ├── discount-code.html ├── docs.html ├── hire-us.html ├── landingpage ├── index.html └── style.css ├── package-lock.json ├── package.json └── src ├── assets ├── css │ ├── icons │ │ └── tabler-icons │ │ │ ├── fonts │ │ │ ├── tabler-icons.eot │ │ │ ├── tabler-icons.svg │ │ │ ├── tabler-icons.ttf │ │ │ ├── tabler-icons.woff │ │ │ └── tabler-icons.woff2 │ │ │ └── tabler-icons.css │ ├── styles.min.css │ └── styles.min.css.map ├── images │ ├── backgrounds │ │ └── rocket.png │ ├── logos │ │ ├── favicon.png │ │ ├── logo-adminmart.svg │ │ └── logo.svg │ ├── products │ │ ├── s1.jpg │ │ ├── s11.jpg │ │ ├── s4.jpg │ │ ├── s5.jpg │ │ └── s7.jpg │ ├── profile │ │ ├── user-1.jpg │ │ ├── user-2.jpg │ │ ├── user-3.jpg │ │ ├── user-4.jpg │ │ ├── user-5.jpg │ │ ├── user-6.jpg │ │ └── user-7.jpg │ └── svgs │ │ ├── angular-cat-icon.svg │ │ ├── bt-cat-icon.svg │ │ ├── next-cat-icon.svg │ │ ├── nuxt-cat-icon.svg │ │ ├── react-cat-icon.svg │ │ ├── tailwindcss.svg │ │ └── vue-cat-icon.svg ├── js │ ├── app.min.js │ ├── dashboard.js │ └── sidebarmenu.js ├── libs │ ├── apexcharts │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── apexcharts.amd.js │ │ │ ├── apexcharts.common.js │ │ │ ├── apexcharts.css │ │ │ ├── apexcharts.esm.js │ │ │ ├── apexcharts.js │ │ │ ├── apexcharts.min.js │ │ │ └── locales │ │ │ │ ├── ar.json │ │ │ │ ├── be-cyrl.json │ │ │ │ ├── be-latn.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── da.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 │ │ │ │ ├── ms.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 │ │ │ │ ├── vi.json │ │ │ │ ├── zh-cn.json │ │ │ │ └── zh-tw.json │ │ ├── package.json │ │ ├── src │ │ │ ├── apexcharts.js │ │ │ ├── assets │ │ │ │ ├── apexcharts.css │ │ │ │ ├── ico-camera.svg │ │ │ │ ├── ico-home.svg │ │ │ │ ├── ico-menu.svg │ │ │ │ ├── ico-minus-square.svg │ │ │ │ ├── ico-minus.svg │ │ │ │ ├── ico-pan-hand.svg │ │ │ │ ├── ico-pan.svg │ │ │ │ ├── ico-plus-square.svg │ │ │ │ ├── ico-plus.svg │ │ │ │ ├── ico-refresh.svg │ │ │ │ ├── ico-reset.svg │ │ │ │ ├── ico-select.svg │ │ │ │ ├── ico-select1.svg │ │ │ │ ├── ico-zoom-in.svg │ │ │ │ ├── ico-zoom-out.svg │ │ │ │ └── ico-zoom.svg │ │ │ ├── charts │ │ │ │ ├── Bar.js │ │ │ │ ├── BarStacked.js │ │ │ │ ├── BoxCandleStick.js │ │ │ │ ├── HeatMap.js │ │ │ │ ├── Line.js │ │ │ │ ├── Pie.js │ │ │ │ ├── Radar.js │ │ │ │ ├── Radial.js │ │ │ │ ├── RangeBar.js │ │ │ │ ├── Scatter.js │ │ │ │ ├── Treemap.js │ │ │ │ └── common │ │ │ │ │ ├── bar │ │ │ │ │ ├── DataLabels.js │ │ │ │ │ └── Helpers.js │ │ │ │ │ ├── circle │ │ │ │ │ └── Helpers.js │ │ │ │ │ ├── line │ │ │ │ │ └── Helpers.js │ │ │ │ │ └── treemap │ │ │ │ │ └── Helpers.js │ │ │ ├── libs │ │ │ │ ├── Treemap-squared.js │ │ │ │ └── monotone-cubic.js │ │ │ ├── locales │ │ │ │ ├── ar.json │ │ │ │ ├── be-cyrl.json │ │ │ │ ├── be-latn.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── da.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 │ │ │ │ ├── ms.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 │ │ │ │ ├── vi.json │ │ │ │ ├── zh-cn.json │ │ │ │ └── zh-tw.json │ │ │ ├── modules │ │ │ │ ├── Animations.js │ │ │ │ ├── Base.js │ │ │ │ ├── Core.js │ │ │ │ ├── CoreUtils.js │ │ │ │ ├── Crosshairs.js │ │ │ │ ├── Data.js │ │ │ │ ├── DataLabels.js │ │ │ │ ├── Events.js │ │ │ │ ├── Exports.js │ │ │ │ ├── Fill.js │ │ │ │ ├── Filters.js │ │ │ │ ├── Formatters.js │ │ │ │ ├── Graphics.js │ │ │ │ ├── Markers.js │ │ │ │ ├── Range.js │ │ │ │ ├── Responsive.js │ │ │ │ ├── Scales.js │ │ │ │ ├── Series.js │ │ │ │ ├── Theme.js │ │ │ │ ├── TimeScale.js │ │ │ │ ├── TitleSubtitle.js │ │ │ │ ├── Toolbar.js │ │ │ │ ├── ZoomPanSelection.js │ │ │ │ ├── annotations │ │ │ │ │ ├── Annotations.js │ │ │ │ │ ├── Helpers.js │ │ │ │ │ ├── PointsAnnotations.js │ │ │ │ │ ├── XAxisAnnotations.js │ │ │ │ │ └── YAxisAnnotations.js │ │ │ │ ├── axes │ │ │ │ │ ├── Axes.js │ │ │ │ │ ├── AxesUtils.js │ │ │ │ │ ├── Grid.js │ │ │ │ │ ├── XAxis.js │ │ │ │ │ └── YAxis.js │ │ │ │ ├── dimensions │ │ │ │ │ ├── Dimensions.js │ │ │ │ │ ├── Grid.js │ │ │ │ │ ├── Helpers.js │ │ │ │ │ ├── XAxis.js │ │ │ │ │ └── YAxis.js │ │ │ │ ├── helpers │ │ │ │ │ ├── Destroy.js │ │ │ │ │ ├── InitCtxVariables.js │ │ │ │ │ ├── Localization.js │ │ │ │ │ └── UpdateHelpers.js │ │ │ │ ├── legend │ │ │ │ │ ├── Helpers.js │ │ │ │ │ └── Legend.js │ │ │ │ ├── settings │ │ │ │ │ ├── Config.js │ │ │ │ │ ├── Defaults.js │ │ │ │ │ ├── Globals.js │ │ │ │ │ └── Options.js │ │ │ │ └── tooltip │ │ │ │ │ ├── AxesTooltip.js │ │ │ │ │ ├── Intersect.js │ │ │ │ │ ├── Labels.js │ │ │ │ │ ├── Marker.js │ │ │ │ │ ├── Position.js │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tooltip.js │ │ │ │ │ └── Utils.js │ │ │ ├── svgjs │ │ │ │ └── svg.js │ │ │ └── utils │ │ │ │ ├── DateTime.js │ │ │ │ ├── Resize.js │ │ │ │ └── Utils.js │ │ └── types │ │ │ └── apexcharts.d.ts │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── base-component.js │ │ │ │ ├── base-component.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dom │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.js.map │ │ │ │ │ ├── event-handler.js │ │ │ │ │ ├── event-handler.js.map │ │ │ │ │ ├── manipulator.js │ │ │ │ │ ├── manipulator.js.map │ │ │ │ │ ├── selector-engine.js │ │ │ │ │ └── selector-engine.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── offcanvas.js │ │ │ │ ├── offcanvas.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── toast.js │ │ │ │ ├── toast.js.map │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.js.map │ │ │ │ └── util │ │ │ │ │ ├── backdrop.js │ │ │ │ │ ├── backdrop.js.map │ │ │ │ │ ├── component-functions.js │ │ │ │ │ ├── component-functions.js.map │ │ │ │ │ ├── config.js │ │ │ │ │ ├── config.js.map │ │ │ │ │ ├── focustrap.js │ │ │ │ │ ├── focustrap.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── sanitizer.js │ │ │ │ │ ├── sanitizer.js.map │ │ │ │ │ ├── scrollbar.js │ │ │ │ │ ├── scrollbar.js.map │ │ │ │ │ ├── swipe.js │ │ │ │ │ ├── swipe.js.map │ │ │ │ │ ├── template-factory.js │ │ │ │ │ └── template-factory.js.map │ │ │ ├── index.esm.js │ │ │ ├── index.umd.js │ │ │ └── src │ │ │ │ ├── alert.js │ │ │ │ ├── base-component.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── event-handler.js │ │ │ │ ├── manipulator.js │ │ │ │ └── selector-engine.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util │ │ │ │ ├── backdrop.js │ │ │ │ ├── component-functions.js │ │ │ │ ├── config.js │ │ │ │ ├── focustrap.js │ │ │ │ ├── index.js │ │ │ │ ├── sanitizer.js │ │ │ │ ├── scrollbar.js │ │ │ │ ├── swipe.js │ │ │ │ └── template-factory.js │ │ ├── package.json │ │ └── scss │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _maps.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _placeholders.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables-dark.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _color-bg.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _focus-ring.scss │ │ │ ├── _icon-link.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stacks.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ ├── _visually-hidden.scss │ │ │ └── _vr.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _banner.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _color-mode.scss │ │ │ ├── _color-scheme.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ │ ├── utilities │ │ │ └── _api.scss │ │ │ └── vendor │ │ │ └── _rfs.scss │ ├── jquery │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── package.json │ │ └── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── camelCase.js │ │ │ ├── init.js │ │ │ ├── isAttached.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── parseXML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ ├── toType.js │ │ │ └── var │ │ │ │ ├── rhtml.js │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── finalPropName.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rboxStyle.js │ │ │ │ ├── rcustomProp.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── deprecated │ │ │ ├── ajax-event-alias.js │ │ │ └── event.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector.js │ │ │ ├── selector │ │ │ ├── contains.js │ │ │ └── escapeSelector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── flat.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── isFunction.js │ │ │ ├── isWindow.js │ │ │ ├── pnum.js │ │ │ ├── pop.js │ │ │ ├── push.js │ │ │ ├── rcheckableType.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── rtrimCSS.js │ │ │ ├── slice.js │ │ │ ├── sort.js │ │ │ ├── splice.js │ │ │ ├── support.js │ │ │ ├── toString.js │ │ │ └── whitespace.js │ │ │ └── wrap.js │ └── simplebar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── simplebar-core.esm.js │ │ ├── simplebar-core.esm.js.map │ │ ├── simplebar.css │ │ ├── simplebar.d.ts │ │ ├── simplebar.esm.js │ │ ├── simplebar.esm.js.map │ │ ├── simplebar.js │ │ ├── simplebar.min.css │ │ ├── simplebar.min.js │ │ └── simplebar.umd.js │ │ ├── package.json │ │ └── src │ │ ├── helpers.js │ │ ├── index.js │ │ ├── scrollbar-width.js │ │ ├── simplebar.css │ │ └── simplebar.js └── scss │ ├── component │ ├── _card.scss │ └── _reboot.scss │ ├── layouts │ ├── _header.scss │ ├── _layouts.scss │ └── _sidebar.scss │ ├── pages │ └── _dashboard1.scss │ ├── styles.scss │ ├── utilities │ └── _icon-size.scss │ └── variables │ ├── _theme-variables.scss │ └── _variables.scss └── html ├── authentication-login.html ├── authentication-register.html ├── icon-tabler.html ├── index.html ├── sample-page.html ├── ui-alerts.html ├── ui-buttons.html ├── ui-card.html ├── ui-forms.html └── ui-typography.html /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /docs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Modernize Bootstrap Free Template | Docs 6 | 8 | 9 | 10 | 11 |

Modernize Bootstrap Free Template

12 | https://adminmart.github.io/free-documentation/bootstrap/modernize/index.html 13 | 14 | 15 | -------------------------------------------------------------------------------- /hire-us.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Modernize Bootstrap Free Template | Docs 6 | 8 | 9 | 10 | 11 |

Modernize Bootstrap Free Template

12 | https://adminmart.com/hire-us/ 13 | 14 | 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vite", 3 | "description": "Include Bootstrap's source Sass and individual JavaScript plugins with Vite.", 4 | "version": "0.0.0", 5 | "private": true, 6 | "stackblitz": { 7 | "startCommand": "npm start" 8 | }, 9 | "scripts": { 10 | "compile-sass": "npx sass --watch src/assets/scss/styles.scss src/assets/css/styles.min.css" 11 | }, 12 | "devDependencies": { 13 | "sass": "^1.54.8" 14 | }, 15 | "dependencies": { 16 | "apexcharts": "^3.54.1", 17 | "bootstrap": "^5.3.3", 18 | "jquery": "^3.6.3" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/assets/css/icons/tabler-icons/fonts/tabler-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/css/icons/tabler-icons/fonts/tabler-icons.eot -------------------------------------------------------------------------------- /src/assets/css/icons/tabler-icons/fonts/tabler-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/css/icons/tabler-icons/fonts/tabler-icons.ttf -------------------------------------------------------------------------------- /src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff -------------------------------------------------------------------------------- /src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff2 -------------------------------------------------------------------------------- /src/assets/images/backgrounds/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/backgrounds/rocket.png -------------------------------------------------------------------------------- /src/assets/images/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/logos/favicon.png -------------------------------------------------------------------------------- /src/assets/images/products/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/products/s1.jpg -------------------------------------------------------------------------------- /src/assets/images/products/s11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/products/s11.jpg -------------------------------------------------------------------------------- /src/assets/images/products/s4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/products/s4.jpg -------------------------------------------------------------------------------- /src/assets/images/products/s5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/products/s5.jpg -------------------------------------------------------------------------------- /src/assets/images/products/s7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/products/s7.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-1.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-2.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-3.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-4.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-5.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-6.jpg -------------------------------------------------------------------------------- /src/assets/images/profile/user-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminmart/Modernize-bootstrap-free/fc393abfffa404c6439dce91ffc0f213296b8d4b/src/assets/images/profile/user-7.jpg -------------------------------------------------------------------------------- /src/assets/images/svgs/angular-cat-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/assets/images/svgs/nuxt-cat-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/images/svgs/tailwindcss.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/svgs/vue-cat-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/js/app.min.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | // Admin Panel settings 4 | 5 | //**************************** 6 | /* This is for the mini-sidebar if width is less then 1170*/ 7 | //**************************** 8 | var setsidebartype = function () { 9 | var width = 10 | window.innerWidth > 0 ? window.innerWidth : this.screen.width; 11 | if (width < 1199) { 12 | $("#main-wrapper").attr("data-sidebartype", "mini-sidebar"); 13 | $("#main-wrapper").addClass("mini-sidebar"); 14 | } else { 15 | $("#main-wrapper").attr("data-sidebartype", "full"); 16 | $("#main-wrapper").removeClass("mini-sidebar"); 17 | } 18 | }; 19 | $(window).ready(setsidebartype); 20 | $(window).on("resize", setsidebartype); 21 | //**************************** 22 | /* This is for sidebartoggler*/ 23 | //**************************** 24 | $(".sidebartoggler").on("click", function () { 25 | $("#main-wrapper").toggleClass("mini-sidebar"); 26 | if ($("#main-wrapper").hasClass("mini-sidebar")) { 27 | $(".sidebartoggler").prop("checked", !0); 28 | $("#main-wrapper").attr("data-sidebartype", "mini-sidebar"); 29 | } else { 30 | $(".sidebartoggler").prop("checked", !1); 31 | $("#main-wrapper").attr("data-sidebartype", "full"); 32 | } 33 | }); 34 | $(".sidebartoggler").on("click", function () { 35 | $("#main-wrapper").toggleClass("show-sidebar"); 36 | }); 37 | }) -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 ApexCharts 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. -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/be-cyrl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "be-cyrl", 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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/be-latn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "be-latn", 3 | "options": { 4 | "months": [ 5 | "Studzień", 6 | "Luty", 7 | "Sakavik", 8 | "Krasavik", 9 | "Travień", 10 | "Červień", 11 | "Lipień", 12 | "Žnivień", 13 | "Vierasień", 14 | "Kastryčnik", 15 | "Listapad", 16 | "Śniežań" 17 | ], 18 | "shortMonths": [ 19 | "Stu", 20 | "Lut", 21 | "Sak", 22 | "Kra", 23 | "Tra", 24 | "Čer", 25 | "Lip", 26 | "Žni", 27 | "Vie", 28 | "Kas", 29 | "Lis", 30 | "Śni" 31 | ], 32 | "days": [ 33 | "Niadziela", 34 | "Paniadziełak", 35 | "Aŭtorak", 36 | "Sierada", 37 | "Čaćvier", 38 | "Piatnica", 39 | "Subota" 40 | ], 41 | "shortDays": ["Nd", "Pn", "Aŭ", "Sr", "Čć", "Pt", "Sb"], 42 | "toolbar": { 43 | "exportToSVG": "Spampavać SVG", 44 | "exportToPNG": "Spampavać PNG", 45 | "exportToCSV": "Spampavać CSV", 46 | "menu": "Meniu", 47 | "selection": "Vyłučeńnie", 48 | "selectionZoom": "Vyłučeńnie z maštabavańniem", 49 | "zoomIn": "Nablizić", 50 | "zoomOut": "Addalić", 51 | "pan": "Ssoŭvańnie", 52 | "reset": "Skinuć maštabavańnie" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "da", 3 | "options": { 4 | "months": [ 5 | "januar", 6 | "februar", 7 | "marts", 8 | "april", 9 | "maj", 10 | "juni", 11 | "juli", 12 | "august", 13 | "september", 14 | "oktober", 15 | "november", 16 | "december" 17 | ], 18 | "shortMonths": [ 19 | "jan", 20 | "feb", 21 | "mar", 22 | "apr", 23 | "maj", 24 | "jun", 25 | "jul", 26 | "aug", 27 | "sep", 28 | "okt", 29 | "nov", 30 | "dec" 31 | ], 32 | "days": [ 33 | "Søndag", 34 | "Mandag", 35 | "Tirsdag", 36 | "Onsdag", 37 | "Torsdag", 38 | "Fredag", 39 | "Lørdag" 40 | ], 41 | "shortDays": ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 42 | "toolbar": { 43 | "exportToSVG": "Download SVG", 44 | "exportToPNG": "Download PNG", 45 | "exportToCSV": "Download CSV", 46 | "menu": "Menu", 47 | "selection": "Valg", 48 | "selectionZoom": "Zoom til valg", 49 | "zoomIn": "Zoom ind", 50 | "zoomOut": "Zoom ud", 51 | "pan": "Panorér", 52 | "reset": "Nulstil zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "el", 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": "Menu", 47 | "selection": "Επιλογή", 48 | "selectionZoom": "Μεγένθυση βάση επιλογής", 49 | "zoomIn": "Μεγένθυνση", 50 | "zoomOut": "Σμίκρυνση", 51 | "pan": "Μετατόπιση", 52 | "reset": "Επαναφορά μεγένθυνσης" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "et", 3 | "options": { 4 | "months": [ 5 | "jaanuar", 6 | "veebruar", 7 | "märts", 8 | "aprill", 9 | "mai", 10 | "juuni", 11 | "juuli", 12 | "august", 13 | "september", 14 | "oktoober", 15 | "november", 16 | "detsember" 17 | ], 18 | "shortMonths": [ 19 | "jaan", 20 | "veebr", 21 | "märts", 22 | "apr", 23 | "mai", 24 | "juuni", 25 | "juuli", 26 | "aug", 27 | "sept", 28 | "okt", 29 | "nov", 30 | "dets" 31 | ], 32 | "days": [ 33 | "pühapäev", 34 | "esmaspäev", 35 | "teisipäev", 36 | "kolmapäev", 37 | "neljapäev", 38 | "reede", 39 | "laupäev" 40 | ], 41 | "shortDays": [ 42 | "P", 43 | "E", 44 | "T", 45 | "K", 46 | "N", 47 | "R", 48 | "L" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "Lae alla SVG", 52 | "exportToPNG": "Lae alla PNG", 53 | "exportToCSV": "Lae alla CSV", 54 | "menu": "Menüü", 55 | "selection": "Valik", 56 | "selectionZoom": "Valiku suum", 57 | "zoomIn": "Suurenda", 58 | "zoomOut": "Vähenda", 59 | "pan": "Panoraamimine", 60 | "reset": "Lähtesta suum" 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fi", 3 | "options": { 4 | "months": [ 5 | "Tammikuu", 6 | "Helmikuu", 7 | "Maaliskuu", 8 | "Huhtikuu", 9 | "Toukokuu", 10 | "Kesäkuu", 11 | "Heinäkuu", 12 | "Elokuu", 13 | "Syyskuu", 14 | "Lokakuu", 15 | "Marraskuu", 16 | "Joulukuu" 17 | ], 18 | "shortMonths": [ 19 | "Tammi", 20 | "Helmi", 21 | "Maalis", 22 | "Huhti", 23 | "Touko", 24 | "Kesä", 25 | "Heinä", 26 | "Elo", 27 | "Syys", 28 | "Loka", 29 | "Marras", 30 | "Joulu" 31 | ], 32 | "days": [ 33 | "Sunnuntai", 34 | "Maanantai", 35 | "Tiistai", 36 | "Keskiviikko", 37 | "Torstai", 38 | "Perjantai", 39 | "Lauantai" 40 | ], 41 | "shortDays": ["Su", "Ma", "Ti", "Ke", "To", "Pe", "La"], 42 | "toolbar": { 43 | "exportToSVG": "Lataa SVG", 44 | "exportToPNG": "Lataa PNG", 45 | "exportToCSV": "Lataa CSV", 46 | "menu": "Valikko", 47 | "selection": "Valinta", 48 | "selectionZoom": "Valinnan zoomaus", 49 | "zoomIn": "Lähennä", 50 | "zoomOut": "Loitonna", 51 | "pan": "Panoroi", 52 | "reset": "Nollaa zoomaus" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fr", 3 | "options": { 4 | "months": [ 5 | "janvier", 6 | "février", 7 | "mars", 8 | "avril", 9 | "mai", 10 | "juin", 11 | "juillet", 12 | "août", 13 | "septembre", 14 | "octobre", 15 | "novembre", 16 | "décembre" 17 | ], 18 | "shortMonths": [ 19 | "janv.", 20 | "févr.", 21 | "mars", 22 | "avr.", 23 | "mai", 24 | "juin", 25 | "juill.", 26 | "août", 27 | "sept.", 28 | "oct.", 29 | "nov.", 30 | "déc." 31 | ], 32 | "days": [ 33 | "dimanche", 34 | "lundi", 35 | "mardi", 36 | "mercredi", 37 | "jeudi", 38 | "vendredi", 39 | "samedi" 40 | ], 41 | "shortDays": ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."], 42 | "toolbar": { 43 | "exportToSVG": "Télécharger au format SVG", 44 | "exportToPNG": "Télécharger au format PNG", 45 | "exportToCSV": "Télécharger au format CSV", 46 | "menu": "Menu", 47 | "selection": "Sélection", 48 | "selectionZoom": "Sélection et zoom", 49 | "zoomIn": "Zoomer", 50 | "zoomOut": "Dézoomer", 51 | "pan": "Navigation", 52 | "reset": "Réinitialiser le zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hr", 3 | "options": { 4 | "months": [ 5 | "Siječanj", 6 | "Veljača", 7 | "Ožujak", 8 | "Travanj", 9 | "Svibanj", 10 | "Lipanj", 11 | "Srpanj", 12 | "Kolovoz", 13 | "Rujan", 14 | "Listopad", 15 | "Studeni", 16 | "Prosinac" 17 | ], 18 | "shortMonths": [ 19 | "Sij", 20 | "Velj", 21 | "Ožu", 22 | "Tra", 23 | "Svi", 24 | "Lip", 25 | "Srp", 26 | "Kol", 27 | "Ruj", 28 | "Lis", 29 | "Stu", 30 | "Pro" 31 | ], 32 | "days": [ 33 | "Nedjelja", 34 | "Ponedjeljak", 35 | "Utorak", 36 | "Srijeda", 37 | "Četvrtak", 38 | "Petak", 39 | "Subota" 40 | ], 41 | "shortDays": ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 42 | "toolbar": { 43 | "exportToSVG": "Preuzmi SVG", 44 | "exportToPNG": "Preuzmi PNG", 45 | "exportToCSV": "Preuzmi CSV", 46 | "menu": "Izbornik", 47 | "selection": "Odabir", 48 | "selectionZoom": "Odabirno povećanje", 49 | "zoomIn": "Uvećajte prikaz", 50 | "zoomOut": "Umanjite prikaz", 51 | "pan": "Pomicanje", 52 | "reset": "Povratak na zadani prikaz" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/hy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hy", 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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/ka.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ka", 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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lt", 3 | "options": { 4 | "months": [ 5 | "Sausis", 6 | "Vasaris", 7 | "Kovas", 8 | "Balandis", 9 | "Gegužė", 10 | "Birželis", 11 | "Liepa", 12 | "Rugpjūtis", 13 | "Rugsėjis", 14 | "Spalis", 15 | "Lapkritis", 16 | "Gruodis" 17 | ], 18 | "shortMonths": [ 19 | "Sau", 20 | "Vas", 21 | "Kov", 22 | "Bal", 23 | "Geg", 24 | "Bir", 25 | "Lie", 26 | "Rgp", 27 | "Rgs", 28 | "Spl", 29 | "Lap", 30 | "Grd" 31 | ], 32 | "days": [ 33 | "Sekmadienis", 34 | "Pirmadienis", 35 | "Antradienis", 36 | "Trečiadienis", 37 | "Ketvirtadienis", 38 | "Penktadienis", 39 | "Šeštadienis" 40 | ], 41 | "shortDays": ["Sk", "Per", "An", "Tr", "Kt", "Pn", "Št"], 42 | "toolbar": { 43 | "exportToSVG": "Atsisiųsti SVG", 44 | "exportToPNG": "Atsisiųsti PNG", 45 | "exportToCSV": "Atsisiųsti CSV", 46 | "menu": "Menu", 47 | "selection": "Pasirinkimas", 48 | "selectionZoom": "Zoom: Pasirinkimas", 49 | "zoomIn": "Zoom: Priartinti", 50 | "zoomOut": "Zoom: Atitolinti", 51 | "pan": "Perkėlimas", 52 | "reset": "Atstatyti" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lv", 3 | "options": { 4 | "months": [ 5 | "janvāris", 6 | "februāris", 7 | "marts", 8 | "aprīlis", 9 | "maijs", 10 | "jūnijs", 11 | "jūlijs", 12 | "augusts", 13 | "septembris", 14 | "oktobris", 15 | "novembris", 16 | "decembris" 17 | ], 18 | "shortMonths": [ 19 | "janv", 20 | "febr", 21 | "marts", 22 | "apr", 23 | "maijs", 24 | "jūn", 25 | "jūl", 26 | "aug", 27 | "sept", 28 | "okt", 29 | "nov", 30 | "dec" 31 | ], 32 | "days": [ 33 | "svētdiena", 34 | "pirmdiena", 35 | "otrdiena", 36 | "trešdiena", 37 | "ceturtdiena", 38 | "piektdiena", 39 | "sestdiena" 40 | ], 41 | "shortDays": [ 42 | "Sv", 43 | "P", 44 | "O", 45 | "T", 46 | "C", 47 | "P", 48 | "S" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "Lejuplādēt SVG", 52 | "exportToPNG": "Lejuplādēt PNG", 53 | "exportToCSV": "Lejuplādēt CSV", 54 | "menu": "Izvēlne", 55 | "selection": "Atlase", 56 | "selectionZoom": "Pietuvināt atlasi", 57 | "zoomIn": "Pietuvināt", 58 | "zoomOut": "Attālināt", 59 | "pan": "Pārvietoties diagrammā", 60 | "reset": "Atiestatīt pietuvinājumu" 61 | } 62 | } 63 | } 64 | 65 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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": "Transferir SVG", 44 | "exportToPNG": "Transferir PNG", 45 | "exportToCSV": "Transferir 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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/dist/locales/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vi", 3 | "options": { 4 | "months": [ 5 | "Tháng 01", 6 | "Tháng 02", 7 | "Tháng 03", 8 | "Tháng 04", 9 | "Tháng 05", 10 | "Tháng 06", 11 | "Tháng 07", 12 | "Tháng 08", 13 | "Tháng 09", 14 | "Tháng 10", 15 | "Tháng 11", 16 | "Tháng 12" 17 | ], 18 | "shortMonths": [ 19 | "Th01", 20 | "Th02", 21 | "Th03", 22 | "Th04", 23 | "Th05", 24 | "Th06", 25 | "Th07", 26 | "Th08", 27 | "Th09", 28 | "Th10", 29 | "Th11", 30 | "Th12" 31 | ], 32 | "days": [ 33 | "Chủ nhật", 34 | "Thứ hai", 35 | "Thứ ba", 36 | "Thứ Tư", 37 | "Thứ năm", 38 | "Thứ sáu", 39 | "Thứ bảy" 40 | ], 41 | "shortDays": [ 42 | "CN", 43 | "T2", 44 | "T3", 45 | "T4", 46 | "T5", 47 | "T6", 48 | "T7" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "Tải xuống SVG", 52 | "exportToPNG": "Tải xuống PNG", 53 | "exportToCSV": "Tải xuống CSV", 54 | "menu": "Tuỳ chọn", 55 | "selection": "Vùng chọn", 56 | "selectionZoom": "Vùng chọn phóng to", 57 | "zoomIn": "Phóng to", 58 | "zoomOut": "Thu nhỏ", 59 | "pan": "Di chuyển", 60 | "reset": "Đặt lại thu phóng" 61 | } 62 | } 63 | } -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-minus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-pan-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-pan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-plus-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-reset.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-select.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-select1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/assets/ico-zoom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/charts/common/circle/Helpers.js: -------------------------------------------------------------------------------- 1 | import Graphics from '../../../modules/Graphics' 2 | 3 | export default class CircularChartsHelpers { 4 | constructor(ctx) { 5 | this.ctx = ctx 6 | this.w = ctx.w 7 | } 8 | 9 | drawYAxisTexts(x, y, i, text) { 10 | const w = this.w 11 | 12 | const yaxisConfig = w.config.yaxis[0] 13 | const formatter = w.globals.yLabelFormatters[0] 14 | 15 | const graphics = new Graphics(this.ctx) 16 | const yaxisLabel = graphics.drawText({ 17 | x: x + yaxisConfig.labels.offsetX, 18 | y: y + yaxisConfig.labels.offsetY, 19 | text: formatter(text, i), 20 | textAnchor: 'middle', 21 | fontSize: yaxisConfig.labels.style.fontSize, 22 | fontFamily: yaxisConfig.labels.style.fontFamily, 23 | foreColor: Array.isArray(yaxisConfig.labels.style.colors) 24 | ? yaxisConfig.labels.style.colors[i] 25 | : yaxisConfig.labels.style.colors 26 | }) 27 | 28 | return yaxisLabel 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/be-cyrl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "be-cyrl", 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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/be-latn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "be-latn", 3 | "options": { 4 | "months": [ 5 | "Studzień", 6 | "Luty", 7 | "Sakavik", 8 | "Krasavik", 9 | "Travień", 10 | "Červień", 11 | "Lipień", 12 | "Žnivień", 13 | "Vierasień", 14 | "Kastryčnik", 15 | "Listapad", 16 | "Śniežań" 17 | ], 18 | "shortMonths": [ 19 | "Stu", 20 | "Lut", 21 | "Sak", 22 | "Kra", 23 | "Tra", 24 | "Čer", 25 | "Lip", 26 | "Žni", 27 | "Vie", 28 | "Kas", 29 | "Lis", 30 | "Śni" 31 | ], 32 | "days": [ 33 | "Niadziela", 34 | "Paniadziełak", 35 | "Aŭtorak", 36 | "Sierada", 37 | "Čaćvier", 38 | "Piatnica", 39 | "Subota" 40 | ], 41 | "shortDays": ["Nd", "Pn", "Aŭ", "Sr", "Čć", "Pt", "Sb"], 42 | "toolbar": { 43 | "exportToSVG": "Spampavać SVG", 44 | "exportToPNG": "Spampavać PNG", 45 | "exportToCSV": "Spampavać CSV", 46 | "menu": "Meniu", 47 | "selection": "Vyłučeńnie", 48 | "selectionZoom": "Vyłučeńnie z maštabavańniem", 49 | "zoomIn": "Nablizić", 50 | "zoomOut": "Addalić", 51 | "pan": "Ssoŭvańnie", 52 | "reset": "Skinuć maštabavańnie" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "da", 3 | "options": { 4 | "months": [ 5 | "januar", 6 | "februar", 7 | "marts", 8 | "april", 9 | "maj", 10 | "juni", 11 | "juli", 12 | "august", 13 | "september", 14 | "oktober", 15 | "november", 16 | "december" 17 | ], 18 | "shortMonths": [ 19 | "jan", 20 | "feb", 21 | "mar", 22 | "apr", 23 | "maj", 24 | "jun", 25 | "jul", 26 | "aug", 27 | "sep", 28 | "okt", 29 | "nov", 30 | "dec" 31 | ], 32 | "days": [ 33 | "Søndag", 34 | "Mandag", 35 | "Tirsdag", 36 | "Onsdag", 37 | "Torsdag", 38 | "Fredag", 39 | "Lørdag" 40 | ], 41 | "shortDays": ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør"], 42 | "toolbar": { 43 | "exportToSVG": "Download SVG", 44 | "exportToPNG": "Download PNG", 45 | "exportToCSV": "Download CSV", 46 | "menu": "Menu", 47 | "selection": "Valg", 48 | "selectionZoom": "Zoom til valg", 49 | "zoomIn": "Zoom ind", 50 | "zoomOut": "Zoom ud", 51 | "pan": "Panorér", 52 | "reset": "Nulstil zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "el", 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": "Menu", 47 | "selection": "Επιλογή", 48 | "selectionZoom": "Μεγένθυση βάση επιλογής", 49 | "zoomIn": "Μεγένθυνση", 50 | "zoomOut": "Σμίκρυνση", 51 | "pan": "Μετατόπιση", 52 | "reset": "Επαναφορά μεγένθυνσης" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "et", 3 | "options": { 4 | "months": [ 5 | "jaanuar", 6 | "veebruar", 7 | "märts", 8 | "aprill", 9 | "mai", 10 | "juuni", 11 | "juuli", 12 | "august", 13 | "september", 14 | "oktoober", 15 | "november", 16 | "detsember" 17 | ], 18 | "shortMonths": [ 19 | "jaan", 20 | "veebr", 21 | "märts", 22 | "apr", 23 | "mai", 24 | "juuni", 25 | "juuli", 26 | "aug", 27 | "sept", 28 | "okt", 29 | "nov", 30 | "dets" 31 | ], 32 | "days": [ 33 | "pühapäev", 34 | "esmaspäev", 35 | "teisipäev", 36 | "kolmapäev", 37 | "neljapäev", 38 | "reede", 39 | "laupäev" 40 | ], 41 | "shortDays": [ 42 | "P", 43 | "E", 44 | "T", 45 | "K", 46 | "N", 47 | "R", 48 | "L" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "Lae alla SVG", 52 | "exportToPNG": "Lae alla PNG", 53 | "exportToCSV": "Lae alla CSV", 54 | "menu": "Menüü", 55 | "selection": "Valik", 56 | "selectionZoom": "Valiku suum", 57 | "zoomIn": "Suurenda", 58 | "zoomOut": "Vähenda", 59 | "pan": "Panoraamimine", 60 | "reset": "Lähtesta suum" 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fi", 3 | "options": { 4 | "months": [ 5 | "Tammikuu", 6 | "Helmikuu", 7 | "Maaliskuu", 8 | "Huhtikuu", 9 | "Toukokuu", 10 | "Kesäkuu", 11 | "Heinäkuu", 12 | "Elokuu", 13 | "Syyskuu", 14 | "Lokakuu", 15 | "Marraskuu", 16 | "Joulukuu" 17 | ], 18 | "shortMonths": [ 19 | "Tammi", 20 | "Helmi", 21 | "Maalis", 22 | "Huhti", 23 | "Touko", 24 | "Kesä", 25 | "Heinä", 26 | "Elo", 27 | "Syys", 28 | "Loka", 29 | "Marras", 30 | "Joulu" 31 | ], 32 | "days": [ 33 | "Sunnuntai", 34 | "Maanantai", 35 | "Tiistai", 36 | "Keskiviikko", 37 | "Torstai", 38 | "Perjantai", 39 | "Lauantai" 40 | ], 41 | "shortDays": ["Su", "Ma", "Ti", "Ke", "To", "Pe", "La"], 42 | "toolbar": { 43 | "exportToSVG": "Lataa SVG", 44 | "exportToPNG": "Lataa PNG", 45 | "exportToCSV": "Lataa CSV", 46 | "menu": "Valikko", 47 | "selection": "Valinta", 48 | "selectionZoom": "Valinnan zoomaus", 49 | "zoomIn": "Lähennä", 50 | "zoomOut": "Loitonna", 51 | "pan": "Panoroi", 52 | "reset": "Nollaa zoomaus" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fr", 3 | "options": { 4 | "months": [ 5 | "janvier", 6 | "février", 7 | "mars", 8 | "avril", 9 | "mai", 10 | "juin", 11 | "juillet", 12 | "août", 13 | "septembre", 14 | "octobre", 15 | "novembre", 16 | "décembre" 17 | ], 18 | "shortMonths": [ 19 | "janv.", 20 | "févr.", 21 | "mars", 22 | "avr.", 23 | "mai", 24 | "juin", 25 | "juill.", 26 | "août", 27 | "sept.", 28 | "oct.", 29 | "nov.", 30 | "déc." 31 | ], 32 | "days": [ 33 | "dimanche", 34 | "lundi", 35 | "mardi", 36 | "mercredi", 37 | "jeudi", 38 | "vendredi", 39 | "samedi" 40 | ], 41 | "shortDays": ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."], 42 | "toolbar": { 43 | "exportToSVG": "Télécharger au format SVG", 44 | "exportToPNG": "Télécharger au format PNG", 45 | "exportToCSV": "Télécharger au format CSV", 46 | "menu": "Menu", 47 | "selection": "Sélection", 48 | "selectionZoom": "Sélection et zoom", 49 | "zoomIn": "Zoomer", 50 | "zoomOut": "Dézoomer", 51 | "pan": "Navigation", 52 | "reset": "Réinitialiser le zoom" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hr", 3 | "options": { 4 | "months": [ 5 | "Siječanj", 6 | "Veljača", 7 | "Ožujak", 8 | "Travanj", 9 | "Svibanj", 10 | "Lipanj", 11 | "Srpanj", 12 | "Kolovoz", 13 | "Rujan", 14 | "Listopad", 15 | "Studeni", 16 | "Prosinac" 17 | ], 18 | "shortMonths": [ 19 | "Sij", 20 | "Velj", 21 | "Ožu", 22 | "Tra", 23 | "Svi", 24 | "Lip", 25 | "Srp", 26 | "Kol", 27 | "Ruj", 28 | "Lis", 29 | "Stu", 30 | "Pro" 31 | ], 32 | "days": [ 33 | "Nedjelja", 34 | "Ponedjeljak", 35 | "Utorak", 36 | "Srijeda", 37 | "Četvrtak", 38 | "Petak", 39 | "Subota" 40 | ], 41 | "shortDays": ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"], 42 | "toolbar": { 43 | "exportToSVG": "Preuzmi SVG", 44 | "exportToPNG": "Preuzmi PNG", 45 | "exportToCSV": "Preuzmi CSV", 46 | "menu": "Izbornik", 47 | "selection": "Odabir", 48 | "selectionZoom": "Odabirno povećanje", 49 | "zoomIn": "Uvećajte prikaz", 50 | "zoomOut": "Umanjite prikaz", 51 | "pan": "Pomicanje", 52 | "reset": "Povratak na zadani prikaz" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/hy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hy", 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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/ka.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ka", 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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lt", 3 | "options": { 4 | "months": [ 5 | "Sausis", 6 | "Vasaris", 7 | "Kovas", 8 | "Balandis", 9 | "Gegužė", 10 | "Birželis", 11 | "Liepa", 12 | "Rugpjūtis", 13 | "Rugsėjis", 14 | "Spalis", 15 | "Lapkritis", 16 | "Gruodis" 17 | ], 18 | "shortMonths": [ 19 | "Sau", 20 | "Vas", 21 | "Kov", 22 | "Bal", 23 | "Geg", 24 | "Bir", 25 | "Lie", 26 | "Rgp", 27 | "Rgs", 28 | "Spl", 29 | "Lap", 30 | "Grd" 31 | ], 32 | "days": [ 33 | "Sekmadienis", 34 | "Pirmadienis", 35 | "Antradienis", 36 | "Trečiadienis", 37 | "Ketvirtadienis", 38 | "Penktadienis", 39 | "Šeštadienis" 40 | ], 41 | "shortDays": ["Sk", "Per", "An", "Tr", "Kt", "Pn", "Št"], 42 | "toolbar": { 43 | "exportToSVG": "Atsisiųsti SVG", 44 | "exportToPNG": "Atsisiųsti PNG", 45 | "exportToCSV": "Atsisiųsti CSV", 46 | "menu": "Menu", 47 | "selection": "Pasirinkimas", 48 | "selectionZoom": "Zoom: Pasirinkimas", 49 | "zoomIn": "Zoom: Priartinti", 50 | "zoomOut": "Zoom: Atitolinti", 51 | "pan": "Perkėlimas", 52 | "reset": "Atstatyti" 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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": "Transferir SVG", 44 | "exportToPNG": "Transferir PNG", 45 | "exportToCSV": "Transferir 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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/locales/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vi", 3 | "options": { 4 | "months": [ 5 | "Tháng 01", 6 | "Tháng 02", 7 | "Tháng 03", 8 | "Tháng 04", 9 | "Tháng 05", 10 | "Tháng 06", 11 | "Tháng 07", 12 | "Tháng 08", 13 | "Tháng 09", 14 | "Tháng 10", 15 | "Tháng 11", 16 | "Tháng 12" 17 | ], 18 | "shortMonths": [ 19 | "Th01", 20 | "Th02", 21 | "Th03", 22 | "Th04", 23 | "Th05", 24 | "Th06", 25 | "Th07", 26 | "Th08", 27 | "Th09", 28 | "Th10", 29 | "Th11", 30 | "Th12" 31 | ], 32 | "days": [ 33 | "Chủ nhật", 34 | "Thứ hai", 35 | "Thứ ba", 36 | "Thứ Tư", 37 | "Thứ năm", 38 | "Thứ sáu", 39 | "Thứ bảy" 40 | ], 41 | "shortDays": [ 42 | "CN", 43 | "T2", 44 | "T3", 45 | "T4", 46 | "T5", 47 | "T6", 48 | "T7" 49 | ], 50 | "toolbar": { 51 | "exportToSVG": "Tải xuống SVG", 52 | "exportToPNG": "Tải xuống PNG", 53 | "exportToCSV": "Tải xuống CSV", 54 | "menu": "Tuỳ chọn", 55 | "selection": "Vùng chọn", 56 | "selectionZoom": "Vùng chọn phóng to", 57 | "zoomIn": "Phóng to", 58 | "zoomOut": "Thu nhỏ", 59 | "pan": "Di chuyển", 60 | "reset": "Đặt lại thu phóng" 61 | } 62 | } 63 | } -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/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 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/modules/Base.js: -------------------------------------------------------------------------------- 1 | import Config from './settings/Config' 2 | import Globals from './settings/Globals' 3 | 4 | /** 5 | * ApexCharts Base Class for extending user options with pre-defined ApexCharts config. 6 | * 7 | * @module Base 8 | **/ 9 | export default class Base { 10 | constructor(opts) { 11 | this.opts = opts 12 | } 13 | 14 | init() { 15 | const config = new Config(this.opts).init({ responsiveOverride: false }) 16 | const globals = new Globals().init(config) 17 | 18 | const w = { 19 | config, 20 | globals 21 | } 22 | 23 | return w 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/modules/axes/Axes.js: -------------------------------------------------------------------------------- 1 | import XAxis from './XAxis' 2 | import YAxis from './YAxis' 3 | 4 | export default class Axes { 5 | constructor(ctx) { 6 | this.ctx = ctx 7 | this.w = ctx.w 8 | } 9 | 10 | drawAxis(type, elgrid) { 11 | let gl = this.w.globals 12 | let cnf = this.w.config 13 | 14 | let xAxis = new XAxis(this.ctx, elgrid) 15 | let yAxis = new YAxis(this.ctx, elgrid) 16 | 17 | if (gl.axisCharts && type !== 'radar') { 18 | let elXaxis, elYaxis 19 | 20 | if (gl.isBarHorizontal) { 21 | elYaxis = yAxis.drawYaxisInversed(0) 22 | elXaxis = xAxis.drawXaxisInversed(0) 23 | 24 | gl.dom.elGraphical.add(elXaxis) 25 | gl.dom.elGraphical.add(elYaxis) 26 | } else { 27 | elXaxis = xAxis.drawXaxis() 28 | gl.dom.elGraphical.add(elXaxis) 29 | 30 | cnf.yaxis.map((yaxe, index) => { 31 | if (gl.ignoreYAxisIndexes.indexOf(index) === -1) { 32 | elYaxis = yAxis.drawYaxis(index) 33 | gl.dom.Paper.add(elYaxis) 34 | 35 | if (this.w.config.grid.position === 'back') { 36 | const inner = gl.dom.Paper.children()[1] 37 | inner.remove() 38 | gl.dom.Paper.add(inner) 39 | } 40 | } 41 | }) 42 | } 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/assets/libs/apexcharts/src/modules/tooltip/README.md: -------------------------------------------------------------------------------- 1 | ### AxesTooltip.js 2 | This file deals with the x-axis and y-axis tooltips. 3 | 4 | ### Intersect.js 5 | This file deals with functions related to intersecting tooltips (tooltips that appear when user hovers directly over a data-point whether). 6 | 7 | ### Labels.js 8 | This file deals with printing actual text on the tooltip. 9 | 10 | ### Marker.js 11 | This file deals with the markers that appear near tooltip in line/area charts. These markers helps the user to associate the data-points and the values that are shown in the tooltip 12 | 13 | ### Position.js 14 | This file deals with positioning of the tooltip. 15 | 16 | ### Tooltip.js 17 | This is the primary file which is an entry point for all tooltip related functionality. 18 | 19 | ### Utils.js 20 | Helper functions related to tooltips. 21 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2024 The Bootstrap Authors 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 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/js/index.esm.js: -------------------------------------------------------------------------------- 1 | /** 2 | * -------------------------------------------------------------------------- 3 | * Bootstrap index.esm.js 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 5 | * -------------------------------------------------------------------------- 6 | */ 7 | 8 | export { default as Alert } from './src/alert.js' 9 | export { default as Button } from './src/button.js' 10 | export { default as Carousel } from './src/carousel.js' 11 | export { default as Collapse } from './src/collapse.js' 12 | export { default as Dropdown } from './src/dropdown.js' 13 | export { default as Modal } from './src/modal.js' 14 | export { default as Offcanvas } from './src/offcanvas.js' 15 | export { default as Popover } from './src/popover.js' 16 | export { default as ScrollSpy } from './src/scrollspy.js' 17 | export { default as Tab } from './src/tab.js' 18 | export { default as Toast } from './src/toast.js' 19 | export { default as Tooltip } from './src/tooltip.js' 20 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/js/index.umd.js: -------------------------------------------------------------------------------- 1 | /** 2 | * -------------------------------------------------------------------------- 3 | * Bootstrap index.umd.js 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 5 | * -------------------------------------------------------------------------- 6 | */ 7 | 8 | import Alert from './src/alert.js' 9 | import Button from './src/button.js' 10 | import Carousel from './src/carousel.js' 11 | import Collapse from './src/collapse.js' 12 | import Dropdown from './src/dropdown.js' 13 | import Modal from './src/modal.js' 14 | import Offcanvas from './src/offcanvas.js' 15 | import Popover from './src/popover.js' 16 | import ScrollSpy from './src/scrollspy.js' 17 | import Tab from './src/tab.js' 18 | import Toast from './src/toast.js' 19 | import Tooltip from './src/tooltip.js' 20 | 21 | export default { 22 | Alert, 23 | Button, 24 | Carousel, 25 | Collapse, 26 | Dropdown, 27 | Modal, 28 | Offcanvas, 29 | Popover, 30 | ScrollSpy, 31 | Tab, 32 | Toast, 33 | Tooltip 34 | } 35 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/js/src/util/component-functions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * -------------------------------------------------------------------------- 3 | * Bootstrap util/component-functions.js 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 5 | * -------------------------------------------------------------------------- 6 | */ 7 | 8 | import EventHandler from '../dom/event-handler.js' 9 | import SelectorEngine from '../dom/selector-engine.js' 10 | import { isDisabled } from './index.js' 11 | 12 | const enableDismissTrigger = (component, method = 'hide') => { 13 | const clickEvent = `click.dismiss${component.EVENT_KEY}` 14 | const name = component.NAME 15 | 16 | EventHandler.on(document, clickEvent, `[data-bs-dismiss="${name}"]`, function (event) { 17 | if (['A', 'AREA'].includes(this.tagName)) { 18 | event.preventDefault() 19 | } 20 | 21 | if (isDisabled(this)) { 22 | return 23 | } 24 | 25 | const target = SelectorEngine.getElementFromSelector(this) || this.closest(`.${name}`) 26 | const instance = component.getOrCreateInstance(target) 27 | 28 | // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method 29 | instance[method]() 30 | }) 31 | } 32 | 33 | export { 34 | enableDismissTrigger 35 | } 36 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | // 3 | // Requires one of the contextual, color modifier classes for `color` and 4 | // `background-color`. 5 | 6 | .badge { 7 | // scss-docs-start badge-css-vars 8 | --#{$prefix}badge-padding-x: #{$badge-padding-x}; 9 | --#{$prefix}badge-padding-y: #{$badge-padding-y}; 10 | @include rfs($badge-font-size, --#{$prefix}badge-font-size); 11 | --#{$prefix}badge-font-weight: #{$badge-font-weight}; 12 | --#{$prefix}badge-color: #{$badge-color}; 13 | --#{$prefix}badge-border-radius: #{$badge-border-radius}; 14 | // scss-docs-end badge-css-vars 15 | 16 | display: inline-block; 17 | padding: var(--#{$prefix}badge-padding-y) var(--#{$prefix}badge-padding-x); 18 | @include font-size(var(--#{$prefix}badge-font-size)); 19 | font-weight: var(--#{$prefix}badge-font-weight); 20 | line-height: 1; 21 | color: var(--#{$prefix}badge-color); 22 | text-align: center; 23 | white-space: nowrap; 24 | vertical-align: baseline; 25 | @include border-radius(var(--#{$prefix}badge-border-radius)); 26 | @include gradient-bg(); 27 | 28 | // Empty badges collapse automatically 29 | &:empty { 30 | display: none; 31 | } 32 | } 33 | 34 | // Quick fix for badges in buttons 35 | .btn .badge { 36 | position: relative; 37 | top: -1px; 38 | } 39 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- 1 | // Container widths 2 | // 3 | // Set the container width, and override it for fixed navbars in media queries. 4 | 5 | @if $enable-container-classes { 6 | // Single container class with breakpoint max-widths 7 | .container, 8 | // 100% wide container at all breakpoints 9 | .container-fluid { 10 | @include make-container(); 11 | } 12 | 13 | // Responsive containers that are 100% wide until a breakpoint 14 | @each $breakpoint, $container-max-width in $container-max-widths { 15 | .container-#{$breakpoint} { 16 | @extend .container-fluid; 17 | } 18 | 19 | @include media-breakpoint-up($breakpoint, $grid-breakpoints) { 20 | %responsive-container-#{$breakpoint} { 21 | max-width: $container-max-width; 22 | } 23 | 24 | // Extend each breakpoint which is smaller or equal to the current breakpoint 25 | $extend-breakpoint: true; 26 | 27 | @each $name, $width in $grid-breakpoints { 28 | @if ($extend-breakpoint) { 29 | .container#{breakpoint-infix($name, $grid-breakpoints)} { 30 | @extend %responsive-container-#{$breakpoint}; 31 | } 32 | 33 | // Once the current breakpoint is reached, stop extending 34 | @if ($breakpoint == $name) { 35 | $extend-breakpoint: false; 36 | } 37 | } 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- 1 | @import "forms/labels"; 2 | @import "forms/form-text"; 3 | @import "forms/form-control"; 4 | @import "forms/form-select"; 5 | @import "forms/form-check"; 6 | @import "forms/form-range"; 7 | @import "forms/floating-labels"; 8 | @import "forms/input-group"; 9 | @import "forms/validation"; 10 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- 1 | // Row 2 | // 3 | // Rows contain your columns. 4 | 5 | :root { 6 | @each $name, $value in $grid-breakpoints { 7 | --#{$prefix}breakpoint-#{$name}: #{$value}; 8 | } 9 | } 10 | 11 | @if $enable-grid-classes { 12 | .row { 13 | @include make-row(); 14 | 15 | > * { 16 | @include make-col-ready(); 17 | } 18 | } 19 | } 20 | 21 | @if $enable-cssgrid { 22 | .grid { 23 | display: grid; 24 | grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr); 25 | grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr); 26 | gap: var(--#{$prefix}gap, #{$grid-gutter-width}); 27 | 28 | @include make-cssgrid(); 29 | } 30 | } 31 | 32 | 33 | // Columns 34 | // 35 | // Common styles for small and large grid columns 36 | 37 | @if $enable-grid-classes { 38 | @include make-grid-columns(); 39 | } 40 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- 1 | @import "helpers/clearfix"; 2 | @import "helpers/color-bg"; 3 | @import "helpers/colored-links"; 4 | @import "helpers/focus-ring"; 5 | @import "helpers/icon-link"; 6 | @import "helpers/ratio"; 7 | @import "helpers/position"; 8 | @import "helpers/stacks"; 9 | @import "helpers/visually-hidden"; 10 | @import "helpers/stretched-link"; 11 | @import "helpers/text-truncation"; 12 | @import "helpers/vr"; 13 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- 1 | // Responsive images (ensure images don't scale beyond their parents) 2 | // 3 | // This is purposefully opt-in via an explicit class rather than being the default for all ``s. 4 | // We previously tried the "images are responsive by default" approach in Bootstrap v2, 5 | // and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps) 6 | // which weren't expecting the images within themselves to be involuntarily resized. 7 | // See also https://github.com/twbs/bootstrap/issues/18178 8 | .img-fluid { 9 | @include img-fluid(); 10 | } 11 | 12 | 13 | // Image thumbnails 14 | .img-thumbnail { 15 | padding: $thumbnail-padding; 16 | background-color: $thumbnail-bg; 17 | border: $thumbnail-border-width solid $thumbnail-border-color; 18 | @include border-radius($thumbnail-border-radius); 19 | @include box-shadow($thumbnail-box-shadow); 20 | 21 | // Keep them at most 100% wide 22 | @include img-fluid(); 23 | } 24 | 25 | // 26 | // Figures 27 | // 28 | 29 | .figure { 30 | // Ensures the caption's text aligns with the image. 31 | display: inline-block; 32 | } 33 | 34 | .figure-img { 35 | margin-bottom: $spacer * .5; 36 | line-height: 1; 37 | } 38 | 39 | .figure-caption { 40 | @include font-size($figure-caption-font-size); 41 | color: $figure-caption-color; 42 | } 43 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Toggles 2 | // 3 | // Used in conjunction with global variables to enable certain theme features. 4 | 5 | // Vendor 6 | @import "vendor/rfs"; 7 | 8 | // Deprecate 9 | @import "mixins/deprecate"; 10 | 11 | // Helpers 12 | @import "mixins/breakpoints"; 13 | @import "mixins/color-mode"; 14 | @import "mixins/color-scheme"; 15 | @import "mixins/image"; 16 | @import "mixins/resize"; 17 | @import "mixins/visually-hidden"; 18 | @import "mixins/reset-text"; 19 | @import "mixins/text-truncate"; 20 | 21 | // Utilities 22 | @import "mixins/utilities"; 23 | 24 | // Components 25 | @import "mixins/backdrop"; 26 | @import "mixins/buttons"; 27 | @import "mixins/caret"; 28 | @import "mixins/pagination"; 29 | @import "mixins/lists"; 30 | @import "mixins/forms"; 31 | @import "mixins/table-variants"; 32 | 33 | // Skins 34 | @import "mixins/border-radius"; 35 | @import "mixins/box-shadow"; 36 | @import "mixins/gradients"; 37 | @import "mixins/transition"; 38 | 39 | // Layout 40 | @import "mixins/clearfix"; 41 | @import "mixins/container"; 42 | @import "mixins/grid"; 43 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_placeholders.scss: -------------------------------------------------------------------------------- 1 | .placeholder { 2 | display: inline-block; 3 | min-height: 1em; 4 | vertical-align: middle; 5 | cursor: wait; 6 | background-color: currentcolor; 7 | opacity: $placeholder-opacity-max; 8 | 9 | &.btn::before { 10 | display: inline-block; 11 | content: ""; 12 | } 13 | } 14 | 15 | // Sizing 16 | .placeholder-xs { 17 | min-height: .6em; 18 | } 19 | 20 | .placeholder-sm { 21 | min-height: .8em; 22 | } 23 | 24 | .placeholder-lg { 25 | min-height: 1.2em; 26 | } 27 | 28 | // Animation 29 | .placeholder-glow { 30 | .placeholder { 31 | animation: placeholder-glow 2s ease-in-out infinite; 32 | } 33 | } 34 | 35 | @keyframes placeholder-glow { 36 | 50% { 37 | opacity: $placeholder-opacity-min; 38 | } 39 | } 40 | 41 | .placeholder-wave { 42 | mask-image: linear-gradient(130deg, $black 55%, rgba(0, 0, 0, (1 - $placeholder-opacity-min)) 75%, $black 95%); 43 | mask-size: 200% 100%; 44 | animation: placeholder-wave 2s linear infinite; 45 | } 46 | 47 | @keyframes placeholder-wave { 48 | 100% { 49 | mask-position: -200% 0%; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | // scss-docs-start collapse-classes 10 | .collapse { 11 | &:not(.show) { 12 | display: none; 13 | } 14 | } 15 | 16 | .collapsing { 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | 21 | &.collapse-horizontal { 22 | width: 0; 23 | height: auto; 24 | @include transition($transition-collapse-width); 25 | } 26 | } 27 | // scss-docs-end collapse-classes 28 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Reboot); 3 | 4 | @import "functions"; 5 | @import "variables"; 6 | @import "variables-dark"; 7 | @import "maps"; 8 | @import "mixins"; 9 | @import "root"; 10 | @import "reboot"; 11 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(Utilities); 3 | 4 | // Configuration 5 | @import "functions"; 6 | @import "variables"; 7 | @import "variables-dark"; 8 | @import "maps"; 9 | @import "mixins"; 10 | @import "utilities"; 11 | 12 | // Layout & components 13 | @import "root"; 14 | 15 | // Helpers 16 | @import "helpers"; 17 | 18 | // Utilities 19 | @import "utilities/api"; 20 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/banner"; 2 | @include bsBanner(""); 3 | 4 | 5 | // scss-docs-start import-stack 6 | // Configuration 7 | @import "functions"; 8 | @import "variables"; 9 | @import "variables-dark"; 10 | @import "maps"; 11 | @import "mixins"; 12 | @import "utilities"; 13 | 14 | // Layout & components 15 | @import "root"; 16 | @import "reboot"; 17 | @import "type"; 18 | @import "images"; 19 | @import "containers"; 20 | @import "grid"; 21 | @import "tables"; 22 | @import "forms"; 23 | @import "buttons"; 24 | @import "transitions"; 25 | @import "dropdown"; 26 | @import "button-group"; 27 | @import "nav"; 28 | @import "navbar"; 29 | @import "card"; 30 | @import "accordion"; 31 | @import "breadcrumb"; 32 | @import "pagination"; 33 | @import "badge"; 34 | @import "alert"; 35 | @import "progress"; 36 | @import "list-group"; 37 | @import "close"; 38 | @import "toasts"; 39 | @import "modal"; 40 | @import "tooltip"; 41 | @import "popover"; 42 | @import "carousel"; 43 | @import "spinners"; 44 | @import "offcanvas"; 45 | @import "placeholders"; 46 | 47 | // Helpers 48 | @import "helpers"; 49 | 50 | // Utilities 51 | @import "utilities/api"; 52 | // scss-docs-end import-stack 53 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Form text 3 | // 4 | 5 | .form-text { 6 | margin-top: $form-text-margin-top; 7 | @include font-size($form-text-font-size); 8 | font-style: $form-text-font-style; 9 | font-weight: $form-text-font-weight; 10 | color: $form-text-color; 11 | } 12 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // 4 | 5 | .form-label { 6 | margin-bottom: $form-label-margin-bottom; 7 | @include font-size($form-label-font-size); 8 | font-style: $form-label-font-style; 9 | font-weight: $form-label-font-weight; 10 | color: $form-label-color; 11 | } 12 | 13 | // For use with horizontal and inline forms, when you need the label (or legend) 14 | // text to align with the form controls. 15 | .col-form-label { 16 | padding-top: add($input-padding-y, $input-border-width); 17 | padding-bottom: add($input-padding-y, $input-border-width); 18 | margin-bottom: 0; // Override the `` default 19 | @include font-size(inherit); // Override the `` default 20 | font-style: $form-label-font-style; 21 | font-weight: $form-label-font-weight; 22 | line-height: $input-line-height; 23 | color: $form-label-color; 24 | } 25 | 26 | .col-form-label-lg { 27 | padding-top: add($input-padding-y-lg, $input-border-width); 28 | padding-bottom: add($input-padding-y-lg, $input-border-width); 29 | @include font-size($input-font-size-lg); 30 | } 31 | 32 | .col-form-label-sm { 33 | padding-top: add($input-padding-y-sm, $input-border-width); 34 | padding-bottom: add($input-padding-y-sm, $input-border-width); 35 | @include font-size($input-font-size-sm); 36 | } 37 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- 1 | // Form validation 2 | // 3 | // Provide feedback to users when form field values are valid or invalid. Works 4 | // primarily for client-side validation via scoped `:invalid` and `:valid` 5 | // pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for 6 | // server-side validation. 7 | 8 | // scss-docs-start form-validation-states-loop 9 | @each $state, $data in $form-validation-states { 10 | @include form-validation-state($state, $data...); 11 | } 12 | // scss-docs-end form-validation-states-loop 13 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_color-bg.scss: -------------------------------------------------------------------------------- 1 | // All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251 2 | @each $color, $value in $theme-colors { 3 | .text-bg-#{$color} { 4 | color: color-contrast($value) if($enable-important-utilities, !important, null); 5 | background-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_focus-ring.scss: -------------------------------------------------------------------------------- 1 | .focus-ring:focus { 2 | outline: 0; 3 | // By default, there is no `--bs-focus-ring-x`, `--bs-focus-ring-y`, or `--bs-focus-ring-blur`, but we provide CSS variables with fallbacks to initial `0` values 4 | box-shadow: var(--#{$prefix}focus-ring-x, 0) var(--#{$prefix}focus-ring-y, 0) var(--#{$prefix}focus-ring-blur, 0) var(--#{$prefix}focus-ring-width) var(--#{$prefix}focus-ring-color); 5 | } 6 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_icon-link.scss: -------------------------------------------------------------------------------- 1 | .icon-link { 2 | display: inline-flex; 3 | gap: $icon-link-gap; 4 | align-items: center; 5 | text-decoration-color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, .5)); 6 | text-underline-offset: $icon-link-underline-offset; 7 | backface-visibility: hidden; 8 | 9 | > .bi { 10 | flex-shrink: 0; 11 | width: $icon-link-icon-size; 12 | height: $icon-link-icon-size; 13 | fill: currentcolor; 14 | @include transition($icon-link-icon-transition); 15 | } 16 | } 17 | 18 | .icon-link-hover { 19 | &:hover, 20 | &:focus-visible { 21 | > .bi { 22 | transform: var(--#{$prefix}icon-link-transform, $icon-link-icon-transform); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- 1 | // Shorthand 2 | 3 | .fixed-top { 4 | position: fixed; 5 | top: 0; 6 | right: 0; 7 | left: 0; 8 | z-index: $zindex-fixed; 9 | } 10 | 11 | .fixed-bottom { 12 | position: fixed; 13 | right: 0; 14 | bottom: 0; 15 | left: 0; 16 | z-index: $zindex-fixed; 17 | } 18 | 19 | // Responsive sticky top and bottom 20 | @each $breakpoint in map-keys($grid-breakpoints) { 21 | @include media-breakpoint-up($breakpoint) { 22 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 23 | 24 | .sticky#{$infix}-top { 25 | position: sticky; 26 | top: 0; 27 | z-index: $zindex-sticky; 28 | } 29 | 30 | .sticky#{$infix}-bottom { 31 | position: sticky; 32 | bottom: 0; 33 | z-index: $zindex-sticky; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .ratio { 4 | position: relative; 5 | width: 100%; 6 | 7 | &::before { 8 | display: block; 9 | padding-top: var(--#{$prefix}aspect-ratio); 10 | content: ""; 11 | } 12 | 13 | > * { 14 | position: absolute; 15 | top: 0; 16 | left: 0; 17 | width: 100%; 18 | height: 100%; 19 | } 20 | } 21 | 22 | @each $key, $ratio in $aspect-ratios { 23 | .ratio-#{$key} { 24 | --#{$prefix}aspect-ratio: #{$ratio}; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_stacks.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start stacks 2 | .hstack { 3 | display: flex; 4 | flex-direction: row; 5 | align-items: center; 6 | align-self: stretch; 7 | } 8 | 9 | .vstack { 10 | display: flex; 11 | flex: 1 1 auto; 12 | flex-direction: column; 13 | align-self: stretch; 14 | } 15 | // scss-docs-end stacks 16 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::#{$stretched-link-pseudo-element} { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: $stretched-link-z-index; 13 | content: ""; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Text truncation 3 | // 4 | 5 | .text-truncate { 6 | @include text-truncate(); 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Visually hidden 3 | // 4 | 5 | .visually-hidden, 6 | .visually-hidden-focusable:not(:focus):not(:focus-within) { 7 | @include visually-hidden(); 8 | } 9 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/helpers/_vr.scss: -------------------------------------------------------------------------------- 1 | .vr { 2 | display: inline-block; 3 | align-self: stretch; 4 | width: $vr-border-width; 5 | min-height: 1em; 6 | background-color: currentcolor; 7 | opacity: $hr-opacity; 8 | } 9 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @include deprecate("`alert-variant()`", "v5.3.0", "v6.0.0"); 2 | 3 | // scss-docs-start alert-variant-mixin 4 | @mixin alert-variant($background, $border, $color) { 5 | --#{$prefix}alert-color: #{$color}; 6 | --#{$prefix}alert-bg: #{$background}; 7 | --#{$prefix}alert-border-color: #{$border}; 8 | --#{$prefix}alert-link-color: #{shade-color($color, 20%)}; 9 | 10 | @if $enable-gradients { 11 | background-image: var(--#{$prefix}gradient); 12 | } 13 | 14 | .alert-link { 15 | color: var(--#{$prefix}alert-link-color); 16 | } 17 | } 18 | // scss-docs-end alert-variant-mixin 19 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_backdrop.scss: -------------------------------------------------------------------------------- 1 | // Shared between modals and offcanvases 2 | @mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $zindex; 7 | width: 100vw; 8 | height: 100vh; 9 | background-color: $backdrop-bg; 10 | 11 | // Fade for backdrop 12 | &.fade { opacity: 0; } 13 | &.show { opacity: $backdrop-opacity; } 14 | } 15 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_banner.scss: -------------------------------------------------------------------------------- 1 | @mixin bsBanner($file) { 2 | /*! 3 | * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/) 4 | * Copyright 2011-2024 The Bootstrap Authors 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | */ 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @each $value in $shadow { 6 | @if $value != null { 7 | $result: append($result, $value, "comma"); 8 | } 9 | @if $value == none and length($shadow) > 1 { 10 | @warn "The keyword 'none' must be used as a single argument."; 11 | } 12 | } 13 | 14 | @if (length($result) > 0) { 15 | box-shadow: $result; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start clearfix 2 | @mixin clearfix() { 3 | &::after { 4 | display: block; 5 | clear: both; 6 | content: ""; 7 | } 8 | } 9 | // scss-docs-end clearfix 10 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_color-mode.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start color-mode-mixin 2 | @mixin color-mode($mode: light, $root: false) { 3 | @if $color-mode-type == "media-query" { 4 | @if $root == true { 5 | @media (prefers-color-scheme: $mode) { 6 | :root { 7 | @content; 8 | } 9 | } 10 | } @else { 11 | @media (prefers-color-scheme: $mode) { 12 | @content; 13 | } 14 | } 15 | } @else { 16 | [data-bs-theme="#{$mode}"] { 17 | @content; 18 | } 19 | } 20 | } 21 | // scss-docs-end color-mode-mixin 22 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start mixin-color-scheme 2 | @mixin color-scheme($name) { 3 | @media (prefers-color-scheme: #{$name}) { 4 | @content; 5 | } 6 | } 7 | // scss-docs-end mixin-color-scheme 8 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- 1 | // Container mixins 2 | 3 | @mixin make-container($gutter: $container-padding-x) { 4 | --#{$prefix}gutter-x: #{$gutter}; 5 | --#{$prefix}gutter-y: 0; 6 | width: 100%; 7 | padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 8 | padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list 9 | margin-right: auto; 10 | margin-left: auto; 11 | } 12 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid { 11 | // Part 1: Set a maximum relative to the parent 12 | max-width: 100%; 13 | // Part 2: Override the height to auto, otherwise images will be stretched 14 | // when setting a width and height attribute on the img element. 15 | height: auto; 16 | } 17 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | @include deprecate("`list-group-item-variant()`", "v5.3.0", "v6.0.0"); 2 | 3 | // List Groups 4 | 5 | // scss-docs-start list-group-mixin 6 | @mixin list-group-item-variant($state, $background, $color) { 7 | .list-group-item-#{$state} { 8 | color: $color; 9 | background-color: $background; 10 | 11 | &.list-group-item-action { 12 | &:hover, 13 | &:focus { 14 | color: $color; 15 | background-color: shade-color($background, 10%); 16 | } 17 | 18 | &.active { 19 | color: $white; 20 | background-color: $color; 21 | border-color: $color; 22 | } 23 | } 24 | } 25 | } 26 | // scss-docs-end list-group-mixin 27 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | // scss-docs-start pagination-mixin 4 | @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) { 5 | --#{$prefix}pagination-padding-x: #{$padding-x}; 6 | --#{$prefix}pagination-padding-y: #{$padding-y}; 7 | @include rfs($font-size, --#{$prefix}pagination-font-size); 8 | --#{$prefix}pagination-border-radius: #{$border-radius}; 9 | } 10 | // scss-docs-end pagination-mixin 11 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or overflow-wrap / word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | white-space: normal; 15 | word-spacing: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- 1 | // scss-docs-start table-variant 2 | @mixin table-variant($state, $background) { 3 | .table-#{$state} { 4 | $color: color-contrast(opaque($body-bg, $background)); 5 | $hover-bg: mix($color, $background, percentage($table-hover-bg-factor)); 6 | $striped-bg: mix($color, $background, percentage($table-striped-bg-factor)); 7 | $active-bg: mix($color, $background, percentage($table-active-bg-factor)); 8 | $table-border-color: mix($color, $background, percentage($table-border-factor)); 9 | 10 | --#{$prefix}table-color: #{$color}; 11 | --#{$prefix}table-bg: #{$background}; 12 | --#{$prefix}table-border-color: #{$table-border-color}; 13 | --#{$prefix}table-striped-bg: #{$striped-bg}; 14 | --#{$prefix}table-striped-color: #{color-contrast($striped-bg)}; 15 | --#{$prefix}table-active-bg: #{$active-bg}; 16 | --#{$prefix}table-active-color: #{color-contrast($active-bg)}; 17 | --#{$prefix}table-hover-bg: #{$hover-bg}; 18 | --#{$prefix}table-hover-color: #{color-contrast($hover-bg)}; 19 | 20 | color: var(--#{$prefix}table-color); 21 | border-color: var(--#{$prefix}table-border-color); 22 | } 23 | } 24 | // scss-docs-end table-variant 25 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-disallowed-list 2 | @mixin transition($transition...) { 3 | @if length($transition) == 0 { 4 | $transition: $transition-base; 5 | } 6 | 7 | @if length($transition) > 1 { 8 | @each $value in $transition { 9 | @if $value == null or $value == none { 10 | @warn "The keyword 'none' or 'null' must be used as a single argument."; 11 | } 12 | } 13 | } 14 | 15 | @if $enable-transitions { 16 | @if nth($transition, 1) != null { 17 | transition: $transition; 18 | } 19 | 20 | @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none { 21 | @media (prefers-reduced-motion: reduce) { 22 | transition: none; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/libs/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Hide content visually while keeping it accessible to assistive technologies 4 | // 5 | // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/ 6 | // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/ 7 | 8 | @mixin visually-hidden() { 9 | width: 1px !important; 10 | height: 1px !important; 11 | padding: 0 !important; 12 | margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686 13 | overflow: hidden !important; 14 | clip: rect(0, 0, 0, 0) !important; 15 | white-space: nowrap !important; 16 | border: 0 !important; 17 | 18 | // Fix for positioned table caption that could become anonymous cells 19 | &:not(caption) { 20 | position: absolute !important; 21 | } 22 | } 23 | 24 | // Use to only display content when it's focused, or one of its child elements is focused 25 | // (i.e. when focus is within the element/container that the class was applied to) 26 | // 27 | // Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 28 | 29 | @mixin visually-hidden-focusable() { 30 | &:not(:focus):not(:focus-within) { 31 | @include visually-hidden(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright OpenJS Foundation and other contributors, https://openjsf.org/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return { guid: Date.now() }; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /\?/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | "use strict"; 10 | 11 | // Return jQuery for attributes-only inclusion 12 | return jQuery; 13 | } ); 14 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | "use strict"; 7 | 8 | ( function() { 9 | var input = document.createElement( "input" ), 10 | select = document.createElement( "select" ), 11 | opt = select.appendChild( document.createElement( "option" ) ); 12 | 13 | input.type = "checkbox"; 14 | 15 | // Support: Android <=4.3 only 16 | // Default value for a checkbox should be "on" 17 | support.checkOn = input.value !== ""; 18 | 19 | // Support: IE <=11 only 20 | // Must access selectedIndex to make default options select 21 | support.optSelected = opt.selected; 22 | 23 | // Support: IE <=11 only 24 | // An input loses its value after becoming a radio 25 | input = document.createElement( "input" ); 26 | input.value = "t"; 27 | input.type = "radio"; 28 | support.radioValue = input.value === "t"; 29 | } )(); 30 | 31 | return support; 32 | 33 | } ); 34 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document" 3 | ], function( document ) { 4 | "use strict"; 5 | 6 | var preservedScriptAttributes = { 7 | type: true, 8 | src: true, 9 | nonce: true, 10 | noModule: true 11 | }; 12 | 13 | function DOMEval( code, node, doc ) { 14 | doc = doc || document; 15 | 16 | var i, val, 17 | script = doc.createElement( "script" ); 18 | 19 | script.text = code; 20 | if ( node ) { 21 | for ( i in preservedScriptAttributes ) { 22 | 23 | // Support: Firefox 64+, Edge 18+ 24 | // Some browsers don't support the "nonce" property on scripts. 25 | // On the other hand, just using `getAttribute` is not enough as 26 | // the `nonce` attribute is reset to an empty string whenever it 27 | // becomes browsing-context connected. 28 | // See https://github.com/whatwg/html/issues/2369 29 | // See https://html.spec.whatwg.org/#nonce-attributes 30 | // The `node.getAttribute` check was added for the sake of 31 | // `jQuery.globalEval` so that it can fake a nonce-containing node 32 | // via an object. 33 | val = node[ i ] || node.getAttribute && node.getAttribute( i ); 34 | if ( val ) { 35 | script.setAttribute( i, val ); 36 | } 37 | } 38 | } 39 | doc.head.appendChild( script ).parentNode.removeChild( script ); 40 | } 41 | 42 | return DOMEval; 43 | } ); 44 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/camelCase.js: -------------------------------------------------------------------------------- 1 | define( [], function() { 2 | 3 | "use strict"; 4 | 5 | // Matches dashed string for camelizing 6 | var rmsPrefix = /^-ms-/, 7 | rdashAlpha = /-([a-z])/g; 8 | 9 | // Used by camelCase as callback to replace() 10 | function fcamelCase( _all, letter ) { 11 | return letter.toUpperCase(); 12 | } 13 | 14 | // Convert dashed to camelCase; used by the css and data modules 15 | // Support: IE <=9 - 11, Edge 12 - 15 16 | // Microsoft forgot to hump their vendor prefix (trac-9572) 17 | function camelCase( string ) { 18 | return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); 19 | } 20 | 21 | return camelCase; 22 | 23 | } ); 24 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/isAttached.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../var/documentElement", 4 | "../selector/contains" // jQuery.contains 5 | ], function( jQuery, documentElement ) { 6 | "use strict"; 7 | 8 | var isAttached = function( elem ) { 9 | return jQuery.contains( elem.ownerDocument, elem ); 10 | }, 11 | composed = { composed: true }; 12 | 13 | // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only 14 | // Check attachment across shadow DOM boundaries when possible (gh-3504) 15 | // Support: iOS 10.0-10.2 only 16 | // Early iOS 10 versions support `attachShadow` but not `getRootNode`, 17 | // leading to errors. We need to check for `getRootNode`. 18 | if ( documentElement.getRootNode ) { 19 | isAttached = function( elem ) { 20 | return jQuery.contains( elem.ownerDocument, elem ) || 21 | elem.getRootNode( composed ) === elem.ownerDocument; 22 | }; 23 | } 24 | 25 | return isAttached; 26 | } ); 27 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/nodeName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | function nodeName( elem, name ) { 6 | 7 | return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); 8 | 9 | } 10 | 11 | return nodeName; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/parseXML.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | // Cross-browser xml parsing 8 | jQuery.parseXML = function( data ) { 9 | var xml, parserErrorElem; 10 | if ( !data || typeof data !== "string" ) { 11 | return null; 12 | } 13 | 14 | // Support: IE 9 - 11 only 15 | // IE throws on parseFromString with invalid input. 16 | try { 17 | xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); 18 | } catch ( e ) {} 19 | 20 | parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; 21 | if ( !xml || parserErrorElem ) { 22 | jQuery.error( "Invalid XML: " + ( 23 | parserErrorElem ? 24 | jQuery.map( parserErrorElem.childNodes, function( el ) { 25 | return el.textContent; 26 | } ).join( "\n" ) : 27 | data 28 | ) ); 29 | } 30 | return xml; 31 | }; 32 | 33 | return jQuery.parseXML; 34 | 35 | } ); 36 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | jQuery.readyException = function( error ) { 8 | window.setTimeout( function() { 9 | throw error; 10 | } ); 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/rnothtmlwhite" 3 | ], function( rnothtmlwhite ) { 4 | "use strict"; 5 | 6 | // Strip and collapse whitespace according to HTML spec 7 | // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace 8 | function stripAndCollapse( value ) { 9 | var tokens = value.match( rnothtmlwhite ) || []; 10 | return tokens.join( " " ); 11 | } 12 | 13 | return stripAndCollapse; 14 | } ); 15 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | "use strict"; 7 | 8 | // Support: Safari 8 only 9 | // In Safari 8 documents created via document.implementation.createHTMLDocument 10 | // collapse sibling forms: the second one becomes a child of the first one. 11 | // Because of that, this security measure has to be disabled in Safari 8. 12 | // https://bugs.webkit.org/show_bug.cgi?id=137337 13 | support.createHTMLDocument = ( function() { 14 | var body = document.implementation.createHTMLDocument( "" ).body; 15 | body.innerHTML = "
"; 16 | return body.childNodes.length === 2; 17 | } )(); 18 | 19 | return support; 20 | } ); 21 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/toType.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/class2type", 3 | "../var/toString" 4 | ], function( class2type, toString ) { 5 | 6 | "use strict"; 7 | 8 | function toType( obj ) { 9 | if ( obj == null ) { 10 | return obj + ""; 11 | } 12 | 13 | // Support: Android <=2.3 only (functionish RegExp) 14 | return typeof obj === "object" || typeof obj === "function" ? 15 | class2type[ toString.call( obj ) ] || "object" : 16 | typeof obj; 17 | } 18 | 19 | return toType; 20 | } ); 21 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/var/rhtml.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | return ( /HTML$/i ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // rsingleTag matches a string consisting of a single HTML element with no attributes 5 | // and captures the element's name 6 | return ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | function addGetHookIf( conditionFn, hookFn ) { 6 | 7 | // Define the hook, we'll check on the first run if it's really needed. 8 | return { 9 | get: function() { 10 | if ( conditionFn() ) { 11 | 12 | // Hook not needed (or it's not possible to use it due 13 | // to missing dependency), remove it. 14 | delete this.get; 15 | return; 16 | } 17 | 18 | // Hook needed; redefine it so that the support test is not executed again. 19 | return ( this.get = hookFn ).apply( this, arguments ); 20 | } 21 | }; 22 | } 23 | 24 | return addGetHookIf; 25 | 26 | } ); 27 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/finalPropName.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../core" 4 | ], function( document, jQuery ) { 5 | 6 | "use strict"; 7 | 8 | var cssPrefixes = [ "Webkit", "Moz", "ms" ], 9 | emptyStyle = document.createElement( "div" ).style, 10 | vendorProps = {}; 11 | 12 | // Return a vendor-prefixed property or undefined 13 | function vendorPropName( name ) { 14 | 15 | // Check for vendor prefixed names 16 | var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), 17 | i = cssPrefixes.length; 18 | 19 | while ( i-- ) { 20 | name = cssPrefixes[ i ] + capName; 21 | if ( name in emptyStyle ) { 22 | return name; 23 | } 24 | } 25 | } 26 | 27 | // Return a potentially-mapped jQuery.cssProps or vendor prefixed property 28 | function finalPropName( name ) { 29 | var final = jQuery.cssProps[ name ] || vendorProps[ name ]; 30 | 31 | if ( final ) { 32 | return final; 33 | } 34 | if ( name in emptyStyle ) { 35 | return name; 36 | } 37 | return vendorProps[ name ] = vendorPropName( name ) || name; 38 | } 39 | 40 | return finalPropName; 41 | 42 | } ); 43 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector" 4 | ], function( jQuery ) { 5 | 6 | "use strict"; 7 | 8 | jQuery.expr.pseudos.hidden = function( elem ) { 9 | return !jQuery.expr.pseudos.visible( elem ); 10 | }; 11 | jQuery.expr.pseudos.visible = function( elem ) { 12 | return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return [ "Top", "Right", "Bottom", "Left" ]; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return function( elem ) { 5 | 6 | // Support: IE <=11 only, Firefox <=30 (trac-15098, trac-14150) 7 | // IE throws on elements created in popups 8 | // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" 9 | var view = elem.ownerDocument.defaultView; 10 | 11 | if ( !view || !view.opener ) { 12 | view = window; 13 | } 14 | 15 | return view.getComputedStyle( elem ); 16 | }; 17 | } ); 18 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/rboxStyle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./cssExpand" 3 | ], function( cssExpand ) { 4 | "use strict"; 5 | 6 | return new RegExp( cssExpand.join( "|" ), "i" ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/rcustomProp.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | return /^--/; 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | "use strict"; 5 | 6 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | // A method for quickly swapping in/out CSS properties to get correct calculations. 6 | return function( elem, options, callback ) { 7 | var ret, name, 8 | old = {}; 9 | 10 | // Remember the old values, and insert the new ones 11 | for ( name in options ) { 12 | old[ name ] = elem.style[ name ]; 13 | elem.style[ name ] = options[ name ]; 14 | } 15 | 16 | ret = callback.call( elem ); 17 | 18 | // Revert the old values 19 | for ( name in options ) { 20 | elem.style[ name ] = old[ name ]; 21 | } 22 | 23 | return ret; 24 | }; 25 | 26 | } ); 27 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | /** 6 | * Determines whether an object can have data 7 | */ 8 | return function( owner ) { 9 | 10 | // Accepts only: 11 | // - Node 12 | // - Node.ELEMENT_NODE 13 | // - Node.DOCUMENT_NODE 14 | // - Object 15 | // - Any 16 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); 17 | }; 18 | 19 | } ); 20 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | "use strict"; 5 | 6 | return new Data(); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | "use strict"; 5 | 6 | return new Data(); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../deferred" 4 | ], function( jQuery ) { 5 | 6 | "use strict"; 7 | 8 | // These usually indicate a programmer mistake during development, 9 | // warn about them ASAP rather than swallowing them by default. 10 | var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; 11 | 12 | // If `jQuery.Deferred.getErrorHook` is defined, `asyncError` is an error 13 | // captured before the async barrier to get the original error cause 14 | // which may otherwise be hidden. 15 | jQuery.Deferred.exceptionHook = function( error, asyncError ) { 16 | 17 | // Support: IE 8 - 9 only 18 | // Console exists when dev tools are open, which can happen at any time 19 | if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { 20 | window.console.warn( "jQuery.Deferred exception: " + error.message, 21 | error.stack, asyncError ); 22 | } 23 | }; 24 | 25 | } ); 26 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/deprecated/ajax-event-alias.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../ajax", 4 | "../event" 5 | ], function( jQuery ) { 6 | 7 | "use strict"; 8 | 9 | jQuery.each( [ 10 | "ajaxStart", 11 | "ajaxStop", 12 | "ajaxComplete", 13 | "ajaxError", 14 | "ajaxSuccess", 15 | "ajaxSend" 16 | ], function( _i, type ) { 17 | jQuery.fn[ type ] = function( fn ) { 18 | return this.on( type, fn ); 19 | }; 20 | } ); 21 | 22 | } ); 23 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | "use strict"; 8 | 9 | jQuery.expr.pseudos.animated = function( elem ) { 10 | return jQuery.grep( jQuery.timers, function( fn ) { 11 | return elem === fn.elem; 12 | } ).length; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | // Register as a named AMD module, since jQuery can be concatenated with other 8 | // files that may use define, but not via a proper concatenation script that 9 | // understands anonymous AMD modules. A named AMD is safest and most robust 10 | // way to register. Lowercase jquery is used because AMD module names are 11 | // derived from file names, and jQuery is normally delivered in a lowercase 12 | // file name. Do this after creating the global so that if an AMD module wants 13 | // to call noConflict to hide this version of jQuery, it will work. 14 | 15 | // Note that for maximum portability, libraries that are not jQuery should 16 | // declare themselves as anonymous modules, and avoid setting a global if an 17 | // AMD loader is present. jQuery is a special case. For more information, see 18 | // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon 19 | 20 | if ( typeof define === "function" && define.amd ) { 21 | define( "jquery", [], function() { 22 | return jQuery; 23 | } ); 24 | } 25 | 26 | } ); 27 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/exports/global.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | var 8 | 9 | // Map over jQuery in case of overwrite 10 | _jQuery = window.jQuery, 11 | 12 | // Map over the $ in case of overwrite 13 | _$ = window.$; 14 | 15 | jQuery.noConflict = function( deep ) { 16 | if ( window.$ === jQuery ) { 17 | window.$ = _$; 18 | } 19 | 20 | if ( deep && window.jQuery === jQuery ) { 21 | window.jQuery = _jQuery; 22 | } 23 | 24 | return jQuery; 25 | }; 26 | 27 | // Expose jQuery and $ identifiers, even in AMD 28 | // (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557) 29 | // and CommonJS for browser emulators (trac-13566) 30 | if ( typeof noGlobal === "undefined" ) { 31 | window.jQuery = window.$ = jQuery; 32 | } 33 | 34 | } ); 35 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/jquery.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./selector", 4 | "./traversing", 5 | "./callbacks", 6 | "./deferred", 7 | "./deferred/exceptionHook", 8 | "./core/ready", 9 | "./data", 10 | "./queue", 11 | "./queue/delay", 12 | "./attributes", 13 | "./event", 14 | "./manipulation", 15 | "./manipulation/_evalUrl", 16 | "./wrap", 17 | "./css", 18 | "./css/hiddenVisibleSelectors", 19 | "./serialize", 20 | "./ajax", 21 | "./ajax/xhr", 22 | "./ajax/script", 23 | "./ajax/jsonp", 24 | "./ajax/load", 25 | "./core/parseXML", 26 | "./core/parseHTML", 27 | "./effects", 28 | "./effects/animatedSelector", 29 | "./offset", 30 | "./dimensions", 31 | "./deprecated", 32 | "./exports/amd", 33 | "./exports/global" 34 | ], function( jQuery ) { 35 | 36 | "use strict"; 37 | 38 | return jQuery; 39 | 40 | } ); 41 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | jQuery._evalUrl = function( url, options, doc ) { 8 | return jQuery.ajax( { 9 | url: url, 10 | 11 | // Make this explicit, since user can override this through ajaxSetup (trac-11264) 12 | type: "GET", 13 | dataType: "script", 14 | cache: true, 15 | async: false, 16 | global: false, 17 | 18 | // Only evaluate the response if it is successful (gh-4126) 19 | // dataFilter is not invoked for failure responses, so using it instead 20 | // of the default converter is kludgy but it works. 21 | converters: { 22 | "text script": function() {} 23 | }, 24 | dataFilter: function( response ) { 25 | jQuery.globalEval( response, options, doc ); 26 | } 27 | } ); 28 | }; 29 | 30 | return jQuery._evalUrl; 31 | 32 | } ); 33 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../core/nodeName" 4 | ], function( jQuery, nodeName ) { 5 | 6 | "use strict"; 7 | 8 | function getAll( context, tag ) { 9 | 10 | // Support: IE <=9 - 11 only 11 | // Use typeof to avoid zero-argument method invocation on host objects (trac-15151) 12 | var ret; 13 | 14 | if ( typeof context.getElementsByTagName !== "undefined" ) { 15 | ret = context.getElementsByTagName( tag || "*" ); 16 | 17 | } else if ( typeof context.querySelectorAll !== "undefined" ) { 18 | ret = context.querySelectorAll( tag || "*" ); 19 | 20 | } else { 21 | ret = []; 22 | } 23 | 24 | if ( tag === undefined || tag && nodeName( context, tag ) ) { 25 | return jQuery.merge( [ context ], ret ); 26 | } 27 | 28 | return ret; 29 | } 30 | 31 | return getAll; 32 | } ); 33 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../data/var/dataPriv" 3 | ], function( dataPriv ) { 4 | 5 | "use strict"; 6 | 7 | // Mark scripts as having already been evaluated 8 | function setGlobalEval( elems, refElements ) { 9 | var i = 0, 10 | l = elems.length; 11 | 12 | for ( ; i < l; i++ ) { 13 | dataPriv.set( 14 | elems[ i ], 15 | "globalEval", 16 | !refElements || dataPriv.get( refElements[ i ], "globalEval" ) 17 | ); 18 | } 19 | } 20 | 21 | return setGlobalEval; 22 | } ); 23 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /^$|^module$|\/(?:java|ecma)script/i ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // rtagName captures the name from the first start tag in a string of HTML 5 | // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state 6 | // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state 7 | return ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); 8 | } ); 9 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./support" 3 | ], function( support ) { 4 | 5 | "use strict"; 6 | 7 | // We have to close these tags to support XHTML (trac-13200) 8 | var wrapMap = { 9 | 10 | // XHTML parsers do not magically insert elements in the 11 | // same way that tag soup parsers do. So we cannot shorten 12 | // this by omitting or other required elements. 13 | thead: [ 1, "", "
" ], 14 | col: [ 2, "", "
" ], 15 | tr: [ 2, "", "
" ], 16 | td: [ 3, "", "
" ], 17 | 18 | _default: [ 0, "", "" ] 19 | }; 20 | 21 | wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; 22 | wrapMap.th = wrapMap.td; 23 | 24 | // Support: IE <=9 only 25 | if ( !support.option ) { 26 | wrapMap.optgroup = wrapMap.option = [ 1, "" ]; 27 | } 28 | 29 | return wrapMap; 30 | } ); 31 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../queue", 4 | "../effects" // Delay is optional because of this dependency 5 | ], function( jQuery ) { 6 | 7 | "use strict"; 8 | 9 | // Based off of the plugin by Clint Helfers, with permission. 10 | jQuery.fn.delay = function( time, type ) { 11 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; 12 | type = type || "fx"; 13 | 14 | return this.queue( type, function( next, hooks ) { 15 | var timeout = window.setTimeout( next, time ); 16 | hooks.stop = function() { 17 | window.clearTimeout( timeout ); 18 | }; 19 | } ); 20 | }; 21 | 22 | return jQuery.fn.delay; 23 | } ); 24 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/selector/contains.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | // Note: an element does not contain itself 8 | jQuery.contains = function( a, b ) { 9 | var bup = b && b.parentNode; 10 | 11 | return a === bup || !!( bup && bup.nodeType === 1 && ( 12 | 13 | // Support: IE 9 - 11+ 14 | // IE doesn't have `contains` on SVG. 15 | a.contains ? 16 | a.contains( bup ) : 17 | a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 18 | ) ); 19 | }; 20 | 21 | } ); 22 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/selector/escapeSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | // CSS string/identifier serialization 8 | // https://drafts.csswg.org/cssom/#common-serializing-idioms 9 | var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; 10 | 11 | function fcssescape( ch, asCodePoint ) { 12 | if ( asCodePoint ) { 13 | 14 | // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER 15 | if ( ch === "\0" ) { 16 | return "\uFFFD"; 17 | } 18 | 19 | // Control characters and (dependent upon position) numbers get escaped as code points 20 | return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; 21 | } 22 | 23 | // Other potentially-special ASCII characters get backslash-escaped 24 | return "\\" + ch; 25 | } 26 | 27 | jQuery.escapeSelector = function( sel ) { 28 | return ( sel + "" ).replace( rcssescape, fcssescape ); 29 | }; 30 | 31 | } ); 32 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | "use strict"; 6 | 7 | return function( elem, dir, until ) { 8 | var matched = [], 9 | truncate = until !== undefined; 10 | 11 | while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { 12 | if ( elem.nodeType === 1 ) { 13 | if ( truncate && jQuery( elem ).is( until ) ) { 14 | break; 15 | } 16 | matched.push( elem ); 17 | } 18 | } 19 | return matched; 20 | }; 21 | 22 | } ); 23 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | "use strict"; 6 | 7 | return jQuery.expr.match.needsContext; 8 | } ); 9 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | return function( n, elem ) { 6 | var matched = []; 7 | 8 | for ( ; n; n = n.nextSibling ) { 9 | if ( n.nodeType === 1 && n !== elem ) { 10 | matched.push( n ); 11 | } 12 | } 13 | 14 | return matched; 15 | }; 16 | 17 | } ); 18 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./fnToString" 3 | ], function( fnToString ) { 4 | "use strict"; 5 | 6 | return fnToString.call( Object ); 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.document; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | "use strict"; 5 | 6 | return document.documentElement; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/flat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | 5 | "use strict"; 6 | 7 | // Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only, 8 | // Firefox <= 61 only 9 | // Provide fallback for browsers without Array#flat. 10 | return arr.flat ? function( array ) { 11 | return arr.flat.call( array ); 12 | } : function( array ) { 13 | return arr.concat.apply( [], array ); 14 | }; 15 | 16 | } ); 17 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./hasOwn" 3 | ], function( hasOwn ) { 4 | "use strict"; 5 | 6 | return hasOwn.toString; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | "use strict"; 5 | 6 | return class2type.hasOwnProperty; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.indexOf; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/isFunction.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return function isFunction( obj ) { 5 | 6 | // Support: Chrome <=57, Firefox <=52 7 | // In some browsers, typeof returns "function" for HTML elements 8 | // (i.e., `typeof document.createElement( "object" ) === "function"`). 9 | // We don't want to classify *any* DOM node as a function. 10 | // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 11 | // Plus for old WebKit, typeof returns "function" for HTML collections 12 | // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) 13 | return typeof obj === "function" && typeof obj.nodeType !== "number" && 14 | typeof obj.item !== "function"; 15 | }; 16 | 17 | } ); 18 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/isWindow.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return function isWindow( obj ) { 5 | return obj != null && obj === obj.window; 6 | }; 7 | 8 | } ); 9 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/pop.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | 5 | "use strict"; 6 | 7 | return arr.pop; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.push; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return ( /^(?:checkbox|radio)$/i ); 5 | } ); 6 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | "use strict"; 6 | 7 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // Only count HTML whitespace 5 | // Other whitespace should count in values 6 | // https://infra.spec.whatwg.org/#ascii-whitespace 7 | return ( /[^\x20\t\r\n\f]+/g ); 8 | } ); 9 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/rtrimCSS.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./whitespace" 3 | ], function( whitespace ) { 4 | 5 | "use strict"; 6 | 7 | return new RegExp( 8 | "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", 9 | "g" 10 | ); 11 | 12 | } ); 13 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | "use strict"; 5 | 6 | return arr.slice; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/sort.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | 5 | "use strict"; 6 | 7 | return arr.sort; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/splice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | 5 | "use strict"; 6 | 7 | return arr.splice; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // All support tests are defined in their respective modules. 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | "use strict"; 5 | 6 | return class2type.toString; 7 | } ); 8 | -------------------------------------------------------------------------------- /src/assets/libs/jquery/src/var/whitespace.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | "use strict"; 4 | 5 | // https://www.w3.org/TR/css3-selectors/#whitespace 6 | return "[\\x20\\t\\r\\n\\f]"; 7 | 8 | } ); 9 | -------------------------------------------------------------------------------- /src/assets/libs/simplebar/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Jonathan Nicol 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. -------------------------------------------------------------------------------- /src/assets/libs/simplebar/src/helpers.js: -------------------------------------------------------------------------------- 1 | // Helper function to retrieve options from element attributes 2 | export const getOptions = function(obj) { 3 | const options = Array.prototype.reduce.call( 4 | obj, 5 | (acc, attribute) => { 6 | const option = attribute.name.match(/data-simplebar-(.+)/); 7 | if (option) { 8 | const key = option[1].replace(/\W+(.)/g, (x, chr) => chr.toUpperCase()); 9 | switch (attribute.value) { 10 | case 'true': 11 | acc[key] = true; 12 | break; 13 | case 'false': 14 | acc[key] = false; 15 | break; 16 | case undefined: 17 | acc[key] = true; 18 | break; 19 | default: 20 | acc[key] = attribute.value; 21 | } 22 | } 23 | return acc; 24 | }, 25 | {} 26 | ); 27 | return options; 28 | }; 29 | 30 | export function getElementWindow(element) { 31 | if ( 32 | !element || 33 | !element.ownerDocument || 34 | !element.ownerDocument.defaultView 35 | ) { 36 | return window; 37 | } 38 | return element.ownerDocument.defaultView; 39 | } 40 | 41 | export function getElementDocument(element) { 42 | if (!element || !element.ownerDocument) { 43 | return document; 44 | } 45 | return element.ownerDocument; 46 | } 47 | -------------------------------------------------------------------------------- /src/assets/libs/simplebar/src/scrollbar-width.js: -------------------------------------------------------------------------------- 1 | import canUseDOM from 'can-use-dom'; 2 | import { getElementDocument } from "./helpers"; 3 | 4 | let cachedScrollbarWidth = null; 5 | let cachedDevicePixelRatio = null; 6 | 7 | if (canUseDOM) { 8 | window.addEventListener('resize', () => { 9 | if (cachedDevicePixelRatio !== window.devicePixelRatio) { 10 | cachedDevicePixelRatio = window.devicePixelRatio; 11 | cachedScrollbarWidth = null; 12 | } 13 | }); 14 | } 15 | 16 | export default function scrollbarWidth(el) { 17 | if (cachedScrollbarWidth === null) { 18 | 19 | const document = getElementDocument(el); 20 | 21 | if (typeof document === 'undefined') { 22 | cachedScrollbarWidth = 0; 23 | return cachedScrollbarWidth; 24 | } 25 | const body = document.body; 26 | const box = document.createElement('div'); 27 | 28 | box.classList.add('simplebar-hide-scrollbar'); 29 | 30 | body.appendChild(box); 31 | 32 | const width = box.getBoundingClientRect().right; 33 | 34 | body.removeChild(box); 35 | 36 | cachedScrollbarWidth = width; 37 | } 38 | 39 | return cachedScrollbarWidth; 40 | } 41 | -------------------------------------------------------------------------------- /src/assets/scss/component/_card.scss: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------- 2 | // Card Style 3 | // ---------------------------------------------- 4 | 5 | .card-title { 6 | font-size: 18px; 7 | } 8 | 9 | .card-subtitle { 10 | font-size: 14px; 11 | } 12 | 13 | .card { 14 | margin-bottom: 30px; 15 | } 16 | -------------------------------------------------------------------------------- /src/assets/scss/component/_reboot.scss: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------- 2 | // Reboot Style 3 | // ---------------------------------------------- 4 | 5 | * { 6 | margin: 0; 7 | padding: 0; 8 | box-sizing: border-box; 9 | } 10 | 11 | a { 12 | text-decoration: none; 13 | } 14 | 15 | a:hover { 16 | color: $primary; 17 | } 18 | 19 | ul { 20 | list-style: none; 21 | padding-left: 0; 22 | } 23 | 24 | :focus { 25 | outline: 0; 26 | box-shadow: none !important; 27 | } 28 | 29 | .cursor-pointer { 30 | cursor: pointer; 31 | } 32 | -------------------------------------------------------------------------------- /src/assets/scss/pages/_dashboard1.scss: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------- 2 | // Dashboard1 Style 3 | // ---------------------------------------------- 4 | 5 | .timeline-widget { 6 | .timeline-item { 7 | min-height: 70px; 8 | 9 | .timeline-time { 10 | padding: 6px 16px 6px 0; 11 | min-width: 90px; 12 | } 13 | 14 | .timeline-badge-wrap { 15 | .timeline-badge { 16 | width: 12px; 17 | height: 12px; 18 | border-radius: 50px; 19 | background-color: transparent; 20 | } 21 | 22 | .timeline-badge-border { 23 | width: 1px; 24 | height: 100%; 25 | background-color: $border-color; 26 | } 27 | } 28 | 29 | .timeline-desc { 30 | padding: 6px 16px; 31 | } 32 | 33 | .timeline-badge.badge-primary { 34 | border: 2px solid $primary; 35 | } 36 | } 37 | } 38 | 39 | 40 | .btn-gredient { 41 | border: 0; 42 | background: linear-gradient(94deg, #9f8be9 0, #e577ac 53.08%, #ed7853 97.99%), rgba(255, 255, 255, .05); 43 | 44 | &:hover{ 45 | background: linear-gradient(90deg, #ed7853 0, #e577ac 53.08%, #9f8be9 97.99%); 46 | } 47 | } -------------------------------------------------------------------------------- /src/assets/scss/styles.scss: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap"); 2 | 3 | @import "./variables/variables"; 4 | 5 | // Import Bootstrap source files (Required file) 6 | @import "../libs/bootstrap/scss/bootstrap.scss"; 7 | 8 | 9 | @import "./variables/theme-variables"; 10 | 11 | 12 | // Scrollbar style (Required file) 13 | @import "../libs/simplebar/dist/simplebar.css"; 14 | 15 | // Tabler Icons style 16 | @import "../css/icons/tabler-icons/tabler-icons.css"; 17 | 18 | // Theme Layouts style (Required file) 19 | @import "./layouts/sidebar"; 20 | @import "./layouts/header"; 21 | @import "./layouts/layouts"; 22 | 23 | // Component style (Required file) 24 | 25 | @import "./component/reboot"; 26 | @import "./component/card"; 27 | 28 | // Utilities style (Required file) 29 | @import "./utilities/icon-size"; 30 | 31 | 32 | // Pages style (Required file) 33 | @import "./pages/dashboard1"; -------------------------------------------------------------------------------- /src/assets/scss/utilities/_icon-size.scss: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------- 2 | // Icon Size Style 3 | // ---------------------------------------------- 4 | 5 | .round-8 { 6 | width: 8px; 7 | height: 8px; 8 | } 9 | 10 | .round-16 { 11 | width: 16px; 12 | height: 16px; 13 | } 14 | 15 | .round-20 { 16 | width: 20px !important; 17 | height: 20px !important; 18 | } 19 | 20 | .round { 21 | width: 45px; 22 | height: 45px; 23 | } 24 | 25 | .round-48 { 26 | width: 48px; 27 | height: 48px; 28 | } 29 | 30 | .rounded-circle-shape { 31 | width: 56px; 32 | height: 40px; 33 | } -------------------------------------------------------------------------------- /src/assets/scss/variables/_theme-variables.scss: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------- 2 | // Theme Variables Style 3 | // ---------------------------------------------- 4 | 5 | 6 | // ---------------------------------------------- 7 | // Header 8 | // ---------------------------------------------- 9 | 10 | $header-height: 70px; 11 | $navlink-padding: 8px 16px; 12 | $header-shadow: 1px 0px 20px 0px rgb(0 0 0 / 12%); 13 | 14 | // ---------------------------------------------- 15 | // Sidebar 16 | // ---------------------------------------------- 17 | 18 | $custom-gray : #7C8FAC; 19 | $sidebar-text: $dark; 20 | 21 | $sidebar-width-full: 270px; 22 | $sidebar-spacing-x: 0 24px; 23 | 24 | $boxed-width: 1200px; // boxed layout width --------------------------------------------------------------------------------