diff --git a/THIRD_PARTY.txt b/THIRD_PARTY.txt index f7076238..0f6fd7e4 100644 --- a/THIRD_PARTY.txt +++ b/THIRD_PARTY.txt @@ -1379,6 +1379,8 @@ https://cdnjs.cloudflare.com/ajax/libs/mootools/1.4.5/mootools-core-full-compat- https://cdnjs.cloudflare.com/ajax/libs/mootools/1.6.0/mootools-core.min.js https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/14.7.0/nouislider.min.js https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/15.6.1/nouislider.min.js +https://cdnjs.cloudflare.com/ajax/libs/nprogress/0.2.0/nprogress.min.css +https://cdnjs.cloudflare.com/ajax/libs/nprogress/0.2.0/nprogress.min.js https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.8.6/nv.d3.min.css https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.8.6/nv.d3.min.js https://cdnjs.cloudflare.com/ajax/libs/oclazyload/1.1.0/ocLazyLoad.min.js diff --git a/core/mappings.js b/core/mappings.js index 786b28bc..d6ea89c8 100644 --- a/core/mappings.js +++ b/core/mappings.js @@ -416,6 +416,10 @@ mappings.cdn = { 'moment.js/{version}/moment.min.': resources.moment, 'moment.js/{version}/moment-with-locales.': resources.moment, 'mootools/{version}/mootools-core': resources.mootools, + 'nprogress/{version}/nprogress.min.js': resources.nprogressJS, + 'nprogress/{version}/nprogress.js': resources.nprogressJS, + 'nprogress/{version}/nprogress.min.css': resources.nprogressCSS, + 'nprogress/{version}/nprogress.css': resources.nprogressCSS, 'noUiSlider/{version}/nouislider.js': resources.noUiSlider, 'noUiSlider/{version}/nouislider.min.js': resources.noUiSlider, 'nvd3/{version}/nv.d3.min.js': resources.nvd3JS, diff --git a/core/resources.js b/core/resources.js index baf1cb23..9224205f 100644 --- a/core/resources.js +++ b/core/resources.js @@ -808,6 +808,13 @@ var resources = { 'ngxBootstrapDatepicker': { 'path': 'resources/ngx-bootstrap/{version}/datepicker/bs-datepicker.css' }, + // nprogress + 'nprogressCSS': { + 'path': 'resources/nprogress/{version}/nprogress.min.css' + }, + 'nprogressJS': { + 'path': 'resources/nprogress/{version}/nprogress.min.jsm' + }, // noUiSlider 'noUiSlider': { 'path': 'resources/noUiSlider/{version}/nouislider.min.jsm' diff --git a/modules/internal/targets.js b/modules/internal/targets.js index 661ec6e6..2b1494d1 100644 --- a/modules/internal/targets.js +++ b/modules/internal/targets.js @@ -365,6 +365,7 @@ targets.setLastVersion = function (type, version) { if (type.startsWith('/ngx-bootstrap/10.')) return '10.0.0'; if (type.startsWith('/noUiSlider/14.')) return '14.7.0'; if (type.startsWith('/noUiSlider/15.')) return '15.6.1'; + if (type.startsWith('/nprogress/0.')) return '0.2.0'; if (type.startsWith('/nvd3/1.')) return '1.8.6'; if (type.startsWith('/object-assign@4.')) return '4.1.1'; if (type.startsWith('/oclazyload/1.')) return '1.1.0'; @@ -500,6 +501,8 @@ targets.determineResourceName = function (filename) { }; const ListOfFiles = { + 'nprogress.min.jsm': 'nprogress (JS)', + 'nprogress.min.css': 'nprogress (CSS)', 'swagger-ui-bundle.min.jsm': 'Swagger-UI (JS)', 'swagger-ui.min.css': 'Swagger-UI (CSS)', 'knockout.mapping.min.jsm': 'knockout.mapping', diff --git a/pages/updates/updates.html b/pages/updates/updates.html index 684a8f88..bcf40b0a 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -32,6 +32,10 @@
  • paginationjs v2.4.1 -> v2.4.2 (#1252)
  • findify-bundle v7.1.77 -> v7.1.78 (#1253)
  • +

    Added

    +

    Improved