diff --git a/bower.json b/bower.json
index e6901a433..0476710f4 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-patternfly",
- "version": "3.3.3",
+ "version": "3.3.4",
"authors": [
"Red Hat"
],
@@ -39,7 +39,7 @@
"angular-sanitize": "1.3.0 - 1.5.*",
"angular-bootstrap": "0.13.x",
"lodash": "3.x",
- "patternfly": "~3.3.3"
+ "patternfly": "~3.3.4"
},
"devDependencies": {
"angular-mocks": "1.3.0 - 1.5.*"
diff --git a/dist/docs/css/angular-patternfly.css b/dist/docs/css/angular-patternfly.css
index 19b1e3e8d..acb542383 100644
--- a/dist/docs/css/angular-patternfly.css
+++ b/dist/docs/css/angular-patternfly.css
@@ -31,6 +31,11 @@
padding: 0 20px 0;
}
+.card-pf-icon-image {
+ height: 18px;
+ margin: 0 5px 5px;
+}
+
.empty-chart-content {
text-align: center;
}
diff --git a/dist/docs/css/patternfly-additions.css b/dist/docs/css/patternfly-additions.css
index 5d388d145..951face89 100644
--- a/dist/docs/css/patternfly-additions.css
+++ b/dist/docs/css/patternfly-additions.css
@@ -2825,9 +2825,7 @@ table.datatable thead .sorting_desc_disabled {
}
table.datatable thead .sorting_asc,
table.datatable thead .sorting_desc {
- border: 0;
color: #0099d3 !important;
- display: block;
position: relative;
}
table.datatable thead .sorting_asc:after,
diff --git a/dist/docs/grunt-scripts/angular-animate.js b/dist/docs/grunt-scripts/angular-animate.js
index c30fed7b5..1aa4ed80d 100644
--- a/dist/docs/grunt-scripts/angular-animate.js
+++ b/dist/docs/grunt-scripts/angular-animate.js
@@ -1,9 +1,9 @@
/**
- * @license AngularJS v1.5.3
+ * @license AngularJS v1.5.5
* (c) 2010-2016 Google, Inc. http://angularjs.org
* License: MIT
*/
-(function(window, angular, undefined) {'use strict';
+(function(window, angular) {'use strict';
/* jshint ignore:start */
var noop = angular.noop;
@@ -2317,7 +2317,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
}
// IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259.
- var contains = Node.prototype.contains || function(arg) {
+ var contains = window.Node.prototype.contains || function(arg) {
// jshint bitwise: false
return this === arg || !!(this.compareDocumentPosition(arg) & 16);
// jshint bitwise: true
@@ -2342,6 +2342,23 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
return matches;
}
+ function filterFromRegistry(list, matchContainer, matchCallback) {
+ var containerNode = extractElementNode(matchContainer);
+ return list.filter(function(entry) {
+ var isMatch = entry.node === containerNode &&
+ (!matchCallback || entry.callback === matchCallback);
+ return !isMatch;
+ });
+ }
+
+ function cleanupEventListeners(phase, element) {
+ if (phase === 'close' && !element[0].parentNode) {
+ // If the element is not attached to a parentNode, it has been removed by
+ // the domOperation, and we can safely remove the event callbacks
+ $animate.off(element);
+ }
+ }
+
var $animate = {
on: function(event, container, callback) {
var node = extractElementNode(container);
@@ -2353,26 +2370,33 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
// Remove the callback when the element is removed from the DOM
jqLite(container).on('$destroy', function() {
- $animate.off(event, container, callback);
+ var animationDetails = activeAnimationsLookup.get(node);
+
+ if (!animationDetails) {
+ // If there's an animation ongoing, the callback calling code will remove
+ // the event listeners. If we'd remove here, the callbacks would be removed
+ // before the animation ends
+ $animate.off(event, container, callback);
+ }
});
},
off: function(event, container, callback) {
+ if (arguments.length === 1 && !angular.isString(arguments[0])) {
+ container = arguments[0];
+ for (var eventType in callbackRegistry) {
+ callbackRegistry[eventType] = filterFromRegistry(callbackRegistry[eventType], container);
+ }
+
+ return;
+ }
+
var entries = callbackRegistry[event];
if (!entries) return;
callbackRegistry[event] = arguments.length === 1
? null
: filterFromRegistry(entries, container, callback);
-
- function filterFromRegistry(list, matchContainer, matchCallback) {
- var containerNode = extractElementNode(matchContainer);
- return list.filter(function(entry) {
- var isMatch = entry.node === containerNode &&
- (!matchCallback || entry.callback === matchCallback);
- return !isMatch;
- });
- }
},
pin: function(element, parentElement) {
@@ -2486,12 +2510,14 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
var isStructural = ['enter', 'move', 'leave'].indexOf(event) >= 0;
+ var documentHidden = $document[0].hidden;
+
// this is a hard disable of all animations for the application or on
// the element itself, therefore there is no need to continue further
// past this point if not enabled
// Animations are also disabled if the document is currently hidden (page is not visible
// to the user), because browsers slow down or do not flush calls to requestAnimationFrame
- var skipAnimations = !animationsEnabled || $document[0].hidden || disabledElementsLookup.get(node);
+ var skipAnimations = !animationsEnabled || documentHidden || disabledElementsLookup.get(node);
var existingAnimation = (!skipAnimations && activeAnimationsLookup.get(node)) || {};
var hasExistingAnimation = !!existingAnimation.state;
@@ -2502,7 +2528,10 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
}
if (skipAnimations) {
+ // Callbacks should fire even if the document is hidden (regression fix for issue #14120)
+ if (documentHidden) notifyProgress(runner, event, 'start');
close();
+ if (documentHidden) notifyProgress(runner, event, 'close');
return runner;
}
@@ -2652,6 +2681,11 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
markElementAnimationState(element, RUNNING_STATE);
var realRunner = $$animation(element, event, animationDetails.options);
+ // this will update the runner's flow-control events based on
+ // the `realRunner` object.
+ runner.setHost(realRunner);
+ notifyProgress(runner, event, 'start', {});
+
realRunner.done(function(status) {
close(!status);
var animationDetails = activeAnimationsLookup.get(node);
@@ -2660,11 +2694,6 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
}
notifyProgress(runner, event, 'close', {});
});
-
- // this will update the runner's flow-control events based on
- // the `realRunner` object.
- runner.setHost(realRunner);
- notifyProgress(runner, event, 'start', {});
});
return runner;
@@ -2681,7 +2710,10 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
forEach(callbacks, function(callback) {
callback(element, phase, data);
});
+ cleanupEventListeners(phase, element);
});
+ } else {
+ cleanupEventListeners(phase, element);
}
});
runner.progress(event, phase, data);
@@ -3486,7 +3518,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
*
* Show and hide me
*
- *
+ *
*
* ');
\ No newline at end of file
diff --git a/dist/docs/grunt-scripts/bootstrap-combobox.js b/dist/docs/grunt-scripts/bootstrap-combobox.js
index af5dc0d5f..70725b183 100644
--- a/dist/docs/grunt-scripts/bootstrap-combobox.js
+++ b/dist/docs/grunt-scripts/bootstrap-combobox.js
@@ -1,5 +1,5 @@
/* =============================================================
- * bootstrap-combobox.js v1.1.6
+ * bootstrap-combobox.js v1.1.7
* =============================================================
* Copyright 2012 Daniel Farrell
*
@@ -25,13 +25,13 @@
var Combobox = function ( element, options ) {
this.options = $.extend({}, $.fn.combobox.defaults, options);
+ this.template = this.options.template || this.template
this.$source = $(element);
this.$container = this.setup();
this.$element = this.$container.find('input[type=text]');
this.$target = this.$container.find('input[type=hidden]');
this.$button = this.$container.find('.dropdown-toggle');
this.$menu = $(this.options.menu).appendTo('body');
- this.template = this.options.template || this.template
this.matcher = this.options.matcher || this.matcher;
this.sorter = this.options.sorter || this.sorter;
this.highlighter = this.options.highlighter || this.highlighter;
@@ -97,6 +97,9 @@
, transferAttributes: function() {
this.options.placeholder = this.$source.attr('data-placeholder') || this.options.placeholder
+ if(this.options.appendId !== "undefined") {
+ this.$element.attr('id', this.$source.attr('id') + this.options.appendId);
+ }
this.$element.attr('placeholder', this.options.placeholder)
this.$target.prop('name', this.$source.prop('name'))
this.$target.val(this.$source.val())
@@ -175,9 +178,9 @@
, template: function() {
if (this.options.bsVersion == '2') {
- return ''
+ return ''
} else {
- return ''
+ return ''
}
}
@@ -327,17 +330,34 @@
case 38: // up arrow
e.preventDefault();
this.prev();
+ this.fixMenuScroll();
break;
case 40: // down arrow
e.preventDefault();
this.next();
+ this.fixMenuScroll();
break;
}
e.stopPropagation();
}
+ , fixMenuScroll: function(){
+ var active = this.$menu.find('.active');
+ if(active.length){
+ var top = active.position().top;
+ var bottom = top + active.height();
+ var scrollTop = this.$menu.scrollTop();
+ var menuHeight = this.$menu.height();
+ if(bottom > menuHeight){
+ this.$menu.scrollTop(scrollTop + bottom - menuHeight);
+ } else if(top < 0){
+ this.$menu.scrollTop(scrollTop + top);
+ }
+ }
+ }
+
, keydown: function (e) {
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27]);
this.move(e);
@@ -351,6 +371,10 @@
, keyup: function (e) {
switch(e.keyCode) {
case 40: // down arrow
+ if (!this.shown){
+ this.toggle();
+ }
+ break;
case 39: // right arrow
case 38: // up arrow
case 37: // left arrow
diff --git a/dist/docs/js/docs-setup.js b/dist/docs/js/docs-setup.js
index 7fcc4bc2f..67209e3ba 100644
--- a/dist/docs/js/docs-setup.js
+++ b/dist/docs/js/docs-setup.js
@@ -19,7 +19,7 @@ NG_DOCS={
"type": "directive",
"moduleName": "patternfly.card",
"shortDescription": "Directive for easily displaying status information",
- "keywords": "$scope adipiscing aggregate aggstatusalt alt-layout alternate alternative angular api array border card carddemoctrl class clicks col-md-10 configuration controller count counts depreciated directive display displaying displays easily equals fa fa-shield false function hides href html icon iconclass icons js layout layouts left list-style-type main mini miniaggstatus miniaggstatus2 module navigate ng-controller nodes normal note notification notifications number object param patternfly pf-aggregate-status-card pficon pficon-cluster pficon-container-node pficon-error-circle-o pficon-kubernetes pficon-ok pficon-openshift pficon-warning-triangle-o providers script show-top-border single status statuses style tall title top true"
+ "keywords": "$scope adipiscing aggregate aggstatusalt alt-layout alternate alternative angular api array border card carddemoctrl class clicks col-md-10 configuration controller count counts depreciated directive display displaying displays easily equals fa fa-shield false function hides href html icon iconclass iconimage icons image img js layout layouts left list-style-type main mini miniaggstatus miniaggstatus2 module navigate ng-controller nodes normal note notification notifications number object param patternfly pf-aggregate-status-card pficon pficon-cluster pficon-container-node pficon-error-circle-o pficon-ok pficon-warning-triangle-o providers script show-top-border single status statuses style svg tall title top true"
},
{
"section": "api",
@@ -82,7 +82,7 @@ NG_DOCS={
"type": "directive",
"moduleName": "patternfly.charts",
"shortDescription": "Directive for rendering a line chart.",
- "keywords": "$scope adddatapoint angular api area array arrays axis bind blue c3 chart chart-data chartctrl chartdata chartid charts checkbox checkbox-inline class col-md-12 col-md-3 col-md-6 color colorpalette config configuration container contents controller created custareachart custshowxaxis custshowyaxis d-- data dates default deleted directive display element elements exampleline exist false form form-group full function functions gb generation gettime green grid html http js label legend length list list-style-type markup mhz module ng-click ng-controller ng-model optional options org override overrides patternfly pf-line-chart pfutils point points properties push random rendering return role round row script second set-area-chart setareachart setting settings show-x-axis show-y-axis showing showxaxis showyaxis size style today tooltip tooltipfn tooltiptype type unit units values var width xdata ydata ydata0 ydata1"
+ "keywords": "$scope adddatapoint angular api area array arrays axis bind blue c3 chart chart-data chartctrl chartdata chartid charts checkbox checkbox-inline class col-md-12 col-md-3 col-md-6 color colorpalette config configuration container contents controller created custareachart custshowxaxis custshowyaxis d-- data dataavailable dates default deleted directive display element elements exampleline exist false form form-group full function functions gb generation gettime green grid html http js label legend length list list-style-type markup mhz module ng-click ng-controller ng-model optional options org override overrides patternfly pf-line-chart pfutils point points properties push random rendering return role round row script second set-area-chart setareachart setting settings show-x-axis show-y-axis showing showxaxis showyaxis size style today tooltip tooltipfn tooltiptype true type unit units values var width xdata ydata ydata0 ydata1"
},
{
"section": "api",
@@ -226,7 +226,7 @@ NG_DOCS={
"type": "directive",
"moduleName": "patternfly.sort",
"shortDescription": "Directive for a sort component",
- "keywords": "$scope alpha alright angular api ascending beautiful call cfme-row-column change cheap class col-md-12 col-md-3 comparefn component compvalue config configuration controller count current currentfield descending description direction directive display events-label example-container examplesort excellent false fantastic field fields forever function good horrible html isascending item item1 item2 items js lasts list list-style-type localecompare module ng-controller ng-repeat nice numeric onsortchange params patternfly pf-sort return row script settings sort sortable sortchange sortconfig sortdirection sortid sorttype stuff style title true type unique var viewctrl"
+ "keywords": "$scope alpha alright angular api ascending beautiful call cfme-row-column change cheap class col-md-12 col-md-3 comparefn component compvalue config configuration controller count current currentfield currently descending description direction directive display events-label example-container examplesort excellent false fantastic field fields forever function good horrible html isascending item item1 item2 items js lasts list list-style-type localecompare module ng-controller ng-repeat nice numeric onsortchange params patternfly pf-sort return row script selected settings sort sortable sortchange sortconfig sortdirection sorttype stuff style title true type unique var viewctrl"
},
{
"section": "api",
diff --git a/dist/docs/partials/api/patternfly.autofocus.pfFocused.html b/dist/docs/partials/api/patternfly.autofocus.pfFocused.html
index cb48ed959..7ccd6c9b8 100644
--- a/dist/docs/partials/api/patternfly.autofocus.pfFocused.html
+++ b/dist/docs/partials/api/patternfly.autofocus.pfFocused.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFocused
+ Improve this doc View sourcepfFocused
directive in module patternfly
diff --git a/dist/docs/partials/api/patternfly.card.directive.pfAggregateStatusCard.html b/dist/docs/partials/api/patternfly.card.directive.pfAggregateStatusCard.html
index 333232bba..26636815b 100644
--- a/dist/docs/partials/api/patternfly.card.directive.pfAggregateStatusCard.html
+++ b/dist/docs/partials/api/patternfly.card.directive.pfAggregateStatusCard.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfAggregateStatusCard
+ Improve this doc View sourcepfAggregateStatusCard
directive in module patternfly.card
@@ -21,9 +21,11 @@ Parameters
ParametersExample
"count":3,
"notifications":[
{
- "iconClass":"pficon pficon-openshift",
+ "iconImage":"img/kubernetes.svg",
"count":1,
"href":"#"
},
{
- "iconClass":"pficon pficon-kubernetes",
+ "iconImage":"img/OpenShift-logo.svg",
"count":2,
"href":"#"
}
diff --git a/dist/docs/partials/api/patternfly.card.directive.pfCard - Timeframe Filters.html b/dist/docs/partials/api/patternfly.card.directive.pfCard - Timeframe Filters.html
index 29232c52e..cf17ea2c3 100644
--- a/dist/docs/partials/api/patternfly.card.directive.pfCard - Timeframe Filters.html
+++ b/dist/docs/partials/api/patternfly.card.directive.pfCard - Timeframe Filters.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfCard - Timeframe Filters
+ Improve this doc View sourcepfCard - Timeframe Filters
directive in module patternfly.card
diff --git a/dist/docs/partials/api/patternfly.card.directive.pfCard - Trends.html b/dist/docs/partials/api/patternfly.card.directive.pfCard - Trends.html
index 932d6a1e6..1c4047af6 100644
--- a/dist/docs/partials/api/patternfly.card.directive.pfCard - Trends.html
+++ b/dist/docs/partials/api/patternfly.card.directive.pfCard - Trends.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfCard - Trends
+ Improve this doc View sourcepfCard - Trends
directive in module patternfly.card
diff --git a/dist/docs/partials/api/patternfly.card.directive.pfCard - Utilization.html b/dist/docs/partials/api/patternfly.card.directive.pfCard - Utilization.html
index 5dcf43506..c552829fb 100644
--- a/dist/docs/partials/api/patternfly.card.directive.pfCard - Utilization.html
+++ b/dist/docs/partials/api/patternfly.card.directive.pfCard - Utilization.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfCard - Utilization
+ Improve this doc View sourcepfCard - Utilization
directive in module patternfly.card
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfC3Chart.html b/dist/docs/partials/api/patternfly.charts.directive.pfC3Chart.html
index 1c5f7c452..5db6f4bd5 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfC3Chart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfC3Chart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfC3Chart
+ Improve this doc View sourcepfC3Chart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfDonutPctChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfDonutPctChart.html
index 85d9e214f..5d3cc5712 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfDonutPctChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfDonutPctChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfDonutPctChart
+ Improve this doc View sourcepfDonutPctChart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfHeatMap.html b/dist/docs/partials/api/patternfly.charts.directive.pfHeatMap.html
index bf494acdb..b6375e6f7 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfHeatMap.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfHeatMap.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfHeatMap
+ Improve this doc View sourcepfHeatMap
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfLineChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfLineChart.html
index f4a145d2c..921d8982f 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfLineChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfLineChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfLineChart
+ Improve this doc View sourcepfLineChart
directive in module patternfly.charts
@@ -73,6 +73,19 @@ Example
+
@@ -95,6 +108,7 @@ Example
}
$scope.data = {
+ dataAvailable: true,
xData: dates,
yData0: ['Created', 12, 10,10, 62, 17, 10, 15, 13, 17, 10, 12, 10, 10, 12, 17, 16, 15, 13, 17, 10],
yData1: ['Deleted', 10, 17, 76,14, 10, 10, 10, 10, 10, 10, 10, 17, 17, 14, 10, 10, 10, 10, 10, 10]
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfSparklineChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfSparklineChart.html
index dbebd45b1..e51721ed7 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfSparklineChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfSparklineChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfSparklineChart
+ Improve this doc View sourcepfSparklineChart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfTrendsChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfTrendsChart.html
index 242676cdd..962b9a560 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfTrendsChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfTrendsChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfTrendsChart
+ Improve this doc View sourcepfTrendsChart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationBarChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationBarChart.html
index 541dd408e..47f2fe10e 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationBarChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationBarChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfUtilizationBarChart
+ Improve this doc View sourcepfUtilizationBarChart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationTrendChart.html b/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationTrendChart.html
index 999f15d77..4a6c9ec35 100644
--- a/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationTrendChart.html
+++ b/dist/docs/partials/api/patternfly.charts.directive.pfUtilizationTrendChart.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfUtilizationTrendChart
+ Improve this doc View sourcepfUtilizationTrendChart
directive in module patternfly.charts
diff --git a/dist/docs/partials/api/patternfly.filters.directive.pfFilter.html b/dist/docs/partials/api/patternfly.filters.directive.pfFilter.html
index 2bf850704..a29e98523 100644
--- a/dist/docs/partials/api/patternfly.filters.directive.pfFilter.html
+++ b/dist/docs/partials/api/patternfly.filters.directive.pfFilter.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFilter
+ Improve this doc View sourcepfFilter
directive in module patternfly.filters
diff --git a/dist/docs/partials/api/patternfly.filters.directive.pfFilterFields.html b/dist/docs/partials/api/patternfly.filters.directive.pfFilterFields.html
index f15412eb8..01680fd40 100644
--- a/dist/docs/partials/api/patternfly.filters.directive.pfFilterFields.html
+++ b/dist/docs/partials/api/patternfly.filters.directive.pfFilterFields.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFilterFields
+ Improve this doc View sourcepfFilterFields
directive in module patternfly.filters
diff --git a/dist/docs/partials/api/patternfly.filters.directive.pfFilterResults.html b/dist/docs/partials/api/patternfly.filters.directive.pfFilterResults.html
index d77b3fe3f..1512b6c26 100644
--- a/dist/docs/partials/api/patternfly.filters.directive.pfFilterResults.html
+++ b/dist/docs/partials/api/patternfly.filters.directive.pfFilterResults.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFilterResults
+ Improve this doc View sourcepfFilterResults
directive in module patternfly.filters
diff --git a/dist/docs/partials/api/patternfly.form.directive.pfDatepicker.html b/dist/docs/partials/api/patternfly.form.directive.pfDatepicker.html
index 72a1d6639..e7bafa0c3 100644
--- a/dist/docs/partials/api/patternfly.form.directive.pfDatepicker.html
+++ b/dist/docs/partials/api/patternfly.form.directive.pfDatepicker.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfDatepicker
+ Improve this doc View sourcepfDatepicker
directive in module patternfly.form
diff --git a/dist/docs/partials/api/patternfly.form.directive.pfFormButtons.html b/dist/docs/partials/api/patternfly.form.directive.pfFormButtons.html
index 418351cf3..a185b1c2d 100644
--- a/dist/docs/partials/api/patternfly.form.directive.pfFormButtons.html
+++ b/dist/docs/partials/api/patternfly.form.directive.pfFormButtons.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFormButtons
+ Improve this doc View sourcepfFormButtons
directive in module patternfly.form
diff --git a/dist/docs/partials/api/patternfly.form.directive.pfFormGroup.html b/dist/docs/partials/api/patternfly.form.directive.pfFormGroup.html
index 9ecc06f72..83fe0e107 100644
--- a/dist/docs/partials/api/patternfly.form.directive.pfFormGroup.html
+++ b/dist/docs/partials/api/patternfly.form.directive.pfFormGroup.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfFormGroup
+ Improve this doc View sourcepfFormGroup
directive in module patternfly.form
diff --git a/dist/docs/partials/api/patternfly.form.directive.pfRemainingCharsCount.html b/dist/docs/partials/api/patternfly.form.directive.pfRemainingCharsCount.html
index 4bbc136e2..540c3e8e8 100644
--- a/dist/docs/partials/api/patternfly.form.directive.pfRemainingCharsCount.html
+++ b/dist/docs/partials/api/patternfly.form.directive.pfRemainingCharsCount.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfRemainingCharsCount
+ Improve this doc View sourcepfRemainingCharsCount
directive in module patternfly.form
diff --git a/dist/docs/partials/api/patternfly.notification.Notification.html b/dist/docs/partials/api/patternfly.notification.Notification.html
index e7c157cad..1abbf3b91 100644
--- a/dist/docs/partials/api/patternfly.notification.Notification.html
+++ b/dist/docs/partials/api/patternfly.notification.Notification.html
@@ -1,4 +1,4 @@
- Improve this doc View sourceNotification
+ Improve this doc View sourceNotification
service in module patternfly.notification
diff --git a/dist/docs/partials/api/patternfly.notification.directive.pfInlineNotification.html b/dist/docs/partials/api/patternfly.notification.directive.pfInlineNotification.html
index 0db966607..e9d214ecb 100644
--- a/dist/docs/partials/api/patternfly.notification.directive.pfInlineNotification.html
+++ b/dist/docs/partials/api/patternfly.notification.directive.pfInlineNotification.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfInlineNotification
+ Improve this doc View sourcepfInlineNotification
directive in module patternfly.notification
diff --git a/dist/docs/partials/api/patternfly.notification.directive.pfNotificationList.html b/dist/docs/partials/api/patternfly.notification.directive.pfNotificationList.html
index 96274815f..c23720ccc 100644
--- a/dist/docs/partials/api/patternfly.notification.directive.pfNotificationList.html
+++ b/dist/docs/partials/api/patternfly.notification.directive.pfNotificationList.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfNotificationList
+ Improve this doc View sourcepfNotificationList
directive in module patternfly.notification
diff --git a/dist/docs/partials/api/patternfly.select.pfSelect.html b/dist/docs/partials/api/patternfly.select.pfSelect.html
index 70e6d01e3..747517153 100644
--- a/dist/docs/partials/api/patternfly.select.pfSelect.html
+++ b/dist/docs/partials/api/patternfly.select.pfSelect.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfSelect
+ Improve this doc View sourcepfSelect
directive in module patternfly
diff --git a/dist/docs/partials/api/patternfly.sort.directive.pfSort.html b/dist/docs/partials/api/patternfly.sort.directive.pfSort.html
index 31ba2ee85..bfd432eb8 100644
--- a/dist/docs/partials/api/patternfly.sort.directive.pfSort.html
+++ b/dist/docs/partials/api/patternfly.sort.directive.pfSort.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfSort
+ Improve this doc View sourcepfSort
directive in module patternfly.sort
@@ -20,7 +20,7 @@ Parameters
Improve this doc View sourcepfToolbar
+ Improve this doc View sourcepfToolbar
directive in module patternfly.toolbars
diff --git a/dist/docs/partials/api/patternfly.utils.directive.pfTransclude.html b/dist/docs/partials/api/patternfly.utils.directive.pfTransclude.html
index 2c7b4608c..0e8483bdc 100644
--- a/dist/docs/partials/api/patternfly.utils.directive.pfTransclude.html
+++ b/dist/docs/partials/api/patternfly.utils.directive.pfTransclude.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfTransclude
+ Improve this doc View sourcepfTransclude
directive in module patternfly.utils
diff --git a/dist/docs/partials/api/patternfly.validation.pfValidation.html b/dist/docs/partials/api/patternfly.validation.pfValidation.html
index ca1ad93d0..bd7ce058f 100644
--- a/dist/docs/partials/api/patternfly.validation.pfValidation.html
+++ b/dist/docs/partials/api/patternfly.validation.pfValidation.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfValidation
+ Improve this doc View sourcepfValidation
directive in module patternfly
diff --git a/dist/docs/partials/api/patternfly.views.directive.pfCardView.html b/dist/docs/partials/api/patternfly.views.directive.pfCardView.html
index a6fdec4a1..3eed7e404 100644
--- a/dist/docs/partials/api/patternfly.views.directive.pfCardView.html
+++ b/dist/docs/partials/api/patternfly.views.directive.pfCardView.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfCardView
+ Improve this doc View sourcepfCardView
directive in module patternfly.views
diff --git a/dist/docs/partials/api/patternfly.views.directive.pfListView.html b/dist/docs/partials/api/patternfly.views.directive.pfListView.html
index 8d054a81b..87fe836d8 100644
--- a/dist/docs/partials/api/patternfly.views.directive.pfListView.html
+++ b/dist/docs/partials/api/patternfly.views.directive.pfListView.html
@@ -1,4 +1,4 @@
- Improve this doc View sourcepfListView
+ Improve this doc View sourcepfListView
directive in module patternfly.views
diff --git a/package.json b/package.json
index 8ba317dfb..96fb13cb3 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"author": "Red Hat",
"name": "angular-patternfly",
- "version": "3.3.3",
+ "version": "3.3.4",
"license": "Apache-2.0",
"description": "Angular extension of the PatternFly project.",
"homepage": "https://github.com/patternfly/angular-patternfly",