gd-bs 6.6.94 → 6.6.96

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": "6.6.94",
3
+ "version": "6.6.96",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -16,7 +16,7 @@ export interface IFloatingUIOptions {
16
16
  arrow?: boolean;
17
17
  autoPlacement?: boolean | any;
18
18
  className?: string;
19
- content?: string;
19
+ content?: string | Element;
20
20
  flip?: boolean | any;
21
21
  hide?: boolean | any;
22
22
  inline?: boolean | any;
@@ -81,7 +81,7 @@ class _Popover extends Base<IPopoverProps> implements IPopover {
81
81
  elContent: this._elContent,
82
82
  elTarget: this.el,
83
83
  options: {
84
- ...{ arrow: true, flip: true, shift: { padding: 5 } },
84
+ ...{ arrow: true, flip: true, shift: { padding: 5 }, trigger: "focus" },
85
85
  ...this.props.options
86
86
  },
87
87
  placement: this.props.placement,
@@ -235,7 +235,7 @@ class _Tooltip extends Base<ITooltipProps> {
235
235
  elContent: this._elContent,
236
236
  elTarget: this.el,
237
237
  options: {
238
- ...{ arrow: true, flip: true, shift: { padding: 5 } },
238
+ ...{ arrow: true, flip: true, shift: { padding: 5 }, trigger: "focus" },
239
239
  ...this.props.options
240
240
  },
241
241
  show: this.props.show,