@autorender/sdk-core 0.1.28 → 0.1.30
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/README.md +15 -1
- package/dist/index.cjs +76 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -6
- package/dist/index.d.ts +17 -6
- package/dist/index.js +75 -34
- package/dist/index.js.map +1 -1
- package/dist/styles.css +17 -0
- package/package.json +4 -2
package/dist/styles.css
CHANGED
|
@@ -1014,3 +1014,20 @@
|
|
|
1014
1014
|
color: #047857;
|
|
1015
1015
|
} */
|
|
1016
1016
|
|
|
1017
|
+
/* ARVideo (React) — fills its box; import @autorender/sdk-react/styles.
|
|
1018
|
+
Do not set height:auto on the .video-js element: it is the <video> and breaks Video.js fill layout. */
|
|
1019
|
+
.ar-video {
|
|
1020
|
+
display: block;
|
|
1021
|
+
max-width: 100%;
|
|
1022
|
+
box-sizing: border-box;
|
|
1023
|
+
min-height: 0;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.ar-video .video-js {
|
|
1027
|
+
display: block;
|
|
1028
|
+
width: 100%;
|
|
1029
|
+
height: 100%;
|
|
1030
|
+
max-width: 100%;
|
|
1031
|
+
box-sizing: border-box;
|
|
1032
|
+
}
|
|
1033
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autorender/sdk-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "Autorender SDK core — upload controller, ViewTag URL builder (transforms, responsive images, remote fetch), shared by all framework packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"./styles": {
|
|
16
16
|
"default": "./dist/styles.css"
|
|
17
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"./dist/styles.css": "./dist/styles.css",
|
|
19
|
+
"./package.json": "./package.json"
|
|
18
20
|
},
|
|
19
21
|
"files": [
|
|
20
22
|
"dist"
|