@yogiswara/honcho-editor-ui 2.6.3 → 2.6.5

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
@@ -1,3 +1,5 @@
1
+ export { HonchoEditorBulkDemo } from './hooks/demo/HonchoEditorBulkDemo';
2
+ export { HonchoEditorSingleCleanDemo } from './hooks/demo/HonchoEditorSingleCleanDemo';
1
3
  export { useHonchoEditorSingle } from './hooks/editor/useHonchoEditorSingle';
2
4
  export { useHonchoEditorBulk } from './hooks/editor/useHonchoEditorBulk';
3
5
  export type { Controller, AdjustmentState, Preset, ImageItem, ColorAdjustment, CreateEditorTaskRequest, EditorHistoryEntry, GetGalleryUpdateTimestampResponse, GetHistoryResponse, } from './hooks/editor/type';
@@ -26,6 +28,7 @@ export { default as GalleryImageItem } from './components/editor/GalleryAlbum/Im
26
28
  export { EditorProvider, useEditorContext } from './lib/context/EditorContext';
27
29
  export { useImageProcessor } from './lib/hooks/useImageProcessor';
28
30
  export { useEditorHeadless } from './lib/hooks/useEditorHeadless';
31
+ export { ImageSize, HonchoEditor, AdjustmentValues, AdjustmentRange, AdjustmentRanges } from './lib/editor/honcho-editor';
29
32
  export { useAdjustmentHistory, type UseAdjustmentHistoryReturn, type HistoryInfo, type HistoryActions, type HistoryConfig } from './hooks/useAdjustmentHistory';
30
33
  export { useAdjustmentHistoryBatch, type UseAdjustmentHistoryBatchReturn, type BatchAdjustmentState, type ImageAdjustmentConfig, type BatchHistoryInfo, type BatchHistoryActions, type BatchHistoryConfig } from './hooks/useAdjustmentHistoryBatch';
31
34
  export { usePreset, type UsePresetReturn, type PresetInfo, type PresetActions, type PresetOptions } from './hooks/usePreset';
package/dist/index.js CHANGED
@@ -1,3 +1,7 @@
1
+ // START: delete later
2
+ export { HonchoEditorBulkDemo } from './hooks/demo/HonchoEditorBulkDemo';
3
+ export { HonchoEditorSingleCleanDemo } from './hooks/demo/HonchoEditorSingleCleanDemo';
4
+ // END
1
5
  export { useHonchoEditorSingle } from './hooks/editor/useHonchoEditorSingle';
2
6
  export { useHonchoEditorBulk } from './hooks/editor/useHonchoEditorBulk';
3
7
  export { default as HHeaderEditor } from './components/editor/HHeaderEditor';
@@ -23,6 +27,7 @@ export { default as GalleryImageItem } from './components/editor/GalleryAlbum/Im
23
27
  export { EditorProvider, useEditorContext } from './lib/context/EditorContext';
24
28
  export { useImageProcessor } from './lib/hooks/useImageProcessor';
25
29
  export { useEditorHeadless } from './lib/hooks/useEditorHeadless';
30
+ export { HonchoEditor } from './lib/editor/honcho-editor';
26
31
  // --- History Hooks ---
27
32
  export { useAdjustmentHistory } from './hooks/useAdjustmentHistory';
28
33
  export { useAdjustmentHistoryBatch } from './hooks/useAdjustmentHistoryBatch';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yogiswara/honcho-editor-ui",
3
- "version": "2.6.3",
3
+ "version": "2.6.5",
4
4
  "description": "A complete UI component library for the Honcho photo editor.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",