nuxt-hs-ui 2.1.9 → 2.1.10
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/module.json
CHANGED
|
@@ -259,6 +259,7 @@ import BtnLineLoading from "./btn-line-loading.vue";
|
|
|
259
259
|
interface Props {
|
|
260
260
|
class?: ClassType;
|
|
261
261
|
classInner?: ClassType;
|
|
262
|
+
classOverlay?: ClassType;
|
|
262
263
|
disabled?: boolean;
|
|
263
264
|
to?: string;
|
|
264
265
|
theme?: Theme;
|
|
@@ -275,6 +276,7 @@ interface Props {
|
|
|
275
276
|
const props = withDefaults(defineProps<Props>(), {
|
|
276
277
|
class: "",
|
|
277
278
|
classInner: "",
|
|
279
|
+
classOverlay: "",
|
|
278
280
|
to: undefined,
|
|
279
281
|
theme: "accent1",
|
|
280
282
|
variant: "outlined",
|
|
@@ -429,7 +431,9 @@ const btnTvBody = computed(() => {
|
|
|
429
431
|
});
|
|
430
432
|
|
|
431
433
|
const btnTvOverlay = computed(() => {
|
|
432
|
-
return ui.value.overlay({
|
|
434
|
+
return ui.value.overlay({
|
|
435
|
+
class: ClassTypeToString(props.classOverlay),
|
|
436
|
+
});
|
|
433
437
|
});
|
|
434
438
|
|
|
435
439
|
// ----------------------------------------------------------------------------
|