@wisemen/wise-crm-web 0.0.0-alpha.7
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/ActivityIcon-BWDnpLD_.js +21 -0
- package/dist/BookIcon-DnR-qsYC.js +21 -0
- package/dist/BuildingIcon-nEhur9xk.js +21 -0
- package/dist/BuildingsIcon-BgbK8tys.js +21 -0
- package/dist/BusinessDetailView-D4B57TLI.js +25 -0
- package/dist/ChevronDownIcon-DigflRxi.js +21 -0
- package/dist/ClockPlusIcon-bMoCZOMP.js +32 -0
- package/dist/CopyIcon-hiZwfprS.js +21 -0
- package/dist/CrmDetailView.vue_vue_type_script_setup_true_lang-xxFJ9bKG.js +129 -0
- package/dist/DealDetailView--GglpZTy.js +131 -0
- package/dist/DealIcon-BX3LU2DT.js +21 -0
- package/dist/EditWithLineIcon-PT5bM2-F.js +21 -0
- package/dist/FileIcon-rS6Vs1wd.js +21 -0
- package/dist/FilterLinesIcon-B4cL-OGq.js +24 -0
- package/dist/HashIcon-Didu7mVP.js +21 -0
- package/dist/HomeFilledIcon-pIVFiBYA.js +18 -0
- package/dist/IndividualDetailView-DBftaMO1.js +25 -0
- package/dist/LayersTreeIcon-Bqh8iZ7I.js +32 -0
- package/dist/LinkExternalIcon-Ciw3-imi.js +21 -0
- package/dist/LocationPinIcon-eq1T0gH0.js +21 -0
- package/dist/MailIcon-C77L3KQo.js +21 -0
- package/dist/MobilePhoneIcon-BnF5JbLh.js +21 -0
- package/dist/PhoneIcon-CRWgcV8b.js +21 -0
- package/dist/SendIcon-B4ge738O.js +21 -0
- package/dist/StarOutlineIcon-C9fjCkJC.js +21 -0
- package/dist/StarYellowIcon-CTgkbQAN.js +21 -0
- package/dist/TimeLineMarkerIcon-B3C-W2CT.js +20 -0
- package/dist/TrashIcon-BZgfosaB.js +22 -0
- package/dist/UserCircleIcon-KnI7owxR.js +32 -0
- package/dist/UserIcon-C5rfOXec.js +24 -0
- package/dist/VerticalDotsIcon-7naHx2fP.js +22 -0
- package/dist/WalletIcon-4SUYv138.js +21 -0
- package/dist/deal/components/DealDetailSidebarOverviewContent.vue.d.ts +6 -0
- package/dist/index-BuDP-Xur.js +35030 -0
- package/dist/index.js +27 -0
- package/package.json +75 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { p as a, j as e, h as r, l as C, k as m, C as n, n as d, v as u, s as W, m as t, x as l, z as o, A as g, y as v, F as B, G as c, g as I, i as D, u as b, r as f, q as h, B as p, J as w, w as S } from "./index-BuDP-Xur.js";
|
|
2
|
+
export {
|
|
3
|
+
a as CrmSearchTrigger,
|
|
4
|
+
e as WiseCrmBusinessBillingInformationCard,
|
|
5
|
+
r as WiseCrmBusinessDialog,
|
|
6
|
+
C as WiseCrmBusinessTable,
|
|
7
|
+
m as WiseCrmBusinessUpdateCard,
|
|
8
|
+
n as WiseCrmBusinessWidget,
|
|
9
|
+
d as WiseCrmCard,
|
|
10
|
+
u as WiseCrmContactCreateDialog,
|
|
11
|
+
W as WiseCrmCrmDealOverview,
|
|
12
|
+
t as WiseCrmFormCardSubmitButtonTransition,
|
|
13
|
+
l as WiseCrmIndividualBillingInformationCard,
|
|
14
|
+
o as WiseCrmIndividualDialog,
|
|
15
|
+
g as WiseCrmIndividualTable,
|
|
16
|
+
v as WiseCrmIndividualUpdateCard,
|
|
17
|
+
B as WiseCrmIndividualWidget,
|
|
18
|
+
c as WiseCrmRecentlyCreatedWidget,
|
|
19
|
+
I as businessUuidSchema,
|
|
20
|
+
D as individualUuidSchema,
|
|
21
|
+
b as useWiseCrm,
|
|
22
|
+
f as useWiseCrmConfig,
|
|
23
|
+
h as useWiseCrmContactCreateDialog,
|
|
24
|
+
p as useWiseCrmRoutes,
|
|
25
|
+
w as wiseCrmIcons,
|
|
26
|
+
S as wiseCrmLocales
|
|
27
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wisemen/wise-crm-web",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0-alpha.7",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "CRM frontend package with Vue 3 components, composables and types",
|
|
7
|
+
"author": "Wisemen",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"vue",
|
|
14
|
+
"vue3",
|
|
15
|
+
"crm",
|
|
16
|
+
"components",
|
|
17
|
+
"typescript"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"module": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"@wisemen/vue-core-components": "^2.0.0-beta.1",
|
|
33
|
+
"vue": "^3.5.0",
|
|
34
|
+
"vue-i18n": "^11.1.0",
|
|
35
|
+
"vue-router": "^4.5.0",
|
|
36
|
+
"zod": "^4.0.0"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@number-flow/vue": "0.4.8",
|
|
40
|
+
"@tanstack/vue-query": "^5.87.4",
|
|
41
|
+
"@vueuse/core": "^13.9.0",
|
|
42
|
+
"@vueuse/router": "13.9.0",
|
|
43
|
+
"@wisemen/vue-core-query": "0.0.47",
|
|
44
|
+
"dayjs": "^1.11.13",
|
|
45
|
+
"formango": "^3.1.0",
|
|
46
|
+
"motion-v": "^1.6.1",
|
|
47
|
+
"pinia": "^3.0.3",
|
|
48
|
+
"reka-ui": "^2.4.1",
|
|
49
|
+
"temporal-polyfill": "^0.3.0",
|
|
50
|
+
"vue-router": "^4.5.1",
|
|
51
|
+
"vue3-google-map": "0.24.1"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@hey-api/openapi-ts": "0.82.3",
|
|
55
|
+
"@tailwindcss/vite": "4.1.11",
|
|
56
|
+
"@vue/tsconfig": "0.7.0",
|
|
57
|
+
"@wisemen/eslint-config-vue": "1.7.0",
|
|
58
|
+
"@wisemen/open-api-plugins": "0.0.2",
|
|
59
|
+
"eslint-plugin-oxlint": "1.9.0",
|
|
60
|
+
"superjson": "2.2.2",
|
|
61
|
+
"tailwindcss": "4.1.11",
|
|
62
|
+
"vitest": "3.2.4",
|
|
63
|
+
"zod": "^4.0.14"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly --outDir ./dist",
|
|
67
|
+
"dev": "vite build --watch & vue-tsc --emitDeclarationOnly --outDir ./dist --watch",
|
|
68
|
+
"type-check": "vue-tsc --noEmit",
|
|
69
|
+
"test:unit": "vitest --run",
|
|
70
|
+
"openapi-crm-ts": "openapi-ts -f openapiCrm.config.ts",
|
|
71
|
+
"lint:eslint": "eslint . --fix --cache",
|
|
72
|
+
"lint:oxlint": "oxlint . --fix",
|
|
73
|
+
"lint": "pnpm lint:oxlint && pnpm lint:eslint"
|
|
74
|
+
}
|
|
75
|
+
}
|