@fastkit/vui 0.18.32 → 0.18.34
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.mjs +3 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +11 -11
- package/src/components/VCard/VCard.tsx +1 -5
- package/src/plugin.tsx +2 -0
package/dist/vui.mjs
CHANGED
|
@@ -26,7 +26,7 @@ import { VScroller, getDocumentScroller } from '@fastkit/vue-scroller';
|
|
|
26
26
|
export * from '@fastkit/vue-scroller';
|
|
27
27
|
import { defineMenuComponent, defineDialogComponent, createStackActionProps, useStackAction, defineSnackbarComponent, createStackableDefine, useStackControl, VDynamicStacks, BUILTIN_ACTION_HANDLERS, installVueStackPlugin } from '@fastkit/vue-stack';
|
|
28
28
|
export * from '@fastkit/vue-stack';
|
|
29
|
-
import { useActionable, VAction, actionableInheritProps, setDefaultRouterLink } from '@fastkit/vue-action';
|
|
29
|
+
import { useActionable, VAction, actionableInheritProps, setDefaultActionableClassName, setDefaultRouterLink } from '@fastkit/vue-action';
|
|
30
30
|
export * from '@fastkit/vue-action';
|
|
31
31
|
export { VAction as VLink } from '@fastkit/vue-action';
|
|
32
32
|
import { createPropsOptions, defineSlots, renderSlotOrEmpty, isFragment, resolveNumberish, resolveVNodeChildOrSlots, rawNumberPropType, onAppUnmount } from '@fastkit/vue-utils';
|
|
@@ -1426,7 +1426,7 @@ var VCard = defineComponent({
|
|
|
1426
1426
|
const attrs = {
|
|
1427
1427
|
..._props.value,
|
|
1428
1428
|
...ctx.attrs,
|
|
1429
|
-
class: ["v-card", ctx.attrs.class
|
|
1429
|
+
class: ["v-card", ctx.attrs.class],
|
|
1430
1430
|
tag: hasLink ? VAction : "div"
|
|
1431
1431
|
};
|
|
1432
1432
|
if (props12.disabled) {
|
|
@@ -4786,6 +4786,7 @@ var VuiService = class {
|
|
|
4786
4786
|
return action;
|
|
4787
4787
|
}
|
|
4788
4788
|
};
|
|
4789
|
+
setDefaultActionableClassName("clickable");
|
|
4789
4790
|
var scroller = getDocumentScroller();
|
|
4790
4791
|
function mergeVuiPluginOptions(base, override) {
|
|
4791
4792
|
if (!override)
|