publ-echo-test 0.0.107 → 0.0.108

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.
@@ -2,7 +2,5 @@ import * as React from "react";
2
2
  import type { ReactElement } from "react";
3
3
  import { PropsWithChildren } from "../types";
4
4
  import { ReactGridLayoutProps } from "./types";
5
- declare const ReactGridLayout: ({ children, ...props }: PropsWithChildren<ReactGridLayoutProps & {
6
- onContextGroup?: ((e: React.MouseEvent, blockId: string, isEditingGroup: boolean) => void) | undefined;
7
- }>) => React.ReactElement;
5
+ declare const ReactGridLayout: ({ children, ...props }: PropsWithChildren<ReactGridLayoutProps>) => React.ReactElement;
8
6
  export default ReactGridLayout;
@@ -86,6 +86,7 @@ export type ReactGridLayoutProps = {
86
86
  onClickGroup?: (e: React.MouseEvent, id: string, type: string) => void;
87
87
  bulkIds?: string[];
88
88
  onDoubleClickOutsideGroup: () => void;
89
+ onContextGroup?: (e: React.MouseEvent, blockId: string, isEditingGroup: boolean) => void;
89
90
  };
90
91
  export type DragOverEvent = MouseEvent & {
91
92
  nativeEvent: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo-test",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",