@larabits/untitled-ui 0.0.0-alpha → 0.0.2-alpha
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.
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Button } from './Button.vue';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Modal } from './Modal.vue';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { openBlock as c, createElementBlock as o } from "vue";
|
|
2
|
+
const r = (n, t) => {
|
|
3
|
+
const e = n.__vccOpts || n;
|
|
4
|
+
for (const [s, _] of t)
|
|
5
|
+
e[s] = _;
|
|
6
|
+
return e;
|
|
7
|
+
}, l = {};
|
|
8
|
+
function i(n, t) {
|
|
9
|
+
return c(), o("div", null, " This is modal component. ");
|
|
10
|
+
}
|
|
11
|
+
const m = /* @__PURE__ */ r(l, [["render", i]]), u = {};
|
|
12
|
+
function a(n, t) {
|
|
13
|
+
return c(), o("button", null, "This is button element.");
|
|
14
|
+
}
|
|
15
|
+
const d = /* @__PURE__ */ r(u, [["render", a]]);
|
|
16
|
+
export {
|
|
17
|
+
d as Button,
|
|
18
|
+
m as Modal
|
|
19
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],n):(e=typeof globalThis<"u"?globalThis:e||self,n(e.UntitledUI={},e.Vue))})(this,function(e,n){"use strict";const c=(t,o)=>{const i=t.__vccOpts||t;for(const[_,a]of o)i[_]=a;return i},r={};function s(t,o){return n.openBlock(),n.createElementBlock("div",null," This is modal component. ")}const u=c(r,[["render",s]]),d={};function f(t,o){return n.openBlock(),n.createElementBlock("button",null,"This is button element.")}const l=c(d,[["render",f]]);e.Button=l,e.Modal=u,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
package/package.json
CHANGED
|
@@ -1,13 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@larabits/untitled-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-alpha",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": ["dist"],
|
|
6
|
+
"main": "./dist/untitled-ui.umd.js",
|
|
7
|
+
"module": "./dist/untitled-ui.es.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/untitled-ui.es.js",
|
|
11
|
+
"require": "./dist/untitled-ui.umd.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
4
14
|
"publishConfig": {
|
|
5
15
|
"access": "public"
|
|
6
16
|
},
|
|
7
17
|
"scripts": {
|
|
8
|
-
"
|
|
18
|
+
"build": "vite build",
|
|
19
|
+
"watch": "vite build --watch",
|
|
20
|
+
"storybook": "storybook dev -p 6006",
|
|
21
|
+
"build-storybook": "storybook build"
|
|
9
22
|
},
|
|
10
23
|
"author": "Yash Pal <iyashpal.dev@gmail.com>",
|
|
11
24
|
"license": "MIT",
|
|
12
|
-
"description": "Vue 3 UI Library"
|
|
25
|
+
"description": "Vue 3 UI Library",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@chromatic-com/storybook": "^3.2.3",
|
|
28
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
29
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
30
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
31
|
+
"@storybook/blocks": "^8.4.7",
|
|
32
|
+
"@storybook/test": "^8.4.7",
|
|
33
|
+
"@storybook/vue3": "^8.4.7",
|
|
34
|
+
"@storybook/vue3-vite": "^8.4.7",
|
|
35
|
+
"@types/node": "^22.10.5",
|
|
36
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
37
|
+
"storybook": "^8.4.7",
|
|
38
|
+
"vite": "^6.0.7",
|
|
39
|
+
"vite-plugin-dts": "^4.4.0",
|
|
40
|
+
"vue": "^3.5.13"
|
|
41
|
+
}
|
|
13
42
|
}
|