@ones-editor/editor 0.0.3-beta.71 → 0.0.3-beta.73

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="lodash" />
1
2
  import { ManualCloseDialog } from '../../../@ones-editor/ui-base';
2
3
  import { OnesEditor } from '../../../@ones-editor/core';
3
4
  export default class FindDialog {
@@ -1,7 +1,9 @@
1
1
  import { BlockElement } from '../../../../@ones-editor/core';
2
- export declare function getListPrevBrother(block: BlockElement, options?: {
2
+ export interface GetListBrotherOptions {
3
3
  ignoreGroupId: boolean;
4
- }): BlockElement | null;
4
+ }
5
+ export declare function getListPrevBrother(block: BlockElement, options?: GetListBrotherOptions): BlockElement | null;
6
+ export declare function getListPrevBrotherIgnoreGroupId(block: BlockElement): BlockElement | null;
5
7
  export declare function getListNextBrother(block: BlockElement): BlockElement | null;
6
8
  export declare function getListAllPrevBrothers(block: BlockElement): BlockElement[];
7
9
  export declare function getListAllNextBrothers(block: BlockElement): BlockElement[];