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>
````
* 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
* [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
* EaselJS: add propagationStopped and relatedTarget to MouseEvent
* remove propagationStopped from MouseEvent
it should rather be in createjs-lib.d.ts Event definition
* [Chore]: Bump minor version number in definitons header
* [Chore]: Bump minor version of `@types/d3-geo` dependency in package.json to 1.3
* [Chore]: Bump minor version of `@types/d3-voronoi` dependency in package.json to 1.1
* (d3-geo): Update to 1.3.1 and JSDoc
* [Chore] Updated definitions to conform to version 1.3.1
* [Feature] Added `geoIdentity()` and removed `geoClipExtent()`
* [Feature ] Added geoGraticule10()
* [Update] Changed API for `geoPath(...)`
* [Enhancement] Complete overhaul of JSDoc comments
* [Chore] Some changes to sequencing of definitions
* [Fix]: Fixed GeoPath pointRadius() Accessor (getter may return constant number or accessor function.
* [Fix] GeoPath generator may return string (SVG path string) or undefined (when called with rendering context)
*
* (d3-geo) Test Updates
* Add test for `geoGraticule10()`
* Remove tests for `geoClipExtent()`
* Add tests for `geoIdentity()`
* Fixed clipExtent tests to include explicit union with `null` type for return value of getter
* Fixed pointRadius getter test on geoPath to allow for accessor or number to be returned by getter
* (d3-geo) Tests Additional
* Add some more tests for new geoPath(...) API
add following options to the bootstrap-datepicker/DatepickerOptions. Also update the options url to point to the correct URL.
templates?: any;
zIndexOffset?: number;
showOnFocus?: boolean;
immediateUpdates?: boolean;
title?: string;