mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
This pull request removes the `@uppy/status-bar` plugin and integrates it directly into the `@uppy/dashboard` plugin. ### Breakdown of the merge - The `StatusBar` class was refactored from a `UIPlugin` into a Preact Class component. - The `locale` strings from status-bar were merged into dashboard's locale file. - The Dashboard plugin now integrates the `StatusBar` component directly, controlling its visibility and passing down all props ( i.e. options that were specific to StatusBar (like showProgressDetails). - The standalone StatusBar wrappers for React , Vue , svelte , Angular were removed. - every reference to the @uppy/status-bar package from the monorepo (including in package.json and tsconfig.json files). - fixed failing tests and removed redundant tests. --------- Co-authored-by: Mikael Finstad <finstaden@gmail.com> Co-authored-by: Merlijn Vos <merlijn@soverin.net>
21 lines
512 B
JSON
21 lines
512 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"@uppy/core#build",
|
|
"@uppy/dashboard#build",
|
|
"@uppy/utils#build"
|
|
],
|
|
"inputs": [
|
|
"projects/uppy/angular/src/**/*.{js,ts,jsx,tsx}",
|
|
"package.json",
|
|
"angular.json",
|
|
"projects/uppy/angular/ng-package.json",
|
|
"projects/uppy/angular/tsconfig.lib.json",
|
|
"projects/uppy/angular/tsconfig.lib.prod.json"
|
|
],
|
|
"outputs": ["dist/uppy/angular/**"]
|
|
}
|
|
}
|
|
}
|