Commit Graph

23407 Commits

Author SHA1 Message Date
Federico Caselli
2c90c48e39 Update jointjs to 1.0.1 (#12548) 2016-11-13 18:20:12 +09:00
Yui
23d8466f82 Merge pull request #12194 from jupl/redux-actions-export-actions
[redux-actions] Export action interfaces
2016-11-10 16:28:14 -08:00
Yui
f6cf80c8ad Merge pull request #12291 from KostyaEsmukov/react-router-render-prop
react-router: added render prop and fixed applyRouterMiddleware types
2016-11-10 16:26:59 -08:00
Yui
15ac8c9f2a Merge pull request #12301 from lucideer/types-2.0
libxmljs: Union types for possibly undefined return values
2016-11-10 16:15:24 -08:00
Yui
9accdb086f Merge pull request #12201 from KingHenne/improve-react-helmet
Improve react-helmet type definition
2016-11-10 15:50:02 -08:00
Yui
a9164fb940 Merge pull request #12410 from ligaz/patch-13
[material-ui] Add boolean for muiTheme.userAgent
2016-11-10 15:45:05 -08:00
Yui
d9e6364083 Merge pull request #12413 from WatchBeam/types-2.0
Treat clipboard as a module
2016-11-10 15:44:27 -08:00
Yui
c00a40ce82 Merge pull request #12483 from ts-webpack/types/source-map
fix: update version number for source-map
2016-11-10 15:35:34 -08:00
Yui
4c3c765267 Merge pull request #12571 from valorize/patch-1
react-bootstrap: Added collapseOnSelect
2016-11-10 15:13:30 -08:00
Yui
ed5aa6b9b2 Merge pull request #12574 from DefinitelyTyped/angular_ui_router_uib_modal_2.0
Upgrade angular-ui-router-uib-modal for types-2.0
2016-11-10 15:12:59 -08:00
Yui
f5258e9e57 Merge pull request #12575 from thevtm/revert-12462-patch-15
Revert "[@types/mongoose] Declare a right type for _id"
2016-11-10 15:12:20 -08:00
Yui
c2aa95c8c0 Merge pull request #12579 from haoliangyu/types-2.0
update leaflet
2016-11-10 15:11:21 -08:00
Andy
697d724a00 Make more test files lowercase so they compile on linux (#12573) 2016-11-10 15:06:53 -08:00
Yui
98d9250632 Merge pull request #12591 from pushplay/types-2.0-yargs
Fix typings in yargs.
2016-11-10 14:34:27 -08:00
Yui
6f8432e5ca Merge pull request #12153 from infeng/patch-1
add @types/history dependency in react-router
2016-11-10 13:28:29 -08:00
Jimi (Dimitris) Charalampidis
0fe09ccd9d Add stompjs types 2.0 definitions. (#12605) 2016-11-10 12:09:38 -08:00
Yui
67be572c32 Merge pull request #12095 from screendriver/ora
Fixed types for ora v0.3.0
2016-11-10 11:48:15 -08:00
Yui
ab5cdd978e Merge pull request #11886 from ronzeidman/types-2.0
Types 2.0
2016-11-10 11:35:44 -08:00
Yui
828e50cc7c Merge pull request #12313 from CasperSkydt/feature-types-2.0-added-kinesis-to-aws-sdk
Added Kinises to AWS-SDK
2016-11-10 11:08:02 -08:00
Sho Fuji
c4afd27a44 Add definition for deku (#12557)
* Add definition for deku

* Add deku/tsconfig.json

* Replace Action to any

* Fix test

* Fix exporting

* Rename deku.d.ts -> index.d.ts

* Remove unnecessary reference

* Change to more specific type

* Add private type: Dispatch
* dispatch: Function -> dispatch: Dispatch
* Remove duplicated overloading
* More specific type for createThunkElement

* Fix version

* Change interface Actions -> class Actions

* interface -> class
* Change return type of deku.diff.Actions.case
* Update test

* Change parameter type of deku.dom.update

* dispatch: Function -> dispatch: Dispatch
2016-11-10 05:47:55 -08:00
Scott(JuJiang)
1b5a083cdf update: more accurate types (#12562) 2016-11-10 21:21:47 +09:00
Scott(JuJiang)
0298c01966 update: add private member info and rename an interface (#12563) 2016-11-10 21:21:40 +09:00
Dan Manastireanu
19e5c2a094 Updated google.visualization with OrgChart. Closes #3687 (#12360) 2016-11-10 21:21:26 +09:00
Scott(JuJiang)
e2a78f7234 update: improve typings for some class methods (#12564) 2016-11-10 21:21:13 +09:00
John Reilly
5ea449f95a Merge pull request #12590 from Chudesnov/stateless-components-children
Allow children in stateless components’ props by default
2016-11-10 09:58:38 +00:00
valorize
e25ee6787a Alphabetized 2016-11-10 09:06:40 +01:00
Yui
02331b2a6d Merge pull request #11953 from joakimgunst/types-2.0
Fixed bugs in angular-permission 2.3.6 type defintions.
2016-11-09 17:29:13 -08:00
Yui
34253d060f Merge pull request #12551 from DanielRosenwasser/winston-default
Expose 'default' member on Winston
2016-11-09 17:23:13 -08:00
jeff
fbbc69d437 Fix typing for desc/describe/description. 2016-11-09 12:59:28 -08:00
jeff
f2094c6d27 Fix typings in yargs.
Fixed valid keys to the Options argument object.  Fixed a couple linting issues.
2016-11-09 11:14:54 -08:00
Alexander Chudesnov
6922165cbb Allow children in stateless components’ props
This allows passing children to `StatelessComponent<P>` exactly like base components without the need to use React.Props<T> or extending the P interface with an explicit 'children' property:

# Before
````typescript
    type FooProps = {
      bar: number;
    }
    const Foo: React.SFC<FooProps> = props => (
      <div>
        {props.children} = {props.bar} // error TS2459: Type 'FooProps' has no property 'children' and no string index signature.
      </div>
    );
````

# After
````typescript
    type FooProps = {
      bar: number;
    }
    const Foo: React.SFC<FooProps> = props => (
      <div>
        {props.children} = {props.bar}
      </div>
    );

    <Foo bar="42">6×9</Foo> // <div>6×9 = 42</div>
````
2016-11-09 21:58:54 +03:00
haoliangyu
5257be31cc update 2016-11-08 22:47:52 -05:00
thevtm
559095e6e2 Revert "[@types/mongoose] Declare a right type for _id" 2016-11-08 19:49:40 -02:00
Andy Hanson
c1b6039500 Upgrade angular-ui-router-uib-modal for types-2.0 2016-11-08 13:18:44 -08:00
Andy
b8c6cce444 Prefer es6 target and forceConsistentCasingInFileNames (#12537) 2016-11-08 12:59:26 -08:00
valorize
2b4f52b1eb Added collapseOnSelect 2016-11-08 20:43:26 +01:00
Bradford Wagner
215055b6c6 adding angular clipboard (#12458)
* adding angular clipboard

* adding tests

* fixing unit tests

* Update angular-clipboard-tests.ts

triggering build

* adhering to the no interface I convention

* just using a module now

* strictNullChecks: true, and removing declare module
2016-11-09 00:20:32 +09:00
Steve
77b51c349b updated typings (#12532)
* updated typings

* fix comments from PR
2016-11-09 00:17:47 +09:00
Steve
988774a261 bind ponyfill type def (#12559) 2016-11-09 00:17:25 +09:00
Philipp A
8b21b7adde Fixed StringProtocolCallback call signature (#12522) 2016-11-09 00:16:00 +09:00
Martin Sikora
9d945fb562 Added missing onStop() method. (#12558) 2016-11-09 00:15:41 +09:00
Brendan Forster
4bb4da0393 line argument is an object, not a primitive (#12393) 2016-11-09 00:12:49 +09:00
Ilya Kuznetsov
5f1b099130 [Types 2.0] Add Chai-spies (#12489)
* Types for chai-spies

* References for external dependencies were added

* chai-spies: reference to 'chai' typings was added
2016-11-09 00:06:35 +09:00
Jan Michael Alonzo
0052449e29 [Yargs] Allow Command modules to be passed into command fn (#12524)
* [Yargs] Allow Command modules to be passed into command fn

* [yargs] Remove I prefix in CommandModule

* [Yargs] Replace Array<> with string[]

* Make builder, command, describe optional; Handle (c, d, m) command signature
2016-11-09 00:03:45 +09:00
Linken Dinh
7f9ddef9b8 [types-2.0] react - better strict mode compatibility (#11935)
* strict mode compatible

* include 11931

* vsiao - code review

* vsiao - code review - revert complex cloneelement case

* validator to accept null

* remove double tests

* test use Error | null

* code reviews

* code reviews
2016-11-08 23:53:49 +09:00
Andy
ded43c0126 Make test files lowercase so they compile on linux (#12549) 2016-11-08 23:39:26 +09:00
Adam Cmiel
2f38649769 Types 2.0 (#12429)
* add missing members for token creation

add `createToken: (StripeTokenData) => Promise<StripeTokenResponse>` overload to StripeStatic
add `type: string` in StripeTokenResponse

* [FIX] response interfaces

* add apple pay

* [FIX] tests
2016-11-08 23:15:49 +09:00
Dan Manastireanu
8f06c382f0 Update ChartAnnotations in google.visualization. Closes #11828 (#12362) 2016-11-08 23:13:47 +09:00
Andy
67213581f3 Upgrade packages for types-2.0 (#12539) 2016-11-08 06:05:52 -08:00
Rasmus Prentow
93bb233648 Added missing method and missing param (#12403) 2016-11-08 22:59:28 +09:00