@evercam/ui 0.0.62 → 0.0.63-Add-timeline-tests-1aaeb4ea7

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 (78) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +0 -2
  3. package/dist/attributes.json +530 -25
  4. package/dist/components/EActionButton.vue.d.ts +17 -0
  5. package/dist/components/EAvatar.vue.d.ts +2 -0
  6. package/dist/components/ECopyToClipboardBtn.vue.d.ts +31 -0
  7. package/dist/components/EDialog.vue.d.ts +3 -0
  8. package/dist/components/EEvercamLogo.vue.d.ts +6 -0
  9. package/dist/components/EExpandableMenu.vue.d.ts +10 -7
  10. package/dist/components/EFadeTransition.vue.d.ts +7 -0
  11. package/dist/components/EFeedackButton.vue.d.ts +38 -0
  12. package/dist/components/EFlagIcon.vue.d.ts +3 -0
  13. package/dist/components/EGlobalSearch.vue.d.ts +1 -0
  14. package/dist/components/EHeatmapBar.vue.d.ts +13 -2
  15. package/dist/components/EImagePlayer.vue.d.ts +127 -0
  16. package/dist/components/EImagesComparator.vue.d.ts +31 -0
  17. package/dist/components/ELayout.vue.d.ts +32 -0
  18. package/dist/components/EPulsatingDot.vue.d.ts +19 -0
  19. package/dist/components/ERadioGroup.vue.d.ts +22 -0
  20. package/dist/components/EToggleSwitch.vue.d.ts +11 -13
  21. package/dist/components/ETooltip.vue.d.ts +12 -0
  22. package/dist/components/EVideoPlayer.vue.d.ts +0 -1
  23. package/dist/components/EVoiceInput.vue.d.ts +49 -0
  24. package/dist/components/EVoiceInputVolumeIndicator.vue.d.ts +13 -0
  25. package/dist/components/EZoomSlider.vue.d.ts +5 -0
  26. package/dist/components/EZoomableImg.vue.d.ts +160 -0
  27. package/dist/components/charts/ECursor.vue.d.ts +74 -0
  28. package/dist/components/charts/ECursorBehavior.vue.d.ts +21 -0
  29. package/dist/components/charts/ETimelineGroupContainer.vue.d.ts +90 -0
  30. package/dist/components/charts/ETimelineRectsChart.vue.d.ts +111 -0
  31. package/dist/components/charts/ETimelineSVGDefs.vue.d.ts +3 -0
  32. package/dist/components/charts/EXAxis.vue.d.ts +83 -0
  33. package/dist/components/charts/EXAxisBackground.vue.d.ts +69 -0
  34. package/dist/components/charts/EXAxisDetailed.vue.d.ts +69 -0
  35. package/dist/components/charts/EXAxisOverview.vue.d.ts +69 -0
  36. package/dist/components/charts/EZoomBehavior.vue.d.ts +58 -0
  37. package/dist/components/charts/constants.d.ts +64 -0
  38. package/dist/components/chat/EChat.vue.d.ts +54 -0
  39. package/dist/components/chat/EChatBody.vue.d.ts +21 -0
  40. package/dist/components/chat/EChatFooter.vue.d.ts +9 -0
  41. package/dist/components/chat/EChatHeader.vue.d.ts +11 -0
  42. package/dist/components/chat/EChatInput.vue.d.ts +28 -0
  43. package/dist/components/chat/EChatMessage.vue.d.ts +38 -0
  44. package/dist/components/chat/EChatMessageActions.vue.d.ts +19 -0
  45. package/dist/components/chat/EChatSuggestionCard.vue.d.ts +13 -0
  46. package/dist/components/chat/EChatWrapper.vue.d.ts +9 -0
  47. package/dist/components/chat/EMarkdown.vue.d.ts +27 -0
  48. package/dist/components/chat/MarkdownProcessor.d.ts +59 -0
  49. package/dist/components/svgIcons/Robot.vue.d.ts +3 -0
  50. package/dist/components/svgIcons/Tag.vue.d.ts +6 -0
  51. package/dist/components/svgIcons/TagPlus.vue.d.ts +6 -0
  52. package/dist/components/svgIcons/index.d.ts +8 -2
  53. package/dist/components/{ETimeline.config.d.ts → timeline/ETimeline.config.d.ts} +1 -1
  54. package/dist/components/{ETimeline.vue.d.ts → timeline/ETimeline.vue.d.ts} +43 -139
  55. package/dist/components/timeline/ETimelineCursor.vue.d.ts +9 -0
  56. package/dist/components/timeline/ETimelineMarker.vue.d.ts +17 -0
  57. package/dist/components/timeline/ETimelineMarkers.vue.d.ts +31 -0
  58. package/dist/components/{ETimelineMilestone.vue.d.ts → timeline/ETimelineMilestone.vue.d.ts} +53 -17
  59. package/dist/components/timeline/ETimelineSelectedTimestampCursor.vue.d.ts +9 -0
  60. package/dist/constants.d.ts +4 -2
  61. package/dist/directives/clickOutside.d.ts +3 -0
  62. package/dist/directives/index.d.ts +3 -2
  63. package/dist/index.d.ts +604 -160
  64. package/dist/index.mjs +15505 -5592
  65. package/dist/index.mjs.map +1 -1
  66. package/dist/index.umd.js +22 -14
  67. package/dist/index.umd.js.map +1 -1
  68. package/dist/mixins/event-listeners.d.ts +2 -0
  69. package/dist/mixins/inactivity-listener.d.ts +10 -6
  70. package/dist/style.css +1 -1
  71. package/dist/styles.css +28386 -27327
  72. package/dist/tags.json +173 -9
  73. package/dist/types.d.ts +98 -5
  74. package/dist/utils.d.ts +9 -0
  75. package/dist/web-types.json +1181 -57
  76. package/package.json +30 -15
  77. package/dist/components/charts/classNames.d.ts +0 -7
  78. /package/dist/directives/{resize-observer.d.ts → resizeObserver.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/ui",
3
- "version": "0.0.62",
3
+ "version": "0.0.63-Add-timeline-tests-1aaeb4ea7",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Evercam - Constuction Cameras.",
@@ -31,67 +31,82 @@
31
31
  "build:lib": "vite build",
32
32
  "build:style": "postcss src/style/main.css --verbose -o dist/styles.css",
33
33
  "build-and-copy": "yarn build && rsync -av --delete ./dist/ ../../node_modules/@evercam/ui/dist/",
34
- "story:dev": "yarn stroy:build:tailwind && yarn stroy:build:typedoc && yarn stroy:dev:styleguide",
34
+ "story:dev": "yarn stroy:build:tailwind && yarn stroy:build:typedoc && yarn story:build:styles && yarn stroy:dev:styleguide",
35
35
  "stroy:dev:styleguide": "vue-styleguidist --config docs/config/styleguide.config.js server",
36
- "story:build": "yarn stroy:build:typedoc && yarn stroy:build:tailwind && yarn stroy:build:styleguide",
36
+ "story:build": "yarn stroy:build:typedoc && yarn stroy:build:tailwind && yarn story:build:styles && yarn stroy:build:styleguide",
37
37
  "stroy:build:styleguide": "vue-styleguidist --config docs/config/styleguide.config.js build",
38
38
  "stroy:build:typedoc": "yarn typedoc --options docs/config/typedoc.config.js --out docs/assets/typedoc",
39
39
  "stroy:build:tailwind": "tailwind-config-viewer export docs/assets/tailwind-config-viewer",
40
+ "story:build:styles": "postcss src/style/main.css --verbose -o docs/assets/evercam-ui-styles.css",
40
41
  "typecheck": "vue-tsc --declaration --emitDeclarationOnly",
41
42
  "generate-ide-docs": "node scripts/generateVetur.mjs && node scripts/generateWebTypes.mjs",
42
43
  "ci": "(cd ../..; yarn ci)",
43
44
  "publish-ci": "cd ../.. && yarn publish-ci"
44
45
  },
