@servantcdh/ez-planet-labeling 1.0.15 → 1.0.16

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.d.ts CHANGED
@@ -1262,6 +1262,11 @@ export declare interface LabelingApiHeaders {
1262
1262
  userName?: string;
1263
1263
  }
1264
1264
 
1265
+ declare interface LabelingCanvasObjectsState {
1266
+ objects: LabeledFabricObject[];
1267
+ setObjects: (objects: LabeledFabricObject[]) => void;
1268
+ }
1269
+
1265
1270
  /**
1266
1271
  * Data that the host feeds into the labeling workspace.
1267
1272
  * Each field mirrors one of the former react-query hooks.
@@ -1749,6 +1754,8 @@ export declare const useImageTypeLabelingToolSelectionStore: UseBoundStore<Store
1749
1754
 
1750
1755
  export declare const useLabelBatchStore: UseBoundStore<StoreApi<LabelBatchState>>;
1751
1756
 
1757
+ export declare const useLabelingCanvasObjectsStore: UseBoundStore<StoreApi<LabelingCanvasObjectsState>>;
1758
+
1752
1759
  export declare const useLabelInsertPayloadStore: UseBoundStore<StoreApi<LabelInsertPayloadState>>;
1753
1760
 
1754
1761
  export declare const useToolbarSubMenuItemsStore: UseBoundStore<StoreApi<ToolbarSubMenuItemsState>>;
package/dist/index.js CHANGED
@@ -3589,7 +3589,7 @@ const LIB_AUTHOR = "최동호";
3589
3589
  const LIB_CONTACT = "servantcdh@naver.com";
3590
3590
  const __EZ_PLANET_META__ = Object.freeze({
3591
3591
  name: LIB_NAME,
3592
- version: "1.0.15",
3592
+ version: "1.0.16",
3593
3593
  author: LIB_AUTHOR,
3594
3594
  contact: LIB_CONTACT,
3595
3595
  license: "Proprietary — See LICENSE"
@@ -26414,6 +26414,7 @@ export {
26414
26414
  useImageTypeLabelingToolSelectionStore,
26415
26415
  useLabelBatchStore,
26416
26416
  useLabelInsertPayloadStore,
26417
+ useLabelingCanvasObjectsStore,
26417
26418
  useToolbarSubMenuItemsStore,
26418
26419
  useWorkspaceConfigStore,
26419
26420
  useWorkspaceNavigationDetailSelectionStore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servantcdh/ez-planet-labeling",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",