@web-noise/core 0.0.12 → 0.0.14
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/cjs/components.js +115 -115
- package/dist/cjs/components.js.map +1 -1
- package/dist/cjs/constants.js +1 -1
- package/dist/cjs/constants.js.map +1 -1
- package/dist/cjs/lib.js +1 -1
- package/dist/cjs/lib.js.map +1 -1
- package/dist/esm/components.js +59 -59
- package/dist/esm/components.js.map +1 -1
- package/dist/esm/constants.js +1 -1
- package/dist/esm/constants.js.map +1 -1
- package/dist/esm/lib.js +1 -1
- package/dist/esm/lib.js.map +1 -1
- package/dist/main.js +20 -20
- package/dist/main.js.map +1 -1
- package/dist/module.js +3 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +7 -1
package/dist/types.d.ts
CHANGED
|
@@ -340,7 +340,7 @@ interface AppProps {
|
|
|
340
340
|
projectState?: Project;
|
|
341
341
|
plugins?: Array<PluginConfig>;
|
|
342
342
|
editorContextMenu?: Array<ReactNode>;
|
|
343
|
-
onChange?: (
|
|
343
|
+
onChange?: (project: Project) => void;
|
|
344
344
|
theme?: Theme;
|
|
345
345
|
}
|
|
346
346
|
export const Editor: ({ ...props }: AppProps) => JSX.Element;
|