45
46
  "devDependencies": {
46
- "@fontsource-variable/inter": "^5.0.8",
47
- "@fortawesome/fontawesome-free": "^5.15.3",
47
+ "@tailwindcss/typography": "^0.5.14",
48
48
  "@types/d3": "^7.4.2",
49
49
  "@types/vue": "^2.0.0",
50
50
  "@vitejs/plugin-vue2": "^2.2.0",
51
51
  "autoprefixer": "^10.4.15",
52
52
  "browser-sync": "^3.0.2",
53
53
  "browser-sync-webpack-plugin": "^2.3.0",
54
+ "crypto": "^1.0.1",
54
55
  "css-loader": "^6.11.0",
55
56
  "d3": "^7.8.5",
57
+ "flag-icons": "^7.2.1",
56
58
  "hls.js": "^1.5.6",
57
59
  "moment-timezone": "^0.5.43",
60
+ "morphdom": "^2.7.4",
58
61
  "postcss": "^8.4.29",
59
62
  "postcss-cli": "^10.1.0",
60
- "postcss-loader": "^8.1.1",
61
- "style-loader": "^3.3.4",
63
+ "rehype-stringify": "^10.0.0",
64
+ "remark-breaks": "^4.0.0",
65
+ "remark-gfm": "^4.0.0",
66
+ "remark-parse": "^11.0.0",
67
+ "remark-rehype": "^11.1.0",
62
68
  "tailwind-config-viewer": "^2.0.1",
63
- "tailwindcss": "^3.4.3",
69
+ "tailwindcss": "^3.4.10",
64
70
  "ts-loader": "^9.5.1",
65
71
  "typedoc": "^0.25.13",
66
72
  "typedoc-plugin-markdown": "^4.0.0-next.55",
67
- "typedoc-theme-hierarchy": "^4.1.2",
68
73
  "typescript": "^5.2.2",
74
+ "typewriter-effect": "^2.21.0",
75
+ "unified": "^11.0.5",
76
+ "unist-util-visit": "^5.0.0",
69
77
  "vite": "^4.4.9",
70
78
  "vite-plugin-commonjs": "^0.10.1",
71
79
  "vite-plugin-dts": "^3.6.0",
72
- "vscode-oniguruma": "^1.6.1",
73
- "vscode-textmate": "^6.0.0",
74
80
  "vue": "^2.7.16",
75
81
  "vue-loader": "^15.0.0",
76
82
  "vue-style-loader": "^4.1.3",
77
83
  "vue-styleguidist": "^4.72.4",
78
84
  "vue-template-compiler": "^2.7.16",
79
- "vue-tsc": "^1.8.15",
80
85
  "webpack": "^5.91.0",
81
- "webpack-cli": "^5.1.4",
82
86
  "webpack-shell-plugin-next": "^2.3.1"
83
87
  },
