@ray-js/ipc-player-integration 0.0.29-beta.21 → 0.0.29-beta.22
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.
- package/lib/i18n/index.d.ts +4 -0
- package/lib/i18n/strings.d.ts +2 -0
- package/lib/i18n/strings.js +4 -2
- package/lib/iconfont/iconfont.css +126 -6
- package/lib/iconfont/iconfont.js +13 -13
- package/lib/iconfont/iconfont.json +217 -7
- package/lib/iconfont/iconfont.ttf +0 -0
- package/lib/iconfont/iconfont.woff +0 -0
- package/lib/iconfont/iconfont.woff2 +0 -0
- package/lib/ui/constant.d.ts +1 -0
- package/lib/ui/constant.js +1 -0
- package/lib/ui/ui.d.ts +1 -0
- package/lib/ui/ui.js +22 -1
- package/lib/widgets/flowLowTip/flowLowTip.d.ts +8 -0
- package/lib/widgets/flowLowTip/flowLowTip.js +62 -0
- package/lib/widgets/flowLowTip/flowLowTip.less +73 -0
- package/lib/widgets/flowLowTip/index.d.ts +1 -0
- package/lib/widgets/flowLowTip/index.js +1 -0
- package/lib/widgets/index.d.ts +1 -0
- package/lib/widgets/index.js +2 -1
- package/package.json +1 -1
package/lib/i18n/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ declare const Strings: kit.I18N<{
|
|
|
27
27
|
ipc_player_tip_next: string;
|
|
28
28
|
ipc_player_tip_confirm: string;
|
|
29
29
|
ipc_player_ptz_moveable_tip_text: string;
|
|
30
|
+
ipc_player_flow_low_tip: string;
|
|
30
31
|
};
|
|
31
32
|
zh: {
|
|
32
33
|
ipc_player_resolution_HD: string;
|
|
@@ -55,6 +56,7 @@ declare const Strings: kit.I18N<{
|
|
|
55
56
|
ipc_player_tip_next: string;
|
|
56
57
|
ipc_player_tip_confirm: string;
|
|
57
58
|
ipc_player_ptz_moveable_tip_text: string;
|
|
59
|
+
ipc_player_flow_low_tip: string;
|
|
58
60
|
};
|
|
59
61
|
}, {
|
|
60
62
|
ipc_player_resolution_HD: string;
|
|
@@ -83,6 +85,7 @@ declare const Strings: kit.I18N<{
|
|
|
83
85
|
ipc_player_tip_next: string;
|
|
84
86
|
ipc_player_tip_confirm: string;
|
|
85
87
|
ipc_player_ptz_moveable_tip_text: string;
|
|
88
|
+
ipc_player_flow_low_tip: string;
|
|
86
89
|
} | {
|
|
87
90
|
ipc_player_resolution_HD: string;
|
|
88
91
|
ipc_player_resolution_SD: string;
|
|
@@ -110,5 +113,6 @@ declare const Strings: kit.I18N<{
|
|
|
110
113
|
ipc_player_tip_next: string;
|
|
111
114
|
ipc_player_tip_confirm: string;
|
|
112
115
|
ipc_player_ptz_moveable_tip_text: string;
|
|
116
|
+
ipc_player_flow_low_tip: string;
|
|
113
117
|
}>;
|
|
114
118
|
export default Strings;
|
package/lib/i18n/strings.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare const _default: {
|
|
|
26
26
|
ipc_player_tip_next: string;
|
|
27
27
|
ipc_player_tip_confirm: string;
|
|
28
28
|
ipc_player_ptz_moveable_tip_text: string;
|
|
29
|
+
ipc_player_flow_low_tip: string;
|
|
29
30
|
};
|
|
30
31
|
zh: {
|
|
31
32
|
ipc_player_resolution_HD: string;
|
|
@@ -54,6 +55,7 @@ declare const _default: {
|
|
|
54
55
|
ipc_player_tip_next: string;
|
|
55
56
|
ipc_player_tip_confirm: string;
|
|
56
57
|
ipc_player_ptz_moveable_tip_text: string;
|
|
58
|
+
ipc_player_flow_low_tip: string;
|
|
57
59
|
};
|
|
58
60
|
};
|
|
59
61
|
export default _default;
|
package/lib/i18n/strings.js
CHANGED
|
@@ -25,7 +25,8 @@ export default {
|
|
|
25
25
|
ipc_player_tile_tip_text_step2: 'Click here to switch the multiple viewing modes of the lens',
|
|
26
26
|
ipc_player_tip_next: 'Next',
|
|
27
27
|
ipc_player_tip_confirm: 'Got it',
|
|
28
|
-
ipc_player_ptz_moveable_tip_text: 'Hold the middle to drag the direction control area'
|
|
28
|
+
ipc_player_ptz_moveable_tip_text: 'Hold the middle to drag the direction control area',
|
|
29
|
+
ipc_player_flow_low_tip: 'The device’s remaining data is below 200MB. Please recharge as soon as possible.'
|
|
29
30
|
},
|
|
30
31
|
zh: {
|
|
31
32
|
ipc_player_resolution_HD: '高清',
|
|
@@ -53,6 +54,7 @@ export default {
|
|
|
53
54
|
ipc_player_tile_tip_text_step2: '点击此处可切换镜头的多种查看方式',
|
|
54
55
|
ipc_player_tip_next: '下一步',
|
|
55
56
|
ipc_player_tip_confirm: '知道了',
|
|
56
|
-
ipc_player_ptz_moveable_tip_text: '长按中间可拖动方向控制区域'
|
|
57
|
+
ipc_player_ptz_moveable_tip_text: '长按中间可拖动方向控制区域',
|
|
58
|
+
ipc_player_flow_low_tip: '设备当前剩余流量不足200M,请尽快充值'
|
|
57
59
|
}
|
|
58
60
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "icon-panel"; /* Project id 4727767 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1772529309738') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1772529309738') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1772529309738') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.icon-panel {
|
|
@@ -13,14 +13,134 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.icon-panel-
|
|
17
|
-
content: "\
|
|
16
|
+
.icon-panel-tip-right-arrow:before {
|
|
17
|
+
content: "\e697";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-panel-tip-circle:before {
|
|
21
|
+
content: "\e698";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-panel-night-light:before {
|
|
25
|
+
content: "\e60e";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-panel-feed-reminder:before {
|
|
29
|
+
content: "\e60c";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-panel-baby-core:before {
|
|
33
|
+
content: "\e611";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-panel-door-close-small:before {
|
|
37
|
+
content: "\e6671";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-panel-door-close-large:before {
|
|
41
|
+
content: "\e6672";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-panel-door-open-small:before {
|
|
45
|
+
content: "\e6673";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-panel-door-open-large:before {
|
|
49
|
+
content: "\e6674";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-panel-common-error:before {
|
|
53
|
+
content: "\e696";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-panel-traffic-top-up:before {
|
|
57
|
+
content: "\e693";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-panel-elevator-up:before {
|
|
61
|
+
content: "\e6666";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-panel-elevator-down:before {
|
|
65
|
+
content: "\e6667";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-panel-access-elevator:before {
|
|
69
|
+
content: "\e6668";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-panel-elevator-updown:before {
|
|
73
|
+
content: "\e6669";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-panel-traffic-unauthorized:before {
|
|
77
|
+
content: "\e692";
|
|
18
78
|
}
|
|
19
79
|
|
|
20
|
-
.icon-panel-
|
|
80
|
+
.icon-panel-traffic-low-data:before {
|
|
81
|
+
content: "\e691";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-panel-traffic-not-obtain:before {
|
|
85
|
+
content: "\e690";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-panel-swimming-anomaly:before {
|
|
89
|
+
content: "\e67a";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-panel-feed-fish:before {
|
|
93
|
+
content: "\e67b";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-panel-water-temp:before {
|
|
97
|
+
content: "\e67c";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon-panel-fun-fish-TV:before {
|
|
101
|
+
content: "\e67d";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-panel-fish-care-expert:before {
|
|
105
|
+
content: "\e67e";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon-panel-water-quality:before {
|
|
21
109
|
content: "\e68b";
|
|
22
110
|
}
|
|
23
111
|
|
|
112
|
+
.icon-panel-swimming-issue:before {
|
|
113
|
+
content: "\e68d";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon-panel-fish-anomaly:before {
|
|
117
|
+
content: "\e68e";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon-panel-a-AI-fish-healthcheck:before {
|
|
121
|
+
content: "\e68f";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon-panel-favorites1:before {
|
|
125
|
+
content: "\e69f";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon-panel-belly-up1:before {
|
|
129
|
+
content: "\e6a0";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-panel-favorite1:before {
|
|
133
|
+
content: "\e694";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon-panel-replay1:before {
|
|
137
|
+
content: "\e695";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon-panel-gun-ball:before {
|
|
141
|
+
content: "\e68c";
|
|
142
|
+
}
|
|
143
|
+
|
|
24
144
|
.icon-panel-thumbnail:before {
|
|
25
145
|
content: "\e67f";
|
|
26
146
|
}
|