nuxt-hs-ui 2.1.7 → 2.1.9
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/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/dist/runtime/composables/use-hs-scroll-lock.js +0 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -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",
|
|
@@ -19,7 +19,6 @@ export const useHsScrollLock = () => {
|
|
|
19
19
|
const isOldIPad = /\(iPad.*OS/.test(ua);
|
|
20
20
|
const isIpad = /Macintosh/.test(ua) && navigator.maxTouchPoints > 1;
|
|
21
21
|
const isiOS = /iP(?:ad|hone|od)/.test(ua);
|
|
22
|
-
console.log({ ua, isOldIPad, isIpad, isiOS });
|
|
23
22
|
return isOldIPad || isIpad || isiOS;
|
|
24
23
|
};
|
|
25
24
|
const init = (element) => {
|