84
88
  "peerDependencies": {
85
89
  "@fontsource-variable/inter": "^5.0.8",
86
90
  "@fortawesome/fontawesome-free": "^5.15.3",
87
91
  "d3": "^7.8.5",
92
+ "flag-icons": "^7.2.1",
88
93
  "hls.js": "^1.5.6",
89
94
  "moment-timezone": "^0.5.43",
95
+ "morphdom": "^2.7.4",
96
+ "rehype-stringify": "^10.0.0",
97
+ "remark-breaks": "^4.0.0",
98
+ "remark-gfm": "^4.0.0",
99
+ "remark-parse": "^11.0.0",
100
+ "remark-rehype": "^11.1.0",
101
+ "typewriter-effect": "^2.21.0",
102
+ "unified": "^11.0.5",
103
+ "unist-util-visit": "^5.0.0",
90
104
  "vue": "^2.7.16"
91
105
  },
92
106
  "vetur": {
93
107
  "tags": "dist/tags.json",
94
108
  "attributes": "dist/attributes.json"
95
109
  },
96
- "web-types": "dist/web-types.json"
97
- }
110
+ "web-types": "dist/web-types.json",
111
+ "dependencies": {}
112
+ }
@@ -1,7 +0,0 @@
1
- export declare const classNames: {
2
- xAxis: string;
3
- xAxisDark: string;
4
- xAxisOverview: string;
5
- xAxisDetailed: string;
6
- xAxisBackground: string;
7
- };