nuxt-hs-ui 2.1.8 → 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 +1 -1
- package/dist/runtime/components/form/btn.vue +5 -1
- package/dist/runtime/components/form/check-box.vue +1 -1
- package/dist/runtime/components/form/check-list.vue +1 -1
- package/dist/runtime/components/form/datepicker.vue +1 -1
- package/dist/runtime/components/form/input-frame.vue +1 -1
- package/dist/runtime/components/form/radio.vue +1 -1
- package/dist/runtime/components/form/select.vue +1 -1
- package/dist/runtime/components/form/text-box.vue +1 -1
- package/dist/runtime/components/form/textarea.vue +1 -1
- package/dist/runtime/components/form/value-box.vue +1 -1
- package/package.json +1 -1
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
|
// ----------------------------------------------------------------------------
|
|
@@ -104,7 +104,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
104
104
|
require: false,
|
|
105
105
|
requireText: "必須",
|
|
106
106
|
warn: "",
|
|
107
|
-
warnTimeOut:
|
|
107
|
+
warnTimeOut: 3000,
|
|
108
108
|
// ----------------------------------------------------------------------------
|
|
109
109
|
// 設定
|
|
110
110
|
size: "m",
|
|
@@ -160,7 +160,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
160
160
|
require: false,
|
|
161
161
|
requireText: "必須",
|
|
162
162
|
warn: "",
|
|
163
|
-
warnTimeOut:
|
|
163
|
+
warnTimeOut: 3000,
|
|
164
164
|
// ----------------------------------------------------------------------------
|
|
165
165
|
// 設定
|
|
166
166
|
size: "m",
|
|
@@ -110,7 +110,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
110
110
|
require: false,
|
|
111
111
|
requireText: "必須",
|
|
112
112
|
warn: "",
|
|
113
|
-
warnTimeOut:
|
|
113
|
+
warnTimeOut: 3000,
|
|
114
114
|
// ----------------------------------------------------------------------------
|
|
115
115
|
// 設定
|
|
116
116
|
size: "m",
|
|
@@ -106,7 +106,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
106
106
|
require: false,
|
|
107
107
|
requireText: "必須",
|
|
108
108
|
warn: "",
|
|
109
|
-
warnTimeOut:
|
|
109
|
+
warnTimeOut: 3000,
|
|
110
110
|
// ----------------------------------------------------------------------------
|
|
111
111
|
// 設定
|
|
112
112
|
size: "m",
|
|
@@ -107,7 +107,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
107
107
|
require: false,
|
|
108
108
|
requireText: "必須",
|
|
109
109
|
warn: "",
|
|
110
|
-
warnTimeOut:
|
|
110
|
+
warnTimeOut: 3000,
|
|
111
111
|
// ----------------------------------------------------------------------------
|
|
112
112
|
// 設定
|
|
113
113
|
size: "m",
|
|
@@ -127,7 +127,7 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
127
127
|
require: false,
|
|
128
128
|
requireText: "必須",
|
|
129
129
|
warn: "",
|
|
130
|
-
warnTimeOut:
|
|
130
|
+
warnTimeOut: 3000,
|
|
131
131
|
// ----------------------------------------------------------------------------
|
|
132
132
|
// 設定
|
|
133
133
|
size: "m",
|