@ray-js/ipc-player-integration 0.0.28 → 0.0.29-beta.1

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 (66) hide show
  1. package/lib/ctx/ctx.js +10 -2
  2. package/lib/ctx/multiCameraCtx.d.ts +73 -0
  3. package/lib/ctx/multiCameraCtx.js +176 -0
  4. package/lib/features/initPlayerWidgets/index.d.ts +5 -4
  5. package/lib/features/initPlayerWidgets/index.js +7 -0
  6. package/lib/features/initPlayerWidgets/multiCamera.d.ts +8 -0
  7. package/lib/features/initPlayerWidgets/multiCamera.js +78 -0
  8. package/lib/i18n/index.d.ts +20 -0
  9. package/lib/i18n/strings.d.ts +10 -0
  10. package/lib/i18n/strings.js +12 -2
  11. package/lib/iconfont/iconfont.css +197 -4
  12. package/lib/iconfont/iconfont.js +13 -13
  13. package/lib/iconfont/iconfont.json +336 -0
  14. package/lib/iconfont/iconfont.ttf +0 -0
  15. package/lib/iconfont/iconfont.woff +0 -0
  16. package/lib/iconfont/iconfont.woff2 +0 -0
  17. package/lib/interface.d.ts +90 -4
  18. package/lib/interface.js +56 -1
  19. package/lib/ui/constant.d.ts +6 -0
  20. package/lib/ui/constant.js +6 -0
  21. package/lib/ui/ui.js +187 -17
  22. package/lib/ui/ui.less +19 -21
  23. package/lib/utils/storage/index.d.ts +1 -0
  24. package/lib/utils/storage/index.js +8 -1
  25. package/lib/widgets/battery/battery.composition.d.ts +60 -4
  26. package/lib/widgets/fullScreen/fullScreen.js +5 -3
  27. package/lib/widgets/index.d.ts +2 -0
  28. package/lib/widgets/index.js +3 -1
  29. package/lib/widgets/multiCamera/constants.d.ts +1 -0
  30. package/lib/widgets/multiCamera/constants.js +1 -0
  31. package/lib/widgets/multiCamera/index.d.ts +8 -0
  32. package/lib/widgets/multiCamera/index.js +8 -0
  33. package/lib/widgets/multiCamera/index.less +214 -0
  34. package/lib/widgets/multiCamera/landscapeTip.d.ts +6 -0
  35. package/lib/widgets/multiCamera/landscapeTip.js +40 -0
  36. package/lib/widgets/multiCamera/moveView/index.d.ts +9 -0
  37. package/lib/widgets/multiCamera/moveView/index.js +22 -0
  38. package/lib/widgets/multiCamera/moveView/tyComponent/index.d.ts +1 -0
  39. package/lib/widgets/multiCamera/moveView/tyComponent/index.js +42 -0
  40. package/lib/widgets/multiCamera/moveView/tyComponent/index.json +3 -0
  41. package/lib/widgets/multiCamera/moveView/tyComponent/index.tyml +8 -0
  42. package/lib/widgets/multiCamera/moveView/tyComponent/index.tyss +4 -0
  43. package/lib/widgets/multiCamera/moveView/utils.d.ts +1 -0
  44. package/lib/widgets/multiCamera/moveView/utils.js +29 -0
  45. package/lib/widgets/multiCamera/moveablePtzControl.d.ts +22 -0
  46. package/lib/widgets/multiCamera/moveablePtzControl.js +302 -0
  47. package/lib/widgets/multiCamera/multiPtz.d.ts +11 -0
  48. package/lib/widgets/multiCamera/multiPtz.js +46 -0
  49. package/lib/widgets/multiCamera/ptzMoveableTip.d.ts +8 -0
  50. package/lib/widgets/multiCamera/ptzMoveableTip.js +66 -0
  51. package/lib/widgets/multiCamera/switchLayout.d.ts +8 -0
  52. package/lib/widgets/multiCamera/switchLayout.js +57 -0
  53. package/lib/widgets/multiCamera/tileActions.d.ts +6 -0
  54. package/lib/widgets/multiCamera/tileActions.js +15 -0
  55. package/lib/widgets/multiCamera/tileMultiPtz.d.ts +11 -0
  56. package/lib/widgets/multiCamera/tileMultiPtz.js +48 -0
  57. package/lib/widgets/multiCamera/tileSwitchLayout.d.ts +8 -0
  58. package/lib/widgets/multiCamera/tileSwitchLayout.js +38 -0
  59. package/lib/widgets/multiCamera/tileTip.d.ts +6 -0
  60. package/lib/widgets/multiCamera/tileTip.js +50 -0
  61. package/lib/widgets/ptz/ptz.less +15 -8
  62. package/lib/widgets/smallIntercom/index.d.ts +8 -0
  63. package/lib/widgets/smallIntercom/index.js +38 -0
  64. package/lib/widgets/smallIntercom/index.less +4 -0
  65. package/lib/widgets/voiceIntercom/voiceIntercom.d.ts +33 -2
  66. package/package.json +6 -5
@@ -1,17 +1,210 @@
1
1
  @font-face {
2
2
  font-family: "icon-panel"; /* Project id 4727767 */
3
- src: url('iconfont.woff2?t=1742868894676') format('woff2'),
4
- url('iconfont.woff?t=1742868894676') format('woff'),
5
- url('iconfont.ttf?t=1742868894676') format('truetype');
3
+ src: url('iconfont.woff2?t=1761875257617') format('woff2'),
4
+ url('iconfont.woff?t=1761875257617') format('woff'),
5
+ url('iconfont.ttf?t=1761875257617') format('truetype');
6
6
  }
