@agendize/vue-tools 1.9.0 → 1.10.0
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/bloc/Bloc.d.ts +12 -0
- package/dist/bloc/Bloc.d.ts.map +1 -0
- package/dist/bloc/useBlocState.d.ts +4 -0
- package/dist/bloc/useBlocState.d.ts.map +1 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/presentation/component/qr-code/View.vue.d.ts +67 -0
- package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/ShareIframe.vue.d.ts +67 -0
- package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts +45 -0
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/View.vue.d.ts +40 -0
- package/dist/presentation/component/share/View.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/viewModel.d.ts +5 -0
- package/dist/presentation/component/share/viewModel.d.ts.map +1 -0
- package/dist/store/accountStore.d.ts +16 -0
- package/dist/store/accountStore.d.ts.map +1 -0
- package/dist/store/plugins.d.ts +16 -0
- package/dist/store/plugins.d.ts.map +1 -0
- package/dist/ui-test/Share.vue.d.ts +13 -0
- package/dist/ui-test/Share.vue.d.ts.map +1 -0
- package/dist/utils/colorUtils.d.ts +6 -0
- package/dist/utils/colorUtils.d.ts.map +1 -0
- package/dist/utils/constants.d.ts +5 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/date.d.ts +2 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/file.d.ts +10 -0
- package/dist/utils/file.d.ts.map +1 -0
- package/dist/utils/format.d.ts +15 -0
- package/dist/utils/format.d.ts.map +1 -0
- package/dist/utils/lazy.d.ts +9 -0
- package/dist/utils/lazy.d.ts.map +1 -0
- package/dist/utils/poll.d.ts +11 -0
- package/dist/utils/poll.d.ts.map +1 -0
- package/dist/utils/right.d.ts +3 -0
- package/dist/utils/right.d.ts.map +1 -0
- package/dist/utils/web.d.ts +2 -0
- package/dist/utils/web.d.ts.map +1 -0
- package/dist/vue-tools.es.js +1152 -1139
- package/package.json +65 -65
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@agendize/vue-tools",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Agendize tools",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"private": false,
|
|
7
|
-
"keywords": [
|
|
8
|
-
"agendize",
|
|
9
|
-
"tools"
|
|
10
|
-
],
|
|
11
|
-
"homepage": "https://github.com/agendize/vue-tools",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/agendize/vue-tools/issues"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/agendize/vue-tools.git"
|
|
18
|
-
},
|
|
19
|
-
"license": "Apache-2.0",
|
|
20
|
-
"author": "David Tant",
|
|
21
|
-
"main": "./dist/vue-tools.umd.js",
|
|
22
|
-
"module": "./dist/vue-tools.es.js",
|
|
23
|
-
"unpkg": "./dist/vue-tools.min.js",
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"files": [
|
|
26
|
-
"dist/"
|
|
27
|
-
],
|
|
28
|
-
"exports": {
|
|
29
|
-
".": {
|
|
30
|
-
"import": "./dist/vue-tools.es.js",
|
|
31
|
-
"require": "./dist/vue-tools.umd.js"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"scripts": {
|
|
35
|
-
"dev": "vite",
|
|
36
|
-
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
37
|
-
"build-quick": "vite build",
|
|
38
|
-
"preview": "vite preview",
|
|
39
|
-
"test": "vitest",
|
|
40
|
-
"publish-public": "npm publish --access=public",
|
|
41
|
-
"publish-beta": "npm publish --access=public --tag=beta"
|
|
42
|
-
},
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"qr-code-styling": "^1.5.0",
|
|
45
|
-
"@agendize/js-calendar-api": "workspace:*",
|
|
46
|
-
"@agendize/js-public-api": "workspace:*",
|
|
47
|
-
"@agendize/design-system": "workspace:*",
|
|
48
|
-
"@agendize/az-i18n": "workspace:*",
|
|
49
|
-
"@agendize/vue-acl": "workspace:*",
|
|
50
|
-
"pinia": "^2.1.7"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@intlify/vite-plugin-vue-i18n": "^5.0.1",
|
|
54
|
-
"@types/node": "^18.6.3",
|
|
55
|
-
"@vitejs/plugin-vue": "^3.2.0",
|
|
56
|
-
"@vue/test-utils": "^2.2.7",
|
|
57
|
-
"typescript": "4.7.4",
|
|
58
|
-
"vite": "^3.1.8",
|
|
59
|
-
"sass": "^1.55.0",
|
|
60
|
-
"vue-tsc": "^0.29.8",
|
|
61
|
-
"vue": "
|
|
62
|
-
"vue-i18n": "^9.2.2",
|
|
63
|
-
"vitest": "^0.33.0"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@agendize/vue-tools",
|
|
3
|
+
"version": "1.10.0",
|
|
4
|
+
"description": "Agendize tools",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"keywords": [
|
|
8
|
+
"agendize",
|
|
9
|
+
"tools"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/agendize/vue-tools",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/agendize/vue-tools/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/agendize/vue-tools.git"
|
|
18
|
+
},
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"author": "David Tant",
|
|
21
|
+
"main": "./dist/vue-tools.umd.js",
|
|
22
|
+
"module": "./dist/vue-tools.es.js",
|
|
23
|
+
"unpkg": "./dist/vue-tools.min.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist/"
|
|
27
|
+
],
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"import": "./dist/vue-tools.es.js",
|
|
31
|
+
"require": "./dist/vue-tools.umd.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
37
|
+
"build-quick": "vite build",
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"publish-public": "npm publish --access=public",
|
|
41
|
+
"publish-beta": "npm publish --access=public --tag=beta"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"qr-code-styling": "^1.5.0",
|
|
45
|
+
"@agendize/js-calendar-api": "workspace:*",
|
|
46
|
+
"@agendize/js-public-api": "workspace:*",
|
|
47
|
+
"@agendize/design-system": "workspace:*",
|
|
48
|
+
"@agendize/az-i18n": "workspace:*",
|
|
49
|
+
"@agendize/vue-acl": "workspace:*",
|
|
50
|
+
"pinia": "^2.1.7"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@intlify/vite-plugin-vue-i18n": "^5.0.1",
|
|
54
|
+
"@types/node": "^18.6.3",
|
|
55
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
56
|
+
"@vue/test-utils": "^2.2.7",
|
|
57
|
+
"typescript": "4.7.4",
|
|
58
|
+
"vite": "^3.1.8",
|
|
59
|
+
"sass": "^1.55.0",
|
|
60
|
+
"vue-tsc": "^0.29.8",
|
|
61
|
+
"vue": "3.3.13",
|
|
62
|
+
"vue-i18n": "^9.2.2",
|
|
63
|
+
"vitest": "^0.33.0"
|
|
64
|
+
}
|
|
65
|
+
}
|