Browse Source

Système Filtres SovBundle

develop
Fab 2 years ago
parent
commit
f87d643274
5 changed files with 227 additions and 1330 deletions
  1. +176
    -308
      composer.lock
  2. +5
    -3
      package.json
  3. +0
    -6
      symfony.lock
  4. +7
    -2
      webpack.config.js
  5. +39
    -1011
      yarn.lock

+ 176
- 308
composer.lock
File diff suppressed because it is too large
View File


+ 5
- 3
package.json View File

@@ -3,8 +3,12 @@
"@symfony/stimulus-bridge": "^2.0.0",
"@symfony/webpack-encore": "^1.0.0",
"admin-lte": "^3.1",
"bootstrap-autocomplete": "^2.3.7",
"bootstrap-daterangepicker": "^3.1.0",
"core-js": "^3.0.0",
"daterangepicker": "^3.1.0",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"regenerator-runtime": "^0.13.2",
"sass": "^1.32.12",
"sass-loader": "^11.0.0",
@@ -21,7 +25,5 @@
"watch": "encore dev --watch",
"build": "encore production --progress"
},
"dependencies": {
"adminlte": "^2.4.1"
}
"dependencies": {}
}

+ 0
- 6
symfony.lock View File

@@ -148,12 +148,6 @@
"laminas/laminas-code": {
"version": "4.2.2"
},
"laminas/laminas-eventmanager": {
"version": "3.3.1"
},
"laminas/laminas-zendframework-bridge": {
"version": "1.2.0"
},
"liip/imagine-bundle": {
"version": "1.8",
"recipe": {

+ 7
- 2
webpack.config.js View File

@@ -22,9 +22,14 @@ Encore
'jquery-ui': path.join(__dirname, 'node_modules/jquery-ui-dist/jquery-ui'),
'adminlte-js': path.join(__dirname, 'node_modules/admin-lte/dist/js/adminlte.min.js'),
'adminlte-css': path.join(__dirname, 'node_modules/admin-lte/build/scss/adminlte.scss'),
'fontawesome-css': path.join(__dirname, 'node_modules/admin-lte/plugins/fontawesome-free/css/all.css'),
'adminlte-plugin': path.join(__dirname, 'node_modules/admin-lte/plugins/'),
'fontawesome-css': path.join(__dirname, 'node_modules/@fortawesome/fontawesome-free/css/all.css'),
'bootstrap': path.join(__dirname, 'node_modules/bootstrap/'),
'bootstrap-autocomplete': path.join(__dirname, 'node_modules/bootstrap-autocomplete/dist/latest/bootstrap-autocomplete.min.js'),
'select2': path.join(__dirname, 'node_modules/select2/dist/'),
'select2-bootstrap4-theme': path.join(__dirname, 'node_modules/select2-bootstrap4-theme/dist/select2-bootstrap4.min.css'),
'toastr': path.join(__dirname, 'node_modules/toastr'),
'daterangepicker': path.join(__dirname, 'node_modules/bootstrap-daterangepicker'),
'moment': path.join(__dirname, 'node_modules/moment/dist/moment.js'),

/*'adminlte': path.resolve(__dirname, './node_modules/admin-lte/dist/js/adminlte.min.js'),
'adminltePlugin': path.resolve(__dirname, './node_modules/admin-lte/plugins/'),

+ 39
- 1011
yarn.lock
File diff suppressed because it is too large
View File


Loading…
Cancel
Save