geekin-devtoys 0.1.3 → 0.1.4
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/GPercent/index.js +1 -1
- package/lib/GPercent/index.mjs +27 -27
- package/lib/GPercent/style.css +1 -1
- package/lib/GPluginVideo/index.js +14 -0
- package/lib/GPluginVideo/index.mjs +2487 -0
- package/lib/GVideo/index.js +1 -1
- package/lib/GVideo/index.mjs +1 -1
- package/lib/GVideo/style.css +1 -1
- package/package.json +9 -1
package/lib/GVideo/index.mjs
CHANGED
|
@@ -6994,7 +6994,7 @@ const L4 = ["id"], P4 = {
|
|
|
6994
6994
|
])
|
|
6995
6995
|
], 32));
|
|
6996
6996
|
}
|
|
6997
|
-
}, RD = /* @__PURE__ */ _z(P4, [["__scopeId", "data-v-
|
|
6997
|
+
}, RD = /* @__PURE__ */ _z(P4, [["__scopeId", "data-v-ef79ab42"]]);
|
|
6998
6998
|
RD.install = (M) => {
|
|
6999
6999
|
M.component(RD.name, RD);
|
|
7000
7000
|
};
|
package/lib/GVideo/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.g-video-container[data-v-
|
|
1
|
+
.g-video-container[data-v-ef79ab42]{height:100%;width:100%;position:relative}.g-video-container .g-video-window[data-v-ef79ab42]{height:100%;width:100%;display:grid;place-items:center}.g-video-container .g-video-window-tips[data-v-ef79ab42]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:1000;color:#fff;font-size:.8rem}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geekin-devtoys",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"author": "leon",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "geekin-devtoys组件库",
|
|
@@ -59,6 +59,14 @@
|
|
|
59
59
|
"import": "./lib/GPercent/style.css",
|
|
60
60
|
"require": "./lib/GPercent/style.css"
|
|
61
61
|
},
|
|
62
|
+
"./GPluginVideo": {
|
|
63
|
+
"import": "./lib/GPluginVideo/index.mjs",
|
|
64
|
+
"require": "./lib/GPluginVideo/index.js"
|
|
65
|
+
},
|
|
66
|
+
"./GPluginVideo/style": {
|
|
67
|
+
"import": "./lib/GPluginVideo/style.css",
|
|
68
|
+
"require": "./lib/GPluginVideo/style.css"
|
|
69
|
+
},
|
|
62
70
|
"./GTable": {
|
|
63
71
|
"import": "./lib/GTable/index.mjs",
|
|
64
72
|
"require": "./lib/GTable/index.js"
|