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/build/components/popover/index.js +1 -1
- package/build/components/tooltip/index.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/floating-ui/types.d.ts +1 -1
- package/src/components/popover/index.ts +1 -1
- package/src/components/tooltip/index.ts +1 -1
|
@@ -99,7 +99,7 @@ var _Popover = /** @class */ (function (_super) {
|
|
|
99
99
|
this._floatingUI = (0, floating_ui_1.FloatingUI)({
|
|
100
100
|
elContent: this._elContent,
|
|
101
101
|
elTarget: this.el,
|
|
102
|
-
options: __assign({ arrow: true, flip: true, shift: { padding: 5 } }, this.props.options),
|
|
102
|
+
options: __assign({ arrow: true, flip: true, shift: { padding: 5 }, trigger: "focus" }, this.props.options),
|
|
103
103
|
placement: this.props.placement,
|
|
104
104
|
show: this.props.show,
|
|
105
105
|
theme: this.props.type
|
|
@@ -243,7 +243,7 @@ var _Tooltip = /** @class */ (function (_super) {
|
|
|
243
243
|
className: "floating-tooltip",
|
|
244
244
|
elContent: this._elContent,
|
|
245
245
|
elTarget: this.el,
|
|
246
|
-
options: __assign({ arrow: true, flip: true, shift: { padding: 5 } }, this.props.options),
|
|
246
|
+
options: __assign({ arrow: true, flip: true, shift: { padding: 5 }, trigger: "focus" }, this.props.options),
|
|
247
247
|
show: this.props.show,
|
|
248
248
|
placement: this.props.placement,
|
|
249
249
|
theme: this.props.type
|