watermelon-ui-kit 0.0.1
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/README.md +12 -0
- package/dist/Tag/index.vue.d.ts +3 -0
- package/dist/Tag/index.vue.d.ts.map +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/watermelon-ui-kit.es.d.ts +4 -0
- package/dist/watermelon-ui-kit.es.ts +18 -0
- package/dist/watermelon-ui-kit.umd.ts +1 -0
- package/package.json +53 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Watermelon UI kit
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
UI library for **Watermelon** :watermelon: project. Library documentation [here](https://avesheva.github.io/watermelon-ui-kit).
|
|
6
|
+
|
|
7
|
+
## Stack
|
|
8
|
+
- Vue 3
|
|
9
|
+
- Typescript
|
|
10
|
+
- Vitest
|
|
11
|
+
|
|
12
|
+
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../src/components/Tag/index.vue"],"names":[],"mappings":";AAsDA,wBAMG"}
|
package/dist/favicon.ico
ADDED
|
Binary file
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
Tag: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
};
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/components/index.ts"],"names":[],"mappings":";;;AAEA,wBAEC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createElementBlock as c, openBlock as s, createElementVNode as l } from "vue";
|
|
2
|
+
const a = (e, t) => {
|
|
3
|
+
const n = e.__vccOpts || e;
|
|
4
|
+
for (const [o, r] of t)
|
|
5
|
+
n[o] = r;
|
|
6
|
+
return n;
|
|
7
|
+
}, _ = {};
|
|
8
|
+
function f(e, t) {
|
|
9
|
+
return s(), c("div", null, t[0] || (t[0] = [
|
|
10
|
+
l("h3", null, "Tag. Just tag", -1)
|
|
11
|
+
]));
|
|
12
|
+
}
|
|
13
|
+
const u = /* @__PURE__ */ a(_, [["render", f]]), i = {
|
|
14
|
+
Tag: u
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
i as default
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?module.exports=n(require("vue")):typeof define=="function"&&define.amd?define(["vue"],n):(e=typeof globalThis<"u"?globalThis:e||self,e["watermelon-ui-kit"]=n(e.Vue))})(this,function(e){"use strict";const n=(o,t)=>{const i=o.__vccOpts||o;for(const[u,c]of t)i[u]=c;return i},r={};function s(o,t){return e.openBlock(),e.createElementBlock("div",null,t[0]||(t[0]=[e.createElementVNode("h3",null,"Tag. Just tag",-1)]))}return{Tag:n(r,[["render",s]])}});
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "watermelon-ui-kit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/watermelon-ui-kit.umd.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/watermelon-ui-kit.es.ts",
|
|
12
|
+
"require": "./dist/watermelon-ui-kit.umd.ts"
|
|
13
|
+
},
|
|
14
|
+
"./styles": "./dist/style.css"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "vite",
|
|
18
|
+
"build": "vue-tsc -p tsconfig.lib.json && vite build",
|
|
19
|
+
"preview": "vite preview",
|
|
20
|
+
"test": "vitest",
|
|
21
|
+
"type-check": "vue-tsc --noEmit",
|
|
22
|
+
"coverage": "vitest run --coverage",
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"build-storybook": "storybook build"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@chromatic-com/storybook": "^3.2.4",
|
|
28
|
+
"@primevue/themes": "^4.3.0",
|
|
29
|
+
"@storybook/addon-essentials": "^8.5.3",
|
|
30
|
+
"@storybook/addon-interactions": "^8.5.3",
|
|
31
|
+
"@storybook/addon-onboarding": "^8.5.3",
|
|
32
|
+
"@storybook/blocks": "^8.5.3",
|
|
33
|
+
"@storybook/manager-api": "^8.5.6",
|
|
34
|
+
"@storybook/test": "^8.5.3",
|
|
35
|
+
"@storybook/theming": "^8.5.6",
|
|
36
|
+
"@storybook/vue3": "^8.5.3",
|
|
37
|
+
"@storybook/vue3-vite": "^8.5.3",
|
|
38
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
39
|
+
"@vitest/coverage-v8": "^3.0.5",
|
|
40
|
+
"@vue/tsconfig": "^0.7.0",
|
|
41
|
+
"primevue": "^4.3.0",
|
|
42
|
+
"storybook": "^8.5.3",
|
|
43
|
+
"typescript": "~5.7.2",
|
|
44
|
+
"vite": "^6.1.0",
|
|
45
|
+
"vite-plugin-dts": "^4.5.0",
|
|
46
|
+
"vitest": "^3.0.5",
|
|
47
|
+
"vue": "^3.5.13",
|
|
48
|
+
"vue-tsc": "^2.2.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"vue": ">=3"
|
|
52
|
+
}
|
|
53
|
+
}
|