made-refine 0.2.7 → 0.2.9

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/cli.cjs CHANGED
@@ -8337,7 +8337,13 @@ function getInstallCommand(pm) {
8337
8337
  function detectFramework(cwd) {
8338
8338
  const pkgPath = import_path2.default.join(cwd, "package.json");
8339
8339
  if (!import_fs2.default.existsSync(pkgPath)) return null;
8340
- const pkg = JSON.parse(import_fs2.default.readFileSync(pkgPath, "utf-8"));
8340
+ let pkg;
8341
+ try {
8342
+ pkg = JSON.parse(import_fs2.default.readFileSync(pkgPath, "utf-8"));
8343
+ } catch (err) {
8344
+ console.error(import_picocolors.default.red(`Failed to parse package.json: ${err instanceof Error ? err.message : err}`));
8345
+ return null;
8346
+ }
8341
8347
  const deps = { ...pkg.dependencies, ...pkg.devDependencies };
8342
8348
  if (deps["@tanstack/start"] || deps["@tanstack/react-start"]) return "tanstack";
8343
8349
  if (deps["next"]) return "next";
@@ -8793,7 +8799,7 @@ async function init() {
8793
8799
  }
8794
8800
  framework = selected;
8795
8801
  }
8796
- await installPackage(cwd);
8802
+ installPackage(cwd);
8797
8803
  switch (framework) {
8798
8804
  case "next":
8799
8805
  await setupNextJs(cwd);
@@ -8808,6 +8814,14 @@ async function init() {
8808
8814
  console.log(import_picocolors.default.bold(import_picocolors.default.green("\n\u2713 Setup complete!")));
8809
8815
  console.log(import_picocolors.default.dim(" Start your dev server and press Cmd+. (Ctrl+.) to toggle the editor.\n"));
8810
8816
  }
8811
- program.name("made-refine").description("Visual CSS editor for React").version("0.1.0");
8817
+ function getPackageVersion() {
8818
+ try {
8819
+ const pkgJson = JSON.parse(import_fs2.default.readFileSync(import_path2.default.join(__dirname, "..", "package.json"), "utf-8"));
8820
+ return pkgJson.version ?? "0.0.0";
8821
+ } catch {
8822
+ return "0.0.0";
8823
+ }
8824
+ }
8825
+ program.name("made-refine").description("Visual CSS editor for React").version(getPackageVersion());
8812
8826
  program.command("init").description("Set up made-refine in your project").action(init);
8813
8827
  program.parse();
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
- import { D as DragState, a as DropIndicator, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, b as BorderPropertyKey, c as BorderProperties, F as FlexPropertyKey, d as SizingPropertyKey, e as SizingValue, f as ColorPropertyKey, g as ColorValue, T as TypographyPropertyKey, A as ActiveTool, h as Theme, i as BorderStyleControlPreference, j as DirectEditState, k as SessionEdit, l as SessionItem, m as TypographyProperties, M as MeasurementLine, G as Guideline, n as Comment } from './utils-dcZIwXa7.mjs';
4
- export { o as BorderRadiusProperties, p as BorderStyle, q as ColorProperties, r as CommentReply, s as DomSourceLocation, t as DropTarget, E as ElementInfo, u as ElementLocator, v as FlexProperties, w as MeasurementState, R as ReactComponentFrame, x as SizingMode, y as SizingProperties, z as SpacingProperties, U as UndoEditEntry, H as UndoEntry, I as UndoMoveEntry, J as UndoSelectionEntry, K as buildCommentExport, L as buildSessionExport, N as calculateDropPosition, O as calculateElementMeasurements, P as calculateGuidelineMeasurements, Q as calculateParentMeasurements, V as colorToTailwind, W as elementFromPointWithoutOverlays, X as findContainerAtPoint, Y as findLayoutContainerAtPoint, Z as formatPropertyValue, _ as getComputedBorderStyles, $ as getComputedBoxShadow, a0 as getComputedColorStyles, a1 as getComputedStyles, a2 as getDimensionDisplay, a3 as getElementInfo, a4 as getElementLocator, a5 as getFlexDirection, a6 as isFlexContainer, a7 as isLayoutContainer, a8 as parseColorValue, a9 as parsePropertyValue, aa as stylesToTailwind } from './utils-dcZIwXa7.mjs';
3
+ import { D as DragState, a as DropIndicator, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, b as BorderPropertyKey, c as BorderProperties, F as FlexPropertyKey, d as SizingPropertyKey, e as SizingValue, f as SizingChangeOptions, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as BorderStyleControlPreference, k as DirectEditState, l as SessionEdit, m as SessionItem, n as TypographyProperties, M as MeasurementLine, G as Guideline, o as Comment } from './utils-BGCQaaSf.mjs';
4
+ export { p as BorderRadiusProperties, q as BorderStyle, r as ColorProperties, s as CommentReply, t as DomSourceLocation, u as DropTarget, E as ElementInfo, v as ElementLocator, w as FlexProperties, x as MeasurementState, R as ReactComponentFrame, y as SizingChangePhase, z as SizingMode, H as SizingProperties, I as SpacingProperties, U as UndoEditEntry, J as UndoEntry, K as UndoMoveEntry, L as UndoSelectionEntry, N as buildCommentExport, O as buildSessionExport, P as calculateDropPosition, Q as calculateElementMeasurements, V as calculateGuidelineMeasurements, W as calculateParentMeasurements, X as colorToTailwind, Y as elementFromPointWithoutOverlays, Z as findContainerAtPoint, _ as findLayoutContainerAtPoint, $ as formatPropertyValue, a0 as getComputedBorderStyles, a1 as getComputedBoxShadow, a2 as getComputedColorStyles, a3 as getComputedStyles, a4 as getDimensionDisplay, a5 as getElementInfo, a6 as getElementLocator, a7 as getFlexDirection, a8 as isFlexContainer, a9 as isLayoutContainer, aa as parseColorValue, ab as parsePropertyValue, ac as stylesToTailwind } from './utils-BGCQaaSf.mjs';
5
5
 
6
6
  declare function DirectEdit(): react_jsx_runtime.JSX.Element;
7
7
 
@@ -56,8 +56,10 @@ interface DirectEditActionsContextValue {
56
56
  updateRawCSS: (properties: Record<string, string>) => void;
57
57
  updateFlexProperty: (key: FlexPropertyKey, value: string) => void;
58
58
  toggleFlexLayout: () => void;
59
+ updateSizingProperties: (changes: Partial<Record<SizingPropertyKey, SizingValue>>, options?: SizingChangeOptions) => void;
59
60
  updateSizingProperty: (key: SizingPropertyKey, value: SizingValue) => void;
60
61
  updateColorProperty: (key: ColorPropertyKey, value: ColorValue) => void;
62
+ replaceSelectionColor: (from: ColorValue, to: ColorValue) => void;
61
63
  updateTypographyProperty: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
62
64
  resetToOriginal: () => void;
63
65
  exportEdits: () => Promise<boolean>;
@@ -153,6 +155,7 @@ interface DirectEditPanelInnerProps {
153
155
  borderColor: ColorValue;
154
156
  outlineColor: ColorValue;
155
157
  } | null;
158
+ selectionColors?: ColorValue[];
156
159
  computedBoxShadow?: string;
157
160
  borderStyleControlPreference?: BorderStyleControlPreference;
158
161
  computedTypography: TypographyProperties | null;
@@ -169,6 +172,8 @@ interface DirectEditPanelInnerProps {
169
172
  onToggleFlex: () => void;
170
173
  onUpdateSizing: (key: SizingPropertyKey, value: SizingValue) => void;
171
174
  onUpdateColor: (key: ColorPropertyKey, value: ColorValue) => void;
175
+ onReplaceSelectionColor: (from: ColorValue, to: ColorValue) => void;
176
+ onSelectSelectionColorTarget?: (color: ColorValue) => void;
172
177
  onUpdateTypography: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
173
178
  onReset: () => void;
174
179
  onExportEdits: () => Promise<boolean>;
@@ -183,7 +188,7 @@ interface DirectEditPanelInnerProps {
183
188
  onHeaderPointerUp?: (e: React.PointerEvent) => void;
184
189
  onHeaderPointerCancel?: (e: React.PointerEvent) => void;
185
190
  }
186
- declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedBoxShadow, borderStyleControlPreference, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onSetCSS, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, canSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, onHeaderPointerCancel, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
191
+ declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, selectionColors, computedBoxShadow, borderStyleControlPreference, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onSetCSS, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onReplaceSelectionColor, onSelectSelectionColorTarget, onUpdateTypography, onReset, onExportEdits, onSendToAgent, canSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, onHeaderPointerCancel, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
187
192
  declare function DirectEditPanel(): react_jsx_runtime.JSX.Element | null;
188
193
 
189
194
  interface DirectEditToolbarInnerProps {
@@ -246,8 +251,10 @@ interface SelectionOverlayProps {
246
251
  onDoubleClick?: (clientX: number, clientY: number) => void;
247
252
  onHoverElement?: (element: HTMLElement | null) => void;
248
253
  onClickThrough?: (clientX: number, clientY: number) => void;
254
+ enableResizeHandles?: boolean;
255
+ onResizeSizingChange?: (changes: Partial<Record<SizingPropertyKey, SizingValue>>, options?: SizingChangeOptions) => void;
249
256
  }
250
- declare function SelectionOverlay({ selectedElement, draggedElement, isDragging, ghostPosition, onMoveStart, showMoveHandle, activeTool, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
257
+ declare function SelectionOverlay({ selectedElement, draggedElement, isDragging, ghostPosition, onMoveStart, showMoveHandle, activeTool, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, enableResizeHandles, onResizeSizingChange, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
251
258
 
252
259
  interface MoveOverlayProps {
253
260
  dropIndicator: DropIndicator | null;
@@ -302,4 +309,4 @@ declare function CommentOverlay({ comments, activeCommentId, onSetActiveComment,
302
309
 
303
310
  declare function formatColorValue(color: ColorValue): string;
304
311
 
305
- export { ActiveTool, BorderProperties, BorderPropertyKey, BorderRadiusPropertyKey, CSSPropertyValue, ColorPropertyKey, ColorValue, Comment, CommentOverlay, type CommentOverlayProps, DirectEdit, type DirectEditActionsContextValue, type DirectEditContextValue, DirectEditDemo, DirectEditPanel, DirectEditPanelInner, type DirectEditPanelInnerProps, DirectEditProvider, DirectEditState, type DirectEditStateContextValue, DirectEditToolbar, DirectEditToolbarInner, type DirectEditToolbarInnerProps, DragState, DropIndicator, FlexPropertyKey, Guideline, MeasurementLine, MeasurementOverlay, type MeasurementOverlayProps, type MoveInfo, type MoveMode, MoveOverlay, type MoveOverlayProps, Rulers, RulersOverlay, SelectionOverlay, type SelectionOverlayProps, SessionEdit, SizingPropertyKey, SizingValue, SpacingPropertyKey, type StartDragOptions, Theme, TypographyProperties, TypographyPropertyKey, type UseGuidelinesResult, type UseMeasurementResult, type UseMoveDropTarget, type UseMoveOptions, type UseMoveResult, formatColorValue, getStoredGuidelines, useDirectEdit, useDirectEditActions, useDirectEditState, useGuidelines, useMeasurement, useMove, useRulersVisible };
312
+ export { ActiveTool, BorderProperties, BorderPropertyKey, BorderRadiusPropertyKey, CSSPropertyValue, ColorPropertyKey, ColorValue, Comment, CommentOverlay, type CommentOverlayProps, DirectEdit, type DirectEditActionsContextValue, type DirectEditContextValue, DirectEditDemo, DirectEditPanel, DirectEditPanelInner, type DirectEditPanelInnerProps, DirectEditProvider, DirectEditState, type DirectEditStateContextValue, DirectEditToolbar, DirectEditToolbarInner, type DirectEditToolbarInnerProps, DragState, DropIndicator, FlexPropertyKey, Guideline, MeasurementLine, MeasurementOverlay, type MeasurementOverlayProps, type MoveInfo, type MoveMode, MoveOverlay, type MoveOverlayProps, Rulers, RulersOverlay, SelectionOverlay, type SelectionOverlayProps, SessionEdit, SizingChangeOptions, SizingPropertyKey, SizingValue, SpacingPropertyKey, type StartDragOptions, Theme, TypographyProperties, TypographyPropertyKey, type UseGuidelinesResult, type UseMeasurementResult, type UseMoveDropTarget, type UseMoveOptions, type UseMoveResult, formatColorValue, getStoredGuidelines, useDirectEdit, useDirectEditActions, useDirectEditState, useGuidelines, useMeasurement, useMove, useRulersVisible };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
- import { D as DragState, a as DropIndicator, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, b as BorderPropertyKey, c as BorderProperties, F as FlexPropertyKey, d as SizingPropertyKey, e as SizingValue, f as ColorPropertyKey, g as ColorValue, T as TypographyPropertyKey, A as ActiveTool, h as Theme, i as BorderStyleControlPreference, j as DirectEditState, k as SessionEdit, l as SessionItem, m as TypographyProperties, M as MeasurementLine, G as Guideline, n as Comment } from './utils-dcZIwXa7.js';
4
- export { o as BorderRadiusProperties, p as BorderStyle, q as ColorProperties, r as CommentReply, s as DomSourceLocation, t as DropTarget, E as ElementInfo, u as ElementLocator, v as FlexProperties, w as MeasurementState, R as ReactComponentFrame, x as SizingMode, y as SizingProperties, z as SpacingProperties, U as UndoEditEntry, H as UndoEntry, I as UndoMoveEntry, J as UndoSelectionEntry, K as buildCommentExport, L as buildSessionExport, N as calculateDropPosition, O as calculateElementMeasurements, P as calculateGuidelineMeasurements, Q as calculateParentMeasurements, V as colorToTailwind, W as elementFromPointWithoutOverlays, X as findContainerAtPoint, Y as findLayoutContainerAtPoint, Z as formatPropertyValue, _ as getComputedBorderStyles, $ as getComputedBoxShadow, a0 as getComputedColorStyles, a1 as getComputedStyles, a2 as getDimensionDisplay, a3 as getElementInfo, a4 as getElementLocator, a5 as getFlexDirection, a6 as isFlexContainer, a7 as isLayoutContainer, a8 as parseColorValue, a9 as parsePropertyValue, aa as stylesToTailwind } from './utils-dcZIwXa7.js';
3
+ import { D as DragState, a as DropIndicator, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, b as BorderPropertyKey, c as BorderProperties, F as FlexPropertyKey, d as SizingPropertyKey, e as SizingValue, f as SizingChangeOptions, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as BorderStyleControlPreference, k as DirectEditState, l as SessionEdit, m as SessionItem, n as TypographyProperties, M as MeasurementLine, G as Guideline, o as Comment } from './utils-BGCQaaSf.js';
4
+ export { p as BorderRadiusProperties, q as BorderStyle, r as ColorProperties, s as CommentReply, t as DomSourceLocation, u as DropTarget, E as ElementInfo, v as ElementLocator, w as FlexProperties, x as MeasurementState, R as ReactComponentFrame, y as SizingChangePhase, z as SizingMode, H as SizingProperties, I as SpacingProperties, U as UndoEditEntry, J as UndoEntry, K as UndoMoveEntry, L as UndoSelectionEntry, N as buildCommentExport, O as buildSessionExport, P as calculateDropPosition, Q as calculateElementMeasurements, V as calculateGuidelineMeasurements, W as calculateParentMeasurements, X as colorToTailwind, Y as elementFromPointWithoutOverlays, Z as findContainerAtPoint, _ as findLayoutContainerAtPoint, $ as formatPropertyValue, a0 as getComputedBorderStyles, a1 as getComputedBoxShadow, a2 as getComputedColorStyles, a3 as getComputedStyles, a4 as getDimensionDisplay, a5 as getElementInfo, a6 as getElementLocator, a7 as getFlexDirection, a8 as isFlexContainer, a9 as isLayoutContainer, aa as parseColorValue, ab as parsePropertyValue, ac as stylesToTailwind } from './utils-BGCQaaSf.js';
5
5
 
6
6
  declare function DirectEdit(): react_jsx_runtime.JSX.Element;
7
7
 
@@ -56,8 +56,10 @@ interface DirectEditActionsContextValue {
56
56
  updateRawCSS: (properties: Record<string, string>) => void;
57
57
  updateFlexProperty: (key: FlexPropertyKey, value: string) => void;
58
58
  toggleFlexLayout: () => void;
59
+ updateSizingProperties: (changes: Partial<Record<SizingPropertyKey, SizingValue>>, options?: SizingChangeOptions) => void;
59
60
  updateSizingProperty: (key: SizingPropertyKey, value: SizingValue) => void;
60
61
  updateColorProperty: (key: ColorPropertyKey, value: ColorValue) => void;
62
+ replaceSelectionColor: (from: ColorValue, to: ColorValue) => void;
61
63
  updateTypographyProperty: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
62
64
  resetToOriginal: () => void;
63
65
  exportEdits: () => Promise<boolean>;
@@ -153,6 +155,7 @@ interface DirectEditPanelInnerProps {
153
155
  borderColor: ColorValue;
154
156
  outlineColor: ColorValue;
155
157
  } | null;
158
+ selectionColors?: ColorValue[];
156
159
  computedBoxShadow?: string;
157
160
  borderStyleControlPreference?: BorderStyleControlPreference;
158
161
  computedTypography: TypographyProperties | null;
@@ -169,6 +172,8 @@ interface DirectEditPanelInnerProps {
169
172
  onToggleFlex: () => void;
170
173
  onUpdateSizing: (key: SizingPropertyKey, value: SizingValue) => void;
171
174
  onUpdateColor: (key: ColorPropertyKey, value: ColorValue) => void;
175
+ onReplaceSelectionColor: (from: ColorValue, to: ColorValue) => void;
176
+ onSelectSelectionColorTarget?: (color: ColorValue) => void;
172
177
  onUpdateTypography: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
173
178
  onReset: () => void;
174
179
  onExportEdits: () => Promise<boolean>;
@@ -183,7 +188,7 @@ interface DirectEditPanelInnerProps {
183
188
  onHeaderPointerUp?: (e: React.PointerEvent) => void;
184
189
  onHeaderPointerCancel?: (e: React.PointerEvent) => void;
185
190
  }
186
- declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedBoxShadow, borderStyleControlPreference, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onSetCSS, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, canSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, onHeaderPointerCancel, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
191
+ declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, selectionColors, computedBoxShadow, borderStyleControlPreference, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onSetCSS, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onReplaceSelectionColor, onSelectSelectionColorTarget, onUpdateTypography, onReset, onExportEdits, onSendToAgent, canSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, onHeaderPointerCancel, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
187
192
  declare function DirectEditPanel(): react_jsx_runtime.JSX.Element | null;
188
193
 
189
194
  interface DirectEditToolbarInnerProps {
@@ -246,8 +251,10 @@ interface SelectionOverlayProps {
246
251
  onDoubleClick?: (clientX: number, clientY: number) => void;
247
252
  onHoverElement?: (element: HTMLElement | null) => void;
248
253
  onClickThrough?: (clientX: number, clientY: number) => void;
254
+ enableResizeHandles?: boolean;
255
+ onResizeSizingChange?: (changes: Partial<Record<SizingPropertyKey, SizingValue>>, options?: SizingChangeOptions) => void;
249
256
  }
250
- declare function SelectionOverlay({ selectedElement, draggedElement, isDragging, ghostPosition, onMoveStart, showMoveHandle, activeTool, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
257
+ declare function SelectionOverlay({ selectedElement, draggedElement, isDragging, ghostPosition, onMoveStart, showMoveHandle, activeTool, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, enableResizeHandles, onResizeSizingChange, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
251
258
 
252
259
  interface MoveOverlayProps {
253
260
  dropIndicator: DropIndicator | null;
@@ -302,4 +309,4 @@ declare function CommentOverlay({ comments, activeCommentId, onSetActiveComment,
302
309
 
303
310
  declare function formatColorValue(color: ColorValue): string;
304
311
 
305
- export { ActiveTool, BorderProperties, BorderPropertyKey, BorderRadiusPropertyKey, CSSPropertyValue, ColorPropertyKey, ColorValue, Comment, CommentOverlay, type CommentOverlayProps, DirectEdit, type DirectEditActionsContextValue, type DirectEditContextValue, DirectEditDemo, DirectEditPanel, DirectEditPanelInner, type DirectEditPanelInnerProps, DirectEditProvider, DirectEditState, type DirectEditStateContextValue, DirectEditToolbar, DirectEditToolbarInner, type DirectEditToolbarInnerProps, DragState, DropIndicator, FlexPropertyKey, Guideline, MeasurementLine, MeasurementOverlay, type MeasurementOverlayProps, type MoveInfo, type MoveMode, MoveOverlay, type MoveOverlayProps, Rulers, RulersOverlay, SelectionOverlay, type SelectionOverlayProps, SessionEdit, SizingPropertyKey, SizingValue, SpacingPropertyKey, type StartDragOptions, Theme, TypographyProperties, TypographyPropertyKey, type UseGuidelinesResult, type UseMeasurementResult, type UseMoveDropTarget, type UseMoveOptions, type UseMoveResult, formatColorValue, getStoredGuidelines, useDirectEdit, useDirectEditActions, useDirectEditState, useGuidelines, useMeasurement, useMove, useRulersVisible };
312
+ export { ActiveTool, BorderProperties, BorderPropertyKey, BorderRadiusPropertyKey, CSSPropertyValue, ColorPropertyKey, ColorValue, Comment, CommentOverlay, type CommentOverlayProps, DirectEdit, type DirectEditActionsContextValue, type DirectEditContextValue, DirectEditDemo, DirectEditPanel, DirectEditPanelInner, type DirectEditPanelInnerProps, DirectEditProvider, DirectEditState, type DirectEditStateContextValue, DirectEditToolbar, DirectEditToolbarInner, type DirectEditToolbarInnerProps, DragState, DropIndicator, FlexPropertyKey, Guideline, MeasurementLine, MeasurementOverlay, type MeasurementOverlayProps, type MoveInfo, type MoveMode, MoveOverlay, type MoveOverlayProps, Rulers, RulersOverlay, SelectionOverlay, type SelectionOverlayProps, SessionEdit, SizingChangeOptions, SizingPropertyKey, SizingValue, SpacingPropertyKey, type StartDragOptions, Theme, TypographyProperties, TypographyPropertyKey, type UseGuidelinesResult, type UseMeasurementResult, type UseMoveDropTarget, type UseMoveOptions, type UseMoveResult, formatColorValue, getStoredGuidelines, useDirectEdit, useDirectEditActions, useDirectEditState, useGuidelines, useMeasurement, useMove, useRulersVisible };