@apptegy/nuxt-navigation 0.1.41 → 0.1.43
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
|
@@ -124,6 +124,9 @@ onMounted(() => {
|
|
|
124
124
|
font-weight: 450;
|
|
125
125
|
line-height: 16px;
|
|
126
126
|
letter-spacing: 0.4px;
|
|
127
|
+
max-width: 165px;
|
|
128
|
+
overflow: hidden;
|
|
129
|
+
text-overflow: ellipsis;
|
|
127
130
|
}
|
|
128
131
|
.a-nav-section--title .a-nav-section-title-wrapper .user-grid .email {
|
|
129
132
|
grid-column: 2;
|
package/package.json
CHANGED
|
@@ -1,49 +1,51 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
2
|
+
"name": "@apptegy/nuxt-navigation",
|
|
3
|
+
"version": "0.1.43",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./dist/types.d.ts",
|
|
8
|
+
"import": "./dist/module.mjs",
|
|
9
|
+
"require": "./dist/module.cjs"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/module.cjs",
|
|
13
|
+
"types": "./dist/types.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"prepack": "nuxt-module-build build",
|
|
19
|
+
"dev": "nuxi dev playground",
|
|
20
|
+
"dev:build": "nuxi build playground",
|
|
21
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
22
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
23
|
+
"lint": "eslint .",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"test:watch": "vitest watch",
|
|
26
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@apptegy/nuxt-intl": "2.1.2",
|
|
30
|
+
"@nuxt/kit": "^3.16.1",
|
|
31
|
+
"@vueuse/components": "12.8.2",
|
|
32
|
+
"lodash": "^4.17.21"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@nuxt/devtools": "^2.3.1",
|
|
36
|
+
"@nuxt/eslint-config": "^1.2.0",
|
|
37
|
+
"@nuxt/module-builder": "^0.8.4",
|
|
38
|
+
"@nuxt/schema": "^3.16.1",
|
|
39
|
+
"@nuxt/test-utils": "^3.17.2",
|
|
40
|
+
"@types/node": "^20.17.24",
|
|
41
|
+
"changelogen": "^0.5.7",
|
|
42
|
+
"eslint": "^9.22.0",
|
|
43
|
+
"nuxt": "^3.16.1",
|
|
44
|
+
"sass": "^1.86.0",
|
|
45
|
+
"typescript": "^5.8.2",
|
|
46
|
+
"vitest": "^3.0.9",
|
|
47
|
+
"vue": "^3.5.13",
|
|
48
|
+
"vue-tsc": "^2.2.8"
|
|
49
|
+
},
|
|
50
|
+
"gitHead": "7638a218c13631df2b5511ef55e5ab7c437244d3"
|
|
51
|
+
}
|