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 CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.1.8",
7
+ "version": "2.1.10",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -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
  // ----------------------------------------------------------------------------
@@ -75,7 +75,7 @@ const props = withDefaults(defineProps<Props>(), {
75
75
  // 表示
76
76
  label: "",
77
77
  warn: "",
78
- warnTimeOut: 300,
78
+ warnTimeOut: 3000,
79
79
  // ----------------------------------------------------------------------------
80
80
  // 設定
81
81
  size: "m",
@@ -104,7 +104,7 @@ const props = withDefaults(defineProps<Props>(), {
104
104
  require: false,
105
105
  requireText: "必須",
106
106
  warn: "",
107
- warnTimeOut: 300,
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: 300,
163
+ warnTimeOut: 3000,
164
164
  // ----------------------------------------------------------------------------
165
165
  // 設定
166
166
  size: "m",
@@ -66,7 +66,7 @@ const props = withDefaults(defineProps<Props>(), {
66
66
  require: false,
67
67
  requireText: "必須",
68
68
  warn: "",
69
- warnTimeOut: 300,
69
+ warnTimeOut: 3000,
70
70
  // ----------------------------------------------------------------------------
71
71
  // 設定
72
72
  size: "m",
@@ -110,7 +110,7 @@ const props = withDefaults(defineProps<Props>(), {
110
110
  require: false,
111
111
  requireText: "必須",
112
112
  warn: "",
113
- warnTimeOut: 300,
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: 300,
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: 300,
110
+ warnTimeOut: 3000,
111
111
  // ----------------------------------------------------------------------------
112
112
  // 設定
113
113
  size: "m",
@@ -94,7 +94,7 @@ const props = withDefaults(defineProps<Props>(), {
94
94
  require: false,
95
95
  requireText: "必須",
96
96
  warn: "",
97
- warnTimeOut: 300,
97
+ warnTimeOut: 3000,
98
98
  // ----------------------------------------------------------------------------
99
99
  // 設定
100
100
  size: "m",
@@ -127,7 +127,7 @@ const props = withDefaults(defineProps<Props>(), {
127
127
  require: false,
128
128
  requireText: "必須",
129
129
  warn: "",
130
- warnTimeOut: 300,
130
+ warnTimeOut: 3000,
131
131
  // ----------------------------------------------------------------------------
132
132
  // 設定
133
133
  size: "m",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.1.8",
3
+ "version": "2.1.10",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",