inl-ui 0.1.68 → 0.1.70

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.
@@ -8906,8 +8906,8 @@ const VideoPlayerV2 = vue.defineComponent({
8906
8906
  "id": `videoPlayer_${uuid}`,
8907
8907
  "class": "videoComponent fill",
8908
8908
  "src": videoInfo2.value.mp4ResourcesPath,
8909
- "webkit-playsinline": "true",
8910
- "playsinline": "true",
8909
+ "webkit-playsinline": "false",
8910
+ "playsinline": "false",
8911
8911
  "autoplay": true,
8912
8912
  "loop": true,
8913
8913
  "muted": true
@@ -8916,6 +8916,8 @@ const VideoPlayerV2 = vue.defineComponent({
8916
8916
  return vue.createVNode("video", {
8917
8917
  "id": `videoPlayer_${uuid}`,
8918
8918
  "class": `videoComponent ${_prop.fill}`,
8919
+ "webkit-playsinline": "false",
8920
+ "playsinline": "false",
8919
8921
  "muted": true,
8920
8922
  "autoplay": true
8921
8923
  }, null);
@@ -9540,28 +9542,28 @@ const VideoBoxV2 = vue.defineComponent({
9540
9542
  const magnifyBtn = vue.ref(false);
9541
9543
  const videoBtns = [[{
9542
9544
  text: "lup",
9543
- signal: 25
9545
+ signal: "UP_LEFT"
9544
9546
  }, {
9545
9547
  text: "up",
9546
- signal: 21
9548
+ signal: "TILT_UP"
9547
9549
  }, {
9548
9550
  text: "rup",
9549
- signal: 26
9551
+ signal: "UP_RIGHT"
9550
9552
  }], [{
9551
9553
  text: "left",
9552
- signal: 23
9554
+ signal: "PAN_LEFT"
9553
9555
  }, {
9554
9556
  text: "right",
9555
- signal: 24
9557
+ signal: "PAN_RIGHT"
9556
9558
  }], [{
9557
9559
  text: "ldown",
9558
- signal: 27
9560
+ signal: "DOWN_LEFT"
9559
9561
  }, {
9560
9562
  text: "down",
9561
- signal: 22
9563
+ signal: "TILT_DOWN"
9562
9564
  }, {
9563
9565
  text: "rdown",
9564
- signal: 28
9566
+ signal: "DOWN_RIGHT"
9565
9567
  }]];
9566
9568
  const infos = vue.ref([]);
9567
9569
  const uuid = vue.ref(UUID());
@@ -9927,28 +9929,28 @@ const VideoBoxV2 = vue.defineComponent({
9927
9929
  "class": "flex1 btns"
9928
9930
  }, [vue.createVNode("img", {
9929
9931
  "src": "/micro-assets/inl/video/controls/smaller.svg",
9930
- "onClick": e => videoMove(16)
9932
+ "onClick": e => videoMove("ZOOM_OUT")
9931
9933
  }, null), vue.createVNode("img", {
9932
9934
  "src": "/micro-assets/inl/video/controls/bigger.svg",
9933
- "onClick": e => videoMove(15)
9935
+ "onClick": e => videoMove("ZOOM_IN")
9934
9936
  }, null)]), vue.createVNode("div", {
9935
9937
  "class": "flex1 btns"
9936
9938
  }, [vue.createVNode("img", {
9937
9939
  "src": "/micro-assets/inl/video/controls/go.svg",
9938
- "onClick": e => videoMove(14)
9940
+ "onClick": e => videoMove("FOCUS_NEAR")
9939
9941
  }, null), vue.createVNode("img", {
9940
9942
  "src": "/micro-assets/inl/video/controls/back.svg",
9941
- "onClick": e => videoMove(13)
9943
+ "onClick": e => videoMove("FOCUS_FAR")
9942
9944
  }, null)])]), vue.createVNode("div", {
9943
9945
  "class": "flex"
9944
9946
  }, [vue.createVNode("div", {
9945
9947
  "class": "flex1 btns"
9946
9948
  }, [vue.createVNode("img", {
9947
9949
  "src": "/micro-assets/inl/video/controls/light.svg",
9948
- "onClick": e => videoMove(2)
9950
+ "onClick": e => videoMove("LIGHT_PWRON")
9949
9951
  }, null), vue.createVNode("img", {
9950
9952
  "src": "/micro-assets/inl/video/controls/rain.svg",
9951
- "onClick": e => videoMove(3)
9953
+ "onClick": e => videoMove("WIPER_PWRON")
9952
9954
  }, null)])])])
9953
9955
  }, {
9954
9956
  default: () => [vue.createVNode("img", {
@@ -8878,8 +8878,8 @@ const VideoPlayerV2 = defineComponent({
8878
8878
  "id": `videoPlayer_${uuid}`,
8879
8879
  "class": "videoComponent fill",
8880
8880
  "src": videoInfo2.value.mp4ResourcesPath,
8881
- "webkit-playsinline": "true",
8882
- "playsinline": "true",
8881
+ "webkit-playsinline": "false",
8882
+ "playsinline": "false",
8883
8883
  "autoplay": true,
8884
8884
  "loop": true,
8885
8885
  "muted": true
@@ -8888,6 +8888,8 @@ const VideoPlayerV2 = defineComponent({
8888
8888
  return createVNode("video", {
8889
8889
  "id": `videoPlayer_${uuid}`,
8890
8890
  "class": `videoComponent ${_prop.fill}`,
8891
+ "webkit-playsinline": "false",
8892
+ "playsinline": "false",
8891
8893
  "muted": true,
8892
8894
  "autoplay": true
8893
8895
  }, null);
@@ -9512,28 +9514,28 @@ const VideoBoxV2 = defineComponent({
9512
9514
  const magnifyBtn = ref(false);
9513
9515
  const videoBtns = [[{
9514
9516
  text: "lup",
9515
- signal: 25
9517
+ signal: "UP_LEFT"
9516
9518
  }, {
9517
9519
  text: "up",
9518
- signal: 21
9520
+ signal: "TILT_UP"
9519
9521
  }, {
9520
9522
  text: "rup",
9521
- signal: 26
9523
+ signal: "UP_RIGHT"
9522
9524
  }], [{
9523
9525
  text: "left",
9524
- signal: 23
9526
+ signal: "PAN_LEFT"
9525
9527
  }, {
9526
9528
  text: "right",
9527
- signal: 24
9529
+ signal: "PAN_RIGHT"
9528
9530
  }], [{
9529
9531
  text: "ldown",
9530
- signal: 27
9532
+ signal: "DOWN_LEFT"
9531
9533
  }, {
9532
9534
  text: "down",
9533
- signal: 22
9535
+ signal: "TILT_DOWN"
9534
9536
  }, {
9535
9537
  text: "rdown",
9536
- signal: 28
9538
+ signal: "DOWN_RIGHT"
9537
9539
  }]];
9538
9540
  const infos = ref([]);
9539
9541
  const uuid = ref(UUID());
@@ -9899,28 +9901,28 @@ const VideoBoxV2 = defineComponent({
9899
9901
  "class": "flex1 btns"
9900
9902
  }, [createVNode("img", {
9901
9903
  "src": "/micro-assets/inl/video/controls/smaller.svg",
9902
- "onClick": e => videoMove(16)
9904
+ "onClick": e => videoMove("ZOOM_OUT")
9903
9905
  }, null), createVNode("img", {
9904
9906
  "src": "/micro-assets/inl/video/controls/bigger.svg",
9905
- "onClick": e => videoMove(15)
9907
+ "onClick": e => videoMove("ZOOM_IN")
9906
9908
  }, null)]), createVNode("div", {
9907
9909
  "class": "flex1 btns"
9908
9910
  }, [createVNode("img", {
9909
9911
  "src": "/micro-assets/inl/video/controls/go.svg",
9910
- "onClick": e => videoMove(14)
9912
+ "onClick": e => videoMove("FOCUS_NEAR")
9911
9913
  }, null), createVNode("img", {
9912
9914
  "src": "/micro-assets/inl/video/controls/back.svg",
9913
- "onClick": e => videoMove(13)
9915
+ "onClick": e => videoMove("FOCUS_FAR")
9914
9916
  }, null)])]), createVNode("div", {
9915
9917
  "class": "flex"
9916
9918
  }, [createVNode("div", {
9917
9919
  "class": "flex1 btns"
9918
9920
  }, [createVNode("img", {
9919
9921
  "src": "/micro-assets/inl/video/controls/light.svg",
9920
- "onClick": e => videoMove(2)
9922
+ "onClick": e => videoMove("LIGHT_PWRON")
9921
9923
  }, null), createVNode("img", {
9922
9924
  "src": "/micro-assets/inl/video/controls/rain.svg",
9923
- "onClick": e => videoMove(3)
9925
+ "onClick": e => videoMove("WIPER_PWRON")
9924
9926
  }, null)])])])
9925
9927
  }, {
9926
9928
  default: () => [createVNode("img", {
package/dist/index.cjs CHANGED
@@ -43,7 +43,7 @@ var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
43
43
  var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
44
44
  var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
45
45
 
46
- var version = "0.1.67";
46
+ var version = "0.1.69";
47
47
 
48
48
  const setTheme = theme => {
49
49
  if (theme === "dark") {
@@ -9892,8 +9892,8 @@ const VideoPlayerV2 = vue.defineComponent({
9892
9892
  "id": `videoPlayer_${uuid}`,
9893
9893
  "class": "videoComponent fill",
9894
9894
  "src": videoInfo2.value.mp4ResourcesPath,
9895
- "webkit-playsinline": "true",
9896
- "playsinline": "true",
9895
+ "webkit-playsinline": "false",
9896
+ "playsinline": "false",
9897
9897
  "autoplay": true,
9898
9898
  "loop": true,
9899
9899
  "muted": true
@@ -9902,6 +9902,8 @@ const VideoPlayerV2 = vue.defineComponent({
9902
9902
  return vue.createVNode("video", {
9903
9903
  "id": `videoPlayer_${uuid}`,
9904
9904
  "class": `videoComponent ${_prop.fill}`,
9905
+ "webkit-playsinline": "false",
9906
+ "playsinline": "false",
9905
9907
  "muted": true,
9906
9908
  "autoplay": true
9907
9909
  }, null);
@@ -10526,28 +10528,28 @@ const VideoBoxV2 = vue.defineComponent({
10526
10528
  const magnifyBtn = vue.ref(false);
10527
10529
  const videoBtns = [[{
10528
10530
  text: "lup",
10529
- signal: 25
10531
+ signal: "UP_LEFT"
10530
10532
  }, {
10531
10533
  text: "up",
10532
- signal: 21
10534
+ signal: "TILT_UP"
10533
10535
  }, {
10534
10536
  text: "rup",
10535
- signal: 26
10537
+ signal: "UP_RIGHT"
10536
10538
  }], [{
10537
10539
  text: "left",
10538
- signal: 23
10540
+ signal: "PAN_LEFT"
10539
10541
  }, {
10540
10542
  text: "right",
10541
- signal: 24
10543
+ signal: "PAN_RIGHT"
10542
10544
  }], [{
10543
10545
  text: "ldown",
10544
- signal: 27
10546
+ signal: "DOWN_LEFT"
10545
10547
  }, {
10546
10548
  text: "down",
10547
- signal: 22
10549
+ signal: "TILT_DOWN"
10548
10550
  }, {
10549
10551
  text: "rdown",
10550
- signal: 28
10552
+ signal: "DOWN_RIGHT"
10551
10553
  }]];
10552
10554
  const infos = vue.ref([]);
10553
10555
  const uuid = vue.ref(UUID());
@@ -10913,28 +10915,28 @@ const VideoBoxV2 = vue.defineComponent({
10913
10915
  "class": "flex1 btns"
10914
10916
  }, [vue.createVNode("img", {
10915
10917
  "src": "/micro-assets/inl/video/controls/smaller.svg",
10916
- "onClick": e => videoMove(16)
10918
+ "onClick": e => videoMove("ZOOM_OUT")
10917
10919
  }, null), vue.createVNode("img", {
10918
10920
  "src": "/micro-assets/inl/video/controls/bigger.svg",
10919
- "onClick": e => videoMove(15)
10921
+ "onClick": e => videoMove("ZOOM_IN")
10920
10922
  }, null)]), vue.createVNode("div", {
10921
10923
  "class": "flex1 btns"
10922
10924
  }, [vue.createVNode("img", {
10923
10925
  "src": "/micro-assets/inl/video/controls/go.svg",
10924
- "onClick": e => videoMove(14)
10926
+ "onClick": e => videoMove("FOCUS_NEAR")
10925
10927
  }, null), vue.createVNode("img", {
10926
10928
  "src": "/micro-assets/inl/video/controls/back.svg",
10927
- "onClick": e => videoMove(13)
10929
+ "onClick": e => videoMove("FOCUS_FAR")
10928
10930
  }, null)])]), vue.createVNode("div", {
10929
10931
  "class": "flex"
10930
10932
  }, [vue.createVNode("div", {
10931
10933
  "class": "flex1 btns"
10932
10934
  }, [vue.createVNode("img", {
10933
10935
  "src": "/micro-assets/inl/video/controls/light.svg",
10934
- "onClick": e => videoMove(2)
10936
+ "onClick": e => videoMove("LIGHT_PWRON")
10935
10937
  }, null), vue.createVNode("img", {
10936
10938
  "src": "/micro-assets/inl/video/controls/rain.svg",
10937
- "onClick": e => videoMove(3)
10939
+ "onClick": e => videoMove("WIPER_PWRON")
10938
10940
  }, null)])])])
10939
10941
  }, {
10940
10942
  default: () => [vue.createVNode("img", {
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ import { Key } from 'ant-design-vue/lib/table/interface';
11
11
  import * as vue_jsx_runtime from 'vue/jsx-runtime';
12
12
  import * as _ant_design_icons_vue_lib_components_IconFont from '@ant-design/icons-vue/lib/components/IconFont';
13
13
 
14
- var version = "0.1.67";
14
+ var version = "0.1.69";
15
15
 
16
16
  declare const _default$p: {
17
17
  set(theme: string): void;
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
13
13
  import { marked } from 'marked';
14
14
  import '@sszj-temp/mobile/style.css';
15
15
 
16
- var version = "0.1.67";
16
+ var version = "0.1.69";
17
17
 
18
18
  const setTheme = theme => {
19
19
  if (theme === "dark") {
@@ -9862,8 +9862,8 @@ const VideoPlayerV2 = defineComponent({
9862
9862
  "id": `videoPlayer_${uuid}`,
9863
9863
  "class": "videoComponent fill",
9864
9864
  "src": videoInfo2.value.mp4ResourcesPath,
9865
- "webkit-playsinline": "true",
9866
- "playsinline": "true",
9865
+ "webkit-playsinline": "false",
9866
+ "playsinline": "false",
9867
9867
  "autoplay": true,
9868
9868
  "loop": true,
9869
9869
  "muted": true
@@ -9872,6 +9872,8 @@ const VideoPlayerV2 = defineComponent({
9872
9872
  return createVNode("video", {
9873
9873
  "id": `videoPlayer_${uuid}`,
9874
9874
  "class": `videoComponent ${_prop.fill}`,
9875
+ "webkit-playsinline": "false",
9876
+ "playsinline": "false",
9875
9877
  "muted": true,
9876
9878
  "autoplay": true
9877
9879
  }, null);
@@ -10496,28 +10498,28 @@ const VideoBoxV2 = defineComponent({
10496
10498
  const magnifyBtn = ref(false);
10497
10499
  const videoBtns = [[{
10498
10500
  text: "lup",
10499
- signal: 25
10501
+ signal: "UP_LEFT"
10500
10502
  }, {
10501
10503
  text: "up",
10502
- signal: 21
10504
+ signal: "TILT_UP"
10503
10505
  }, {
10504
10506
  text: "rup",
10505
- signal: 26
10507
+ signal: "UP_RIGHT"
10506
10508
  }], [{
10507
10509
  text: "left",
10508
- signal: 23
10510
+ signal: "PAN_LEFT"
10509
10511
  }, {
10510
10512
  text: "right",
10511
- signal: 24
10513
+ signal: "PAN_RIGHT"
10512
10514
  }], [{
10513
10515
  text: "ldown",
10514
- signal: 27
10516
+ signal: "DOWN_LEFT"
10515
10517
  }, {
10516
10518
  text: "down",
10517
- signal: 22
10519
+ signal: "TILT_DOWN"
10518
10520
  }, {
10519
10521
  text: "rdown",
10520
- signal: 28
10522
+ signal: "DOWN_RIGHT"
10521
10523
  }]];
10522
10524
  const infos = ref([]);
10523
10525
  const uuid = ref(UUID());
@@ -10883,28 +10885,28 @@ const VideoBoxV2 = defineComponent({
10883
10885
  "class": "flex1 btns"
10884
10886
  }, [createVNode("img", {
10885
10887
  "src": "/micro-assets/inl/video/controls/smaller.svg",
10886
- "onClick": e => videoMove(16)
10888
+ "onClick": e => videoMove("ZOOM_OUT")
10887
10889
  }, null), createVNode("img", {
10888
10890
  "src": "/micro-assets/inl/video/controls/bigger.svg",
10889
- "onClick": e => videoMove(15)
10891
+ "onClick": e => videoMove("ZOOM_IN")
10890
10892
  }, null)]), createVNode("div", {
10891
10893
  "class": "flex1 btns"
10892
10894
  }, [createVNode("img", {
10893
10895
  "src": "/micro-assets/inl/video/controls/go.svg",
10894
- "onClick": e => videoMove(14)
10896
+ "onClick": e => videoMove("FOCUS_NEAR")
10895
10897
  }, null), createVNode("img", {
10896
10898
  "src": "/micro-assets/inl/video/controls/back.svg",
10897
- "onClick": e => videoMove(13)
10899
+ "onClick": e => videoMove("FOCUS_FAR")
10898
10900
  }, null)])]), createVNode("div", {
10899
10901
  "class": "flex"
10900
10902
  }, [createVNode("div", {
10901
10903
  "class": "flex1 btns"
10902
10904
  }, [createVNode("img", {
10903
10905
  "src": "/micro-assets/inl/video/controls/light.svg",
10904
- "onClick": e => videoMove(2)
10906
+ "onClick": e => videoMove("LIGHT_PWRON")
10905
10907
  }, null), createVNode("img", {
10906
10908
  "src": "/micro-assets/inl/video/controls/rain.svg",
10907
- "onClick": e => videoMove(3)
10909
+ "onClick": e => videoMove("WIPER_PWRON")
10908
10910
  }, null)])])])
10909
10911
  }, {
10910
10912
  default: () => [createVNode("img", {
@@ -6035,8 +6035,8 @@ const VideoPlayerV2 = vue.defineComponent({
6035
6035
  "id": `videoPlayer_${uuid}`,
6036
6036
  "class": "videoComponent fill",
6037
6037
  "src": videoInfo2.value.mp4ResourcesPath,
6038
- "webkit-playsinline": "true",
6039
- "playsinline": "true",
6038
+ "webkit-playsinline": "false",
6039
+ "playsinline": "false",
6040
6040
  "autoplay": true,
6041
6041
  "loop": true,
6042
6042
  "muted": true
@@ -6045,6 +6045,8 @@ const VideoPlayerV2 = vue.defineComponent({
6045
6045
  return vue.createVNode("video", {
6046
6046
  "id": `videoPlayer_${uuid}`,
6047
6047
  "class": `videoComponent ${_prop.fill}`,
6048
+ "webkit-playsinline": "false",
6049
+ "playsinline": "false",
6048
6050
  "muted": true,
6049
6051
  "autoplay": true
6050
6052
  }, null);
@@ -6677,28 +6679,28 @@ const VideoBoxV2 = vue.defineComponent({
6677
6679
  const magnifyBtn = vue.ref(false);
6678
6680
  const videoBtns = [[{
6679
6681
  text: "lup",
6680
- signal: 25
6682
+ signal: "UP_LEFT"
6681
6683
  }, {
6682
6684
  text: "up",
6683
- signal: 21
6685
+ signal: "TILT_UP"
6684
6686
  }, {
6685
6687
  text: "rup",
6686
- signal: 26
6688
+ signal: "UP_RIGHT"
6687
6689
  }], [{
6688
6690
  text: "left",
6689
- signal: 23
6691
+ signal: "PAN_LEFT"
6690
6692
  }, {
6691
6693
  text: "right",
6692
- signal: 24
6694
+ signal: "PAN_RIGHT"
6693
6695
  }], [{
6694
6696
  text: "ldown",
6695
- signal: 27
6697
+ signal: "DOWN_LEFT"
6696
6698
  }, {
6697
6699
  text: "down",
6698
- signal: 22
6700
+ signal: "TILT_DOWN"
6699
6701
  }, {
6700
6702
  text: "rdown",
6701
- signal: 28
6703
+ signal: "DOWN_RIGHT"
6702
6704
  }]];
6703
6705
  const infos = vue.ref([]);
6704
6706
  const uuid = vue.ref(UUID());
@@ -7064,28 +7066,28 @@ const VideoBoxV2 = vue.defineComponent({
7064
7066
  "class": "flex1 btns"
7065
7067
  }, [vue.createVNode("img", {
7066
7068
  "src": "/micro-assets/inl/video/controls/smaller.svg",
7067
- "onClick": e => videoMove(16)
7069
+ "onClick": e => videoMove("ZOOM_OUT")
7068
7070
  }, null), vue.createVNode("img", {
7069
7071
  "src": "/micro-assets/inl/video/controls/bigger.svg",
7070
- "onClick": e => videoMove(15)
7072
+ "onClick": e => videoMove("ZOOM_IN")
7071
7073
  }, null)]), vue.createVNode("div", {
7072
7074
  "class": "flex1 btns"
7073
7075
  }, [vue.createVNode("img", {
7074
7076
  "src": "/micro-assets/inl/video/controls/go.svg",
7075
- "onClick": e => videoMove(14)
7077
+ "onClick": e => videoMove("FOCUS_NEAR")
7076
7078
  }, null), vue.createVNode("img", {
7077
7079
  "src": "/micro-assets/inl/video/controls/back.svg",
7078
- "onClick": e => videoMove(13)
7080
+ "onClick": e => videoMove("FOCUS_FAR")
7079
7081
  }, null)])]), vue.createVNode("div", {
7080
7082
  "class": "flex"
7081
7083
  }, [vue.createVNode("div", {
7082
7084
  "class": "flex1 btns"
7083
7085
  }, [vue.createVNode("img", {
7084
7086
  "src": "/micro-assets/inl/video/controls/light.svg",
7085
- "onClick": e => videoMove(2)
7087
+ "onClick": e => videoMove("LIGHT_PWRON")
7086
7088
  }, null), vue.createVNode("img", {
7087
7089
  "src": "/micro-assets/inl/video/controls/rain.svg",
7088
- "onClick": e => videoMove(3)
7090
+ "onClick": e => videoMove("WIPER_PWRON")
7089
7091
  }, null)])])])
7090
7092
  }, {
7091
7093
  default: () => [vue.createVNode("img", {
@@ -6009,8 +6009,8 @@ const VideoPlayerV2 = defineComponent({
6009
6009
  "id": `videoPlayer_${uuid}`,
6010
6010
  "class": "videoComponent fill",
6011
6011
  "src": videoInfo2.value.mp4ResourcesPath,
6012
- "webkit-playsinline": "true",
6013
- "playsinline": "true",
6012
+ "webkit-playsinline": "false",
6013
+ "playsinline": "false",
6014
6014
  "autoplay": true,
6015
6015
  "loop": true,
6016
6016
  "muted": true
@@ -6019,6 +6019,8 @@ const VideoPlayerV2 = defineComponent({
6019
6019
  return createVNode("video", {
6020
6020
  "id": `videoPlayer_${uuid}`,
6021
6021
  "class": `videoComponent ${_prop.fill}`,
6022
+ "webkit-playsinline": "false",
6023
+ "playsinline": "false",
6022
6024
  "muted": true,
6023
6025
  "autoplay": true
6024
6026
  }, null);
@@ -6651,28 +6653,28 @@ const VideoBoxV2 = defineComponent({
6651
6653
  const magnifyBtn = ref(false);
6652
6654
  const videoBtns = [[{
6653
6655
  text: "lup",
6654
- signal: 25
6656
+ signal: "UP_LEFT"
6655
6657
  }, {
6656
6658
  text: "up",
6657
- signal: 21
6659
+ signal: "TILT_UP"
6658
6660
  }, {
6659
6661
  text: "rup",
6660
- signal: 26
6662
+ signal: "UP_RIGHT"
6661
6663
  }], [{
6662
6664
  text: "left",
6663
- signal: 23
6665
+ signal: "PAN_LEFT"
6664
6666
  }, {
6665
6667
  text: "right",
6666
- signal: 24
6668
+ signal: "PAN_RIGHT"
6667
6669
  }], [{
6668
6670
  text: "ldown",
6669
- signal: 27
6671
+ signal: "DOWN_LEFT"
6670
6672
  }, {
6671
6673
  text: "down",
6672
- signal: 22
6674
+ signal: "TILT_DOWN"
6673
6675
  }, {
6674
6676
  text: "rdown",
6675
- signal: 28
6677
+ signal: "DOWN_RIGHT"
6676
6678
  }]];
6677
6679
  const infos = ref([]);
6678
6680
  const uuid = ref(UUID());
@@ -7038,28 +7040,28 @@ const VideoBoxV2 = defineComponent({
7038
7040
  "class": "flex1 btns"
7039
7041
  }, [createVNode("img", {
7040
7042
  "src": "/micro-assets/inl/video/controls/smaller.svg",
7041
- "onClick": e => videoMove(16)
7043
+ "onClick": e => videoMove("ZOOM_OUT")
7042
7044
  }, null), createVNode("img", {
7043
7045
  "src": "/micro-assets/inl/video/controls/bigger.svg",
7044
- "onClick": e => videoMove(15)
7046
+ "onClick": e => videoMove("ZOOM_IN")
7045
7047
  }, null)]), createVNode("div", {
7046
7048
  "class": "flex1 btns"
7047
7049
  }, [createVNode("img", {
7048
7050
  "src": "/micro-assets/inl/video/controls/go.svg",
7049
- "onClick": e => videoMove(14)
7051
+ "onClick": e => videoMove("FOCUS_NEAR")
7050
7052
  }, null), createVNode("img", {
7051
7053
  "src": "/micro-assets/inl/video/controls/back.svg",
7052
- "onClick": e => videoMove(13)
7054
+ "onClick": e => videoMove("FOCUS_FAR")
7053
7055
  }, null)])]), createVNode("div", {
7054
7056
  "class": "flex"
7055
7057
  }, [createVNode("div", {
7056
7058
  "class": "flex1 btns"
7057
7059
  }, [createVNode("img", {
7058
7060
  "src": "/micro-assets/inl/video/controls/light.svg",
7059
- "onClick": e => videoMove(2)
7061
+ "onClick": e => videoMove("LIGHT_PWRON")
7060
7062
  }, null), createVNode("img", {
7061
7063
  "src": "/micro-assets/inl/video/controls/rain.svg",
7062
- "onClick": e => videoMove(3)
7064
+ "onClick": e => videoMove("WIPER_PWRON")
7063
7065
  }, null)])])])
7064
7066
  }, {
7065
7067
  default: () => [createVNode("img", {
@@ -6014,8 +6014,8 @@ const VideoPlayerV2 = vue.defineComponent({
6014
6014
  "id": `videoPlayer_${uuid}`,
6015
6015
  "class": "videoComponent fill",
6016
6016
  "src": videoInfo2.value.mp4ResourcesPath,
6017
- "webkit-playsinline": "true",
6018
- "playsinline": "true",
6017
+ "webkit-playsinline": "false",
6018
+ "playsinline": "false",
6019
6019
  "autoplay": true,
6020
6020
  "loop": true,
6021
6021
  "muted": true
@@ -6024,6 +6024,8 @@ const VideoPlayerV2 = vue.defineComponent({
6024
6024
  return vue.createVNode("video", {
6025
6025
  "id": `videoPlayer_${uuid}`,
6026
6026
  "class": `videoComponent ${_prop.fill}`,
6027
+ "webkit-playsinline": "false",
6028
+ "playsinline": "false",
6027
6029
  "muted": true,
6028
6030
  "autoplay": true
6029
6031
  }, null);
@@ -6006,8 +6006,8 @@ const VideoPlayerV2 = defineComponent({
6006
6006
  "id": `videoPlayer_${uuid}`,
6007
6007
  "class": "videoComponent fill",
6008
6008
  "src": videoInfo2.value.mp4ResourcesPath,
6009
- "webkit-playsinline": "true",
6010
- "playsinline": "true",
6009
+ "webkit-playsinline": "false",
6010
+ "playsinline": "false",
6011
6011
  "autoplay": true,
6012
6012
  "loop": true,
6013
6013
  "muted": true
@@ -6016,6 +6016,8 @@ const VideoPlayerV2 = defineComponent({
6016
6016
  return createVNode("video", {
6017
6017
  "id": `videoPlayer_${uuid}`,
6018
6018
  "class": `videoComponent ${_prop.fill}`,
6019
+ "webkit-playsinline": "false",
6020
+ "playsinline": "false",
6019
6021
  "muted": true,
6020
6022
  "autoplay": true
6021
6023
  }, null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inl-ui",
3
- "version": "0.1.68",
3
+ "version": "0.1.70",
4
4
  "description": "工业 pc ui库",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",