wargerm 0.7.3 → 0.7.5
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/components/DhPlayer/example/demo1.d.ts +3 -0
- package/dist/components/DhPlayer/example/demo2.d.ts +3 -0
- package/dist/components/DhPlayer/index.d.ts +4 -0
- package/dist/index.css +14 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.css +14 -0
- package/dist/index.esm.js +2717 -15
- package/dist/index.js +2719 -16
- package/package.json +91 -91
package/dist/index.css
CHANGED
@@ -12654,6 +12654,20 @@ button.swiper-pagination-bullet {
|
|
12654
12654
|
.xgplayer-skin-default {
|
12655
12655
|
height: 100% !important;
|
12656
12656
|
}
|
12657
|
+
.dh-bg {
|
12658
|
+
background-color: #000;
|
12659
|
+
border: 2px solid #2db7f4;
|
12660
|
+
}
|
12661
|
+
.dh-desc {
|
12662
|
+
height: 100%;
|
12663
|
+
display: flex;
|
12664
|
+
justify-content: center;
|
12665
|
+
align-items: center;
|
12666
|
+
font-size: 36px;
|
12667
|
+
font-weight: bold;
|
12668
|
+
color: white;
|
12669
|
+
letter-spacing: 3px;
|
12670
|
+
}
|
12657
12671
|
/* Animation css */
|
12658
12672
|
[class*='animation-'] {
|
12659
12673
|
-webkit-animation-duration: 0.5s;
|
package/dist/index.d.ts
CHANGED
@@ -40,6 +40,7 @@ export { default as Cascader } from './components/Cascader';
|
|
40
40
|
export { default as Calendar } from './components/Calendar';
|
41
41
|
export { default as WebsocketHeart } from './components/WebsocketHeart';
|
42
42
|
export { default as VideoPlayer } from './components/VideoPlayer';
|
43
|
+
export { default as DhPlayer } from './components/DhPlayer';
|
43
44
|
export { default as Video } from './components/Video';
|
44
45
|
export { default as NtTable } from './components/NtTable';
|
45
46
|
export { default as LineEcharts } from './components/Wcharts/LineEcharts';
|
package/dist/index.esm.css
CHANGED
@@ -12654,6 +12654,20 @@ button.swiper-pagination-bullet {
|
|
12654
12654
|
.xgplayer-skin-default {
|
12655
12655
|
height: 100% !important;
|
12656
12656
|
}
|
12657
|
+
.dh-bg {
|
12658
|
+
background-color: #000;
|
12659
|
+
border: 2px solid #2db7f4;
|
12660
|
+
}
|
12661
|
+
.dh-desc {
|
12662
|
+
height: 100%;
|
12663
|
+
display: flex;
|
12664
|
+
justify-content: center;
|
12665
|
+
align-items: center;
|
12666
|
+
font-size: 36px;
|
12667
|
+
font-weight: bold;
|
12668
|
+
color: white;
|
12669
|
+
letter-spacing: 3px;
|
12670
|
+
}
|
12657
12671
|
/* Animation css */
|
12658
12672
|
[class*='animation-'] {
|
12659
12673
|
-webkit-animation-duration: 0.5s;
|