gd-bs 6.0.3 → 6.0.4
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/bs.js +1 -1
- package/build/components/popover/index.js +10 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +292 -268
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +287 -263
- package/dist/gd-bs.min.js +1 -1
- package/package.json +15 -15
- package/pnpm-lock.yaml +630 -643
- package/src/components/common.ts +1 -1
- package/src/components/popover/index.ts +10 -1
|
@@ -209,7 +209,16 @@ var _Popover = /** @class */ (function (_super) {
|
|
|
209
209
|
interactive: true,
|
|
210
210
|
placement: placement,
|
|
211
211
|
plugins: [tippy_js_1.animateFill, tippy_js_1.followCursor, tippy_js_1.inlinePositioning, tippy_js_1.sticky],
|
|
212
|
-
theme: theme
|
|
212
|
+
theme: theme,
|
|
213
|
+
popperOptions: {
|
|
214
|
+
modifiers: [{
|
|
215
|
+
name: "preventOverflow",
|
|
216
|
+
options: {
|
|
217
|
+
altAxis: true,
|
|
218
|
+
tether: false
|
|
219
|
+
}
|
|
220
|
+
}]
|
|
221
|
+
}
|
|
213
222
|
}, this.props.options);
|
|
214
223
|
// See if we are targeting an element
|
|
215
224
|
var elPopover = null;
|