@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.
Files changed (42) hide show
  1. package/dist/bloc/Bloc.d.ts +12 -0
  2. package/dist/bloc/Bloc.d.ts.map +1 -0
  3. package/dist/bloc/useBlocState.d.ts +4 -0
  4. package/dist/bloc/useBlocState.d.ts.map +1 -0
  5. package/dist/index.d.ts +22 -0
  6. package/dist/index.d.ts.map +1 -0
  7. package/dist/presentation/component/qr-code/View.vue.d.ts +67 -0
  8. package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -0
  9. package/dist/presentation/component/share/ShareIframe.vue.d.ts +67 -0
  10. package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -0
  11. package/dist/presentation/component/share/ShareQrCode.vue.d.ts +45 -0
  12. package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -0
  13. package/dist/presentation/component/share/View.vue.d.ts +40 -0
  14. package/dist/presentation/component/share/View.vue.d.ts.map +1 -0
  15. package/dist/presentation/component/share/viewModel.d.ts +5 -0
  16. package/dist/presentation/component/share/viewModel.d.ts.map +1 -0
  17. package/dist/store/accountStore.d.ts +16 -0
  18. package/dist/store/accountStore.d.ts.map +1 -0
  19. package/dist/store/plugins.d.ts +16 -0
  20. package/dist/store/plugins.d.ts.map +1 -0
  21. package/dist/ui-test/Share.vue.d.ts +13 -0
  22. package/dist/ui-test/Share.vue.d.ts.map +1 -0
  23. package/dist/utils/colorUtils.d.ts +6 -0
  24. package/dist/utils/colorUtils.d.ts.map +1 -0
  25. package/dist/utils/constants.d.ts +5 -0
  26. package/dist/utils/constants.d.ts.map +1 -0
  27. package/dist/utils/date.d.ts +2 -0
  28. package/dist/utils/date.d.ts.map +1 -0
  29. package/dist/utils/file.d.ts +10 -0
  30. package/dist/utils/file.d.ts.map +1 -0
  31. package/dist/utils/format.d.ts +15 -0
  32. package/dist/utils/format.d.ts.map +1 -0
  33. package/dist/utils/lazy.d.ts +9 -0
  34. package/dist/utils/lazy.d.ts.map +1 -0
  35. package/dist/utils/poll.d.ts +11 -0
  36. package/dist/utils/poll.d.ts.map +1 -0
  37. package/dist/utils/right.d.ts +3 -0
  38. package/dist/utils/right.d.ts.map +1 -0
  39. package/dist/utils/web.d.ts +2 -0
  40. package/dist/utils/web.d.ts.map +1 -0
  41. package/dist/vue-tools.es.js +1152 -1139
  42. package/package.json +65 -65
package/package.json CHANGED
@@ -1,65 +1,65 @@
1
- {
2
- "name": "@agendize/vue-tools",
3
- "version": "1.9.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.2.40",
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
+ }