wargerm 0.6.1 → 0.6.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.
package/dist/index.css CHANGED
@@ -12584,6 +12584,9 @@ button.swiper-pagination-bullet {
12584
12584
  width: 100%;
12585
12585
  height: 100%;
12586
12586
  }
12587
+ .noneborder {
12588
+ border: none;
12589
+ }
12587
12590
  .activeCamera {
12588
12591
  border: 1px solid red;
12589
12592
  }
@@ -14351,6 +14354,9 @@ button[data-prefers-color='dark'] .swiper-pagination-bullet {
14351
14354
  width: 100%;
14352
14355
  height: 100%;
14353
14356
  }
14357
+ [data-prefers-color='dark'] .noneborder {
14358
+ border: none;
14359
+ }
14354
14360
  [data-prefers-color='dark'] .activeCamera {
14355
14361
  border: 1px solid red;
14356
14362
  }
@@ -28283,6 +28289,9 @@ button[data-prefers-color='light'] .swiper-pagination-bullet {
28283
28289
  width: 100%;
28284
28290
  height: 100%;
28285
28291
  }
28292
+ [data-prefers-color='light'] .noneborder {
28293
+ border: none;
28294
+ }
28286
28295
  [data-prefers-color='light'] .activeCamera {
28287
28296
  border: 1px solid red;
28288
28297
  }
@@ -12584,6 +12584,9 @@ button.swiper-pagination-bullet {
12584
12584
  width: 100%;
12585
12585
  height: 100%;
12586
12586
  }
12587
+ .noneborder {
12588
+ border: none;
12589
+ }
12587
12590
  .activeCamera {
12588
12591
  border: 1px solid red;
12589
12592
  }
@@ -14351,6 +14354,9 @@ button[data-prefers-color='dark'] .swiper-pagination-bullet {
14351
14354
  width: 100%;
14352
14355
  height: 100%;
14353
14356
  }
14357
+ [data-prefers-color='dark'] .noneborder {
14358
+ border: none;
14359
+ }
14354
14360
  [data-prefers-color='dark'] .activeCamera {
14355
14361
  border: 1px solid red;
14356
14362
  }
@@ -28283,6 +28289,9 @@ button[data-prefers-color='light'] .swiper-pagination-bullet {
28283
28289
  width: 100%;
28284
28290
  height: 100%;
28285
28291
  }
28292
+ [data-prefers-color='light'] .noneborder {
28293
+ border: none;
28294
+ }
28286
28295
  [data-prefers-color='light'] .activeCamera {
28287
28296
  border: 1px solid red;
28288
28297
  }
package/dist/index.esm.js CHANGED
@@ -6686,7 +6686,7 @@ function VideoPlayer(_ref, ref) {
6686
6686
  return arr.map(function (item, index) {
6687
6687
  return /*#__PURE__*/React.createElement("div", {
6688
6688
  key: index,
6689
- className: "camera ".concat(currentPlayerIndex == index ? 'activeCamera' : ''),
6689
+ className: "camera ".concat(currentPlayerIndex == index ? index !== 0 ? 'activeCamera' : 'noneborder' : ''),
6690
6690
  onClickCapture: function onClickCapture() {
6691
6691
  setCurrentPlayerIndex(index);
6692
6692
  }
package/dist/index.js CHANGED
@@ -6751,7 +6751,7 @@ function VideoPlayer(_ref, ref) {
6751
6751
  return arr.map(function (item, index) {
6752
6752
  return /*#__PURE__*/React__default['default'].createElement("div", {
6753
6753
  key: index,
6754
- className: "camera ".concat(currentPlayerIndex == index ? 'activeCamera' : ''),
6754
+ className: "camera ".concat(currentPlayerIndex == index ? index !== 0 ? 'activeCamera' : 'noneborder' : ''),
6755
6755
  onClickCapture: function onClickCapture() {
6756
6756
  setCurrentPlayerIndex(index);
6757
6757
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "wargerm",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "scripts": {
6
6
  "dev": "dumi dev",
7
7
  "docs:build": "dumi build",