├── .gitignore
├── src
└── assets
│ ├── libs
│ ├── bootstrap
│ │ ├── scss
│ │ │ ├── helpers
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _text-truncation.scss
│ │ │ │ ├── _visually-hidden.scss
│ │ │ │ ├── _vr.scss
│ │ │ │ ├── _stretched-link.scss
│ │ │ │ ├── _stacks.scss
│ │ │ │ ├── _focus-ring.scss
│ │ │ │ ├── _color-bg.scss
│ │ │ │ ├── _ratio.scss
│ │ │ │ ├── _icon-link.scss
│ │ │ │ └── _position.scss
│ │ │ ├── mixins
│ │ │ │ ├── _clearfix.scss
│ │ │ │ ├── _lists.scss
│ │ │ │ ├── _color-scheme.scss
│ │ │ │ ├── _text-truncate.scss
│ │ │ │ ├── _resize.scss
│ │ │ │ ├── _banner.scss
│ │ │ │ ├── _backdrop.scss
│ │ │ │ ├── _pagination.scss
│ │ │ │ ├── _container.scss
│ │ │ │ ├── _image.scss
│ │ │ │ ├── _box-shadow.scss
│ │ │ │ ├── _color-mode.scss
│ │ │ │ ├── _reset-text.scss
│ │ │ │ ├── _alert.scss
│ │ │ │ ├── _deprecate.scss
│ │ │ │ ├── _list-group.scss
│ │ │ │ ├── _transition.scss
│ │ │ │ ├── _table-variants.scss
│ │ │ │ └── _visually-hidden.scss
│ │ │ ├── bootstrap-reboot.scss
│ │ │ ├── forms
│ │ │ │ ├── _form-text.scss
│ │ │ │ ├── _validation.scss
│ │ │ │ └── _labels.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _helpers.scss
│ │ │ ├── bootstrap-utilities.scss
│ │ │ ├── _transitions.scss
│ │ │ ├── _grid.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _placeholders.scss
│ │ │ ├── bootstrap.scss
│ │ │ ├── _badge.scss
│ │ │ ├── _images.scss
│ │ │ └── _containers.scss
│ │ ├── js
│ │ │ ├── index.esm.js
│ │ │ ├── index.umd.js
│ │ │ └── src
│ │ │ │ └── util
│ │ │ │ └── component-functions.js
│ │ └── LICENSE
│ ├── jquery
│ │ ├── src
│ │ │ ├── var
│ │ │ │ ├── arr.js
│ │ │ │ ├── document.js
│ │ │ │ ├── getProto.js
│ │ │ │ ├── push.js
│ │ │ │ ├── rcheckableType.js
│ │ │ │ ├── slice.js
│ │ │ │ ├── class2type.js
│ │ │ │ ├── indexOf.js
│ │ │ │ ├── pnum.js
│ │ │ │ ├── pop.js
│ │ │ │ ├── sort.js
│ │ │ │ ├── fnToString.js
│ │ │ │ ├── splice.js
│ │ │ │ ├── hasOwn.js
│ │ │ │ ├── toString.js
│ │ │ │ ├── documentElement.js
│ │ │ │ ├── support.js
│ │ │ │ ├── ObjectFunctionString.js
│ │ │ │ ├── isWindow.js
│ │ │ │ ├── whitespace.js
│ │ │ │ ├── rcssNum.js
│ │ │ │ ├── rtrimCSS.js
│ │ │ │ ├── rnothtmlwhite.js
│ │ │ │ ├── flat.js
│ │ │ │ └── isFunction.js
│ │ │ ├── ajax
│ │ │ │ └── var
│ │ │ │ │ ├── rquery.js
│ │ │ │ │ ├── location.js
│ │ │ │ │ └── nonce.js
│ │ │ ├── core
│ │ │ │ ├── var
│ │ │ │ │ ├── rhtml.js
│ │ │ │ │ └── rsingleTag.js
│ │ │ │ ├── readyException.js
│ │ │ │ ├── nodeName.js
│ │ │ │ ├── stripAndCollapse.js
│ │ │ │ ├── toType.js
│ │ │ │ ├── camelCase.js
│ │ │ │ ├── support.js
│ │ │ │ ├── parseXML.js
│ │ │ │ ├── isAttached.js
│ │ │ │ └── DOMEval.js
│ │ │ ├── css
│ │ │ │ ├── var
│ │ │ │ │ ├── rcustomProp.js
│ │ │ │ │ ├── cssExpand.js
│ │ │ │ │ ├── rboxStyle.js
│ │ │ │ │ ├── rnumnonpx.js
│ │ │ │ │ ├── getStyles.js
│ │ │ │ │ └── swap.js
│ │ │ │ ├── hiddenVisibleSelectors.js
│ │ │ │ ├── addGetHookIf.js
│ │ │ │ └── finalPropName.js
│ │ │ ├── data
│ │ │ │ └── var
│ │ │ │ │ ├── dataPriv.js
│ │ │ │ │ ├── dataUser.js
│ │ │ │ │ └── acceptData.js
│ │ │ ├── manipulation
│ │ │ │ ├── var
│ │ │ │ │ ├── rscriptType.js
│ │ │ │ │ └── rtagName.js
│ │ │ │ ├── setGlobalEval.js
│ │ │ │ ├── getAll.js
│ │ │ │ ├── _evalUrl.js
│ │ │ │ └── wrapMap.js
│ │ │ ├── traversing
│ │ │ │ └── var
│ │ │ │ │ ├── rneedsContext.js
│ │ │ │ │ ├── siblings.js
│ │ │ │ │ └── dir.js
│ │ │ ├── attributes.js
│ │ │ ├── effects
│ │ │ │ └── animatedSelector.js
│ │ │ ├── deprecated
│ │ │ │ └── ajax-event-alias.js
│ │ │ ├── selector
│ │ │ │ ├── contains.js
│ │ │ │ └── escapeSelector.js
│ │ │ ├── queue
│ │ │ │ └── delay.js
│ │ │ ├── exports
│ │ │ │ ├── global.js
│ │ │ │ └── amd.js
│ │ │ ├── jquery.js
│ │ │ ├── attributes
│ │ │ │ └── support.js
│ │ │ └── deferred
│ │ │ │ └── exceptionHook.js
│ │ ├── bower.json
│ │ └── LICENSE.txt
│ ├── apexcharts
│ │ ├── src
│ │ │ ├── assets
│ │ │ │ ├── ico-menu.svg
│ │ │ │ ├── ico-home.svg
│ │ │ │ ├── ico-select1.svg
│ │ │ │ ├── ico-reset.svg
│ │ │ │ ├── ico-pan.svg
│ │ │ │ ├── ico-plus-square.svg
│ │ │ │ ├── ico-minus.svg
│ │ │ │ ├── ico-zoom.svg
│ │ │ │ ├── ico-plus.svg
│ │ │ │ ├── ico-camera.svg
│ │ │ │ ├── ico-refresh.svg
│ │ │ │ ├── ico-select.svg
│ │ │ │ ├── ico-minus-square.svg
│ │ │ │ ├── ico-zoom-in.svg
│ │ │ │ ├── ico-zoom-out.svg
│ │ │ │ └── ico-pan-hand.svg
│ │ │ ├── modules
│ │ │ │ ├── Base.js
│ │ │ │ ├── tooltip
│ │ │ │ │ └── README.md
│ │ │ │ └── axes
│ │ │ │ │ └── Axes.js
│ │ │ ├── charts
│ │ │ │ └── common
│ │ │ │ │ └── circle
│ │ │ │ │ └── Helpers.js
│ │ │ └── locales
│ │ │ │ ├── ar.json
│ │ │ │ ├── ko.json
│ │ │ │ ├── zh-cn.json
│ │ │ │ ├── zh-tw.json
│ │ │ │ ├── ja.json
│ │ │ │ ├── id.json
│ │ │ │ ├── he.json
│ │ │ │ ├── fa.json
│ │ │ │ ├── nb.json
│ │ │ │ ├── da.json
│ │ │ │ ├── cs.json
│ │ │ │ ├── se.json
│ │ │ │ ├── sl.json
│ │ │ │ ├── tr.json
│ │ │ │ ├── en.json
│ │ │ │ ├── hi.json
│ │ │ │ ├── sk.json
│ │ │ │ ├── it.json
│ │ │ │ ├── nl.json
│ │ │ │ ├── pt-br.json
│ │ │ │ ├── sq.json
│ │ │ │ ├── th.json
│ │ │ │ ├── rs.json
│ │ │ │ ├── ru.json
│ │ │ │ ├── de.json
│ │ │ │ ├── es.json
│ │ │ │ ├── pl.json
│ │ │ │ ├── ua.json
│ │ │ │ ├── ca.json
│ │ │ │ ├── ka.json
│ │ │ │ ├── el.json
│ │ │ │ ├── fi.json
│ │ │ │ ├── hy.json
│ │ │ │ ├── pt.json
│ │ │ │ ├── hr.json
│ │ │ │ ├── be-cyrl.json
│ │ │ │ ├── be-latn.json
│ │ │ │ ├── lt.json
│ │ │ │ ├── fr.json
│ │ │ │ ├── et.json
│ │ │ │ └── vi.json
│ │ ├── dist
│ │ │ └── locales
│ │ │ │ ├── ar.json
│ │ │ │ ├── ko.json
│ │ │ │ ├── ja.json
│ │ │ │ ├── zh-cn.json
│ │ │ │ ├── zh-tw.json
│ │ │ │ ├── id.json
│ │ │ │ ├── he.json
│ │ │ │ ├── fa.json
│ │ │ │ ├── nb.json
│ │ │ │ ├── cs.json
│ │ │ │ ├── da.json
│ │ │ │ ├── se.json
│ │ │ │ ├── sl.json
│ │ │ │ ├── tr.json
│ │ │ │ ├── en.json
│ │ │ │ ├── sk.json
│ │ │ │ ├── hi.json
│ │ │ │ ├── nl.json
│ │ │ │ ├── pt-br.json
│ │ │ │ ├── sq.json
│ │ │ │ ├── th.json
│ │ │ │ ├── it.json
│ │ │ │ ├── rs.json
│ │ │ │ ├── ru.json
│ │ │ │ ├── de.json
│ │ │ │ ├── es.json
│ │ │ │ ├── pl.json
│ │ │ │ ├── ua.json
│ │ │ │ ├── ca.json
│ │ │ │ ├── ka.json
│ │ │ │ ├── el.json
│ │ │ │ ├── fi.json
│ │ │ │ ├── hy.json
│ │ │ │ ├── hr.json
│ │ │ │ ├── pt.json
│ │ │ │ ├── be-cyrl.json
│ │ │ │ ├── be-latn.json
│ │ │ │ ├── fr.json
│ │ │ │ ├── lt.json
│ │ │ │ ├── et.json
│ │ │ │ └── vi.json
│ │ └── LICENSE
│ └── simplebar
│ │ ├── src
│ │ ├── scrollbar-width.js
│ │ └── helpers.js
│ │ └── LICENSE
│ ├── images
│ ├── logos
│ │ └── favicon.png
│ ├── products
│ │ ├── s1.jpg
│ │ ├── s2.jpg
│ │ ├── s3.jpg
│ │ ├── s4.jpg
│ │ ├── s5.jpg
│ │ ├── dash-prd-1.jpg
│ │ ├── dash-prd-2.jpg
│ │ ├── dash-prd-3.jpg
│ │ └── dash-prd-4.jpg
│ ├── blog
│ │ ├── blog-img1.jpg
│ │ ├── blog-img2.jpg
│ │ └── blog-img3.jpg
│ ├── profile
│ │ ├── user-1.jpg
│ │ ├── user-2.jpg
│ │ └── user-3.jpg
│ ├── backgrounds
│ │ └── rupee.png
│ └── svgs
│ │ ├── vue-cat-icon.svg
│ │ ├── nuxt-cat-icon.svg
│ │ ├── angular-cat-icon.svg
│ │ └── tailwindcss.svg
│ ├── css
│ └── icons
│ │ └── tabler-icons
│ │ └── fonts
│ │ ├── tabler-icons.eot
│ │ ├── tabler-icons.ttf
│ │ ├── tabler-icons.woff
│ │ └── tabler-icons.woff2
│ ├── scss
│ ├── component
│ │ ├── _card.scss
│ │ └── _reboot.scss
│ ├── utilities
│ │ └── _icon-size.scss
│ ├── variables
│ │ └── _theme-variables.scss
│ ├── styles.scss
│ └── pages
│ │ └── _dashboard1.scss
│ └── js
│ └── app.min.js
├── hire-us.html
├── docs.html
├── package.json
└── LICENSE.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules/
2 |
--------------------------------------------------------------------------------
/src/assets/libs/bootstrap/scss/helpers/_clearfix.scss:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | @include clearfix();
3 | }
4 |
--------------------------------------------------------------------------------
/src/assets/libs/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return [];
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/var/document.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return window.document;
5 | } );
6 |
--------------------------------------------------------------------------------
/src/assets/images/logos/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/logos/favicon.png
--------------------------------------------------------------------------------
/src/assets/images/products/s1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/s1.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/s2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/s2.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/s3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/s3.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/s4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/s4.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/s5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/s5.jpg
--------------------------------------------------------------------------------
/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/core/var/rhtml.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 |
3 | "use strict";
4 |
5 | return ( /HTML$/i );
6 |
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/var/getProto.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return Object.getPrototypeOf;
5 | } );
6 |
--------------------------------------------------------------------------------
/src/assets/images/blog/blog-img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/blog/blog-img1.jpg
--------------------------------------------------------------------------------
/src/assets/images/blog/blog-img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/blog/blog-img2.jpg
--------------------------------------------------------------------------------
/src/assets/images/blog/blog-img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/blog/blog-img3.jpg
--------------------------------------------------------------------------------
/src/assets/images/profile/user-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/profile/user-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/profile/user-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/profile/user-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/profile/user-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/profile/user-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/backgrounds/rupee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/backgrounds/rupee.png
--------------------------------------------------------------------------------
/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/slice.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.slice;
7 | } );
8 |
--------------------------------------------------------------------------------
/src/assets/images/products/dash-prd-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/dash-prd-1.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/dash-prd-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/dash-prd-2.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/dash-prd-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/dash-prd-3.jpg
--------------------------------------------------------------------------------
/src/assets/images/products/dash-prd-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/images/products/dash-prd-4.jpg
--------------------------------------------------------------------------------
/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/indexOf.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./arr"
3 | ], function( arr ) {
4 | "use strict";
5 |
6 | return arr.indexOf;
7 | } );
8 |
--------------------------------------------------------------------------------
/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/var/pnum.js:
--------------------------------------------------------------------------------
1 | define( function() {
2 | "use strict";
3 |
4 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
5 | } );
6 |
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/toString.js:
--------------------------------------------------------------------------------
1 | define( [
2 | "./class2type"
3 | ], function( class2type ) {
4 | "use strict";
5 |
6 | return class2type.toString;
7 | } );
8 |
--------------------------------------------------------------------------------
/src/assets/css/icons/tabler-icons/fonts/tabler-icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/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/matdash-bootstrap-free/HEAD/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/matdash-bootstrap-free/HEAD/src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff
--------------------------------------------------------------------------------
/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/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/css/icons/tabler-icons/fonts/tabler-icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adminmart/matdash-bootstrap-free/HEAD/src/assets/css/icons/tabler-icons/fonts/tabler-icons.woff2
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/apexcharts/src/assets/ico-menu.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/_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/_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/_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/_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/apexcharts/src/assets/ico-home.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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/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/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/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/apexcharts/src/assets/ico-select1.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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/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/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/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/apexcharts/src/assets/ico-reset.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/apexcharts/src/assets/ico-pan.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/libs/apexcharts/src/assets/ico-plus-square.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/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/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/apexcharts/src/assets/ico-minus.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/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/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/apexcharts/src/assets/ico-zoom.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/apexcharts/src/assets/ico-plus.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/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/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/apexcharts/src/assets/ico-camera.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hire-us.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Matdash Bootstrap Free Template | Docs
6 |
8 |
9 |
10 |
11 | Matdash Bootstrap Free Template
12 | https://adminmart.com/hire-us/
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/assets/libs/apexcharts/src/assets/ico-refresh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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/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/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/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/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/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/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/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/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/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/scss/utilities/_icon-size.scss:
--------------------------------------------------------------------------------
1 | // ----------------------------------------------
2 | // Icon Size Style
3 | // ----------------------------------------------
4 |
5 | .round-8 {
6 | width: 8px;
7 | height: 8px;
8 | }
9 | .round-20 {
10 | width: 20px !important;
11 | height: 20px !important;
12 | }
13 |
14 | .round-48 {
15 | width: 48px;
16 | height: 48px;
17 | }
18 |
19 | .rounded-circle-shape {
20 | width: 56px;
21 | height: 40px;
22 | }
--------------------------------------------------------------------------------
/src/assets/libs/apexcharts/src/assets/ico-select.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/libs/apexcharts/src/assets/ico-minus-square.svg:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/src/assets/libs/apexcharts/src/assets/ico-zoom-in.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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/images/svgs/vue-cat-icon.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/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/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/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/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/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 |
--------------------------------------------------------------------------------
/docs.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Matdash Bootstrap Free Template | Docs
6 |
8 |
9 |
10 |
11 | Matdash Bootstrap Free Template
12 | https://adminmart.github.io/free-documentation/bootstrap/matdash/index.html
13 |
14 |
15 |
--------------------------------------------------------------------------------
/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/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/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 |
--------------------------------------------------------------------------------
/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/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/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/_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/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/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/images/svgs/nuxt-cat-icon.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/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/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/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/apexcharts/src/assets/ico-zoom-out.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/scss/variables/_theme-variables.scss:
--------------------------------------------------------------------------------
1 | // ----------------------------------------------
2 | // Theme Variables Style
3 | // ----------------------------------------------
4 |
5 |
6 | // ----------------------------------------------
7 | // Header
8 | // ----------------------------------------------
9 |
10 | $header-height: 72px;
11 | $navlink-padding: 8px 16px;
12 | $header-shadow: 1px 0px 20px 0px rgb(0 0 0 / 12%);
13 |
14 | // ----------------------------------------------
15 | // Sidebar
16 | // ----------------------------------------------
17 |
18 | $sidebar-width-full: 260px;
19 | $sidebar-spacing-x: 0 16px;
20 |
21 | $boxed-width: 1200px; // boxed layout width
--------------------------------------------------------------------------------
/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/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/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/apexcharts/src/assets/ico-pan-hand.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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/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/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/images/svgs/angular-cat-icon.svg:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/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