@fastkit/vui 0.19.47 → 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 CHANGED
@@ -2244,6 +2244,7 @@
2244
2244
  }
2245
2245
  .v-tooltip{
2246
2246
  --menu-shadow:var(--tooltip-shadow);
2247
+ --v-stack-slide-amount:10px;
2247
2248
  border-radius:var(--tooltip-radius);
2248
2249
  font-size:var(--tooltip-font-size);
2249
2250
  }
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"