@esri/hub-common 27.1.0 → 27.2.0

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.
@@ -537,7 +537,7 @@ export { applyVersion, checkForStaleVersion } from "./versioning/utils";
537
537
  export { HubError, OperationError, OperationStack };
538
538
  export { IMigratableSchema, MigratableSchemaTransformMap, } from "./migrations/types";
539
539
  export { Breakpoint, ColumnWidth, HTMLConfigurableLayoutNodeElement, IColumn, IColumnProps, IConfigurableLayoutNode, ITranslationMap, ILayoutNode, ILayoutNodeConfig, IProcessLayoutOptions, IRow, IRowProps, ISection, ISectionProps, LayoutColumnChild, LayoutNodeTag, layoutNodeTags, LayoutEditorTag, LayoutNode, Ref, SectionOrRef, ResponsiveValue, } from "./layouts/layout-system-types";
540
- export { ILayoutNodeChangeEventDetail, ILayoutPublishEventDetail, ILayoutNodeRepositionEventDetail, } from "./layouts/layout-event-types";
540
+ export { ILayoutNodeChangeEventDetail, ILayoutPublishEventDetail, ILayoutResetEventDetail, ILayoutNodeRepositionEventDetail, } from "./layouts/layout-event-types";
541
541
  export { ILayout, Layout, LayoutUtils } from "./layouts/types";
542
542
  export { ILayoutV1 } from "./layouts/migrations/types/ILayoutV1";
543
543
  export { ILayoutV2 } from "./layouts/migrations/types/ILayoutV2";
@@ -17,6 +17,13 @@ export interface ILayoutPublishEventDetail {
17
17
  layout: ILayout;
18
18
  successCallback?: () => void | Promise<void>;
19
19
  }
20
+ /**
21
+ * Interface representing the information emitted when
22
+ * a layout is reset to its default
23
+ */
24
+ export interface ILayoutResetEventDetail {
25
+ successCallback?: () => void | Promise<void>;
26
+ }
20
27
  /**
21
28
  * Interface representing the information emitted when
22
29
  * a layout node is repositioned.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/hub-common",
3
- "version": "27.1.0",
3
+ "version": "27.2.0",
4
4
  "description": "Common TypeScript types and utility functions for @esri/hub.js.",
5
5
  "main": "dist/node/index.js",
6
6
  "module": "dist/esm/index.js",