@fastkit/vui 0.18.32 → 0.18.33
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
|
@@ -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}`, "clickable", {
|
|
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, "clickable", {
|
|
1922
1922
|
"v-list-tile--plain": !hasColor,
|
|
1923
1923
|
"v-list-tile--has-color": hasColor,
|
|
1924
1924
|
"v-list-tile--active": isActive.value
|