@cloud-app-dev/vidc 3.0.2 → 3.0.5

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 (54) hide show
  1. package/.umirc.ts +12 -7
  2. package/es/Drawer/index.css +1 -0
  3. package/es/LoaderApp/utils.d.ts +1 -1
  4. package/es/Map/AMap.d.ts +6841 -1308
  5. package/es/Map/BasicMap/AMapInstance.d.ts +4 -3
  6. package/es/Map/BasicMap/AMapInstance.js +18 -3
  7. package/es/Map/BasicMap/LeafletInstance.d.ts +3 -3
  8. package/es/Map/ClusterLayer/hook.d.ts +4 -4
  9. package/es/Map/ClusterLayer/hook.js +20 -24
  10. package/es/Map/ClusterLayer/index.d.ts +1 -0
  11. package/es/Map/ClusterLayer/index.js +1 -0
  12. package/es/Map/Config/utils.js +2 -2
  13. package/es/Map/InfoWindow/MakerLikeWindow.d.ts +4 -0
  14. package/es/Map/InfoWindow/MakerLikeWindow.js +103 -0
  15. package/es/Map/InfoWindow/demo.js +48 -21
  16. package/es/Map/InfoWindow/index.d.ts +7 -5
  17. package/es/Map/InfoWindow/index.js +7 -6
  18. package/es/Map/interface.d.ts +1 -1
  19. package/es/Map/useMarker/index.d.ts +2 -2
  20. package/es/Map/useMarker/index.js +3 -19
  21. package/es/Player/demo.js +4 -3
  22. package/es/Player/event/errorEvent.js +3 -8
  23. package/es/Player/frontend_player.js +6 -12
  24. package/es/Player/iconfont.d.ts +1 -1
  25. package/es/Player/iconfont.js +1 -1
  26. package/es/Player/segment_player.js +46 -7
  27. package/es/Player/single_player.d.ts +2 -2
  28. package/es/Player/single_player.js +7 -2
  29. package/es/Player/style/iconfont.ttf +0 -0
  30. package/es/Player/style/iconfont.woff +0 -0
  31. package/es/Player/style/iconfont.woff2 +0 -0
  32. package/es/ScreenPlayer/Live.js +9 -1
  33. package/es/ScreenPlayer/LiveTools.d.ts +3 -1
  34. package/es/ScreenPlayer/LiveTools.js +83 -43
  35. package/es/ScreenPlayer/PlayerWithExt.js +37 -6
  36. package/es/ScreenPlayer/Record.d.ts +5 -0
  37. package/es/ScreenPlayer/Record.js +21 -19
  38. package/es/ScreenPlayer/RecordTools.d.ts +3 -1
  39. package/es/ScreenPlayer/RecordTools.js +99 -46
  40. package/es/ScreenPlayer/ScreenSelect.d.ts +7 -0
  41. package/es/ScreenPlayer/ScreenSelect.js +28 -0
  42. package/es/ScreenPlayer/SegmentTimeLine.js +8 -2
  43. package/es/ScreenPlayer/TimeSelect.d.ts +7 -0
  44. package/es/ScreenPlayer/TimeSelect.js +129 -0
  45. package/es/ScreenPlayer/TimeSlider.js +12 -10
  46. package/es/ScreenPlayer/demo.d.ts +1 -1
  47. package/es/ScreenPlayer/demo.js +7 -3
  48. package/es/ScreenPlayer/demo2.js +1 -1
  49. package/es/ScreenPlayer/index.css +58 -1
  50. package/es/ScreenPlayer/useVideoFit.d.ts +1 -1
  51. package/es/ScreenPlayer/useVideoFit.js +4 -2
  52. package/es/Timeout/index.d.ts +8 -9
  53. package/es/Timeout/index.js +17 -23
  54. package/package.json +1 -1
package/.umirc.ts CHANGED
@@ -2,7 +2,7 @@ import { defineConfig } from 'dumi';
2
2
  import path from 'path';
3
3
 
4
4
  const token =
5
- 'eyJhbGciOiJIUzI1NiJ9.eyJvcmdhbml6YXRpb25JZCI6IjEwMDEwMTAwMDQ0NSIsImV4dCI6MTY2MTA3ODE3NDEzOCwidWlkIjoiMTAxMDAwMDAwNjk5IiwidmFsaWRTdGF0ZSI6MTA0NDA2LCJyb2xlSWQiOlsxMDAwMDAxMTA1MTgsMTAwMDAwMTEwNzI4XSwidmFsaWRUaW1lIjoxNzA0MzgzOTk5MDAwLCJvcHRDZW50ZXJJZCI6IjEwMDEwMDAwMDIzMyIsInVzZXJUeXBlIjoxMDA3MDQsImlhdCI6MTY2MDgxODk3NDEzOH0.5aCna8JWe8ynj9SXuXZ3TMDizpnK7WJFeAgJZhSsRvg';
5
+ 'eyJhbGciOiJIUzI1NiJ9.eyJvcmdhbml6YXRpb25JZCI6IjEwMDEwMTAwMDQ0NSIsImV4dCI6MTY2MTY1NjgzMTU3MywidWlkIjoiMTAxMDAwMDAwNjk5IiwidmFsaWRTdGF0ZSI6MTA0NDA2LCJyb2xlSWQiOlsxMDAwMDAxMTA1MTgsMTAwMDAwMTEwNzI4XSwidmFsaWRUaW1lIjoxNzA0MzgzOTk5MDAwLCJvcHRDZW50ZXJJZCI6IjEwMDEwMDAwMDIzMyIsInVzZXJUeXBlIjoxMDA3MDQsImlhdCI6MTY2MTM5NzYzMTU3M30.OWPxfPgFBWqGJaRsYLSAZohn2AarhbkOuWLa1bwgZE4';
6
6
 
7
7
  export default defineConfig({
8
8
  title: 'CloudApp VIDC',
@@ -39,12 +39,17 @@ export default defineConfig({
39
39
  },
40
40
  },
41
41
  },
42
- mfsu: {
43
- development: {
44
- output: './.mfsu/dev',
45
- },
46
- production: undefined,
47
- },
42
+ mfsu:
43
+ process.env.NODE_ENV === 'development'
44
+ ? {
45
+ development: {
46
+ output: './.mfsu/dev',
47
+ },
48
+ production: {
49
+ output: './.mfsu/prod',
50
+ },
51
+ }
52
+ : undefined,
48
53
  scripts: ['//at.alicdn.com/t/font_1724012_972m5d05cou.js'],
49
54
  styles: [
50
55
  `:root{
@@ -17,6 +17,7 @@
17
17
  .lm-drawer-container.cloudapp-drawer .cloudapp-drawer-header .cloudapp-drawer-title {
18
18
  color: inherit;
19
19
  font-size: var(--fs-large);
20
+ line-height: 2em;
20
21
  }
21
22
  .lm-drawer-container.cloudapp-drawer .cloudapp-drawer-header .cloudapp-drawer-close {
22
23
  padding: 0;
@@ -1,4 +1,4 @@
1
- import { AppItemType } from '@cloud-app-dev/vidc/es/Config/interface';
1
+ import { AppItemType } from '../Config/interface';
2
2
  export declare const getMicroConfig: (appConfig: AppItemType, appProps: any, container: HTMLDivElement) => {
3
3
  title: string;
4
4
  routerPrefix: string;