@unseenco/theatre-core 0.4.1 → 0.4.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.js +5 -1
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +2 -2
- package/dist/privateAPIs.d.ts +1 -0
- package/dist/privateAPIs.js +4 -0
- package/dist/privateAPIs.mjs +1 -0
- package/package.json +7 -2
package/dist/index.mjs
CHANGED
|
@@ -244,7 +244,9 @@ __export(coreExports_exports, {
|
|
|
244
244
|
isRemoteEditorWindow: () => isRemoteEditorWindow,
|
|
245
245
|
notify: () => notify,
|
|
246
246
|
onChange: () => onChange,
|
|
247
|
+
privateAPI: () => privateAPI,
|
|
247
248
|
setCoreRafDriver: () => setCoreRafDriver,
|
|
249
|
+
setPrivateAPI: () => setPrivateAPI,
|
|
248
250
|
types: () => propTypes_exports,
|
|
249
251
|
val: () => val10
|
|
250
252
|
});
|
|
@@ -8568,7 +8570,7 @@ var CoreBundle = class {
|
|
|
8568
8570
|
return "Theatre_CoreBundle";
|
|
8569
8571
|
}
|
|
8570
8572
|
get version() {
|
|
8571
|
-
return "0.4.
|
|
8573
|
+
return "0.4.2";
|
|
8572
8574
|
}
|
|
8573
8575
|
getBitsForStudio(studio, callback) {
|
|
8574
8576
|
if (this._studio) {
|
|
@@ -8622,7 +8624,9 @@ export {
|
|
|
8622
8624
|
isRemoteEditorWindow,
|
|
8623
8625
|
notify,
|
|
8624
8626
|
onChange,
|
|
8627
|
+
privateAPI,
|
|
8625
8628
|
setCoreRafDriver,
|
|
8629
|
+
setPrivateAPI,
|
|
8626
8630
|
propTypes_exports as types,
|
|
8627
8631
|
val10 as val
|
|
8628
8632
|
};
|