@agendize/vue-tools 1.2.0 → 1.3.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 +11 -11
- package/dist/bloc/useBlocState.d.ts +3 -3
- package/dist/index.d.ts +13 -11
- package/dist/presentation/component/qr-code/View.vue.d.ts +69 -69
- package/dist/presentation/locales/index.d.ts +3 -3
- package/dist/store/accountStore.d.ts +14 -14
- package/dist/style.css +1 -1
- package/dist/utils/colorUtils.d.ts +5 -5
- package/dist/utils/constants.d.ts +4 -4
- package/dist/utils/date.d.ts +1 -1
- package/dist/utils/file.d.ts +9 -9
- package/dist/utils/format.d.ts +10 -10
- package/dist/utils/poll.d.ts +1 -0
- package/dist/vue-tools.es.js +10063 -8391
- package/dist/vue-tools.umd.js +19 -19
- package/package.json +66 -66
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
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
|
-
"style": "./dist/style.css"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"dev": "vite",
|
|
37
|
-
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
38
|
-
"build-quick": "vite build",
|
|
39
|
-
"preview": "vite preview",
|
|
40
|
-
"test": "jest",
|
|
41
|
-
"publish-public": "npm publish --access=public",
|
|
42
|
-
"publish-beta": "npm publish --access=public --tag=beta"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"qr-code-styling":"^1.5.0",
|
|
46
|
-
"@agendize/js-calendar-api": "workspace:*",
|
|
47
|
-
"@agendize/design-system": "workspace:*",
|
|
48
|
-
"@agendize/az-i18n": "workspace:*",
|
|
49
|
-
"@agendize/vue-acl": "workspace:*",
|
|
50
|
-
"pinia": "^2.0.33"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
|
|
54
|
-
"@types/node": "^17.0.45",
|
|
55
|
-
"@vitejs/plugin-vue": "^2.3.3",
|
|
56
|
-
"@types/jest": "^29.5.1",
|
|
57
|
-
"jest": "^29.5.0",
|
|
58
|
-
"jest-junit": "^15.0.0",
|
|
59
|
-
"ts-jest": "^29.1.0",
|
|
60
|
-
"typescript": "4.7.4",
|
|
61
|
-
"vite": "^2.9.14",
|
|
62
|
-
"sass": "^1.53.0",
|
|
63
|
-
"vue-tsc": "^0.29.8",
|
|
64
|
-
"vue": "^3.2.37",
|
|
65
|
-
"vue-i18n": "^9.2.2"
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@agendize/vue-tools",
|
|
3
|
+
"version": "1.3.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
|
+
"style": "./dist/style.css"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite",
|
|
37
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
38
|
+
"build-quick": "vite build",
|
|
39
|
+
"preview": "vite preview",
|
|
40
|
+
"test": "jest",
|
|
41
|
+
"publish-public": "npm publish --access=public",
|
|
42
|
+
"publish-beta": "npm publish --access=public --tag=beta"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"qr-code-styling":"^1.5.0",
|
|
46
|
+
"@agendize/js-calendar-api": "workspace:*",
|
|
47
|
+
"@agendize/design-system": "workspace:*",
|
|
48
|
+
"@agendize/az-i18n": "workspace:*",
|
|
49
|
+
"@agendize/vue-acl": "workspace:*",
|
|
50
|
+
"pinia": "^2.0.33"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
|
|
54
|
+
"@types/node": "^17.0.45",
|
|
55
|
+
"@vitejs/plugin-vue": "^2.3.3",
|
|
56
|
+
"@types/jest": "^29.5.1",
|
|
57
|
+
"jest": "^29.5.0",
|
|
58
|
+
"jest-junit": "^15.0.0",
|
|
59
|
+
"ts-jest": "^29.1.0",
|
|
60
|
+
"typescript": "4.7.4",
|
|
61
|
+
"vite": "^2.9.14",
|
|
62
|
+
"sass": "^1.53.0",
|
|
63
|
+
"vue-tsc": "^0.29.8",
|
|
64
|
+
"vue": "^3.2.37",
|
|
65
|
+
"vue-i18n": "^9.2.2"
|
|
66
|
+
}
|
|
67
67
|
}
|