gd-bs 5.2.5 → 5.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.2.5",
3
+ "version": "5.2.6",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -47,7 +47,8 @@ class _TooltipGroup extends Base<ITooltipGroupProps> implements ITooltipGroup {
47
47
  for (let i = 0; i < tooltips.length; i++) {
48
48
  let tooltipProps = tooltips[i];
49
49
 
50
- // Set the property
50
+ // Set the properties
51
+ tooltipProps.placement = tooltipProps.placement || this.props.tooltipPlacement;
51
52
  tooltipProps.type = tooltipProps.type || this.props.tooltipType;
52
53
 
53
54
  // See if the button props exists
@@ -71,5 +71,6 @@ export interface ITooltipGroupProps extends IBaseProps<ITooltipGroup> {
71
71
  isSmall?: boolean;
72
72
  isVertical?: boolean;
73
73
  label?: string;
74
+ tooltipPlacement?: number;
74
75
  tooltipType?: number;
75
76
  }