-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 4.x: @uppy/angular,meta: upgrade to Angular 17.x and to TS 5.4 (#5008) @uppy/svelte: remove UMD output and make it use newer types (#5023) fix type imports (#5038) @uppy/aws-s3-multipart: mark `opts` as optional (#5039) e2e: bump Cypress version (#5034) @uppy/react: remove `prop-types` dependency (#5031) @uppy/progress-bar: remove default target (#4971) @uppy/status-bar: remove default target (#4970) @uppy/react: remove `Wrapper.ts` (#5032) @uppy/react: refactor to TS (#5012) @uppy/core: refine type of private variables (#5028) @uppy/dashboard: refine type of private variables (#5027) @uppy/drag-drop: refine type of private variables (#5026) @uppy/status-bar: refine type of private variables (#5025)
- Loading branch information
Showing
98 changed files
with
3,381 additions
and
3,269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
...py/angular/projects/uppy/angular/src/lib/components/dashboard/dashboard-demo.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
// @ts-expect-error | ||
import * as Dashboard from '@uppy/dashboard'; | ||
// @ts-expect-error | ||
import { Uppy } from '@uppy/core'; | ||
import { Body, Meta } from '@uppy/utils/lib/UppyFile'; | ||
|
||
@Component({ | ||
selector: 'uppy-dashboard-demo', | ||
template: `<uppy-dashboard [uppy]="uppy" [props]="props"></uppy-dashboard>`, | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class DashboardDemoComponent { | ||
uppy: Uppy = new Uppy({ debug: true, autoProceed: true }); | ||
props: Dashboard.DashboardOptions; | ||
export class DashboardDemoComponent<M extends Meta, B extends Body> { | ||
uppy: Uppy<M, B> = new Uppy({ debug: true, autoProceed: true }); | ||
props?: Dashboard.DashboardOptions<M, B>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
...py/angular/projects/uppy/angular/src/lib/components/drag-drop/drag-drop-demo.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
import { Component, ChangeDetectionStrategy } from '@angular/core'; | ||
// @ts-expect-error | ||
import * as DragDrop from '@uppy/drag-drop'; | ||
// @ts-expect-error | ||
import { Uppy } from '@uppy/core'; | ||
import { Body, Meta } from '@uppy/utils/lib/UppyFile'; | ||
|
||
@Component({ | ||
selector: 'uppy-drag-drop-demo', | ||
template: ` <uppy-drag-drop [uppy]="uppy" [props]="props"></uppy-drag-drop> `, | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class DragDropDemoComponent { | ||
uppy: Uppy = new Uppy({ debug: true, autoProceed: true }); | ||
export class DragDropDemoComponent<M extends Meta, B extends Body> { | ||
uppy: Uppy<M, B> = new Uppy({ debug: true, autoProceed: true }); | ||
props: DragDrop.DragDropOptions = {}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.