From 456fe610d90e38d011c937397b83f0fdb7e44fb6 Mon Sep 17 00:00:00 2001 From: Brian Surowiec Date: Sun, 2 Aug 2015 19:45:56 -0400 Subject: [PATCH] Update to angular ui bootstrap v.0.13.2 --- angular-ui-bootstrap/angular-ui-bootstrap-tests.ts | 1 + angular-ui-bootstrap/angular-ui-bootstrap.d.ts | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts b/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts index 910cf0eff7..4fd231073a 100644 --- a/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts +++ b/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts @@ -99,6 +99,7 @@ testApp.config(( $ratingConfig.max = 10; $ratingConfig.stateOff = 'rating-state-off'; $ratingConfig.stateOn = 'rating-state-on'; + $ratingConfig.titles = ['1', '2', '3', '4', '5']; /** diff --git a/angular-ui-bootstrap/angular-ui-bootstrap.d.ts b/angular-ui-bootstrap/angular-ui-bootstrap.d.ts index 95388aada1..6ed8be8e3e 100644 --- a/angular-ui-bootstrap/angular-ui-bootstrap.d.ts +++ b/angular-ui-bootstrap/angular-ui-bootstrap.d.ts @@ -1,4 +1,4 @@ -// Type definitions for Angular UI Bootstrap 0.13.1 +// Type definitions for Angular UI Bootstrap 0.13.2 // Project: https://github.com/angular-ui/bootstrap // Definitions by: Brian Surowiec // Definitions: https://github.com/borisyankov/DefinitelyTyped @@ -555,6 +555,13 @@ declare module angular.ui.bootstrap { * @default: null */ stateOff?: string; + + /** + * An array of strings defining titles for all icons. + * + * @default: ["one", "two", "three", "four", "five"] + */ + titles?: Array; }