@fastkit/vui 0.18.33 → 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
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) {
|
|
@@ -1520,7 +1520,7 @@ var VButton = defineComponent({
|
|
|
1520
1520
|
return;
|
|
1521
1521
|
return _spacer === true ? "left" : _spacer;
|
|
1522
1522
|
});
|
|
1523
|
-
const classes = computed(() => [color.colorClasses.value, spacer.value ? `v-button--spacer-${spacer.value}` : void 0, `v-button--${control.size.value}`, `v-button--align-${props12.align}`,
|
|
1523
|
+
const classes = computed(() => [color.colorClasses.value, spacer.value ? `v-button--spacer-${spacer.value}` : void 0, `v-button--${control.size.value}`, `v-button--align-${props12.align}`, {
|
|
1524
1524
|
"v-button--loading": isLoading.value,
|
|
1525
1525
|
"v-button--icon": !!icon.value,
|
|
1526
1526
|
"v-button--rounded": props12.rounded,
|
|
@@ -1918,7 +1918,7 @@ var VListTile = defineComponent({
|
|
|
1918
1918
|
const classes = computed(() => {
|
|
1919
1919
|
const _color = color.value;
|
|
1920
1920
|
const hasColor = !!_color.value;
|
|
1921
|
-
return [color.value.className,
|
|
1921
|
+
return [color.value.className, {
|
|
1922
1922
|
"v-list-tile--plain": !hasColor,
|
|
1923
1923
|
"v-list-tile--has-color": hasColor,
|
|
1924
1924
|
"v-list-tile--active": isActive.value
|
|
@@ -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)
|