nuxt-glorious 1.1.0 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "glorious",
3
3
  "configKey": "glorious",
4
- "version": "1.1.0"
4
+ "version": "1.1.3"
5
5
  }
@@ -77,6 +77,19 @@ const props = defineProps({
77
77
  default: "",
78
78
  type: String as () => "price",
79
79
  },
80
+ inputMode: {
81
+ required: false,
82
+ default: "text",
83
+ type: String as () =>
84
+ | "text"
85
+ | "none"
86
+ | "decimal"
87
+ | "numeric"
88
+ | "tel"
89
+ | "search"
90
+ | "email"
91
+ | "url",
92
+ },
80
93
  });
81
94
 
82
95
  const inputValue: any = ref(null);
@@ -177,6 +190,7 @@ const typeInput = ref(props.type);
177
190
  <div class="relative">
178
191
  <input
179
192
  v-model="inputValue"
193
+ inputmode="text"
180
194
  :autocomplete="props.autocomplete"
181
195
  class="w-full"
182
196
  :class="[
package/package.json CHANGED
@@ -1,53 +1,53 @@
1
- {
2
- "version": "1.1.0",
3
- "name": "nuxt-glorious",
4
- "description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
5
- "repository": "sajadhzj/nuxt-glorious",
6
- "author": "sajad hossein zadeh (https://github.com/sajadhzj)",
7
- "license": "MIT",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/types.d.ts",
11
- "import": "./dist/module.mjs",
12
- "require": "./dist/module.cjs"
13
- }
14
- },
15
- "main": "./dist/module.cjs",
16
- "types": "./dist/types.d.ts",
17
- "files": [
18
- "dist"
19
- ],
20
- "scripts": {
21
- "prepack": "nuxt-module-build build",
22
- "dev": "nuxi dev playground",
23
- "dev:build": "nuxi build playground",
24
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
25
- "release": "npm run prepack && npm publish",
26
- "lint": "eslint .",
27
- "test": "vitest run",
28
- "test:watch": "vitest watch"
29
- },
30
- "dependencies": {
31
- "@nuxt/kit": "^3.11.1",
32
- "@nuxtjs/tailwindcss": "^6.12.0",
33
- "@pinia/nuxt": "^0.5.1",
34
- "defu": "^6.1.4",
35
- "pinia": "^2.1.7",
36
- "sass": "^1.77.5"
37
- },
38
- "devDependencies": {
39
- "@nuxt/devtools": "latest",
40
- "@nuxt/eslint-config": "^0.2.0",
41
- "@nuxt/module-builder": "^0.5.5",
42
- "@nuxt/schema": "^3.11.1",
43
- "@nuxt/test-utils": "^3.12.0",
44
- "@types/node": "^20.11.29",
45
- "changelogen": "^0.5.5",
46
- "eslint": "^8.57.0",
47
- "nuxt": "^3.11.1",
48
- "vitest": "^1.4.0"
49
- },
50
- "overrides": {
51
- "vue": "latest"
52
- }
53
- }
1
+ {
2
+ "version": "1.1.3",
3
+ "name": "nuxt-glorious",
4
+ "description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
5
+ "repository": "sajadhzj/nuxt-glorious",
6
+ "author": "sajad hossein zadeh (https://github.com/sajadhzj)",
7
+ "license": "MIT",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/types.d.ts",
11
+ "import": "./dist/module.mjs",
12
+ "require": "./dist/module.cjs"
13
+ }
14
+ },
15
+ "main": "./dist/module.cjs",
16
+ "types": "./dist/types.d.ts",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "prepack": "nuxt-module-build build",
22
+ "dev": "nuxi dev playground",
23
+ "dev:build": "nuxi build playground",
24
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
25
+ "release": "npm run prepack && npm publish",
26
+ "lint": "eslint .",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest watch"
29
+ },
30
+ "dependencies": {
31
+ "@nuxt/kit": "^3.11.1",
32
+ "@nuxtjs/tailwindcss": "^6.12.0",
33
+ "@pinia/nuxt": "^0.5.1",
34
+ "defu": "^6.1.4",
35
+ "pinia": "^2.1.7",
36
+ "sass": "^1.77.5"
37
+ },
38
+ "devDependencies": {
39
+ "@nuxt/devtools": "latest",
40
+ "@nuxt/eslint-config": "^0.2.0",
41
+ "@nuxt/module-builder": "^0.5.5",
42
+ "@nuxt/schema": "^3.11.1",
43
+ "@nuxt/test-utils": "^3.12.0",
44
+ "@types/node": "^20.11.29",
45
+ "changelogen": "^0.5.5",
46
+ "eslint": "^8.57.0",
47
+ "nuxt": "^3.11.1",
48
+ "vitest": "^1.4.0"
49
+ },
50
+ "overrides": {
51
+ "vue": "latest"
52
+ }
53
+ }