@fastkit/vui 0.19.48 → 0.19.49
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/vui.css +1 -0
- package/dist/vui.d.ts +18 -0
- package/dist/vui.mjs +3 -0
- package/dist/vui.mjs.map +1 -1
- package/package.json +12 -12
- package/src/components/VTooltip/VTooltip.scss +1 -0
- package/src/components/VTooltip/VTooltip.tsx +3 -0
package/dist/vui.css
CHANGED
package/dist/vui.d.ts
CHANGED
|
@@ -1286,6 +1286,14 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1286
1286
|
type: NumberConstructor;
|
|
1287
1287
|
default: number;
|
|
1288
1288
|
};
|
|
1289
|
+
hideOnScroll: {
|
|
1290
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
1291
|
+
default: string | number | boolean;
|
|
1292
|
+
};
|
|
1293
|
+
hideOnInvisible: {
|
|
1294
|
+
type: BooleanConstructor;
|
|
1295
|
+
default: boolean;
|
|
1296
|
+
};
|
|
1289
1297
|
'v-slots': vue.PropType<{
|
|
1290
1298
|
default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
|
|
1291
1299
|
activator?: ((payload: _fastkit_vue_stack.VStackActivatorPayload) => vue.VNodeChild) | undefined;
|
|
@@ -1448,6 +1456,14 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1448
1456
|
type: NumberConstructor;
|
|
1449
1457
|
default: number;
|
|
1450
1458
|
};
|
|
1459
|
+
hideOnScroll: {
|
|
1460
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
1461
|
+
default: string | number | boolean;
|
|
1462
|
+
};
|
|
1463
|
+
hideOnInvisible: {
|
|
1464
|
+
type: BooleanConstructor;
|
|
1465
|
+
default: boolean;
|
|
1466
|
+
};
|
|
1451
1467
|
'v-slots': vue.PropType<{
|
|
1452
1468
|
default?: ((control: _fastkit_vue_stack.VStackControl) => vue.VNodeChild) | undefined;
|
|
1453
1469
|
activator?: ((payload: _fastkit_vue_stack.VStackActivatorPayload) => vue.VNodeChild) | undefined;
|
|
@@ -1601,6 +1617,8 @@ declare const VMenu: vue.DefineComponent<{
|
|
|
1601
1617
|
edgeMargin: number;
|
|
1602
1618
|
overlap: boolean | _fastkit_vue_stack.MenuOverlapSettings;
|
|
1603
1619
|
resizeWatchDebounce: number;
|
|
1620
|
+
hideOnScroll: string | number | boolean;
|
|
1621
|
+
hideOnInvisible: boolean;
|
|
1604
1622
|
}, _fastkit_vue_stack.MergeStackBaseSlots<vue.SlotsType<{}>>>;
|
|
1605
1623
|
|
|
1606
1624
|
interface VSheetModalSlots extends VStackSlots {
|
package/dist/vui.mjs
CHANGED
|
@@ -374,6 +374,9 @@ var VTooltip = defineComponent({
|
|
|
374
374
|
if (attrs.openDelay == null) {
|
|
375
375
|
attrs.openDelay = 200;
|
|
376
376
|
}
|
|
377
|
+
if (attrs.hideOnScroll == null) {
|
|
378
|
+
attrs.hideOnScroll = true;
|
|
379
|
+
}
|
|
377
380
|
return createVNode(VMenu, mergeProps(attrs, {
|
|
378
381
|
"scrollLock": false,
|
|
379
382
|
"class": "v-tooltip"
|