@bendyline/squisq-react 1.3.0 → 1.3.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bendyline/squisq-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "React component library for doc playback, block rendering, and media layers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Bendyline",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"./styles": "./src/styles/index.css",
|
|
38
38
|
"./standalone": "./dist/squisq-player.global.js",
|
|
39
39
|
"./standalone-source": {
|
|
40
|
-
"types": "./
|
|
40
|
+
"types": "./src/standalone-source.d.ts",
|
|
41
41
|
"import": "./dist/standalone-source.js"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Type declaration for the `@bendyline/squisq-react/standalone-source`
|
|
3
|
+
* subpath export. The runtime JS file is generated by
|
|
4
|
+
* `scripts/generate-standalone-source.mjs` after the IIFE build emits
|
|
5
|
+
* `dist/squisq-player.global.js`, but the type surface is constant —
|
|
6
|
+
* it always exposes the same single `string` constant — so the
|
|
7
|
+
* declaration lives in source so consumers can typecheck without
|
|
8
|
+
* having had to build this package first.
|
|
9
|
+
*/
|
|
10
|
+
export declare const PLAYER_BUNDLE: string;
|