app-menu.js 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  1. /******/ (function(modules) { // webpackBootstrap
  2. /******/ // The module cache
  3. /******/ var installedModules = {};
  4. /******/
  5. /******/ // The require function
  6. /******/ function __webpack_require__(moduleId) {
  7. /******/
  8. /******/ // Check if module is in cache
  9. /******/ if(installedModules[moduleId]) {
  10. /******/ return installedModules[moduleId].exports;
  11. /******/ }
  12. /******/ // Create a new module (and put it into the cache)
  13. /******/ var module = installedModules[moduleId] = {
  14. /******/ i: moduleId,
  15. /******/ l: false,
  16. /******/ exports: {}
  17. /******/ };
  18. /******/
  19. /******/ // Execute the module function
  20. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  21. /******/
  22. /******/ // Flag the module as loaded
  23. /******/ module.l = true;
  24. /******/
  25. /******/ // Return the exports of the module
  26. /******/ return module.exports;
  27. /******/ }
  28. /******/
  29. /******/
  30. /******/ // expose the modules object (__webpack_modules__)
  31. /******/ __webpack_require__.m = modules;
  32. /******/
  33. /******/ // expose the module cache
  34. /******/ __webpack_require__.c = installedModules;
  35. /******/
  36. /******/ // define getter function for harmony exports
  37. /******/ __webpack_require__.d = function(exports, name, getter) {
  38. /******/ if(!__webpack_require__.o(exports, name)) {
  39. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  40. /******/ }
  41. /******/ };
  42. /******/
  43. /******/ // define __esModule on exports
  44. /******/ __webpack_require__.r = function(exports) {
  45. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  46. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  47. /******/ }
  48. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  49. /******/ };
  50. /******/
  51. /******/ // create a fake namespace object
  52. /******/ // mode & 1: value is a module id, require it
  53. /******/ // mode & 2: merge all properties of value into the ns
  54. /******/ // mode & 4: return value when already ns object
  55. /******/ // mode & 8|1: behave like require
  56. /******/ __webpack_require__.t = function(value, mode) {
  57. /******/ if(mode & 1) value = __webpack_require__(value);
  58. /******/ if(mode & 8) return value;
  59. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  60. /******/ var ns = Object.create(null);
  61. /******/ __webpack_require__.r(ns);
  62. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  63. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  64. /******/ return ns;
  65. /******/ };
  66. /******/
  67. /******/ // getDefaultExport function for compatibility with non-harmony modules
  68. /******/ __webpack_require__.n = function(module) {
  69. /******/ var getter = module && module.__esModule ?
  70. /******/ function getDefault() { return module['default']; } :
  71. /******/ function getModuleExports() { return module; };
  72. /******/ __webpack_require__.d(getter, 'a', getter);
  73. /******/ return getter;
  74. /******/ };
  75. /******/
  76. /******/ // Object.prototype.hasOwnProperty.call
  77. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  78. /******/
  79. /******/ // __webpack_public_path__
  80. /******/ __webpack_require__.p = "/";
  81. /******/
  82. /******/
  83. /******/ // Load entry module and return exports
  84. /******/ return __webpack_require__(__webpack_require__.s = 0);
  85. /******/ })
  86. /************************************************************************/
  87. /******/ ({
  88. /***/ "./resources/assets/js/core/app-menu.js":
  89. /*!**********************************************!*\
  90. !*** ./resources/assets/js/core/app-menu.js ***!
  91. \**********************************************/
  92. /*! no static exports found */
  93. /***/ (function(module, exports) {
  94. /*=========================================================================================
  95. File Name: app-menu.js
  96. Description: Menu navigation, custom scrollbar, hover scroll bar, multilevel menu
  97. initialization and manipulations
  98. ----------------------------------------------------------------------------------------
  99. Item Name: Vusax - Vuejs, HTML & Laravel Admin Dashboard Template
  100. Author: Pixinvent
  101. Author URL: hhttp://www.themeforest.net/user/pixinvent
  102. ==========================================================================================*/
  103. (function (window, document, $) {
  104. 'use strict';
  105. var vh = window.innerHeight * 0.01;
  106. document.documentElement.style.setProperty('--vh', "".concat(vh, "px"));
  107. $.app = $.app || {};
  108. var $body = $('body');
  109. var $window = $(window);
  110. var menuWrapper_el = $('div[data-menu="menu-wrapper"]').html();
  111. var menuWrapperClasses = $('div[data-menu="menu-wrapper"]').attr('class'); // Main menu
  112. $.app.menu = {
  113. expanded: null,
  114. collapsed: null,
  115. hidden: null,
  116. container: null,
  117. horizontalMenu: false,
  118. is_touch_device: function is_touch_device() {
  119. var prefixes = ' -webkit- -moz- -o- -ms- '.split(' ');
  120. var mq = function mq(query) {
  121. return window.matchMedia(query).matches;
  122. };
  123. if ('ontouchstart' in window || window.DocumentTouch && document instanceof DocumentTouch) {
  124. return true;
  125. } // include the 'heartz' as a way to have a non matching MQ to help terminate the join
  126. // https://git.io/vznFH
  127. var query = ['(', prefixes.join('touch-enabled),('), 'heartz', ')'].join('');
  128. return mq(query);
  129. },
  130. manualScroller: {
  131. obj: null,
  132. init: function init() {
  133. var scroll_theme = $('.main-menu').hasClass('menu-dark') ? 'light' : 'dark';
  134. if (!$.app.menu.is_touch_device()) {
  135. this.obj = new PerfectScrollbar(".main-menu-content", {
  136. suppressScrollX: true,
  137. wheelPropagation: false
  138. });
  139. } else {
  140. $(".main-menu").addClass("menu-native-scroll");
  141. }
  142. },
  143. update: function update() {
  144. if (this.obj) {
  145. // Scroll to currently active menu on page load if data-scroll-to-active is true
  146. if ($('.main-menu').data('scroll-to-active') === true) {
  147. var activeEl, menu, activeElHeight;
  148. activeEl = document.querySelector('.main-menu-content li.active');
  149. if ($body.hasClass('menu-collapsed')) {
  150. if ($('.main-menu-content li.sidebar-group-active').length) {
  151. activeEl = document.querySelector('.main-menu-content li.sidebar-group-active');
  152. }
  153. } else {
  154. menu = document.querySelector('.main-menu-content');
  155. if (activeEl) {
  156. activeElHeight = activeEl.getBoundingClientRect().top + menu.scrollTop;
  157. } // If active element's top position is less than 2/3 (66%) of menu height than do not scroll
  158. if (activeElHeight > parseInt(menu.clientHeight * 2 / 3)) {
  159. var start = menu.scrollTop,
  160. change = activeElHeight - start - parseInt(menu.clientHeight / 2);
  161. }
  162. }
  163. setTimeout(function () {
  164. $.app.menu.container.stop().animate({
  165. scrollTop: change
  166. }, 300);
  167. $('.main-menu').data('scroll-to-active', 'false');
  168. }, 300);
  169. }
  170. this.obj.update();
  171. }
  172. },
  173. enable: function enable() {
  174. if (!$('.main-menu-content').hasClass('ps')) {
  175. this.init();
  176. }
  177. },
  178. disable: function disable() {
  179. if (this.obj) {
  180. this.obj.destroy();
  181. }
  182. },
  183. updateHeight: function updateHeight() {
  184. if (($body.data('menu') == 'vertical-menu' || $body.data('menu') == 'vertical-menu-modern' || $body.data('menu') == 'vertical-overlay-menu') && $('.main-menu').hasClass('menu-fixed')) {
  185. $('.main-menu-content').css('height', $(window).height() - $('.header-navbar').height() - $('.main-menu-header').outerHeight() - $('.main-menu-footer').outerHeight());
  186. this.update();
  187. }
  188. }
  189. },
  190. init: function init(compactMenu) {
  191. if ($('.main-menu-content').length > 0) {
  192. this.container = $('.main-menu-content');
  193. var menuObj = this;
  194. var defMenu = '';
  195. if (compactMenu === true) {
  196. defMenu = 'collapsed';
  197. }
  198. if ($body.data('menu') == 'vertical-menu-modern') {
  199. var menuToggle = '';
  200. if (menuToggle === "false") {
  201. this.change('collapsed');
  202. } else {
  203. this.change(defMenu);
  204. }
  205. } else {
  206. this.change(defMenu);
  207. }
  208. }
  209. },
  210. drillDownMenu: function drillDownMenu(screenSize) {
  211. if ($('.drilldown-menu').length) {
  212. if (screenSize == 'sm' || screenSize == 'xs') {
  213. if ($('#navbar-mobile').attr('aria-expanded') == 'true') {
  214. $('.drilldown-menu').slidingMenu({
  215. backLabel: true
  216. });
  217. }
  218. } else {
  219. $('.drilldown-menu').slidingMenu({
  220. backLabel: true
  221. });
  222. }
  223. }
  224. },
  225. change: function change(defMenu) {
  226. var currentBreakpoint = Unison.fetch.now(); // Current Breakpoint
  227. this.reset();
  228. var menuType = $body.data('menu');
  229. if (currentBreakpoint) {
  230. switch (currentBreakpoint.name) {
  231. case 'xl':
  232. if (menuType === 'vertical-overlay-menu') {
  233. this.hide();
  234. } else {
  235. if (defMenu === 'collapsed') this.collapse(defMenu);else this.expand();
  236. }
  237. break;
  238. case 'lg':
  239. if (menuType === 'vertical-overlay-menu' || menuType === 'vertical-menu-modern' || menuType === 'horizontal-menu') {
  240. this.hide();
  241. } else {
  242. this.collapse();
  243. }
  244. break;
  245. case 'md':
  246. case 'sm':
  247. this.hide();
  248. break;
  249. case 'xs':
  250. this.hide();
  251. break;
  252. }
  253. } // On the small and extra small screen make them overlay menu
  254. if (menuType === 'vertical-menu' || menuType === 'vertical-menu-modern') {
  255. this.toOverlayMenu(currentBreakpoint.name, menuType);
  256. }
  257. if ($body.is('.horizontal-layout') && !$body.hasClass('.horizontal-menu-demo')) {
  258. this.changeMenu(currentBreakpoint.name);
  259. $('.menu-toggle').removeClass('is-active');
  260. } // Initialize drill down menu for vertical layouts, for horizontal layouts drilldown menu is intitialized in changemenu function
  261. if (menuType != 'horizontal-menu') {
  262. // Drill down menu
  263. // ------------------------------
  264. this.drillDownMenu(currentBreakpoint.name);
  265. } // Dropdown submenu on large screen on hover For Large screen only
  266. // ---------------------------------------------------------------
  267. if (currentBreakpoint.name == 'xl') {
  268. $('body[data-open="hover"] .header-navbar .dropdown').on('mouseenter', function () {
  269. if (!$(this).hasClass('show')) {
  270. $(this).addClass('show');
  271. } else {
  272. $(this).removeClass('show');
  273. }
  274. }).on('mouseleave', function (event) {
  275. $(this).removeClass('show');
  276. });
  277. $('body[data-open="hover"] .dropdown a').on('click', function (e) {
  278. if (menuType == 'horizontal-menu') {
  279. var $this = $(this);
  280. if ($this.hasClass('dropdown-toggle')) {
  281. return false;
  282. }
  283. }
  284. });
  285. } // Added data attribute brand-center for navbar-brand-center
  286. // TODO:AJ: Shift this feature in JADE.
  287. if ($('.header-navbar').hasClass('navbar-brand-center')) {
  288. $('.header-navbar').attr('data-nav', 'brand-center');
  289. }
  290. if (currentBreakpoint.name == 'sm' || currentBreakpoint.name == 'xs') {
  291. $('.header-navbar[data-nav=brand-center]').removeClass('navbar-brand-center');
  292. } else {
  293. $('.header-navbar[data-nav=brand-center]').addClass('navbar-brand-center');
  294. } // On screen width change, current active menu in horizontal
  295. if (currentBreakpoint.name == 'xl' && menuType == 'horizontal-menu') {
  296. $(".main-menu-content").find('li.active').parents('li').addClass('sidebar-group-active active');
  297. }
  298. if (currentBreakpoint.name !== 'xl' && menuType == 'horizontal-menu') {
  299. $("#navbar-type").toggleClass('d-none d-xl-block');
  300. } // Dropdown submenu on small screen on click
  301. // --------------------------------------------------
  302. $('ul.dropdown-menu [data-toggle=dropdown]').on('click', function (event) {
  303. if ($(this).siblings('ul.dropdown-menu').length > 0) {
  304. event.preventDefault();
  305. }
  306. event.stopPropagation();
  307. $(this).parent().siblings().removeClass('show');
  308. $(this).parent().toggleClass('show');
  309. }); // Horizontal layout submenu drawer scrollbar
  310. if (menuType == 'horizontal-menu') {
  311. $('li.dropdown-submenu').on('mouseenter', function () {
  312. if (!$(this).parent('.dropdown').hasClass('show')) {
  313. $(this).removeClass('openLeft');
  314. }
  315. var dd = $(this).find('.dropdown-menu');
  316. if (dd.length > 0) {
  317. var pageHeight = $(window).height(),
  318. ddTop = $(this).position().top,
  319. ddLeft = dd.offset().left,
  320. ddWidth = dd.width(),
  321. ddHeight = dd.height();
  322. if (pageHeight - ddTop - ddHeight - 28 < 1) {
  323. var maxHeight = pageHeight - ddTop - 170;
  324. $(this).find('.dropdown-menu').css({
  325. 'max-height': maxHeight + 'px',
  326. 'overflow-y': 'auto',
  327. 'overflow-x': 'hidden'
  328. });
  329. var menu_content = new PerfectScrollbar('li.dropdown-submenu.show .dropdown-menu', {
  330. wheelPropagation: false
  331. });
  332. } // Add class to horizontal sub menu if screen width is small
  333. if (ddLeft + ddWidth - (window.innerWidth - 16) >= 0) {
  334. $(this).addClass('openLeft');
  335. }
  336. }
  337. });
  338. $('.theme-layouts').find('.semi-dark').hide();
  339. $('#customizer-navbar-colors').hide();
  340. }
  341. /********************************************
  342. * Searchable Menu *
  343. ********************************************/
  344. function searchMenu(list) {
  345. var input = $(".menu-search");
  346. $(input).change(function () {
  347. var filter = $(this).val();
  348. if (filter) {
  349. // Hide Main Navigation Headers
  350. $('.navigation-header').hide(); // this finds all links in a list that contain the input,
  351. // and hide the ones not containing the input while showing the ones that do
  352. $(list).find("li a:not(:Contains(" + filter + "))").hide().parent().hide(); // $(list).find("li a:Contains(" + filter + ")").show().parents('li').show().addClass('open').closest('li').children('a').show();
  353. var searchFilter = $(list).find("li a:Contains(" + filter + ")");
  354. if (searchFilter.parent().hasClass('has-sub')) {
  355. searchFilter.show().parents('li').show().addClass('open').closest('li').children('a').show().children('li').show(); // searchFilter.parents('li').find('li').show().children('a').show();
  356. if (searchFilter.siblings('ul').length > 0) {
  357. searchFilter.siblings('ul').children('li').show().children('a').show();
  358. }
  359. } else {
  360. searchFilter.show().parents('li').show().addClass('open').closest('li').children('a').show();
  361. }
  362. } else {
  363. // return to default
  364. $('.navigation-header').show();
  365. $(list).find("li a").show().parent().show().removeClass('open');
  366. }
  367. $.app.menu.manualScroller.update();
  368. return false;
  369. }).keyup(function () {
  370. // fire the above change event after every letter
  371. $(this).change();
  372. });
  373. }
  374. if (menuType === 'vertical-menu' || menuType === 'vertical-overlay-menu') {
  375. // custom css expression for a case-insensitive contains()
  376. jQuery.expr[':'].Contains = function (a, i, m) {
  377. return (a.textContent || a.innerText || "").toUpperCase().indexOf(m[3].toUpperCase()) >= 0;
  378. };
  379. searchMenu($("#main-menu-navigation"));
  380. }
  381. },
  382. transit: function transit(callback1, callback2) {
  383. var menuObj = this;
  384. $body.addClass('changing-menu');
  385. callback1.call(menuObj);
  386. if ($body.hasClass('vertical-layout')) {
  387. if ($body.hasClass('menu-open') || $body.hasClass('menu-expanded')) {
  388. $('.menu-toggle').addClass('is-active'); // Show menu header search when menu is normally visible
  389. if ($body.data('menu') === 'vertical-menu') {
  390. if ($('.main-menu-header')) {
  391. $('.main-menu-header').show();
  392. }
  393. }
  394. } else {
  395. $('.menu-toggle').removeClass('is-active'); // Hide menu header search when only menu icons are visible
  396. if ($body.data('menu') === 'vertical-menu') {
  397. if ($('.main-menu-header')) {
  398. $('.main-menu-header').hide();
  399. }
  400. }
  401. }
  402. }
  403. setTimeout(function () {
  404. callback2.call(menuObj);
  405. $body.removeClass('changing-menu');
  406. menuObj.update();
  407. }, 500);
  408. },
  409. open: function open() {
  410. this.transit(function () {
  411. $body.removeClass('menu-hide menu-collapsed').addClass('menu-open');
  412. this.hidden = false;
  413. this.expanded = true;
  414. if ($body.hasClass('vertical-overlay-menu')) {
  415. $('.sidenav-overlay').removeClass('d-none').addClass('d-block');
  416. $('body').css('overflow', 'hidden');
  417. }
  418. }, function () {
  419. if (!$('.main-menu').hasClass('menu-native-scroll') && $('.main-menu').hasClass('menu-fixed')) {
  420. this.manualScroller.enable();
  421. $('.main-menu-content').css('height', $(window).height() - $('.header-navbar').height() - $('.main-menu-header').outerHeight() - $('.main-menu-footer').outerHeight()); // this.manualScroller.update();
  422. }
  423. if (!$body.hasClass('vertical-overlay-menu')) {
  424. $('.sidenav-overlay').removeClass('d-block d-none');
  425. $('body').css('overflow', 'auto');
  426. }
  427. });
  428. },
  429. hide: function hide() {
  430. this.transit(function () {
  431. $body.removeClass('menu-open menu-expanded').addClass('menu-hide');
  432. this.hidden = true;
  433. this.expanded = false;
  434. if ($body.hasClass('vertical-overlay-menu')) {
  435. $('.sidenav-overlay').removeClass('d-block').addClass('d-none');
  436. $('body').css('overflow', 'auto');
  437. }
  438. }, function () {
  439. if (!$('.main-menu').hasClass('menu-native-scroll') && $('.main-menu').hasClass('menu-fixed')) {
  440. this.manualScroller.enable();
  441. }
  442. if (!$body.hasClass('vertical-overlay-menu')) {
  443. $('.sidenav-overlay').removeClass('d-block d-none');
  444. $('body').css('overflow', 'auto');
  445. }
  446. });
  447. },
  448. expand: function expand() {
  449. if (this.expanded === false) {
  450. if ($body.data('menu') == 'vertical-menu-modern') {
  451. $('.modern-nav-toggle').find('.toggle-icon').removeClass('feather icon-circle').addClass('feather icon-disc');
  452. }
  453. this.transit(function () {
  454. $body.removeClass('menu-collapsed').addClass('menu-expanded');
  455. this.collapsed = false;
  456. this.expanded = true;
  457. $('.sidenav-overlay').removeClass('d-block d-none');
  458. }, function () {
  459. if ($('.main-menu').hasClass('menu-native-scroll') || $body.data('menu') == 'horizontal-menu') {
  460. this.manualScroller.disable();
  461. } else {
  462. if ($('.main-menu').hasClass('menu-fixed')) this.manualScroller.enable();
  463. }
  464. if (($body.data('menu') == 'vertical-menu' || $body.data('menu') == 'vertical-menu-modern') && $('.main-menu').hasClass('menu-fixed')) {
  465. $('.main-menu-content').css('height', $(window).height() - $('.header-navbar').height() - $('.main-menu-header').outerHeight() - $('.main-menu-footer').outerHeight()); // this.manualScroller.update();
  466. }
  467. });
  468. }
  469. },
  470. collapse: function collapse(defMenu) {
  471. if (this.collapsed === false) {
  472. if ($body.data('menu') == 'vertical-menu-modern') {
  473. $('.modern-nav-toggle').find('.toggle-icon').removeClass('feather icon-disc').addClass('feather icon-circle');
  474. }
  475. this.transit(function () {
  476. $body.removeClass('menu-expanded').addClass('menu-collapsed');
  477. this.collapsed = true;
  478. this.expanded = false;
  479. $('.content-overlay').removeClass('d-block d-none');
  480. }, function () {
  481. if ($body.data('menu') == 'horizontal-menu' && $body.hasClass('vertical-overlay-menu')) {
  482. if ($('.main-menu').hasClass('menu-fixed')) this.manualScroller.enable();
  483. }
  484. if (($body.data('menu') == 'vertical-menu' || $body.data('menu') == 'vertical-menu-modern') && $('.main-menu').hasClass('menu-fixed')) {
  485. $('.main-menu-content').css('height', $(window).height() - $('.header-navbar').height()); // this.manualScroller.update();
  486. }
  487. if ($body.data('menu') == 'vertical-menu-modern') {
  488. if ($('.main-menu').hasClass('menu-fixed')) this.manualScroller.enable();
  489. }
  490. });
  491. }
  492. },
  493. toOverlayMenu: function toOverlayMenu(screen, menuType) {
  494. var menu = $body.data('menu');
  495. if (menuType == 'vertical-menu-modern') {
  496. if (screen == 'lg' || screen == 'md' || screen == 'sm' || screen == 'xs') {
  497. if ($body.hasClass(menu)) {
  498. $body.removeClass(menu).addClass('vertical-overlay-menu');
  499. }
  500. } else {
  501. if ($body.hasClass('vertical-overlay-menu')) {
  502. $body.removeClass('vertical-overlay-menu').addClass(menu);
  503. }
  504. }
  505. } else {
  506. if (screen == 'sm' || screen == 'xs') {
  507. if ($body.hasClass(menu)) {
  508. $body.removeClass(menu).addClass('vertical-overlay-menu');
  509. }
  510. } else {
  511. if ($body.hasClass('vertical-overlay-menu')) {
  512. $body.removeClass('vertical-overlay-menu').addClass(menu);
  513. }
  514. }
  515. }
  516. },
  517. changeMenu: function changeMenu(screen) {
  518. // Replace menu html
  519. $('div[data-menu="menu-wrapper"]').html('');
  520. $('div[data-menu="menu-wrapper"]').html(menuWrapper_el);
  521. var menuWrapper = $('div[data-menu="menu-wrapper"]'),
  522. menuContainer = $('div[data-menu="menu-container"]'),
  523. menuNavigation = $('ul[data-menu="menu-navigation"]'),
  524. /*megaMenu = $('li[data-menu="megamenu"]'),
  525. megaMenuCol = $('li[data-mega-col]'),*/
  526. dropdownMenu = $('li[data-menu="dropdown"]'),
  527. dropdownSubMenu = $('li[data-menu="dropdown-submenu"]');
  528. if (screen === 'xl') {
  529. // Change body classes
  530. $body.removeClass('vertical-layout vertical-overlay-menu fixed-navbar').addClass($body.data('menu')); // Remove navbar-fix-top class on large screens
  531. $('nav.header-navbar').removeClass('fixed-top'); // Change menu wrapper, menu container, menu navigation classes
  532. menuWrapper.removeClass().addClass(menuWrapperClasses); // Intitialize drill down menu for horizontal layouts
  533. // --------------------------------------------------
  534. this.drillDownMenu(screen);
  535. $('a.dropdown-item.nav-has-children').on('click', function () {
  536. event.preventDefault();
  537. event.stopPropagation();
  538. });
  539. $('a.dropdown-item.nav-has-parent').on('click', function () {
  540. event.preventDefault();
  541. event.stopPropagation();
  542. });
  543. } else {
  544. // Change body classes
  545. $body.removeClass($body.data('menu')).addClass('vertical-layout vertical-overlay-menu fixed-navbar'); // Add navbar-fix-top class on small screens
  546. $('nav.header-navbar').addClass('fixed-top'); // Change menu wrapper, menu container, menu navigation classes
  547. menuWrapper.removeClass().addClass('main-menu menu-light menu-fixed menu-shadow'); // menuContainer.removeClass().addClass('main-menu-content');
  548. menuNavigation.removeClass().addClass('navigation navigation-main'); // If Dropdown Menu
  549. dropdownMenu.removeClass('dropdown').addClass('has-sub');
  550. dropdownMenu.find('a').removeClass('dropdown-toggle nav-link');
  551. dropdownMenu.children('ul').find('a').removeClass('dropdown-item');
  552. dropdownMenu.find('ul').removeClass('dropdown-menu');
  553. dropdownSubMenu.removeClass().addClass('has-sub');
  554. $.app.nav.init(); // Dropdown submenu on small screen on click
  555. // --------------------------------------------------
  556. $('ul.dropdown-menu [data-toggle=dropdown]').on('click', function (event) {
  557. event.preventDefault();
  558. event.stopPropagation();
  559. $(this).parent().siblings().removeClass('open');
  560. $(this).parent().toggleClass('open');
  561. });
  562. $(".main-menu-content").find('li.active').parents('li').addClass('sidebar-group-active');
  563. $(".main-menu-content").find("li.active").closest("li.nav-item").addClass("open");
  564. }
  565. },
  566. toggle: function toggle() {
  567. var currentBreakpoint = Unison.fetch.now(); // Current Breakpoint
  568. var collapsed = this.collapsed;
  569. var expanded = this.expanded;
  570. var hidden = this.hidden;
  571. var menu = $body.data('menu');
  572. switch (currentBreakpoint.name) {
  573. case 'xl':
  574. if (expanded === true) {
  575. if (menu == 'vertical-overlay-menu') {
  576. this.hide();
  577. } else {
  578. this.collapse();
  579. }
  580. } else {
  581. if (menu == 'vertical-overlay-menu') {
  582. this.open();
  583. } else {
  584. this.expand();
  585. }
  586. }
  587. break;
  588. case 'lg':
  589. if (expanded === true) {
  590. if (menu == 'vertical-overlay-menu' || menu == 'vertical-menu-modern' || menu == 'horizontal-menu') {
  591. this.hide();
  592. } else {
  593. this.collapse();
  594. }
  595. } else {
  596. if (menu == 'vertical-overlay-menu' || menu == 'vertical-menu-modern' || menu == 'horizontal-menu') {
  597. this.open();
  598. } else {
  599. this.expand();
  600. }
  601. }
  602. break;
  603. case 'md':
  604. case 'sm':
  605. if (hidden === true) {
  606. this.open();
  607. } else {
  608. this.hide();
  609. }
  610. break;
  611. case 'xs':
  612. if (hidden === true) {
  613. this.open();
  614. } else {
  615. this.hide();
  616. }
  617. break;
  618. } // Re-init sliding menu to update width
  619. this.drillDownMenu(currentBreakpoint.name);
  620. },
  621. update: function update() {
  622. this.manualScroller.update();
  623. },
  624. reset: function reset() {
  625. this.expanded = false;
  626. this.collapsed = false;
  627. this.hidden = false;
  628. $body.removeClass('menu-hide menu-open menu-collapsed menu-expanded');
  629. }
  630. }; // Navigation Menu
  631. $.app.nav = {
  632. container: $('.navigation-main'),
  633. initialized: false,
  634. navItem: $('.navigation-main').find('li').not('.navigation-category'),
  635. config: {
  636. speed: 300
  637. },
  638. init: function init(config) {
  639. this.initialized = true; // Set to true when initialized
  640. $.extend(this.config, config);
  641. this.bind_events();
  642. },
  643. bind_events: function bind_events() {
  644. var menuObj = this;
  645. $('.navigation-main').on('mouseenter.app.menu', 'li', function () {
  646. var $this = $(this);
  647. $('.hover', '.navigation-main').removeClass('hover');
  648. if ($body.hasClass('menu-collapsed') && $body.data('menu') != 'vertical-menu-modern') {
  649. $('.main-menu-content').children('span.menu-title').remove();
  650. $('.main-menu-content').children('a.menu-title').remove();
  651. $('.main-menu-content').children('ul.menu-content').remove(); // Title
  652. var menuTitle = $this.find('span.menu-title').clone(),
  653. tempTitle,
  654. tempLink;
  655. if (!$this.hasClass('has-sub')) {
  656. tempTitle = $this.find('span.menu-title').text();
  657. tempLink = $this.children('a').attr('href');
  658. if (tempTitle !== '') {
  659. menuTitle = $("<a>");
  660. menuTitle.attr("href", tempLink);
  661. menuTitle.attr("title", tempTitle);
  662. menuTitle.text(tempTitle);
  663. menuTitle.addClass("menu-title");
  664. }
  665. } // menu_header_height = ($('.main-menu-header').length) ? $('.main-menu-header').height() : 0,
  666. // fromTop = menu_header_height + $this.position().top + parseInt($this.css( "border-top" ),10);
  667. var fromTop;
  668. if ($this.css("border-top")) {
  669. fromTop = $this.position().top + parseInt($this.css("border-top"), 10);
  670. } else {
  671. fromTop = $this.position().top;
  672. }
  673. if ($body.data('menu') !== 'vertical-compact-menu') {
  674. menuTitle.appendTo('.main-menu-content').css({
  675. position: 'fixed',
  676. top: fromTop
  677. });
  678. } // Content
  679. if ($this.hasClass('has-sub') && $this.hasClass('nav-item')) {
  680. var menuContent = $this.children('ul:first');
  681. menuObj.adjustSubmenu($this);
  682. }
  683. }
  684. $this.addClass('hover');
  685. }).on('mouseleave.app.menu', 'li', function () {// $(this).removeClass('hover');
  686. }).on('active.app.menu', 'li', function (e) {
  687. $(this).addClass('active');
  688. e.stopPropagation();
  689. }).on('deactive.app.menu', 'li.active', function (e) {
  690. $(this).removeClass('active');
  691. e.stopPropagation();
  692. }).on('open.app.menu', 'li', function (e) {
  693. var $listItem = $(this);
  694. $listItem.addClass('open');
  695. menuObj.expand($listItem); // If menu collapsible then do not take any action
  696. if ($('.main-menu').hasClass('menu-collapsible')) {
  697. return false;
  698. } // If menu accordion then close all except clicked once
  699. else {
  700. $listItem.siblings('.open').find('li.open').trigger('close.app.menu');
  701. $listItem.siblings('.open').trigger('close.app.menu');
  702. }
  703. e.stopPropagation();
  704. }).on('close.app.menu', 'li.open', function (e) {
  705. var $listItem = $(this);
  706. $listItem.removeClass('open');
  707. menuObj.collapse($listItem);
  708. e.stopPropagation();
  709. }).on('click.app.menu', 'li', function (e) {
  710. var $listItem = $(this);
  711. if ($listItem.is('.disabled')) {
  712. e.preventDefault();
  713. } else {
  714. if ($body.hasClass('menu-collapsed') && $body.data('menu') != 'vertical-menu-modern') {
  715. e.preventDefault();
  716. } else {
  717. if ($listItem.has('ul').length) {
  718. if ($listItem.is('.open')) {
  719. $listItem.trigger('close.app.menu');
  720. } else {
  721. $listItem.trigger('open.app.menu');
  722. }
  723. } else {
  724. if (!$listItem.is('.active')) {
  725. $listItem.siblings('.active').trigger('deactive.app.menu');
  726. $listItem.trigger('active.app.menu');
  727. }
  728. }
  729. }
  730. }
  731. e.stopPropagation();
  732. });
  733. $('.navbar-header, .main-menu').on('mouseenter', modernMenuExpand).on('mouseleave', modernMenuCollapse);
  734. function modernMenuExpand() {
  735. if ($body.data('menu') == 'vertical-menu-modern') {
  736. $('.main-menu, .navbar-header').addClass('expanded');
  737. if ($body.hasClass('menu-collapsed')) {
  738. if ($('.main-menu li.open').length === 0) {
  739. $(".main-menu-content").find('li.active').parents('li').addClass('open');
  740. }
  741. var $listItem = $('.main-menu li.menu-collapsed-open'),
  742. $subList = $listItem.children('ul');
  743. $subList.hide().slideDown(200, function () {
  744. $(this).css('display', '');
  745. });
  746. $listItem.addClass('open').removeClass('menu-collapsed-open'); // $.app.menu.changeLogo('expand');
  747. }
  748. }
  749. }
  750. function modernMenuCollapse() {
  751. if ($body.hasClass('menu-collapsed') && $body.data('menu') == 'vertical-menu-modern') {
  752. setTimeout(function () {
  753. if ($('.main-menu:hover').length === 0 && $('.navbar-header:hover').length === 0) {
  754. $('.main-menu, .navbar-header').removeClass('expanded');
  755. if ($body.hasClass('menu-collapsed')) {
  756. var $listItem = $('.main-menu li.open'),
  757. $subList = $listItem.children('ul');
  758. $listItem.addClass('menu-collapsed-open');
  759. $subList.show().slideUp(200, function () {
  760. $(this).css('display', '');
  761. });
  762. $listItem.removeClass('open'); // $.app.menu.changeLogo();
  763. }
  764. }
  765. }, 1);
  766. }
  767. }
  768. $('.main-menu-content').on('mouseleave', function () {
  769. if ($body.hasClass('menu-collapsed')) {
  770. $('.main-menu-content').children('span.menu-title').remove();
  771. $('.main-menu-content').children('a.menu-title').remove();
  772. $('.main-menu-content').children('ul.menu-content').remove();
  773. }
  774. $('.hover', '.navigation-main').removeClass('hover');
  775. }); // If list item has sub menu items then prevent redirection.
  776. $('.navigation-main li.has-sub > a').on('click', function (e) {
  777. e.preventDefault();
  778. });
  779. $('ul.menu-content').on('click', 'li', function (e) {
  780. var $listItem = $(this);
  781. if ($listItem.is('.disabled')) {
  782. e.preventDefault();
  783. } else {
  784. if ($listItem.has('ul')) {
  785. if ($listItem.is('.open')) {
  786. $listItem.removeClass('open');
  787. menuObj.collapse($listItem);
  788. } else {
  789. $listItem.addClass('open');
  790. menuObj.expand($listItem); // If menu collapsible then do not take any action
  791. if ($('.main-menu').hasClass('menu-collapsible')) {
  792. return false;
  793. } // If menu accordion then close all except clicked once
  794. else {
  795. $listItem.siblings('.open').find('li.open').trigger('close.app.menu');
  796. $listItem.siblings('.open').trigger('close.app.menu');
  797. }
  798. e.stopPropagation();
  799. }
  800. } else {
  801. if (!$listItem.is('.active')) {
  802. $listItem.siblings('.active').trigger('deactive.app.menu');
  803. $listItem.trigger('active.app.menu');
  804. }
  805. }
  806. }
  807. e.stopPropagation();
  808. });
  809. },
  810. /**
  811. * Ensure an admin submenu is within the visual viewport.
  812. * @param {jQuery} $menuItem The parent menu item containing the submenu.
  813. */
  814. adjustSubmenu: function adjustSubmenu($menuItem) {
  815. var menuHeaderHeight,
  816. menutop,
  817. topPos,
  818. winHeight,
  819. bottomOffset,
  820. subMenuHeight,
  821. popOutMenuHeight,
  822. borderWidth,
  823. scroll_theme,
  824. $submenu = $menuItem.children('ul:first'),
  825. ul = $submenu.clone(true);
  826. menuHeaderHeight = $('.main-menu-header').height();
  827. menutop = $menuItem.position().top;
  828. winHeight = $window.height() - $('.header-navbar').height();
  829. borderWidth = 0;
  830. subMenuHeight = $submenu.height();
  831. if (parseInt($menuItem.css("border-top"), 10) > 0) {
  832. borderWidth = parseInt($menuItem.css("border-top"), 10);
  833. }
  834. popOutMenuHeight = winHeight - menutop - $menuItem.height() - 30;
  835. scroll_theme = $('.main-menu').hasClass('menu-dark') ? 'light' : 'dark';
  836. topPos = menutop + $menuItem.height() + borderWidth;
  837. ul.addClass('menu-popout').appendTo('.main-menu-content').css({
  838. 'top': topPos,
  839. 'position': 'fixed',
  840. 'max-height': popOutMenuHeight
  841. });
  842. var menu_content = new PerfectScrollbar('.main-menu-content > ul.menu-content', {
  843. wheelPropagation: false
  844. });
  845. },
  846. collapse: function collapse($listItem, callback) {
  847. var $subList = $listItem.children('ul');
  848. $subList.show().slideUp($.app.nav.config.speed, function () {
  849. $(this).css('display', '');
  850. $(this).find('> li').removeClass('is-shown');
  851. if (callback) {
  852. callback();
  853. }
  854. $.app.nav.container.trigger('collapsed.app.menu');
  855. });
  856. },
  857. expand: function expand($listItem, callback) {
  858. var $subList = $listItem.children('ul');
  859. var $children = $subList.children('li').addClass('is-hidden');
  860. $subList.hide().slideDown($.app.nav.config.speed, function () {
  861. $(this).css('display', '');
  862. if (callback) {
  863. callback();
  864. }
  865. $.app.nav.container.trigger('expanded.app.menu');
  866. });
  867. setTimeout(function () {
  868. $children.addClass('is-shown');
  869. $children.removeClass('is-hidden');
  870. }, 0);
  871. },
  872. refresh: function refresh() {
  873. $.app.nav.container.find('.open').removeClass('open');
  874. }
  875. };
  876. })(window, document, jQuery); // We listen to the resize event
  877. window.addEventListener('resize', function () {
  878. // We execute the same script as before
  879. var vh = window.innerHeight * 0.01;
  880. document.documentElement.style.setProperty('--vh', "".concat(vh, "px"));
  881. });
  882. /***/ }),
  883. /***/ "./resources/assets/sass/bootstrap-extended.scss":
  884. /*!*******************************************************!*\
  885. !*** ./resources/assets/sass/bootstrap-extended.scss ***!
  886. \*******************************************************/
  887. /*! no static exports found */
  888. /***/ (function(module, exports) {
  889. // removed by extract-text-webpack-plugin
  890. /***/ }),
  891. /***/ "./resources/assets/sass/bootstrap.scss":
  892. /*!**********************************************!*\
  893. !*** ./resources/assets/sass/bootstrap.scss ***!
  894. \**********************************************/
  895. /*! no static exports found */
  896. /***/ (function(module, exports) {
  897. // removed by extract-text-webpack-plugin
  898. /***/ }),
  899. /***/ "./resources/assets/sass/colors.scss":
  900. /*!*******************************************!*\
  901. !*** ./resources/assets/sass/colors.scss ***!
  902. \*******************************************/
  903. /*! no static exports found */
  904. /***/ (function(module, exports) {
  905. // removed by extract-text-webpack-plugin
  906. /***/ }),
  907. /***/ "./resources/assets/sass/components.scss":
  908. /*!***********************************************!*\
  909. !*** ./resources/assets/sass/components.scss ***!
  910. \***********************************************/
  911. /*! no static exports found */
  912. /***/ (function(module, exports) {
  913. // removed by extract-text-webpack-plugin
  914. /***/ }),
  915. /***/ "./resources/assets/sass/core/colors/palette-gradient.scss":
  916. /*!*****************************************************************!*\
  917. !*** ./resources/assets/sass/core/colors/palette-gradient.scss ***!
  918. \*****************************************************************/
  919. /*! no static exports found */
  920. /***/ (function(module, exports) {
  921. // removed by extract-text-webpack-plugin
  922. /***/ }),
  923. /***/ "./resources/assets/sass/core/colors/palette-noui.scss":
  924. /*!*************************************************************!*\
  925. !*** ./resources/assets/sass/core/colors/palette-noui.scss ***!
  926. \*************************************************************/
  927. /*! no static exports found */
  928. /***/ (function(module, exports) {
  929. // removed by extract-text-webpack-plugin
  930. /***/ }),
  931. /***/ "./resources/assets/sass/core/colors/palette-variables.scss":
  932. /*!******************************************************************!*\
  933. !*** ./resources/assets/sass/core/colors/palette-variables.scss ***!
  934. \******************************************************************/
  935. /*! no static exports found */
  936. /***/ (function(module, exports) {
  937. // removed by extract-text-webpack-plugin
  938. /***/ }),
  939. /***/ "./resources/assets/sass/core/menu/menu-types/horizontal-menu.scss":
  940. /*!*************************************************************************!*\
  941. !*** ./resources/assets/sass/core/menu/menu-types/horizontal-menu.scss ***!
  942. \*************************************************************************/
  943. /*! no static exports found */
  944. /***/ (function(module, exports) {
  945. // removed by extract-text-webpack-plugin
  946. /***/ }),
  947. /***/ "./resources/assets/sass/core/menu/menu-types/vertical-menu.scss":
  948. /*!***********************************************************************!*\
  949. !*** ./resources/assets/sass/core/menu/menu-types/vertical-menu.scss ***!
  950. \***********************************************************************/
  951. /*! no static exports found */
  952. /***/ (function(module, exports) {
  953. // removed by extract-text-webpack-plugin
  954. /***/ }),
  955. /***/ "./resources/assets/sass/core/menu/menu-types/vertical-overlay-menu.scss":
  956. /*!*******************************************************************************!*\
  957. !*** ./resources/assets/sass/core/menu/menu-types/vertical-overlay-menu.scss ***!
  958. \*******************************************************************************/
  959. /*! no static exports found */
  960. /***/ (function(module, exports) {
  961. // removed by extract-text-webpack-plugin
  962. /***/ }),
  963. /***/ "./resources/assets/sass/core/mixins/alert.scss":
  964. /*!******************************************************!*\
  965. !*** ./resources/assets/sass/core/mixins/alert.scss ***!
  966. \******************************************************/
  967. /*! no static exports found */
  968. /***/ (function(module, exports) {
  969. // removed by extract-text-webpack-plugin
  970. /***/ }),
  971. /***/ "./resources/assets/sass/core/mixins/hex2rgb.scss":
  972. /*!********************************************************!*\
  973. !*** ./resources/assets/sass/core/mixins/hex2rgb.scss ***!
  974. \********************************************************/
  975. /*! no static exports found */
  976. /***/ (function(module, exports) {
  977. // removed by extract-text-webpack-plugin
  978. /***/ }),
  979. /***/ "./resources/assets/sass/core/mixins/main-menu-mixin.scss":
  980. /*!****************************************************************!*\
  981. !*** ./resources/assets/sass/core/mixins/main-menu-mixin.scss ***!
  982. \****************************************************************/
  983. /*! no static exports found */
  984. /***/ (function(module, exports) {
  985. // removed by extract-text-webpack-plugin
  986. /***/ }),
  987. /***/ "./resources/assets/sass/core/mixins/transitions.scss":
  988. /*!************************************************************!*\
  989. !*** ./resources/assets/sass/core/mixins/transitions.scss ***!
  990. \************************************************************/
  991. /*! no static exports found */
  992. /***/ (function(module, exports) {
  993. // removed by extract-text-webpack-plugin
  994. /***/ }),
  995. /***/ "./resources/assets/sass/custom-laravel.scss":
  996. /*!***************************************************!*\
  997. !*** ./resources/assets/sass/custom-laravel.scss ***!
  998. \***************************************************/
  999. /*! no static exports found */
  1000. /***/ (function(module, exports) {
  1001. // removed by extract-text-webpack-plugin
  1002. /***/ }),
  1003. /***/ "./resources/assets/sass/custom-rtl.scss":
  1004. /*!***********************************************!*\
  1005. !*** ./resources/assets/sass/custom-rtl.scss ***!
  1006. \***********************************************/
  1007. /*! no static exports found */
  1008. /***/ (function(module, exports) {
  1009. // removed by extract-text-webpack-plugin
  1010. /***/ }),
  1011. /***/ "./resources/assets/sass/pages/aggrid.scss":
  1012. /*!*************************************************!*\
  1013. !*** ./resources/assets/sass/pages/aggrid.scss ***!
  1014. \*************************************************/
  1015. /*! no static exports found */
  1016. /***/ (function(module, exports) {
  1017. // removed by extract-text-webpack-plugin
  1018. /***/ }),
  1019. /***/ "./resources/assets/sass/pages/app-chat.scss":
  1020. /*!***************************************************!*\
  1021. !*** ./resources/assets/sass/pages/app-chat.scss ***!
  1022. \***************************************************/
  1023. /*! no static exports found */
  1024. /***/ (function(module, exports) {
  1025. // removed by extract-text-webpack-plugin
  1026. /***/ }),
  1027. /***/ "./resources/assets/sass/pages/app-ecommerce-details.scss":
  1028. /*!****************************************************************!*\
  1029. !*** ./resources/assets/sass/pages/app-ecommerce-details.scss ***!
  1030. \****************************************************************/
  1031. /*! no static exports found */
  1032. /***/ (function(module, exports) {
  1033. // removed by extract-text-webpack-plugin
  1034. /***/ }),
  1035. /***/ "./resources/assets/sass/pages/app-ecommerce-shop.scss":
  1036. /*!*************************************************************!*\
  1037. !*** ./resources/assets/sass/pages/app-ecommerce-shop.scss ***!
  1038. \*************************************************************/
  1039. /*! no static exports found */
  1040. /***/ (function(module, exports) {
  1041. // removed by extract-text-webpack-plugin
  1042. /***/ }),
  1043. /***/ "./resources/assets/sass/pages/app-email.scss":
  1044. /*!****************************************************!*\
  1045. !*** ./resources/assets/sass/pages/app-email.scss ***!
  1046. \****************************************************/
  1047. /*! no static exports found */
  1048. /***/ (function(module, exports) {
  1049. // removed by extract-text-webpack-plugin
  1050. /***/ }),
  1051. /***/ "./resources/assets/sass/pages/app-todo.scss":
  1052. /*!***************************************************!*\
  1053. !*** ./resources/assets/sass/pages/app-todo.scss ***!
  1054. \***************************************************/
  1055. /*! no static exports found */
  1056. /***/ (function(module, exports) {
  1057. // removed by extract-text-webpack-plugin
  1058. /***/ }),
  1059. /***/ "./resources/assets/sass/pages/app-user.scss":
  1060. /*!***************************************************!*\
  1061. !*** ./resources/assets/sass/pages/app-user.scss ***!
  1062. \***************************************************/
  1063. /*! no static exports found */
  1064. /***/ (function(module, exports) {
  1065. // removed by extract-text-webpack-plugin
  1066. /***/ }),
  1067. /***/ "./resources/assets/sass/pages/authentication.scss":
  1068. /*!*********************************************************!*\
  1069. !*** ./resources/assets/sass/pages/authentication.scss ***!
  1070. \*********************************************************/
  1071. /*! no static exports found */
  1072. /***/ (function(module, exports) {
  1073. // removed by extract-text-webpack-plugin
  1074. /***/ }),
  1075. /***/ "./resources/assets/sass/pages/card-analytics.scss":
  1076. /*!*********************************************************!*\
  1077. !*** ./resources/assets/sass/pages/card-analytics.scss ***!
  1078. \*********************************************************/
  1079. /*! no static exports found */
  1080. /***/ (function(module, exports) {
  1081. // removed by extract-text-webpack-plugin
  1082. /***/ }),
  1083. /***/ "./resources/assets/sass/pages/colors.scss":
  1084. /*!*************************************************!*\
  1085. !*** ./resources/assets/sass/pages/colors.scss ***!
  1086. \*************************************************/
  1087. /*! no static exports found */
  1088. /***/ (function(module, exports) {
  1089. // removed by extract-text-webpack-plugin
  1090. /***/ }),
  1091. /***/ "./resources/assets/sass/pages/coming-soon.scss":
  1092. /*!******************************************************!*\
  1093. !*** ./resources/assets/sass/pages/coming-soon.scss ***!
  1094. \******************************************************/
  1095. /*! no static exports found */
  1096. /***/ (function(module, exports) {
  1097. // removed by extract-text-webpack-plugin
  1098. /***/ }),
  1099. /***/ "./resources/assets/sass/pages/dashboard-analytics.scss":
  1100. /*!**************************************************************!*\
  1101. !*** ./resources/assets/sass/pages/dashboard-analytics.scss ***!
  1102. \**************************************************************/
  1103. /*! no static exports found */
  1104. /***/ (function(module, exports) {
  1105. // removed by extract-text-webpack-plugin
  1106. /***/ }),
  1107. /***/ "./resources/assets/sass/pages/dashboard-ecommerce.scss":
  1108. /*!**************************************************************!*\
  1109. !*** ./resources/assets/sass/pages/dashboard-ecommerce.scss ***!
  1110. \**************************************************************/
  1111. /*! no static exports found */
  1112. /***/ (function(module, exports) {
  1113. // removed by extract-text-webpack-plugin
  1114. /***/ }),
  1115. /***/ "./resources/assets/sass/pages/data-list-view.scss":
  1116. /*!*********************************************************!*\
  1117. !*** ./resources/assets/sass/pages/data-list-view.scss ***!
  1118. \*********************************************************/
  1119. /*! no static exports found */
  1120. /***/ (function(module, exports) {
  1121. // removed by extract-text-webpack-plugin
  1122. /***/ }),
  1123. /***/ "./resources/assets/sass/pages/error.scss":
  1124. /*!************************************************!*\
  1125. !*** ./resources/assets/sass/pages/error.scss ***!
  1126. \************************************************/
  1127. /*! no static exports found */
  1128. /***/ (function(module, exports) {
  1129. // removed by extract-text-webpack-plugin
  1130. /***/ }),
  1131. /***/ "./resources/assets/sass/pages/faq.scss":
  1132. /*!**********************************************!*\
  1133. !*** ./resources/assets/sass/pages/faq.scss ***!
  1134. \**********************************************/
  1135. /*! no static exports found */
  1136. /***/ (function(module, exports) {
  1137. // removed by extract-text-webpack-plugin
  1138. /***/ }),
  1139. /***/ "./resources/assets/sass/pages/invoice.scss":
  1140. /*!**************************************************!*\
  1141. !*** ./resources/assets/sass/pages/invoice.scss ***!
  1142. \**************************************************/
  1143. /*! no static exports found */
  1144. /***/ (function(module, exports) {
  1145. // removed by extract-text-webpack-plugin
  1146. /***/ }),
  1147. /***/ "./resources/assets/sass/pages/knowledge-base.scss":
  1148. /*!*********************************************************!*\
  1149. !*** ./resources/assets/sass/pages/knowledge-base.scss ***!
  1150. \*********************************************************/
  1151. /*! no static exports found */
  1152. /***/ (function(module, exports) {
  1153. // removed by extract-text-webpack-plugin
  1154. /***/ }),
  1155. /***/ "./resources/assets/sass/pages/register.scss":
  1156. /*!***************************************************!*\
  1157. !*** ./resources/assets/sass/pages/register.scss ***!
  1158. \***************************************************/
  1159. /*! no static exports found */
  1160. /***/ (function(module, exports) {
  1161. // removed by extract-text-webpack-plugin
  1162. /***/ }),
  1163. /***/ "./resources/assets/sass/pages/search.scss":
  1164. /*!*************************************************!*\
  1165. !*** ./resources/assets/sass/pages/search.scss ***!
  1166. \*************************************************/
  1167. /*! no static exports found */
  1168. /***/ (function(module, exports) {
  1169. // removed by extract-text-webpack-plugin
  1170. /***/ }),
  1171. /***/ "./resources/assets/sass/pages/timeline.scss":
  1172. /*!***************************************************!*\
  1173. !*** ./resources/assets/sass/pages/timeline.scss ***!
  1174. \***************************************************/
  1175. /*! no static exports found */
  1176. /***/ (function(module, exports) {
  1177. // removed by extract-text-webpack-plugin
  1178. /***/ }),
  1179. /***/ "./resources/assets/sass/pages/users.scss":
  1180. /*!************************************************!*\
  1181. !*** ./resources/assets/sass/pages/users.scss ***!
  1182. \************************************************/
  1183. /*! no static exports found */
  1184. /***/ (function(module, exports) {
  1185. // removed by extract-text-webpack-plugin
  1186. /***/ }),
  1187. /***/ "./resources/assets/sass/plugins/animate/animate.scss":
  1188. /*!************************************************************!*\
  1189. !*** ./resources/assets/sass/plugins/animate/animate.scss ***!
  1190. \************************************************************/
  1191. /*! no static exports found */
  1192. /***/ (function(module, exports) {
  1193. // removed by extract-text-webpack-plugin
  1194. /***/ }),
  1195. /***/ "./resources/assets/sass/plugins/calendars/fullcalendar.scss":
  1196. /*!*******************************************************************!*\
  1197. !*** ./resources/assets/sass/plugins/calendars/fullcalendar.scss ***!
  1198. \*******************************************************************/
  1199. /*! no static exports found */
  1200. /***/ (function(module, exports) {
  1201. // removed by extract-text-webpack-plugin
  1202. /***/ }),
  1203. /***/ "./resources/assets/sass/plugins/extensions/context-menu.scss":
  1204. /*!********************************************************************!*\
  1205. !*** ./resources/assets/sass/plugins/extensions/context-menu.scss ***!
  1206. \********************************************************************/
  1207. /*! no static exports found */
  1208. /***/ (function(module, exports) {
  1209. // removed by extract-text-webpack-plugin
  1210. /***/ }),
  1211. /***/ "./resources/assets/sass/plugins/extensions/drag-and-drop.scss":
  1212. /*!*********************************************************************!*\
  1213. !*** ./resources/assets/sass/plugins/extensions/drag-and-drop.scss ***!
  1214. \*********************************************************************/
  1215. /*! no static exports found */
  1216. /***/ (function(module, exports) {
  1217. // removed by extract-text-webpack-plugin
  1218. /***/ }),
  1219. /***/ "./resources/assets/sass/plugins/extensions/media-plyr.scss":
  1220. /*!******************************************************************!*\
  1221. !*** ./resources/assets/sass/plugins/extensions/media-plyr.scss ***!
  1222. \******************************************************************/
  1223. /*! no static exports found */
  1224. /***/ (function(module, exports) {
  1225. // removed by extract-text-webpack-plugin
  1226. /***/ }),
  1227. /***/ "./resources/assets/sass/plugins/extensions/noui-slider.scss":
  1228. /*!*******************************************************************!*\
  1229. !*** ./resources/assets/sass/plugins/extensions/noui-slider.scss ***!
  1230. \*******************************************************************/
  1231. /*! no static exports found */
  1232. /***/ (function(module, exports) {
  1233. // removed by extract-text-webpack-plugin
  1234. /***/ }),
  1235. /***/ "./resources/assets/sass/plugins/extensions/swiper.scss":
  1236. /*!**************************************************************!*\
  1237. !*** ./resources/assets/sass/plugins/extensions/swiper.scss ***!
  1238. \**************************************************************/
  1239. /*! no static exports found */
  1240. /***/ (function(module, exports) {
  1241. // removed by extract-text-webpack-plugin
  1242. /***/ }),
  1243. /***/ "./resources/assets/sass/plugins/extensions/toastr.scss":
  1244. /*!**************************************************************!*\
  1245. !*** ./resources/assets/sass/plugins/extensions/toastr.scss ***!
  1246. \**************************************************************/
  1247. /*! no static exports found */
  1248. /***/ (function(module, exports) {
  1249. // removed by extract-text-webpack-plugin
  1250. /***/ }),
  1251. /***/ "./resources/assets/sass/plugins/file-uploaders/dropzone.scss":
  1252. /*!********************************************************************!*\
  1253. !*** ./resources/assets/sass/plugins/file-uploaders/dropzone.scss ***!
  1254. \********************************************************************/
  1255. /*! no static exports found */
  1256. /***/ (function(module, exports) {
  1257. // removed by extract-text-webpack-plugin
  1258. /***/ }),
  1259. /***/ "./resources/assets/sass/plugins/forms/extended/typeahed.scss":
  1260. /*!********************************************************************!*\
  1261. !*** ./resources/assets/sass/plugins/forms/extended/typeahed.scss ***!
  1262. \********************************************************************/
  1263. /*! no static exports found */
  1264. /***/ (function(module, exports) {
  1265. // removed by extract-text-webpack-plugin
  1266. /***/ }),
  1267. /***/ "./resources/assets/sass/plugins/forms/form-inputs-groups.scss":
  1268. /*!*********************************************************************!*\
  1269. !*** ./resources/assets/sass/plugins/forms/form-inputs-groups.scss ***!
  1270. \*********************************************************************/
  1271. /*! no static exports found */
  1272. /***/ (function(module, exports) {
  1273. // removed by extract-text-webpack-plugin
  1274. /***/ }),
  1275. /***/ "./resources/assets/sass/plugins/forms/validation/form-validation.scss":
  1276. /*!*****************************************************************************!*\
  1277. !*** ./resources/assets/sass/plugins/forms/validation/form-validation.scss ***!
  1278. \*****************************************************************************/
  1279. /*! no static exports found */
  1280. /***/ (function(module, exports) {
  1281. // removed by extract-text-webpack-plugin
  1282. /***/ }),
  1283. /***/ "./resources/assets/sass/plugins/forms/wizard.scss":
  1284. /*!*********************************************************!*\
  1285. !*** ./resources/assets/sass/plugins/forms/wizard.scss ***!
  1286. \*********************************************************/
  1287. /*! no static exports found */
  1288. /***/ (function(module, exports) {
  1289. // removed by extract-text-webpack-plugin
  1290. /***/ }),
  1291. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-beat.scss":
  1292. /*!*************************************************************************!*\
  1293. !*** ./resources/assets/sass/plugins/loaders/animations/ball-beat.scss ***!
  1294. \*************************************************************************/
  1295. /*! no static exports found */
  1296. /***/ (function(module, exports) {
  1297. // removed by extract-text-webpack-plugin
  1298. /***/ }),
  1299. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-multiple.scss":
  1300. /*!*****************************************************************************************!*\
  1301. !*** ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-multiple.scss ***!
  1302. \*****************************************************************************************/
  1303. /*! no static exports found */
  1304. /***/ (function(module, exports) {
  1305. // removed by extract-text-webpack-plugin
  1306. /***/ }),
  1307. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-pulse.scss":
  1308. /*!**************************************************************************************!*\
  1309. !*** ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-pulse.scss ***!
  1310. \**************************************************************************************/
  1311. /*! no static exports found */
  1312. /***/ (function(module, exports) {
  1313. // removed by extract-text-webpack-plugin
  1314. /***/ }),
  1315. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate.scss":
  1316. /*!********************************************************************************!*\
  1317. !*** ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate.scss ***!
  1318. \********************************************************************************/
  1319. /*! no static exports found */
  1320. /***/ (function(module, exports) {
  1321. // removed by extract-text-webpack-plugin
  1322. /***/ }),
  1323. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-grid-beat.scss":
  1324. /*!******************************************************************************!*\
  1325. !*** ./resources/assets/sass/plugins/loaders/animations/ball-grid-beat.scss ***!
  1326. \******************************************************************************/
  1327. /*! no static exports found */
  1328. /***/ (function(module, exports) {
  1329. // removed by extract-text-webpack-plugin
  1330. /***/ }),
  1331. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-grid-pulse.scss":
  1332. /*!*******************************************************************************!*\
  1333. !*** ./resources/assets/sass/plugins/loaders/animations/ball-grid-pulse.scss ***!
  1334. \*******************************************************************************/
  1335. /*! no static exports found */
  1336. /***/ (function(module, exports) {
  1337. // removed by extract-text-webpack-plugin
  1338. /***/ }),
  1339. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-pulse-rise.scss":
  1340. /*!*******************************************************************************!*\
  1341. !*** ./resources/assets/sass/plugins/loaders/animations/ball-pulse-rise.scss ***!
  1342. \*******************************************************************************/
  1343. /*! no static exports found */
  1344. /***/ (function(module, exports) {
  1345. // removed by extract-text-webpack-plugin
  1346. /***/ }),
  1347. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-pulse-round.scss":
  1348. /*!********************************************************************************!*\
  1349. !*** ./resources/assets/sass/plugins/loaders/animations/ball-pulse-round.scss ***!
  1350. \********************************************************************************/
  1351. /*! no static exports found */
  1352. /***/ (function(module, exports) {
  1353. // removed by extract-text-webpack-plugin
  1354. /***/ }),
  1355. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-pulse-sync.scss":
  1356. /*!*******************************************************************************!*\
  1357. !*** ./resources/assets/sass/plugins/loaders/animations/ball-pulse-sync.scss ***!
  1358. \*******************************************************************************/
  1359. /*! no static exports found */
  1360. /***/ (function(module, exports) {
  1361. // removed by extract-text-webpack-plugin
  1362. /***/ }),
  1363. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-pulse.scss":
  1364. /*!**************************************************************************!*\
  1365. !*** ./resources/assets/sass/plugins/loaders/animations/ball-pulse.scss ***!
  1366. \**************************************************************************/
  1367. /*! no static exports found */
  1368. /***/ (function(module, exports) {
  1369. // removed by extract-text-webpack-plugin
  1370. /***/ }),
  1371. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-rotate.scss":
  1372. /*!***************************************************************************!*\
  1373. !*** ./resources/assets/sass/plugins/loaders/animations/ball-rotate.scss ***!
  1374. \***************************************************************************/
  1375. /*! no static exports found */
  1376. /***/ (function(module, exports) {
  1377. // removed by extract-text-webpack-plugin
  1378. /***/ }),
  1379. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-scale-multiple.scss":
  1380. /*!***********************************************************************************!*\
  1381. !*** ./resources/assets/sass/plugins/loaders/animations/ball-scale-multiple.scss ***!
  1382. \***********************************************************************************/
  1383. /*! no static exports found */
  1384. /***/ (function(module, exports) {
  1385. // removed by extract-text-webpack-plugin
  1386. /***/ }),
  1387. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-scale-random.scss":
  1388. /*!*********************************************************************************!*\
  1389. !*** ./resources/assets/sass/plugins/loaders/animations/ball-scale-random.scss ***!
  1390. \*********************************************************************************/
  1391. /*! no static exports found */
  1392. /***/ (function(module, exports) {
  1393. // removed by extract-text-webpack-plugin
  1394. /***/ }),
  1395. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple-multiple.scss":
  1396. /*!******************************************************************************************!*\
  1397. !*** ./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple-multiple.scss ***!
  1398. \******************************************************************************************/
  1399. /*! no static exports found */
  1400. /***/ (function(module, exports) {
  1401. // removed by extract-text-webpack-plugin
  1402. /***/ }),
  1403. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple.scss":
  1404. /*!*********************************************************************************!*\
  1405. !*** ./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple.scss ***!
  1406. \*********************************************************************************/
  1407. /*! no static exports found */
  1408. /***/ (function(module, exports) {
  1409. // removed by extract-text-webpack-plugin
  1410. /***/ }),
  1411. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-scale.scss":
  1412. /*!**************************************************************************!*\
  1413. !*** ./resources/assets/sass/plugins/loaders/animations/ball-scale.scss ***!
  1414. \**************************************************************************/
  1415. /*! no static exports found */
  1416. /***/ (function(module, exports) {
  1417. // removed by extract-text-webpack-plugin
  1418. /***/ }),
  1419. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-spin-fade-loader.scss":
  1420. /*!*************************************************************************************!*\
  1421. !*** ./resources/assets/sass/plugins/loaders/animations/ball-spin-fade-loader.scss ***!
  1422. \*************************************************************************************/
  1423. /*! no static exports found */
  1424. /***/ (function(module, exports) {
  1425. // removed by extract-text-webpack-plugin
  1426. /***/ }),
  1427. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-spin-loader.scss":
  1428. /*!********************************************************************************!*\
  1429. !*** ./resources/assets/sass/plugins/loaders/animations/ball-spin-loader.scss ***!
  1430. \********************************************************************************/
  1431. /*! no static exports found */
  1432. /***/ (function(module, exports) {
  1433. // removed by extract-text-webpack-plugin
  1434. /***/ }),
  1435. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-triangle-trace.scss":
  1436. /*!***********************************************************************************!*\
  1437. !*** ./resources/assets/sass/plugins/loaders/animations/ball-triangle-trace.scss ***!
  1438. \***********************************************************************************/
  1439. /*! no static exports found */
  1440. /***/ (function(module, exports) {
  1441. // removed by extract-text-webpack-plugin
  1442. /***/ }),
  1443. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-zig-zag-deflect.scss":
  1444. /*!************************************************************************************!*\
  1445. !*** ./resources/assets/sass/plugins/loaders/animations/ball-zig-zag-deflect.scss ***!
  1446. \************************************************************************************/
  1447. /*! no static exports found */
  1448. /***/ (function(module, exports) {
  1449. // removed by extract-text-webpack-plugin
  1450. /***/ }),
  1451. /***/ "./resources/assets/sass/plugins/loaders/animations/ball-zig-zag.scss":
  1452. /*!****************************************************************************!*\
  1453. !*** ./resources/assets/sass/plugins/loaders/animations/ball-zig-zag.scss ***!
  1454. \****************************************************************************/
  1455. /*! no static exports found */
  1456. /***/ (function(module, exports) {
  1457. // removed by extract-text-webpack-plugin
  1458. /***/ }),
  1459. /***/ "./resources/assets/sass/plugins/loaders/animations/cube-transition.scss":
  1460. /*!*******************************************************************************!*\
  1461. !*** ./resources/assets/sass/plugins/loaders/animations/cube-transition.scss ***!
  1462. \*******************************************************************************/
  1463. /*! no static exports found */
  1464. /***/ (function(module, exports) {
  1465. // removed by extract-text-webpack-plugin
  1466. /***/ }),
  1467. /***/ "./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out-rapid.scss":
  1468. /*!******************************************************************************************!*\
  1469. !*** ./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out-rapid.scss ***!
  1470. \******************************************************************************************/
  1471. /*! no static exports found */
  1472. /***/ (function(module, exports) {
  1473. // removed by extract-text-webpack-plugin
  1474. /***/ }),
  1475. /***/ "./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out.scss":
  1476. /*!************************************************************************************!*\
  1477. !*** ./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out.scss ***!
  1478. \************************************************************************************/
  1479. /*! no static exports found */
  1480. /***/ (function(module, exports) {
  1481. // removed by extract-text-webpack-plugin
  1482. /***/ }),
  1483. /***/ "./resources/assets/sass/plugins/loaders/animations/line-scale-random.scss":
  1484. /*!*********************************************************************************!*\
  1485. !*** ./resources/assets/sass/plugins/loaders/animations/line-scale-random.scss ***!
  1486. \*********************************************************************************/
  1487. /*! no static exports found */
  1488. /***/ (function(module, exports) {
  1489. // removed by extract-text-webpack-plugin
  1490. /***/ }),
  1491. /***/ "./resources/assets/sass/plugins/loaders/animations/line-scale.scss":
  1492. /*!**************************************************************************!*\
  1493. !*** ./resources/assets/sass/plugins/loaders/animations/line-scale.scss ***!
  1494. \**************************************************************************/
  1495. /*! no static exports found */
  1496. /***/ (function(module, exports) {
  1497. // removed by extract-text-webpack-plugin
  1498. /***/ }),
  1499. /***/ "./resources/assets/sass/plugins/loaders/animations/line-spin-fade-loader.scss":
  1500. /*!*************************************************************************************!*\
  1501. !*** ./resources/assets/sass/plugins/loaders/animations/line-spin-fade-loader.scss ***!
  1502. \*************************************************************************************/
  1503. /*! no static exports found */
  1504. /***/ (function(module, exports) {
  1505. // removed by extract-text-webpack-plugin
  1506. /***/ }),
  1507. /***/ "./resources/assets/sass/plugins/loaders/animations/pacman.scss":
  1508. /*!**********************************************************************!*\
  1509. !*** ./resources/assets/sass/plugins/loaders/animations/pacman.scss ***!
  1510. \**********************************************************************/
  1511. /*! no static exports found */
  1512. /***/ (function(module, exports) {
  1513. // removed by extract-text-webpack-plugin
  1514. /***/ }),
  1515. /***/ "./resources/assets/sass/plugins/loaders/animations/semi-circle-spin.scss":
  1516. /*!********************************************************************************!*\
  1517. !*** ./resources/assets/sass/plugins/loaders/animations/semi-circle-spin.scss ***!
  1518. \********************************************************************************/
  1519. /*! no static exports found */
  1520. /***/ (function(module, exports) {
  1521. // removed by extract-text-webpack-plugin
  1522. /***/ }),
  1523. /***/ "./resources/assets/sass/plugins/loaders/animations/square-spin.scss":
  1524. /*!***************************************************************************!*\
  1525. !*** ./resources/assets/sass/plugins/loaders/animations/square-spin.scss ***!
  1526. \***************************************************************************/
  1527. /*! no static exports found */
  1528. /***/ (function(module, exports) {
  1529. // removed by extract-text-webpack-plugin
  1530. /***/ }),
  1531. /***/ "./resources/assets/sass/plugins/loaders/animations/triangle-skew-spin.scss":
  1532. /*!**********************************************************************************!*\
  1533. !*** ./resources/assets/sass/plugins/loaders/animations/triangle-skew-spin.scss ***!
  1534. \**********************************************************************************/
  1535. /*! no static exports found */
  1536. /***/ (function(module, exports) {
  1537. // removed by extract-text-webpack-plugin
  1538. /***/ }),
  1539. /***/ "./resources/assets/sass/plugins/loaders/loaders.scss":
  1540. /*!************************************************************!*\
  1541. !*** ./resources/assets/sass/plugins/loaders/loaders.scss ***!
  1542. \************************************************************/
  1543. /*! no static exports found */
  1544. /***/ (function(module, exports) {
  1545. // removed by extract-text-webpack-plugin
  1546. /***/ }),
  1547. /***/ "./resources/assets/sass/plugins/pickers/bootstrap-datetimepicker-build.scss":
  1548. /*!***********************************************************************************!*\
  1549. !*** ./resources/assets/sass/plugins/pickers/bootstrap-datetimepicker-build.scss ***!
  1550. \***********************************************************************************/
  1551. /*! no static exports found */
  1552. /***/ (function(module, exports) {
  1553. // removed by extract-text-webpack-plugin
  1554. /***/ }),
  1555. /***/ "./resources/assets/sass/plugins/tour/tour.scss":
  1556. /*!******************************************************!*\
  1557. !*** ./resources/assets/sass/plugins/tour/tour.scss ***!
  1558. \******************************************************/
  1559. /*! no static exports found */
  1560. /***/ (function(module, exports) {
  1561. // removed by extract-text-webpack-plugin
  1562. /***/ }),
  1563. /***/ "./resources/assets/sass/plugins/ui/coming-soon.scss":
  1564. /*!***********************************************************!*\
  1565. !*** ./resources/assets/sass/plugins/ui/coming-soon.scss ***!
  1566. \***********************************************************/
  1567. /*! no static exports found */
  1568. /***/ (function(module, exports) {
  1569. // removed by extract-text-webpack-plugin
  1570. /***/ }),
  1571. /***/ "./resources/assets/sass/themes/dark-layout.scss":
  1572. /*!*******************************************************!*\
  1573. !*** ./resources/assets/sass/themes/dark-layout.scss ***!
  1574. \*******************************************************/
  1575. /*! no static exports found */
  1576. /***/ (function(module, exports) {
  1577. // removed by extract-text-webpack-plugin
  1578. /***/ }),
  1579. /***/ "./resources/assets/sass/themes/semi-dark-layout.scss":
  1580. /*!************************************************************!*\
  1581. !*** ./resources/assets/sass/themes/semi-dark-layout.scss ***!
  1582. \************************************************************/
  1583. /*! no static exports found */
  1584. /***/ (function(module, exports) {
  1585. // removed by extract-text-webpack-plugin
  1586. /***/ }),
  1587. /***/ 0:
  1588. /*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  1589. !*** multi ./resources/assets/js/core/app-menu.js ./resources/assets/sass/plugins/animate/animate.scss ./resources/assets/sass/plugins/calendars/fullcalendar.scss ./resources/assets/sass/plugins/extensions/context-menu.scss ./resources/assets/sass/plugins/extensions/drag-and-drop.scss ./resources/assets/sass/plugins/extensions/media-plyr.scss ./resources/assets/sass/plugins/extensions/noui-slider.scss ./resources/assets/sass/plugins/extensions/swiper.scss ./resources/assets/sass/plugins/extensions/toastr.scss ./resources/assets/sass/plugins/file-uploaders/dropzone.scss ./resources/assets/sass/plugins/forms/extended/typeahed.scss ./resources/assets/sass/plugins/forms/form-inputs-groups.scss ./resources/assets/sass/plugins/forms/validation/form-validation.scss ./resources/assets/sass/plugins/forms/wizard.scss ./resources/assets/sass/plugins/loaders/animations/ball-beat.scss ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-multiple.scss ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-pulse.scss ./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate.scss ./resources/assets/sass/plugins/loaders/animations/ball-grid-beat.scss ./resources/assets/sass/plugins/loaders/animations/ball-grid-pulse.scss ./resources/assets/sass/plugins/loaders/animations/ball-pulse-rise.scss ./resources/assets/sass/plugins/loaders/animations/ball-pulse-round.scss ./resources/assets/sass/plugins/loaders/animations/ball-pulse-sync.scss ./resources/assets/sass/plugins/loaders/animations/ball-pulse.scss ./resources/assets/sass/plugins/loaders/animations/ball-rotate.scss ./resources/assets/sass/plugins/loaders/animations/ball-scale-multiple.scss ./resources/assets/sass/plugins/loaders/animations/ball-scale-random.scss ./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple-multiple.scss ./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple.scss ./resources/assets/sass/plugins/loaders/animations/ball-scale.scss ./resources/assets/sass/plugins/loaders/animations/ball-spin-fade-loader.scss ./resources/assets/sass/plugins/loaders/animations/ball-spin-loader.scss ./resources/assets/sass/plugins/loaders/animations/ball-triangle-trace.scss ./resources/assets/sass/plugins/loaders/animations/ball-zig-zag-deflect.scss ./resources/assets/sass/plugins/loaders/animations/ball-zig-zag.scss ./resources/assets/sass/plugins/loaders/animations/cube-transition.scss ./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out-rapid.scss ./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out.scss ./resources/assets/sass/plugins/loaders/animations/line-scale-random.scss ./resources/assets/sass/plugins/loaders/animations/line-scale.scss ./resources/assets/sass/plugins/loaders/animations/line-spin-fade-loader.scss ./resources/assets/sass/plugins/loaders/animations/pacman.scss ./resources/assets/sass/plugins/loaders/animations/semi-circle-spin.scss ./resources/assets/sass/plugins/loaders/animations/square-spin.scss ./resources/assets/sass/plugins/loaders/animations/triangle-skew-spin.scss ./resources/assets/sass/plugins/loaders/loaders.scss ./resources/assets/sass/plugins/pickers/bootstrap-datetimepicker-build.scss ./resources/assets/sass/plugins/tour/tour.scss ./resources/assets/sass/plugins/ui/coming-soon.scss ./resources/assets/sass/themes/dark-layout.scss ./resources/assets/sass/themes/semi-dark-layout.scss ./resources/assets/sass/pages/aggrid.scss ./resources/assets/sass/pages/app-chat.scss ./resources/assets/sass/pages/app-ecommerce-details.scss ./resources/assets/sass/pages/app-ecommerce-shop.scss ./resources/assets/sass/pages/app-email.scss ./resources/assets/sass/pages/app-todo.scss ./resources/assets/sass/pages/app-user.scss ./resources/assets/sass/pages/authentication.scss ./resources/assets/sass/pages/card-analytics.scss ./resources/assets/sass/pages/colors.scss ./resources/assets/sass/pages/coming-soon.scss ./resources/assets/sass/pages/dashboard-analytics.scss ./resources/assets/sass/pages/dashboard-ecommerce.scss ./resources/assets/sass/pages/data-list-view.scss ./resources/assets/sass/pages/error.scss ./resources/assets/sass/pages/faq.scss ./resources/assets/sass/pages/invoice.scss ./resources/assets/sass/pages/knowledge-base.scss ./resources/assets/sass/pages/register.scss ./resources/assets/sass/pages/search.scss ./resources/assets/sass/pages/timeline.scss ./resources/assets/sass/pages/users.scss ./resources/assets/sass/core/colors/palette-gradient.scss ./resources/assets/sass/core/colors/palette-noui.scss ./resources/assets/sass/core/colors/palette-variables.scss ./resources/assets/sass/core/menu/menu-types/horizontal-menu.scss ./resources/assets/sass/core/menu/menu-types/vertical-menu.scss ./resources/assets/sass/core/menu/menu-types/vertical-overlay-menu.scss ./resources/assets/sass/core/mixins/alert.scss ./resources/assets/sass/core/mixins/hex2rgb.scss ./resources/assets/sass/core/mixins/main-menu-mixin.scss ./resources/assets/sass/core/mixins/transitions.scss ./resources/assets/dcat/sass/dcat-bootstrap.scss ./resources/assets/sass/bootstrap.scss ./resources/assets/sass/bootstrap-extended.scss ./resources/assets/sass/colors.scss ./resources/assets/sass/components.scss ./resources/assets/sass/custom-rtl.scss ./resources/assets/sass/custom-laravel.scss ***!
  1590. \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
  1591. /*! no static exports found */
  1592. /***/ (function(module, exports, __webpack_require__) {
  1593. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\js\core\app-menu.js */"./resources/assets/js/core/app-menu.js");
  1594. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\animate\animate.scss */"./resources/assets/sass/plugins/animate/animate.scss");
  1595. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\calendars\fullcalendar.scss */"./resources/assets/sass/plugins/calendars/fullcalendar.scss");
  1596. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\context-menu.scss */"./resources/assets/sass/plugins/extensions/context-menu.scss");
  1597. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\drag-and-drop.scss */"./resources/assets/sass/plugins/extensions/drag-and-drop.scss");
  1598. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\media-plyr.scss */"./resources/assets/sass/plugins/extensions/media-plyr.scss");
  1599. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\noui-slider.scss */"./resources/assets/sass/plugins/extensions/noui-slider.scss");
  1600. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\swiper.scss */"./resources/assets/sass/plugins/extensions/swiper.scss");
  1601. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\extensions\toastr.scss */"./resources/assets/sass/plugins/extensions/toastr.scss");
  1602. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\file-uploaders\dropzone.scss */"./resources/assets/sass/plugins/file-uploaders/dropzone.scss");
  1603. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\forms\extended\typeahed.scss */"./resources/assets/sass/plugins/forms/extended/typeahed.scss");
  1604. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\forms\form-inputs-groups.scss */"./resources/assets/sass/plugins/forms/form-inputs-groups.scss");
  1605. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\forms\validation\form-validation.scss */"./resources/assets/sass/plugins/forms/validation/form-validation.scss");
  1606. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\forms\wizard.scss */"./resources/assets/sass/plugins/forms/wizard.scss");
  1607. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-beat.scss */"./resources/assets/sass/plugins/loaders/animations/ball-beat.scss");
  1608. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-clip-rotate-multiple.scss */"./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-multiple.scss");
  1609. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-clip-rotate-pulse.scss */"./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate-pulse.scss");
  1610. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-clip-rotate.scss */"./resources/assets/sass/plugins/loaders/animations/ball-clip-rotate.scss");
  1611. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-grid-beat.scss */"./resources/assets/sass/plugins/loaders/animations/ball-grid-beat.scss");
  1612. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-grid-pulse.scss */"./resources/assets/sass/plugins/loaders/animations/ball-grid-pulse.scss");
  1613. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-pulse-rise.scss */"./resources/assets/sass/plugins/loaders/animations/ball-pulse-rise.scss");
  1614. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-pulse-round.scss */"./resources/assets/sass/plugins/loaders/animations/ball-pulse-round.scss");
  1615. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-pulse-sync.scss */"./resources/assets/sass/plugins/loaders/animations/ball-pulse-sync.scss");
  1616. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-pulse.scss */"./resources/assets/sass/plugins/loaders/animations/ball-pulse.scss");
  1617. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-rotate.scss */"./resources/assets/sass/plugins/loaders/animations/ball-rotate.scss");
  1618. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-scale-multiple.scss */"./resources/assets/sass/plugins/loaders/animations/ball-scale-multiple.scss");
  1619. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-scale-random.scss */"./resources/assets/sass/plugins/loaders/animations/ball-scale-random.scss");
  1620. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-scale-ripple-multiple.scss */"./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple-multiple.scss");
  1621. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-scale-ripple.scss */"./resources/assets/sass/plugins/loaders/animations/ball-scale-ripple.scss");
  1622. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-scale.scss */"./resources/assets/sass/plugins/loaders/animations/ball-scale.scss");
  1623. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-spin-fade-loader.scss */"./resources/assets/sass/plugins/loaders/animations/ball-spin-fade-loader.scss");
  1624. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-spin-loader.scss */"./resources/assets/sass/plugins/loaders/animations/ball-spin-loader.scss");
  1625. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-triangle-trace.scss */"./resources/assets/sass/plugins/loaders/animations/ball-triangle-trace.scss");
  1626. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-zig-zag-deflect.scss */"./resources/assets/sass/plugins/loaders/animations/ball-zig-zag-deflect.scss");
  1627. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\ball-zig-zag.scss */"./resources/assets/sass/plugins/loaders/animations/ball-zig-zag.scss");
  1628. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\cube-transition.scss */"./resources/assets/sass/plugins/loaders/animations/cube-transition.scss");
  1629. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\line-scale-pulse-out-rapid.scss */"./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out-rapid.scss");
  1630. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\line-scale-pulse-out.scss */"./resources/assets/sass/plugins/loaders/animations/line-scale-pulse-out.scss");
  1631. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\line-scale-random.scss */"./resources/assets/sass/plugins/loaders/animations/line-scale-random.scss");
  1632. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\line-scale.scss */"./resources/assets/sass/plugins/loaders/animations/line-scale.scss");
  1633. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\line-spin-fade-loader.scss */"./resources/assets/sass/plugins/loaders/animations/line-spin-fade-loader.scss");
  1634. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\pacman.scss */"./resources/assets/sass/plugins/loaders/animations/pacman.scss");
  1635. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\semi-circle-spin.scss */"./resources/assets/sass/plugins/loaders/animations/semi-circle-spin.scss");
  1636. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\square-spin.scss */"./resources/assets/sass/plugins/loaders/animations/square-spin.scss");
  1637. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\animations\triangle-skew-spin.scss */"./resources/assets/sass/plugins/loaders/animations/triangle-skew-spin.scss");
  1638. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\loaders\loaders.scss */"./resources/assets/sass/plugins/loaders/loaders.scss");
  1639. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\pickers\bootstrap-datetimepicker-build.scss */"./resources/assets/sass/plugins/pickers/bootstrap-datetimepicker-build.scss");
  1640. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\tour\tour.scss */"./resources/assets/sass/plugins/tour/tour.scss");
  1641. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\plugins\ui\coming-soon.scss */"./resources/assets/sass/plugins/ui/coming-soon.scss");
  1642. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\themes\dark-layout.scss */"./resources/assets/sass/themes/dark-layout.scss");
  1643. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\themes\semi-dark-layout.scss */"./resources/assets/sass/themes/semi-dark-layout.scss");
  1644. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\aggrid.scss */"./resources/assets/sass/pages/aggrid.scss");
  1645. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-chat.scss */"./resources/assets/sass/pages/app-chat.scss");
  1646. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-ecommerce-details.scss */"./resources/assets/sass/pages/app-ecommerce-details.scss");
  1647. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-ecommerce-shop.scss */"./resources/assets/sass/pages/app-ecommerce-shop.scss");
  1648. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-email.scss */"./resources/assets/sass/pages/app-email.scss");
  1649. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-todo.scss */"./resources/assets/sass/pages/app-todo.scss");
  1650. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\app-user.scss */"./resources/assets/sass/pages/app-user.scss");
  1651. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\authentication.scss */"./resources/assets/sass/pages/authentication.scss");
  1652. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\card-analytics.scss */"./resources/assets/sass/pages/card-analytics.scss");
  1653. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\colors.scss */"./resources/assets/sass/pages/colors.scss");
  1654. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\coming-soon.scss */"./resources/assets/sass/pages/coming-soon.scss");
  1655. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\dashboard-analytics.scss */"./resources/assets/sass/pages/dashboard-analytics.scss");
  1656. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\dashboard-ecommerce.scss */"./resources/assets/sass/pages/dashboard-ecommerce.scss");
  1657. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\data-list-view.scss */"./resources/assets/sass/pages/data-list-view.scss");
  1658. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\error.scss */"./resources/assets/sass/pages/error.scss");
  1659. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\faq.scss */"./resources/assets/sass/pages/faq.scss");
  1660. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\invoice.scss */"./resources/assets/sass/pages/invoice.scss");
  1661. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\knowledge-base.scss */"./resources/assets/sass/pages/knowledge-base.scss");
  1662. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\register.scss */"./resources/assets/sass/pages/register.scss");
  1663. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\search.scss */"./resources/assets/sass/pages/search.scss");
  1664. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\timeline.scss */"./resources/assets/sass/pages/timeline.scss");
  1665. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\pages\users.scss */"./resources/assets/sass/pages/users.scss");
  1666. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\colors\palette-gradient.scss */"./resources/assets/sass/core/colors/palette-gradient.scss");
  1667. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\colors\palette-noui.scss */"./resources/assets/sass/core/colors/palette-noui.scss");
  1668. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\colors\palette-variables.scss */"./resources/assets/sass/core/colors/palette-variables.scss");
  1669. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\menu\menu-types\horizontal-menu.scss */"./resources/assets/sass/core/menu/menu-types/horizontal-menu.scss");
  1670. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\menu\menu-types\vertical-menu.scss */"./resources/assets/sass/core/menu/menu-types/vertical-menu.scss");
  1671. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\menu\menu-types\vertical-overlay-menu.scss */"./resources/assets/sass/core/menu/menu-types/vertical-overlay-menu.scss");
  1672. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\mixins\alert.scss */"./resources/assets/sass/core/mixins/alert.scss");
  1673. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\mixins\hex2rgb.scss */"./resources/assets/sass/core/mixins/hex2rgb.scss");
  1674. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\mixins\main-menu-mixin.scss */"./resources/assets/sass/core/mixins/main-menu-mixin.scss");
  1675. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\core\mixins\transitions.scss */"./resources/assets/sass/core/mixins/transitions.scss");
  1676. !(function webpackMissingModule() { var e = new Error("Cannot find module 'F:\\p\\dcat-admin-github\\dcat-admin\\resources\\assets\\dcat\\sass\\dcat-bootstrap.scss'"); e.code = 'MODULE_NOT_FOUND'; throw e; }());
  1677. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\bootstrap.scss */"./resources/assets/sass/bootstrap.scss");
  1678. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\bootstrap-extended.scss */"./resources/assets/sass/bootstrap-extended.scss");
  1679. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\colors.scss */"./resources/assets/sass/colors.scss");
  1680. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\components.scss */"./resources/assets/sass/components.scss");
  1681. __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\custom-rtl.scss */"./resources/assets/sass/custom-rtl.scss");
  1682. module.exports = __webpack_require__(/*! F:\p\dcat-admin-github\dcat-admin\resources\assets\sass\custom-laravel.scss */"./resources/assets/sass/custom-laravel.scss");
  1683. /***/ })
  1684. /******/ });