@tmesoft/data-screen-show 1.1.0 → 1.1.2

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 (37) hide show
  1. package/dist/data-screen-show-lib.d.ts +16 -0
  2. package/dist/data-screen-show-lib.es.js +13239 -13210
  3. package/dist/data-screen-show-lib.umd.js +46 -46
  4. package/dist/public/theme/green/device-assets/icon.png +0 -0
  5. package/dist/public/theme/green/image/icon.png +0 -0
  6. package/dist/public/theme/green/normal-box.png +0 -0
  7. package/dist/public/theme/green/null-icon.png +0 -0
  8. package/dist/public/theme/green/research-result/icon.png +0 -0
  9. package/dist/public/theme/green/teach-team/chart-icon.png +0 -0
  10. package/dist/public/theme/green/teach-team/icon.png +0 -0
  11. package/dist/public/theme/green/text/icon.png +0 -0
  12. package/dist/public/theme/green/thumbnail-upload-bg.png +0 -0
  13. package/dist/public/theme/green/video/icon.png +0 -0
  14. package/dist/public/theme/green/video/video-play.png +0 -0
  15. package/dist/public/theme/yellow/device-assets/icon.png +0 -0
  16. package/dist/public/theme/yellow/image/icon.png +0 -0
  17. package/dist/public/theme/yellow/normal-box.png +0 -0
  18. package/dist/public/theme/yellow/null-icon.png +0 -0
  19. package/dist/public/theme/yellow/research-result/icon.png +0 -0
  20. package/dist/public/theme/yellow/teach-team/chart-icon.png +0 -0
  21. package/dist/public/theme/yellow/teach-team/icon.png +0 -0
  22. package/dist/public/theme/yellow/text/icon.png +0 -0
  23. package/dist/public/theme/yellow/thumbnail-upload-bg.png +0 -0
  24. package/dist/public/theme/yellow/video/icon.png +0 -0
  25. package/dist/public/theme/yellow/video/video-play.png +0 -0
  26. package/package.json +72 -72
  27. /package/dist/public/{device-assets → theme/blue/device-assets}/icon.png +0 -0
  28. /package/dist/public/{image → theme/blue/image}/icon.png +0 -0
  29. /package/dist/public/{normal-box.png → theme/blue/normal-box.png} +0 -0
  30. /package/dist/public/{null-icon.png → theme/blue/null-icon.png} +0 -0
  31. /package/dist/public/{research-result → theme/blue/research-result}/icon.png +0 -0
  32. /package/dist/public/{teach-team → theme/blue/teach-team}/chart-icon.png +0 -0
  33. /package/dist/public/{teach-team → theme/blue/teach-team}/icon.png +0 -0
  34. /package/dist/public/{text → theme/blue/text}/icon.png +0 -0
  35. /package/dist/public/{thumbnail-upload-bg.png → theme/blue/thumbnail-upload-bg.png} +0 -0
  36. /package/dist/public/{video → theme/blue/video}/icon.png +0 -0
  37. /package/dist/public/{video → theme/blue/video}/video-play.png +0 -0
@@ -13,6 +13,10 @@ pageTitle: {
13
13
  type: StringConstructor;
14
14
  default: string;
15
15
  };
16
+ theme: {
17
+ type: StringConstructor;
18
+ default: string;
19
+ };
16
20
  dataCardIdListIds: {
17
21
  type: PropType_2<number[]>;
18
22
  default: () => never[];
@@ -32,6 +36,10 @@ pageTitle: {
32
36
  type: StringConstructor;
33
37
  default: string;
34
38
  };
39
+ theme: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
35
43
  dataCardIdListIds: {
36
44
  type: PropType_2<number[]>;
37
45
  default: () => never[];
@@ -43,6 +51,7 @@ default: () => never[];
43
51
  }>> & Readonly<{}>, {
44
52
  subTitle: string;
45
53
  pageTitle: string;
54
+ theme: string;
46
55
  dataCardIdListIds: number[];
47
56
  customCardList: CustomListPage[];
48
57
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -77,4 +86,11 @@ export declare enum EbigScreenCustomCardType {
77
86
  '文本' = 3
78
87
  }
79
88
 
89
+ /**
90
+ * 获取本地静态图片地址(用于动态引入图片)
91
+ * @param url 图片地址
92
+ * @returns 可正常访问的图片地址
93
+ */
94
+ export declare const getAssetPath: (url: string) => string;
95
+
80
96
  export { }