bkui-vue 0.0.2-beta.4 → 0.0.2-beta.5
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +8 -1
- package/dist/index.umd.js +1 -1
- package/lib/plugin-popover/index.js +1 -1
- package/lib/popover/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -9179,7 +9179,14 @@ const m7 = {
|
|
9179
9179
|
// 是否显示箭头
|
9180
9180
|
arrow: v.bool.def(!0),
|
9181
9181
|
padding: v.number.def(5),
|
9182
|
-
offset: v.oneOfType([
|
9182
|
+
offset: v.oneOfType([
|
9183
|
+
v.number,
|
9184
|
+
v.shape({
|
9185
|
+
mainAxis: v.number,
|
9186
|
+
crossAxis: v.number,
|
9187
|
+
alignmentAxis: v.number
|
9188
|
+
})
|
9189
|
+
]).def(6),
|
9183
9190
|
/**
|
9184
9191
|
* 弹出内容绑定元素
|
9185
9192
|
*/
|