@irbags/ui-kit 1.0.1-alpha.1 → 1.0.1-alpha.2
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/assets/icons/image.svg +4 -4
- package/package.json +62 -62
package/dist/module.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="55" height="38" viewBox="0 0 55 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M34.4328 22.4993L40.3696 11.9153L55 38H0L21.6275 0L34.4328 22.4993Z" fill="white"/>
|
|
3
|
-
<path d="M37.5764 3.48333C37.5764 5.40712 36.0461 6.96667 34.1583 6.96667C32.2706 6.96667 30.7403 5.40712 30.7403 3.48333C30.7403 1.55954 32.2706 0 34.1583 0C36.0461 0 37.5764 1.55954 37.5764 3.48333Z" fill="white"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="55" height="38" viewBox="0 0 55 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M34.4328 22.4993L40.3696 11.9153L55 38H0L21.6275 0L34.4328 22.4993Z" fill="white"/>
|
|
3
|
+
<path d="M37.5764 3.48333C37.5764 5.40712 36.0461 6.96667 34.1583 6.96667C32.2706 6.96667 30.7403 5.40712 30.7403 3.48333C30.7403 1.55954 32.2706 0 34.1583 0C36.0461 0 37.5764 1.55954 37.5764 3.48333Z" fill="white"/>
|
|
4
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@irbags/ui-kit",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
4
|
-
"description": "IRBAGS UI Kit",
|
|
5
|
-
"repository": "danda-studio/irbags/tree/develop/frontend/ui-kit",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/types.d.mts",
|
|
11
|
-
"import": "./dist/module.mjs"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"main": "./dist/module.mjs",
|
|
15
|
-
"typesVersions": {
|
|
16
|
-
"*": {
|
|
17
|
-
".": [
|
|
18
|
-
"./dist/types.d.mts"
|
|
19
|
-
]
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"dev": "npm run dev:prepare && nuxi dev playground",
|
|
27
|
-
"dev:build": "nuxi build playground",
|
|
28
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
29
|
-
"lint": "eslint .",
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"test:watch": "vitest watch",
|
|
32
|
-
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
|
|
33
|
-
"prepack": "nuxt-module-build build",
|
|
34
|
-
"pack": "npm pack",
|
|
35
|
-
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
36
|
-
"release:alpha": "npm version prerelease --preid=alpha && npm publish --tag next --access public",
|
|
37
|
-
"release:beta": "npm version prerelease --preid=beta && npm publish --tag next --access public",
|
|
38
|
-
"release:rc": "npm version prerelease --preid=rc && npm publish --tag next --access public",
|
|
39
|
-
"release:patch": "npm version patch && npm publish --tag latest --access public",
|
|
40
|
-
"release:minor": "npm version minor && npm publish --tag latest --access public",
|
|
41
|
-
"release:major": "npm version major && npm publish --tag latest --access public"
|
|
42
|
-
},
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"@antfu/eslint-config": "^6.2.0",
|
|
45
|
-
"@nuxt/kit": "^4.2.1",
|
|
46
|
-
"@nuxt/ui": "^3.3.7",
|
|
47
|
-
"@nuxtjs/tailwindcss": "^6.14.0",
|
|
48
|
-
"nuxt": "3.18.1"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@nuxt/devtools": "^3.1.0",
|
|
52
|
-
"@nuxt/eslint-config": "^1.10.0",
|
|
53
|
-
"@nuxt/module-builder": "^1.0.2",
|
|
54
|
-
"@nuxt/schema": "^4.2.1",
|
|
55
|
-
"@types/node": "latest",
|
|
56
|
-
"changelogen": "^0.6.2",
|
|
57
|
-
"eslint": "^9.39.1",
|
|
58
|
-
"typescript": "~5.9.3",
|
|
59
|
-
"vue-tsc": "^3.1.4"
|
|
60
|
-
},
|
|
61
|
-
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@irbags/ui-kit",
|
|
3
|
+
"version": "1.0.1-alpha.2",
|
|
4
|
+
"description": "IRBAGS UI Kit",
|
|
5
|
+
"repository": "danda-studio/irbags/tree/develop/frontend/ui-kit",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/types.d.mts",
|
|
11
|
+
"import": "./dist/module.mjs"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/module.mjs",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
"*": {
|
|
17
|
+
".": [
|
|
18
|
+
"./dist/types.d.mts"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "npm run dev:prepare && nuxi dev playground",
|
|
27
|
+
"dev:build": "nuxi build playground",
|
|
28
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest watch",
|
|
32
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
|
|
33
|
+
"prepack": "nuxt-module-build build",
|
|
34
|
+
"pack": "npm pack",
|
|
35
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
36
|
+
"release:alpha": "npm version prerelease --preid=alpha && npm publish --tag next --access public",
|
|
37
|
+
"release:beta": "npm version prerelease --preid=beta && npm publish --tag next --access public",
|
|
38
|
+
"release:rc": "npm version prerelease --preid=rc && npm publish --tag next --access public",
|
|
39
|
+
"release:patch": "npm version patch && npm publish --tag latest --access public",
|
|
40
|
+
"release:minor": "npm version minor && npm publish --tag latest --access public",
|
|
41
|
+
"release:major": "npm version major && npm publish --tag latest --access public"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@antfu/eslint-config": "^6.2.0",
|
|
45
|
+
"@nuxt/kit": "^4.2.1",
|
|
46
|
+
"@nuxt/ui": "^3.3.7",
|
|
47
|
+
"@nuxtjs/tailwindcss": "^6.14.0",
|
|
48
|
+
"nuxt": "3.18.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@nuxt/devtools": "^3.1.0",
|
|
52
|
+
"@nuxt/eslint-config": "^1.10.0",
|
|
53
|
+
"@nuxt/module-builder": "^1.0.2",
|
|
54
|
+
"@nuxt/schema": "^4.2.1",
|
|
55
|
+
"@types/node": "latest",
|
|
56
|
+
"changelogen": "^0.6.2",
|
|
57
|
+
"eslint": "^9.39.1",
|
|
58
|
+
"typescript": "~5.9.3",
|
|
59
|
+
"vue-tsc": "^3.1.4"
|
|
60
|
+
},
|
|
61
|
+
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
62
|
+
}
|