@prozorro/prozorro-ui 0.0.2-beta
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 +39 -0
- package/dist/app/assets/Button-DK7ZxByB.css +1 -0
- package/dist/app/assets/Button.stories-DGvgZDOx.js +16 -0
- package/dist/app/assets/Color-YHDXOIA2-CF583y9D.js +1 -0
- package/dist/app/assets/DocsRenderer-CFRXHY34-BE3PK1tJ.js +623 -0
- package/dist/app/assets/entry-preview-docs-IyzUqfFC.js +16 -0
- package/dist/app/assets/entry-preview-lboak36o.js +1 -0
- package/dist/app/assets/iframe-rfIopsRa.js +211 -0
- package/dist/app/assets/index-BftwLpLk.js +1 -0
- package/dist/app/assets/index-Dc4p7Je0.js +11 -0
- package/dist/app/assets/index-DrFu-skq.js +6 -0
- package/dist/app/assets/preview-B8lJiyuQ.js +34 -0
- package/dist/app/assets/preview-BBWR9nbA.js +1 -0
- package/dist/app/assets/preview-BLPkrsqC.js +2 -0
- package/dist/app/assets/preview-BWzBA1C2.js +396 -0
- package/dist/app/assets/preview-CvbIS5ZJ.js +1 -0
- package/dist/app/assets/preview-D-Qz4Vhp.js +240 -0
- package/dist/app/assets/preview-D7OYendf.js +1 -0
- package/dist/app/assets/preview-DAxGvctC.css +1 -0
- package/dist/app/assets/preview-DD_OYowb.js +1 -0
- package/dist/app/assets/preview-DGUiP6tS.js +7 -0
- package/dist/app/assets/vue.esm-bundler-DZ4k56mG.js +37 -0
- package/dist/app/favicon.svg +1 -0
- package/dist/app/iframe.html +666 -0
- package/dist/app/index.html +173 -0
- package/dist/app/index.json +1 -0
- package/dist/app/nunito-sans-bold-italic.woff2 +0 -0
- package/dist/app/nunito-sans-bold.woff2 +0 -0
- package/dist/app/nunito-sans-italic.woff2 +0 -0
- package/dist/app/nunito-sans-regular.woff2 +0 -0
- package/dist/app/project.json +1 -0
- package/dist/app/prozorro_logo.png +0 -0
- package/dist/app/robots.txt +7 -0
- package/dist/app/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
- package/dist/app/sb-addons/essentials-backgrounds-4/manager-bundle.js +12 -0
- package/dist/app/sb-addons/essentials-controls-1/manager-bundle.js +405 -0
- package/dist/app/sb-addons/essentials-docs-3/manager-bundle.js +245 -0
- package/dist/app/sb-addons/essentials-measure-7/manager-bundle.js +3 -0
- package/dist/app/sb-addons/essentials-outline-8/manager-bundle.js +3 -0
- package/dist/app/sb-addons/essentials-toolbars-6/manager-bundle.js +3 -0
- package/dist/app/sb-addons/essentials-viewport-5/manager-bundle.js +3 -0
- package/dist/app/sb-addons/interactions-9/manager-bundle.js +222 -0
- package/dist/app/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
- package/dist/app/sb-common-assets/favicon.svg +1 -0
- package/dist/app/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/dist/app/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/dist/app/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/dist/app/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/dist/app/sb-manager/globals-module-info.js +1052 -0
- package/dist/app/sb-manager/globals-runtime.js +41775 -0
- package/dist/app/sb-manager/globals.js +48 -0
- package/dist/app/sb-manager/runtime.js +12048 -0
- package/dist/components/Button/Button.vue.d.ts +10 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Button/types.d.ts +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/package.json +89 -0
- package/dist/prozorro-ui.cjs +1 -0
- package/dist/prozorro-ui.js +32 -0
- package/dist/prozorro_logo.png +0 -0
- package/dist/style.css +1 -0
- package/package.json +89 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ButtonProps } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
click: (event: MouseEvent) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{
|
|
5
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
variant: import('./types').ButtonVariant;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
10
|
+
export default _default;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PzButton, type ButtonProps, type ButtonVariant } from './components/Button';
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@prozorro/prozorro-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.2-beta",
|
|
5
|
+
"description": "Official Prozorro UI Library",
|
|
6
|
+
"author": "Dmytro Rybachek",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "dist/prozorro-ui.cjs",
|
|
9
|
+
"module": "dist/prozorro-ui.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/prozorro-ui.js",
|
|
16
|
+
"require": "./dist/prozorro-ui.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./dist/": {
|
|
19
|
+
"import": "./dist"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "npm run build:lib && npm run build:storybook",
|
|
28
|
+
"build:lib": "npm run typecheck && vite build && copyfiles ./package.json dist && npm run removeFromBuild:lib",
|
|
29
|
+
"format": "prettier . --write",
|
|
30
|
+
"format:check": "prettier . --check",
|
|
31
|
+
"lint": "npm run lint:eslint && npm run lint:styles",
|
|
32
|
+
"lint:eslint": "eslint ./src",
|
|
33
|
+
"lint:eslint:fix": "eslint ./src --fix",
|
|
34
|
+
"lint:styles": "stylelint \"src/**/*.{scss,vue}\"",
|
|
35
|
+
"lint:styles:fix": "stylelint \"src/**/*.{scss,vue}\" --fix",
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"storybook": "storybook dev -p 6006",
|
|
38
|
+
"build:storybook": "storybook build --output-dir dist/app",
|
|
39
|
+
"typecheck": "vue-tsc --noEmit",
|
|
40
|
+
"removeFromBuild:lib": "rimraf ./dist/robots.txt ./dist/test-data",
|
|
41
|
+
"clean": "rimraf dist"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"typescript",
|
|
45
|
+
"library",
|
|
46
|
+
"prozorro",
|
|
47
|
+
"UI"
|
|
48
|
+
],
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"vue": "^3.0.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@eslint/js": "^9.39.4",
|
|
54
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
55
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
56
|
+
"@storybook/test": "^8.6.12",
|
|
57
|
+
"@storybook/vue3-vite": "^8.6.12",
|
|
58
|
+
"@types/node": "^24.5.2",
|
|
59
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
60
|
+
"copyfiles": "^2.4.1",
|
|
61
|
+
"eslint": "^9.39.4",
|
|
62
|
+
"eslint-config-prettier": "^10.1.8",
|
|
63
|
+
"eslint-import-resolver-alias": "^1.1.2",
|
|
64
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
65
|
+
"eslint-plugin-import": "^2.32.0",
|
|
66
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
67
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
68
|
+
"globals": "^17.4.0",
|
|
69
|
+
"husky": "^9.1.7",
|
|
70
|
+
"postcss-html": "^1.8.1",
|
|
71
|
+
"prettier": "^3.8.1",
|
|
72
|
+
"rimraf": "^6.1.3",
|
|
73
|
+
"sass": "^1.92.1",
|
|
74
|
+
"storybook": "^8.6.12",
|
|
75
|
+
"stylelint": "^17.6.0",
|
|
76
|
+
"stylelint-config-html": "^1.1.0",
|
|
77
|
+
"stylelint-config-recommended-scss": "^17.0.0",
|
|
78
|
+
"stylelint-config-recommended-vue": "^1.6.1",
|
|
79
|
+
"stylelint-config-standard-scss": "^17.0.0",
|
|
80
|
+
"stylelint-order": "^8.1.1",
|
|
81
|
+
"typescript": "^5.9.2",
|
|
82
|
+
"typescript-eslint": "^8.57.2",
|
|
83
|
+
"vite": "^5.4.19",
|
|
84
|
+
"vite-plugin-dts": "^4.5.4",
|
|
85
|
+
"vue": "^3.5.21",
|
|
86
|
+
"vue-eslint-parser": "^10.4.0",
|
|
87
|
+
"vue-tsc": "^3.0.7"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),c=["disabled"],s={class:"pz-button__label"},i=e.defineComponent({__name:"Button",props:{label:{},variant:{default:"primary"},disabled:{type:Boolean,default:!1}},emits:["click"],setup(t,{emit:o}){const n=o;function l(a){n("click",a)}return(a,u)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["pz-button",[`pz-button--${t.variant}`,{"pz-button--disabled":t.disabled}]]),type:"button",disabled:t.disabled,onClick:l},[e.createElementVNode("span",s,e.toDisplayString(t.label),1)],10,c))}}),d=(t,o)=>{const n=t.__vccOpts||t;for(const[l,a]of o)n[l]=a;return n},r=d(i,[["__scopeId","data-v-eadd2ab6"]]);exports.PzButton=r;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { defineComponent as l, openBlock as s, createElementBlock as c, normalizeClass as i, createElementVNode as d, toDisplayString as r } from "vue";
|
|
2
|
+
const b = ["disabled"], u = { class: "pz-button__label" }, p = /* @__PURE__ */ l({
|
|
3
|
+
__name: "Button",
|
|
4
|
+
props: {
|
|
5
|
+
label: {},
|
|
6
|
+
variant: { default: "primary" },
|
|
7
|
+
disabled: { type: Boolean, default: !1 }
|
|
8
|
+
},
|
|
9
|
+
emits: ["click"],
|
|
10
|
+
setup(t, { emit: a }) {
|
|
11
|
+
const e = a;
|
|
12
|
+
function o(n) {
|
|
13
|
+
e("click", n);
|
|
14
|
+
}
|
|
15
|
+
return (n, _) => (s(), c("button", {
|
|
16
|
+
class: i(["pz-button", [`pz-button--${t.variant}`, { "pz-button--disabled": t.disabled }]]),
|
|
17
|
+
type: "button",
|
|
18
|
+
disabled: t.disabled,
|
|
19
|
+
onClick: o
|
|
20
|
+
}, [
|
|
21
|
+
d("span", u, r(t.label), 1)
|
|
22
|
+
], 10, b));
|
|
23
|
+
}
|
|
24
|
+
}), m = (t, a) => {
|
|
25
|
+
const e = t.__vccOpts || t;
|
|
26
|
+
for (const [o, n] of a)
|
|
27
|
+
e[o] = n;
|
|
28
|
+
return e;
|
|
29
|
+
}, k = /* @__PURE__ */ m(p, [["__scopeId", "data-v-eadd2ab6"]]);
|
|
30
|
+
export {
|
|
31
|
+
k as PzButton
|
|
32
|
+
};
|
|
Binary file
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--white: #fff;--black: #242638;--black-tansparent: rgb(36 38 56 / 70%);--gray: #f5f5f5;--gray-100: #d6dade;--gray-200: #939393;--gray-300: #f0f4f5;--gray-400: #f4f8f9;--gray-500: #454545;--gray-600: #f8f8f8;--gray-700: rgb(214 218 222 / 50%);--gray-800: #c2d8de;--gray-900: #6d6d6d;--gray-950: #c0c0c0;--blue: #014da8;--blue-100: #2070d1;--blue-200: #c2d8de;--blue-300: #006887;--blue-400: #6dc8eb;--green: #599a4f;--green-100: #bfffb2;--green-200: #e2f7dc;--green-300: #40e81e;--green-400: #89db33;--red: #d70c17;--red-100: #e55166;--red-200: #e85d57;--red-300: #ff3800;--red-400: #f00;--orange: #ef9400;--orange-100: #e56101;--orange-200: #ff831a;--size-xxl: 44px;--size-xxls: 40px;--size-xxlss: 32px;--size-xl: 24px;--size-xls: 20px;--size-l: 18px;--size-m: 16px;--size-s: 14px;--size-xs: 12px;--line-height-s: 20px;--line-height-m: 24px;--line-height-l: 28px;--tooltip-width: 415px;--tender-list-title-width: 387px;--tender-list-title-box-width: 340px;--row-horzontal-padding: 10px}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */*{box-sizing:border-box}html{line-height:1.15;text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none;-moz-appearance:none;appearance:none}::-webkit-file-upload-button{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v85/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format("woff2")}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialiconsoutlined/v56/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5euIg.woff2) format("woff2")}.material-icons{font-family:Material Icons,sans-serif;font-weight:400;font-style:normal;font-size:var(--size-m);line-height:inherit;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;overflow-wrap:normal;direction:ltr;font-feature-settings:"liga";text-decoration:none!important;-webkit-font-smoothing:antialiased}.material-icons.outlined{font-family:Material Icons Outlined,sans-serif}.material-icons:hover{text-decoration:none!important}body{box-sizing:border-box;padding:0;margin:0;color:var(--black);font-size:var(--size-m)}html{scroll-behavior:smooth}*{font-family:Open Sans,Arial,sans-serif;box-sizing:inherit}*:before,*:after{box-sizing:inherit}img{max-width:100%;max-height:100%}.pz-button[data-v-eadd2ab6]:focus-visible{outline:2px solid var(--blue);outline-offset:2px}.pz-button[data-v-eadd2ab6]{display:inline-flex;align-items:center;justify-content:center;min-height:2.75rem;padding:.75em 1.25em;border:1px solid transparent;border-radius:3px;font-size:var(--size-m);font-weight:600;line-height:1.2;cursor:pointer;transition:background-color .2s ease,border-color .2s ease,color .2s ease,opacity .2s ease,transform .2s ease}.pz-button[data-v-eadd2ab6]:hover:not(:disabled){transform:translateY(-1px)}.pz-button[data-v-eadd2ab6]:disabled{cursor:not-allowed}.pz-button__label[data-v-eadd2ab6]{display:inline-flex;align-items:center}.pz-button--primary[data-v-eadd2ab6]{background-color:var(--blue-100);color:var(--blue)}.pz-button--primary[data-v-eadd2ab6]:hover:not(:disabled){background-color:var(--blue-200)}.pz-button--disabled[data-v-eadd2ab6]{opacity:.65}
|
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@prozorro/prozorro-ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.2-beta",
|
|
5
|
+
"description": "Official Prozorro UI Library",
|
|
6
|
+
"author": "Dmytro Rybachek",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "dist/prozorro-ui.cjs",
|
|
9
|
+
"module": "dist/prozorro-ui.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/prozorro-ui.js",
|
|
16
|
+
"require": "./dist/prozorro-ui.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./dist/": {
|
|
19
|
+
"import": "./dist"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "npm run build:lib && npm run build:storybook",
|
|
28
|
+
"build:lib": "npm run typecheck && vite build && copyfiles ./package.json dist && npm run removeFromBuild:lib",
|
|
29
|
+
"format": "prettier . --write",
|
|
30
|
+
"format:check": "prettier . --check",
|
|
31
|
+
"lint": "npm run lint:eslint && npm run lint:styles",
|
|
32
|
+
"lint:eslint": "eslint ./src",
|
|
33
|
+
"lint:eslint:fix": "eslint ./src --fix",
|
|
34
|
+
"lint:styles": "stylelint \"src/**/*.{scss,vue}\"",
|
|
35
|
+
"lint:styles:fix": "stylelint \"src/**/*.{scss,vue}\" --fix",
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"storybook": "storybook dev -p 6006",
|
|
38
|
+
"build:storybook": "storybook build --output-dir dist/app",
|
|
39
|
+
"typecheck": "vue-tsc --noEmit",
|
|
40
|
+
"removeFromBuild:lib": "rimraf ./dist/robots.txt ./dist/test-data",
|
|
41
|
+
"clean": "rimraf dist"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"typescript",
|
|
45
|
+
"library",
|
|
46
|
+
"prozorro",
|
|
47
|
+
"UI"
|
|
48
|
+
],
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"vue": "^3.0.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@eslint/js": "^9.39.4",
|
|
54
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
55
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
56
|
+
"@storybook/test": "^8.6.12",
|
|
57
|
+
"@storybook/vue3-vite": "^8.6.12",
|
|
58
|
+
"@types/node": "^24.5.2",
|
|
59
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
60
|
+
"copyfiles": "^2.4.1",
|
|
61
|
+
"eslint": "^9.39.4",
|
|
62
|
+
"eslint-config-prettier": "^10.1.8",
|
|
63
|
+
"eslint-import-resolver-alias": "^1.1.2",
|
|
64
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
65
|
+
"eslint-plugin-import": "^2.32.0",
|
|
66
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
67
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
68
|
+
"globals": "^17.4.0",
|
|
69
|
+
"husky": "^9.1.7",
|
|
70
|
+
"postcss-html": "^1.8.1",
|
|
71
|
+
"prettier": "^3.8.1",
|
|
72
|
+
"rimraf": "^6.1.3",
|
|
73
|
+
"sass": "^1.92.1",
|
|
74
|
+
"storybook": "^8.6.12",
|
|
75
|
+
"stylelint": "^17.6.0",
|
|
76
|
+
"stylelint-config-html": "^1.1.0",
|
|
77
|
+
"stylelint-config-recommended-scss": "^17.0.0",
|
|
78
|
+
"stylelint-config-recommended-vue": "^1.6.1",
|
|
79
|
+
"stylelint-config-standard-scss": "^17.0.0",
|
|
80
|
+
"stylelint-order": "^8.1.1",
|
|
81
|
+
"typescript": "^5.9.2",
|
|
82
|
+
"typescript-eslint": "^8.57.2",
|
|
83
|
+
"vite": "^5.4.19",
|
|
84
|
+
"vite-plugin-dts": "^4.5.4",
|
|
85
|
+
"vue": "^3.5.21",
|
|
86
|
+
"vue-eslint-parser": "^10.4.0",
|
|
87
|
+
"vue-tsc": "^3.0.7"
|
|
88
|
+
}
|
|
89
|
+
}
|