7
7
 
8
8
  .icon-panel {
9
- font-family: "icon-panel";
9
+ font-family: "icon-panel" !important;
10
+ font-size: 16px;
10
11
  font-style: normal;
11
12
  -webkit-font-smoothing: antialiased;
12
13
  -moz-osx-font-smoothing: grayscale;
13
14
  }
14
15
 
16
+ .icon-panel-gun-ball:before {
17
+ content: "\e68c";
18
+ }
19
+
20
+ .icon-panel-gun-ball-2:before {
21
+ content: "\e68b";
22
+ }
23
+
24
+ .icon-panel-thumbnail:before {
25
+ content: "\e67f";
26
+ }
27
+
28
+ .icon-panel-landscape-thumbnail:before {
29
+ content: "\e680";
30
+ }
31
+
32
+ .icon-panel-expand:before {
33
+ content: "\e681";
34
+ }
35
+
36
+ .icon-panel-tile:before {
37
+ content: "\e682";
38
+ }
39
+
40
+ .icon-panel-landscape-grid:before {
41
+ content: "\e683";
42
+ }
43
+
44
+ .icon-panel-pin:before {
45
+ content: "\e684";
46
+ }
47
+
48
+ .icon-panel-arrow-expand:before {
49
+ content: "\e685";
50
+ }
51
+
52
+ .icon-panel-window-close:before {
53
+ content: "\e686";
54
+ }
55
+
56
+ .icon-panel-landscape-tile:before {
57
+ content: "\e687";
58
+ }
59
+
60
+ .icon-panel-pip:before {
61
+ content: "\e688";
62
+ }
63
+
64
+ .icon-panel-landscape-new:before {
65
+ content: "\e689";
66
+ }
67
+
68
+ .icon-panel-collapse:before {
69
+ content: "\e68a";
70
+ }
71
+
72
+ .icon-panel-duoxuan:before {
73
+ content: "\e679";
74
+ }
75
+
76
+ .icon-panel-shanchu:before {
77
+ content: "\e678";
78
+ }
79
+
80
+ .icon-panel-shaixuan:before {
81
+ content: "\e677";
82
+ }
83
+
84
+ .icon-panel-close-voice:before {
85
+ content: "\e676";
86
+ }
87
+
88
+ .icon-panel-cruise-plan:before {
89
+ content: "\e675";
90
+ }
91
+
92
+ .icon-panel-stop-record:before {
93
+ content: "\e674";
94
+ }
95
+
96
+ .icon-panel-find-pet:before {
97
+ content: "\e673";
98
+ }
99
+
100
+ .icon-panel-pet-voice-custom:before {
101
+ content: "\e672";
102
+ }
103
+
104
+ .icon-panel-voice-list:before {
105
+ content: "\e671";
106
+ }
107
+
108
+ .icon-panel-again:before {
109
+ content: "\e670";
110
+ }
111
+
112
+ .icon-panel-select:before {
113
+ content: "\e66f";
114
+ }
115
+
116
+ .icon-panel-enable-voice:before {
117
+ content: "\e66e";
118
+ }
119
+
120
+ .icon-panel-not-disturb:before {
121
+ content: "\e66d";
122
+ }
123
+
124
+ .icon-panel-pet-voice:before {
125
+ content: "\e66c";
126
+ }
127
+
128
+ .icon-panel-verify-access:before {
129
+ content: "\e644";
130
+ }
131
+
132
+ .icon-panel-access-list:before {
133
+ content: "\e662";
134
+ }
135
+
136
+ .icon-panel-access-control:before {
137
+ content: "\e663";
138
+ }
139
+
140
+ .icon-panel-access-schedule:before {
141
+ content: "\e664";
142
+ }
143
+
144
+ .icon-panel-always-open:before {
145
+ content: "\e665";
146
+ }
147
+
148
+ .icon-panel-bidirectional-access:before {
149
+ content: "\e666";
150
+ }
151
+
152
+ .icon-panel-open-door:before {
153
+ content: "\e667";
154
+ }
155
+
156
+ .icon-panel-locked:before {
157
+ content: "\e668";
158
+ }
159
+
160
+ .icon-panel-exit-only:before {
161
+ content: "\e669";
162
+ }
163
+
164
+ .icon-panel-close-door:before {
165
+ content: "\e66a";
166
+ }
167
+
168
+ .icon-panel-entry-only:before {
169
+ content: "\e66b";
170
+ }
171
+
172
+ .icon-panel-feature-siren:before {
173
+ content: "\e661";
174
+ }
175
+
176
+ .icon-panel-shared-permission:before {
177
+ content: "\e660";
178
+ }
179
+
180
+ .icon-panel-ptz_collect_add:before {
181
+ content: "\e65f";
182
+ }
183
+
184
+ .icon-panel-ptz-collect:before {
185
+ content: "\e65e";
186
+ }
187
+
188
+ .icon-panel-success:before {
189
+ content: "\e65d";
190
+ }
191
+
192
+ .icon-panel-failure:before {
193
+ content: "\e65c";
194
+ }
195
+
196
+ .icon-panel-pause:before {
197
+ content: "\e65b";
198
+ }
199
+
200
+ .icon-panel-recharge-1:before {
201
+ content: "\e659";
202
+ }
203
+
204
+ .icon-panel-playing:before {
205
+ content: "\e65a";
206
+ }
207
+
15
208
  .icon-panel-charging:before {
16
209
  content: "\e657";
17
210
  }