Renée Kooi
68b4529ec7
Add object rest spread transform
...
Object rest spread was standardised this year so it's safe to use. It
has shipped in major browsers and Node. Because Uppy uses immutable
state we can make a lot of gains in terseness and readability by using
the new object syntaxes, I think.
I updated one place where we were using Object.assign; I think we can
merge it like this first and then update the other places when we are
changing stuff there anyway.
2018-07-16 14:28:55 +02:00
todd
1f8e52106e
Merge branch 'master' of https://github.com/transloadit/uppy into font_family
2018-07-16 10:34:36 +09:00
Renée Kooi
f9a9762dfa
Release
...
- uppy@0.26.0
- @uppy/aws-s3-multipart@0.26.0
- @uppy/aws-s3@0.26.0
- @uppy/core@0.26.0
- @uppy/dashboard@0.26.0
- @uppy/drag-drop@0.26.0
- @uppy/dropbox@0.26.0
- @uppy/file-input@0.26.0
- @uppy/form@0.26.0
- @uppy/golden-retriever@0.26.0
- @uppy/google-drive@0.26.0
- @uppy/informer@0.26.0
- @uppy/instagram@0.26.0
- @uppy/progress-bar@0.26.0
- @uppy/provider-views@0.26.0
- @uppy/react@0.26.0
- @uppy/redux-dev-tools@0.26.0
- @uppy/server-utils@0.26.0
- @uppy/status-bar@0.26.0
- @uppy/store-default@0.26.0
- @uppy/store-redux@0.26.0
- @uppy/thumbnail-generator@0.26.0
- @uppy/transloadit@0.26.0
- @uppy/tus@0.26.0
- @uppy/url@0.26.0
- @uppy/utils@0.26.0
- @uppy/webcam@0.26.0
- @uppy/xhr-upload@0.26.0
2018-06-28 17:12:13 +02:00
Renée Kooi
36e5a82393
Use a single typescript config for all types tests.
2018-06-28 16:30:24 +02:00
Renée Kooi
73202c2108
Add uppy.use() overloads to plugin typings.
2018-06-28 16:30:13 +02:00
Renée Kooi
1588b9d8bf
Add types tests for @uppy/core.
2018-06-28 16:30:10 +02:00
Artur Paikin
4684a3e1f3
Merge pull request #924 from transloadit/export-plugin
...
Export Plugin class from @uppy/core.
2018-06-28 09:43:43 -04:00
Renée Kooi
5d9abc518c
Fix version numbers
2018-06-28 15:41:15 +02:00
Renée Kooi
72689d01ac
Export Plugin class from @uppy/core.
2018-06-28 12:20:21 +02:00
Artur Paikin
ade214e5aa
change focus to solid line for all elements
2018-06-27 18:48:01 -04:00
Renée Kooi
5484db20e4
Update package.json keywords.
2018-06-18 17:37:30 +02:00
Renée Kooi
1222873698
Remove unnecessary declare module wrappers from .d.ts files.
2018-06-18 16:22:15 +02:00
Renée Kooi
a0fd2d3d29
Split up typescript definitions.
...
Also add the type tests to our `npm test` script.
2018-06-18 14:59:08 +02:00
Renée Kooi
8d2b6a8a05
Insert missing documentation links.
2018-06-18 13:20:19 +02:00
Renée Kooi
382f4fba95
Move stylesheets into packages.
2018-06-18 12:35:47 +02:00
Renée Kooi
16d0d4253a
Move Plugin class to @uppy/core package.
...
Steps taken:
```bash
git mv src/core/Plugin.js packages/@uppy/core/src
vim packages/@uppy/core/src/index.test.js # Update require
sed -i 's/[./]*\/core\/Plugin/@uppy\/core\/lib\/Plugin/' src/**/*.js
vim test/mocks/* # manually update require() calls
vim website/src/docs/writing-plugins.md # manually update require() calls
```
2018-06-14 16:31:19 +02:00
Renée Kooi
20e8949754
Move Core class to @uppy/core package.
...
Didn't move `Plugin` yet.
Steps taken:
```bash
cp -R package-template packages/@uppy/core
git mv src/core/Core.js packages/@uppy/core/src/index.js
git mv src/core/Core.test.js packages/@uppy/core/src/index.test.js
fgrep './core' -r src # find Core uses
vim src/react/propTypes.js src/... # update core requires to `@uppy/core`
fgrep require packages/@uppy/core/src/* # find npm dependencies of @uppy/core
vim packages/@uppy/core/{package.json,README.md} # Update, and add dependencies
```
2018-06-14 16:31:19 +02:00