@servantcdh/ez-planet-labeling 0.5.33 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
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: "0.5.33",
3592
+ version: "1.0.0",
3593
3593
  author: LIB_AUTHOR,
3594
3594
  contact: LIB_CONTACT,
3595
3595
  license: "Proprietary — See LICENSE"
@@ -18703,7 +18703,8 @@ const useImageLabelingUIMeta = ({
18703
18703
  setSelectedSubToolId(tool == null ? void 0 : tool.id);
18704
18704
  setLastSelectedType("subTool");
18705
18705
  }
18706
- const builtInDrawingTools = [
18706
+ const builtInTools = [
18707
+ "selection",
18707
18708
  "bounded-box",
18708
18709
  "pen",
18709
18710
  "brush",
@@ -18711,7 +18712,7 @@ const useImageLabelingUIMeta = ({
18711
18712
  "magic-wand",
18712
18713
  "superpixel"
18713
18714
  ];
18714
- if (tool && builtInDrawingTools.includes(tool.id)) {
18715
+ if (tool && builtInTools.includes(tool.id)) {
18715
18716
  const panelStore = useExtensionFloatingPanelStore.getState();
18716
18717
  if (panelStore.activePanelId) {
18717
18718
  panelStore.closePanel();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servantcdh/ez-planet-labeling",
3
- "version": "0.5.33",
3
+ "version": "1.0.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",