You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 line
1.1KB

  1. // JQuery
  2. import 'jquery';
  3. global.$ = global.jQuery = $;
  4. // Adminlte
  5. import 'adminlte-js' ;
  6. // Bootstrap
  7. import 'bootstrap/dist/js/bootstrap.min.js';
  8. // Bootstrap - autocomplete
  9. import 'bootstrap-autocomplete';
  10. // Select2
  11. import 'select2/js/select2.min.js';
  12. import 'select2/js/i18n/fr.js';
  13. import 'select2/css/select2.min.css';
  14. import 'select2-bootstrap-theme';
  15. // Toastr
  16. import toastr from 'toastr/toastr.js' ;
  17. import 'toastr/toastr.scss' ;
  18. global.toastr = toastr ;
  19. // DaterangePicker
  20. import 'moment' ;
  21. import 'daterangepicker/daterangepicker.js' ;
  22. import 'daterangepicker/daterangepicker.css' ;
  23. // Tools
  24. import { SovTools } from '../../../functions/tools.js';
  25. global.SovTools = SovTools;
  26. // Prices
  27. import { SovPrices } from '../../../functions/prices.js';
  28. global.SovPrices = SovPrices;
  29. // Widgets
  30. import { SovWidgetCollection } from '../../../functions/widget-collection.js';
  31. global.SovWidgetCollection = SovWidgetCollection;
  32. // Widgets
  33. import { SovWidgets } from '../../../functions/widgets.js';
  34. global.SovWidgets = SovWidgets;
  35. import { SovNotification } from '../../../functions/notification.js';
  36. global.SovNotification = SovNotification;