mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +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>
31 lines
630 B
JSON
31 lines
630 B
JSON
{
|
|
"extends": "../../../tsconfig.shared",
|
|
"compilerOptions": {
|
|
"emitDeclarationOnly": false,
|
|
"noEmit": true
|
|
},
|
|
"include": ["./package.json", "./src/**/*.*"],
|
|
"references": [
|
|
{
|
|
"path": "../provider-views/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../thumbnail-generator/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../utils/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../core/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../google-drive/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../url/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../webcam/tsconfig.build.json"
|
|
}
|
|
]
|
|
}
|