Masahiro Wakame
3cccf14497
Merge pull request #8445 from Burgov/angularcontrollerservice
...
fix ControllerService arguments
2016-03-11 00:38:52 +09:00
Masahiro Wakame
320639ffbb
Merge pull request #8429 from ashwin027/missingoption
...
Added missing property
2016-03-11 00:06:25 +09:00
Masahiro Wakame
58f6485525
Merge pull request #8428 from ashwin027/angularfix
...
Added an interface for IModelOptions.
2016-03-11 00:05:29 +09:00
Masahiro Wakame
046b3cf669
Merge pull request #8419 from DavidKDeutsch/angular
...
Making return types of $on and $watch more specific
2016-03-10 23:14:41 +09:00
Masahiro Wakame
8a88c85be0
Merge pull request #8150 from mmiszy/angular
...
Update AngularJS to 1.5
2016-03-10 22:26:45 +09:00
Bart van den Burg
69d2fb94a9
fix ControllerService arguments
...
See https://github.com/angular/angular.js/blob/v1.5.0-beta.0/src/ng/controller.js#L86
2016-03-08 18:13:20 +01:00
Ashwin
1c4a98f368
Added missing property
...
Added missing property in the IFormController interface
2016-03-07 23:29:19 -07:00
Ashwin
9864cb1709
Added an interface for IModelOptions.
...
Added an interface for IModelOptions.
2016-03-07 23:18:27 -07:00
David Deutsch
f5a9c4bd4c
Making return types of $on() and $watch() more specific
2016-03-07 10:47:18 -05:00
Matthew Hill
c2ae01b0b4
adds strictDi to angular.auto.IInjectorService
2016-03-02 14:37:48 +00:00
John Reilly
49a2473350
Update angular.d.ts
...
Added JSDoc for documented service methods
2016-03-01 13:52:51 +00:00
Michal Miszczyszyn
65347efe70
Update AngularJS to 1.5
2016-02-20 21:54:16 +01:00
Boris Prpic
1c4a34873c
Component controller can be array
...
angular.module(.....).component("componentName", {
controller: ["$rootScope",function($rootScope) {
}],
template: ....
}
2016-02-13 21:54:57 +01:00
Boris Prpic
7677a9f3aa
Update angular.d.ts
2016-02-13 02:30:12 +01:00
Boris Prpic
f8e2d6025e
Fixes require again
2016-02-08 00:04:14 +01:00
Boris Prpic
119c65b311
Fixed require
...
In component require works different from directive.
Now its Object
2016-02-08 00:00:17 +01:00
Boris Prpic
7b8b362742
Updates IComponentOptions for angular 1.5 components
...
As per https://docs.angularjs.org/guide/component
components does not support restrict or isolate but they do require
2016-02-07 21:11:51 +01:00
Masahiro Wakame
17ef404520
Merge pull request #7967 from jarnova/master
...
modified IDeferred resolve method to allow passing a promise of type …
2016-02-07 01:44:34 +09:00
Jarno Välkki
94095ef4ee
modified IDeferred resolve method to allow passing a promise of type T so a deferred can be resolved with a promise
2016-02-04 16:01:35 +02:00
romiem
c6ab786741
Update angular.d.ts
...
If splitting the config into seperate files, this constructor overload is useful. For example, you might need a RoutesConfig.ts file.
#### Example
##### RoutesConfig.ts
```
export class RoutesConfig {
static $inject = ['$stateProvider', '$urlRouterProvider', '$locationProvider'];
constructor (private $stateProvider: angular.ui.IStateProvider, private $urlRouterProvider: angular.ui.IUrlRouterProvider, private $locationProvider: ng.ILocationProvider) {
// Unmatched URLs, redirect to root
$urlRouterProvider.otherwise('/block');
$stateProvider
.state('home', {
url: '/',
template: '<route-home></route-home>'
});
$locationProvider.html5Mode(true);
}
}
```
##### Main.ts
```
import {RoutesConfig} from './common/RoutesConfig';
angular.module('myApp', [])
.config(RoutesConfig)
```
2016-02-02 16:22:59 +00:00
unknown
3bebbe1bae
Inline annotated function support added to service method on IProvideService\
2016-01-18 16:32:28 -03:00
David Reher
739b784dae
Merge remote-tracking branch 'upstream/master' into angular-component-router
...
Conflicts:
angularjs/angular.d.ts
2015-12-30 11:54:44 +01:00
David Reher
fa3a82e87f
AngularJS: add initial support for component router
2015-12-23 12:58:14 +01:00
Tushar Sonawane
f3eb60e55a
updating angular.component type as per doc
2015-12-23 15:47:37 +05:30
André Junges
c7f2c23618
Add support to .component from Angularjs 1.5
2015-12-15 23:00:36 -02:00
Masahiro Wakame
d633cdaf3b
Merge pull request #6953 from shlomiassaf/patch-1
...
Add resumeBootstrap to IAngularStatic
2015-12-01 22:41:34 +09:00
Shlomi Assaf
3efcdc3034
Add resumeBootstrap to IAngularStatic
2015-11-26 12:37:27 +02:00
Frode Egeland
c1f48f0958
Fix: IIntervalService missing optional function arguments
...
IIntervalService can take arguments to be passed to the function (`[Pass]`):
> $interval(fn, delay, [count], [invokeApply], [Pass]);
This adds this to the definition.
2015-11-24 11:07:51 +09:00
Masahiro Wakame
b2ce7b18d7
Merge pull request #6747 from vonderheide/master
...
Fix type of argument 'expression' of IFilterOrderBy to allow mixing functions and strings
2015-11-16 23:31:25 +09:00
Jens Vonderheide
58add5e554
Fix type of argument 'expression' of IFilterOrderBy to allow mixing functions
...
and strings
2015-11-13 14:37:32 +01:00
Konrad Cerny
1c1f9f790e
Added missing templateNamespace to ng.IDirective interface
2015-11-11 15:57:10 +01:00
Masahiro Wakame
b63b307ee0
Merge pull request #6422 from suvjunmd/typo
...
Fixed typo
2015-10-27 00:54:45 +09:00
Dmitri Suvorov
3c26c6546f
Fixed typo
2015-10-24 15:53:16 +03:00
Matthew Brown
5a66ad6d59
Correct Misspelled "IHttpRequestTransformer".
...
Was IHttpResquestTransformer.
2015-10-23 11:23:03 -04:00
Adi Dahiya
23fa2dbebe
Fix angular IAttributes#$normalize() definition
2015-10-06 13:08:22 -04:00
Masahiro Wakame
8c7a7d07c9
Merge pull request #6048 from marcogrcr/fix-angular-promises
...
Fixed angularjs promises then signature.
2015-10-06 23:26:42 +09:00
Masahiro Wakame
7ed11dd40a
Merge pull request #6164 from thorn0/angular.bootstrap
...
AngularJS: support calling angular.bootstrap on the document
2015-10-06 23:24:06 +09:00
thorn0
308f2c22ba
AngularJS: support calling angular.bootstrap on the document
2015-10-06 15:47:35 +03:00
vvakame
fd5384af52
Merge branch 'angular.bootstrap' of https://github.com/thorn0/DefinitelyTyped into thorn0-angular.bootstrap
2015-10-06 21:25:02 +09:00
vvakame
e9d73404c1
Merge branch 'angularjs-filter-service' of https://github.com/use-strict/DefinitelyTyped into use-strict-angularjs-filter-service
2015-10-06 21:18:48 +09:00
Masahiro Wakame
8d944280d5
Merge pull request #6037 from eugenpodaru/master
...
Fix to IFilterPredicateFunc<T>
2015-10-06 21:11:09 +09:00
Marco Gonzalez
419ee258a9
Merge branch 'master' into fix-angular-promises
...
Conflicts:
angularjs/angular-tests.ts
2015-10-05 11:10:36 -06:00
Masahiro Wakame
bd1a814ded
Merge pull request #6049 from marcogrcr/add-qservice-when-method
...
Added resolve method to angular.IQService.
2015-10-06 01:49:04 +09:00
thorn0
1137ef6d10
AngularJS: Fix the signature for angular.bootstrap
...
see https://code.angularjs.org/1.4.0/docs/api/ng/function/angular.bootstrap
2015-10-01 23:41:36 +03:00
Marco Gonzalez
fe917d27e9
Added resolve method to angular.IQService.
2015-09-28 21:00:52 -06:00
Marco Gonzalez
43e1df30c9
Fixed angularjs promises then signature.
2015-09-28 20:02:56 -06:00
Eugen Podaru
8b88d55ef1
Changed IFilterPredicateFunc<T> to return boolean instead of T[] as per angular docs ( https://docs.angularjs.org/api/ng/filter/filter )
2015-09-28 15:13:49 +02:00
Shahar Talmi
ac1292d9fc
Add missing literal/constant properties in ICompiledExpression
...
As documented in https://docs.angularjs.org/api/ng/service/$parse
2015-09-28 01:34:30 +03:00
Masahiro Wakame
9128dfc748
Merge pull request #5669 from use-strict/master
...
angular.d.ts - type safety for $controller
2015-09-27 12:19:09 +09:00
Ciuca, Alexandru
21c2982f94
angularjs - fix signatures for filter service
2015-09-22 14:21:29 +03:00