made-refine 0.1.1-beta.1 → 0.1.2
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.mts +10 -6
- package/dist/index.d.ts +10 -6
- package/dist/index.js +624 -348
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +628 -350
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/{utils-DNTIJ83m.d.mts → utils-DyR599SI.d.mts} +15 -1
- package/dist/{utils-DNTIJ83m.d.ts → utils-DyR599SI.d.ts} +15 -1
- package/dist/utils.d.mts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +129 -0
- package/dist/utils.js.map +1 -1
- package/dist/utils.mjs +123 -0
- package/dist/utils.mjs.map +1 -1
- package/package.json +1 -1
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, b as DirectEditState, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, c as BorderPropertyKey, d as BorderProperties, F as FlexPropertyKey, e as SizingPropertyKey, f as SizingValue, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as SessionEdit, k as TypographyProperties, M as MeasurementLine, G as Guideline, l as Comment } from './utils-
|
|
4
|
-
export { m as BorderRadiusProperties, n as BorderStyle, o as ColorProperties, p as CommentReply, q as DomSourceLocation, r as DropTarget, E as ElementInfo, s as ElementLocator, t as FlexProperties, u as MeasurementState, R as ReactComponentFrame, v as SizingMode, w as SizingProperties, x as SpacingProperties, U as UndoEditEntry, y as UndoEntry, z as UndoMoveEntry, H as UndoSelectionEntry, I as buildCommentExport, J as buildSessionExport, K as calculateDropPosition, L as calculateElementMeasurements, N as calculateGuidelineMeasurements, O as calculateParentMeasurements, P as colorToTailwind, Q as elementFromPointWithoutOverlays, V as findContainerAtPoint, W as formatPropertyValue, X as getComputedBorderStyles, Y as getComputedColorStyles, Z as getComputedStyles, _ as getDimensionDisplay, $ as getElementInfo, a0 as getElementLocator, a1 as getFlexDirection, a2 as isFlexContainer, a3 as parseColorValue, a4 as parsePropertyValue, a5 as stylesToTailwind } from './utils-
|
|
3
|
+
import { D as DragState, a as DropIndicator, b as DirectEditState, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, c as BorderPropertyKey, d as BorderProperties, F as FlexPropertyKey, e as SizingPropertyKey, f as SizingValue, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as SessionEdit, k as TypographyProperties, M as MeasurementLine, G as Guideline, l as Comment } from './utils-DyR599SI.mjs';
|
|
4
|
+
export { m as BorderRadiusProperties, n as BorderStyle, o as ColorProperties, p as CommentReply, q as DomSourceLocation, r as DropTarget, E as ElementInfo, s as ElementLocator, t as FlexProperties, u as MeasurementState, R as ReactComponentFrame, v as SizingMode, w as SizingProperties, x as SpacingProperties, U as UndoEditEntry, y as UndoEntry, z as UndoMoveEntry, H as UndoSelectionEntry, I as buildCommentExport, J as buildSessionExport, K as calculateDropPosition, L as calculateElementMeasurements, N as calculateGuidelineMeasurements, O as calculateParentMeasurements, P as colorToTailwind, Q as elementFromPointWithoutOverlays, V as findContainerAtPoint, W as formatPropertyValue, X as getComputedBorderStyles, Y as getComputedColorStyles, Z as getComputedStyles, _ as getDimensionDisplay, $ as getElementInfo, a0 as getElementLocator, a1 as getFlexDirection, a2 as isFlexContainer, a3 as parseColorValue, a4 as parsePropertyValue, a5 as stylesToTailwind } from './utils-DyR599SI.mjs';
|
|
5
5
|
|
|
6
6
|
declare function DirectEdit(): react_jsx_runtime.JSX.Element;
|
|
7
7
|
|
|
@@ -38,6 +38,7 @@ interface DirectEditContextValue extends DirectEditState {
|
|
|
38
38
|
updateBorderProperty: (key: BorderPropertyKey, value: BorderProperties[BorderPropertyKey]) => void;
|
|
39
39
|
updateBorderProperties: (changes: Array<[BorderPropertyKey, BorderProperties[BorderPropertyKey]]>) => void;
|
|
40
40
|
updateFlexProperty: (key: FlexPropertyKey, value: string) => void;
|
|
41
|
+
toggleFlexLayout: () => void;
|
|
41
42
|
updateSizingProperty: (key: SizingPropertyKey, value: SizingValue) => void;
|
|
42
43
|
updateColorProperty: (key: ColorPropertyKey, value: ColorValue) => void;
|
|
43
44
|
updateTypographyProperty: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
|
|
@@ -127,6 +128,7 @@ interface DirectEditPanelInnerProps {
|
|
|
127
128
|
onUpdateBorder: (key: BorderPropertyKey, value: BorderProperties[BorderPropertyKey]) => void;
|
|
128
129
|
onBatchUpdateBorder: (changes: Array<[BorderPropertyKey, BorderProperties[BorderPropertyKey]]>) => void;
|
|
129
130
|
onUpdateFlex: (key: 'flexDirection' | 'justifyContent' | 'alignItems', value: string) => void;
|
|
131
|
+
onToggleFlex: () => void;
|
|
130
132
|
onUpdateSizing: (key: SizingPropertyKey, value: SizingValue) => void;
|
|
131
133
|
onUpdateColor: (key: ColorPropertyKey, value: ColorValue) => void;
|
|
132
134
|
onUpdateTypography: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
|
|
@@ -141,7 +143,7 @@ interface DirectEditPanelInnerProps {
|
|
|
141
143
|
onHeaderPointerMove?: (e: React.PointerEvent) => void;
|
|
142
144
|
onHeaderPointerUp?: (e: React.PointerEvent) => void;
|
|
143
145
|
}
|
|
144
|
-
declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onUpdateFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
|
|
145
147
|
declare function DirectEditPanel(): react_jsx_runtime.JSX.Element | null;
|
|
146
148
|
|
|
147
149
|
interface DirectEditToolbarInnerProps {
|
|
@@ -190,9 +192,11 @@ interface SelectionOverlayProps {
|
|
|
190
192
|
};
|
|
191
193
|
onMoveStart: (e: React.PointerEvent) => void;
|
|
192
194
|
isTextEditing?: boolean;
|
|
193
|
-
onDoubleClick?: () => void;
|
|
195
|
+
onDoubleClick?: (clientX: number, clientY: number) => void;
|
|
196
|
+
onHoverElement?: (element: HTMLElement | null) => void;
|
|
197
|
+
onClickThrough?: (clientX: number, clientY: number) => void;
|
|
194
198
|
}
|
|
195
|
-
declare function SelectionOverlay({ selectedElement, isDragging, ghostPosition, onMoveStart, isTextEditing, onDoubleClick, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
|
|
199
|
+
declare function SelectionOverlay({ selectedElement, isDragging, ghostPosition, onMoveStart, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
|
|
196
200
|
|
|
197
201
|
interface MoveOverlayProps {
|
|
198
202
|
dropIndicator: DropIndicator | null;
|
|
@@ -220,7 +224,7 @@ interface UseGuidelinesResult {
|
|
|
220
224
|
clearAll: () => void;
|
|
221
225
|
}
|
|
222
226
|
declare function getStoredGuidelines(): Guideline[];
|
|
223
|
-
declare function useGuidelines(enabled: boolean): UseGuidelinesResult;
|
|
227
|
+
declare function useGuidelines(enabled: boolean, hostElement?: HTMLElement | null): UseGuidelinesResult;
|
|
224
228
|
|
|
225
229
|
interface CommentOverlayProps {
|
|
226
230
|
comments: Comment[];
|
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, b as DirectEditState, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, c as BorderPropertyKey, d as BorderProperties, F as FlexPropertyKey, e as SizingPropertyKey, f as SizingValue, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as SessionEdit, k as TypographyProperties, M as MeasurementLine, G as Guideline, l as Comment } from './utils-
|
|
4
|
-
export { m as BorderRadiusProperties, n as BorderStyle, o as ColorProperties, p as CommentReply, q as DomSourceLocation, r as DropTarget, E as ElementInfo, s as ElementLocator, t as FlexProperties, u as MeasurementState, R as ReactComponentFrame, v as SizingMode, w as SizingProperties, x as SpacingProperties, U as UndoEditEntry, y as UndoEntry, z as UndoMoveEntry, H as UndoSelectionEntry, I as buildCommentExport, J as buildSessionExport, K as calculateDropPosition, L as calculateElementMeasurements, N as calculateGuidelineMeasurements, O as calculateParentMeasurements, P as colorToTailwind, Q as elementFromPointWithoutOverlays, V as findContainerAtPoint, W as formatPropertyValue, X as getComputedBorderStyles, Y as getComputedColorStyles, Z as getComputedStyles, _ as getDimensionDisplay, $ as getElementInfo, a0 as getElementLocator, a1 as getFlexDirection, a2 as isFlexContainer, a3 as parseColorValue, a4 as parsePropertyValue, a5 as stylesToTailwind } from './utils-
|
|
3
|
+
import { D as DragState, a as DropIndicator, b as DirectEditState, S as SpacingPropertyKey, C as CSSPropertyValue, B as BorderRadiusPropertyKey, c as BorderPropertyKey, d as BorderProperties, F as FlexPropertyKey, e as SizingPropertyKey, f as SizingValue, g as ColorPropertyKey, h as ColorValue, T as TypographyPropertyKey, A as ActiveTool, i as Theme, j as SessionEdit, k as TypographyProperties, M as MeasurementLine, G as Guideline, l as Comment } from './utils-DyR599SI.js';
|
|
4
|
+
export { m as BorderRadiusProperties, n as BorderStyle, o as ColorProperties, p as CommentReply, q as DomSourceLocation, r as DropTarget, E as ElementInfo, s as ElementLocator, t as FlexProperties, u as MeasurementState, R as ReactComponentFrame, v as SizingMode, w as SizingProperties, x as SpacingProperties, U as UndoEditEntry, y as UndoEntry, z as UndoMoveEntry, H as UndoSelectionEntry, I as buildCommentExport, J as buildSessionExport, K as calculateDropPosition, L as calculateElementMeasurements, N as calculateGuidelineMeasurements, O as calculateParentMeasurements, P as colorToTailwind, Q as elementFromPointWithoutOverlays, V as findContainerAtPoint, W as formatPropertyValue, X as getComputedBorderStyles, Y as getComputedColorStyles, Z as getComputedStyles, _ as getDimensionDisplay, $ as getElementInfo, a0 as getElementLocator, a1 as getFlexDirection, a2 as isFlexContainer, a3 as parseColorValue, a4 as parsePropertyValue, a5 as stylesToTailwind } from './utils-DyR599SI.js';
|
|
5
5
|
|
|
6
6
|
declare function DirectEdit(): react_jsx_runtime.JSX.Element;
|
|
7
7
|
|
|
@@ -38,6 +38,7 @@ interface DirectEditContextValue extends DirectEditState {
|
|
|
38
38
|
updateBorderProperty: (key: BorderPropertyKey, value: BorderProperties[BorderPropertyKey]) => void;
|
|
39
39
|
updateBorderProperties: (changes: Array<[BorderPropertyKey, BorderProperties[BorderPropertyKey]]>) => void;
|
|
40
40
|
updateFlexProperty: (key: FlexPropertyKey, value: string) => void;
|
|
41
|
+
toggleFlexLayout: () => void;
|
|
41
42
|
updateSizingProperty: (key: SizingPropertyKey, value: SizingValue) => void;
|
|
42
43
|
updateColorProperty: (key: ColorPropertyKey, value: ColorValue) => void;
|
|
43
44
|
updateTypographyProperty: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
|
|
@@ -127,6 +128,7 @@ interface DirectEditPanelInnerProps {
|
|
|
127
128
|
onUpdateBorder: (key: BorderPropertyKey, value: BorderProperties[BorderPropertyKey]) => void;
|
|
128
129
|
onBatchUpdateBorder: (changes: Array<[BorderPropertyKey, BorderProperties[BorderPropertyKey]]>) => void;
|
|
129
130
|
onUpdateFlex: (key: 'flexDirection' | 'justifyContent' | 'alignItems', value: string) => void;
|
|
131
|
+
onToggleFlex: () => void;
|
|
130
132
|
onUpdateSizing: (key: SizingPropertyKey, value: SizingValue) => void;
|
|
131
133
|
onUpdateColor: (key: ColorPropertyKey, value: ColorValue) => void;
|
|
132
134
|
onUpdateTypography: (key: TypographyPropertyKey, value: CSSPropertyValue | string) => void;
|
|
@@ -141,7 +143,7 @@ interface DirectEditPanelInnerProps {
|
|
|
141
143
|
onHeaderPointerMove?: (e: React.PointerEvent) => void;
|
|
142
144
|
onHeaderPointerUp?: (e: React.PointerEvent) => void;
|
|
143
145
|
}
|
|
144
|
-
declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onUpdateFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
declare function DirectEditPanelInner({ elementInfo, computedSpacing, computedBorderRadius, computedBorder, computedFlex, computedSizing, computedColor, computedTypography, pendingStyles, onClose, onSelectParent, onSelectChild, onUpdateSpacing, onUpdateBorderRadius, onUpdateBorder, onBatchUpdateBorder, onUpdateFlex, onToggleFlex, onUpdateSizing, onUpdateColor, onUpdateTypography, onReset, onExportEdits, onSendToAgent, className, style, panelRef, isDragging, onHeaderPointerDown, onHeaderPointerMove, onHeaderPointerUp, }: DirectEditPanelInnerProps): react_jsx_runtime.JSX.Element;
|
|
145
147
|
declare function DirectEditPanel(): react_jsx_runtime.JSX.Element | null;
|
|
146
148
|
|
|
147
149
|
interface DirectEditToolbarInnerProps {
|
|
@@ -190,9 +192,11 @@ interface SelectionOverlayProps {
|
|
|
190
192
|
};
|
|
191
193
|
onMoveStart: (e: React.PointerEvent) => void;
|
|
192
194
|
isTextEditing?: boolean;
|
|
193
|
-
onDoubleClick?: () => void;
|
|
195
|
+
onDoubleClick?: (clientX: number, clientY: number) => void;
|
|
196
|
+
onHoverElement?: (element: HTMLElement | null) => void;
|
|
197
|
+
onClickThrough?: (clientX: number, clientY: number) => void;
|
|
194
198
|
}
|
|
195
|
-
declare function SelectionOverlay({ selectedElement, isDragging, ghostPosition, onMoveStart, isTextEditing, onDoubleClick, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
|
|
199
|
+
declare function SelectionOverlay({ selectedElement, isDragging, ghostPosition, onMoveStart, isTextEditing, onDoubleClick, onHoverElement, onClickThrough, }: SelectionOverlayProps): react_jsx_runtime.JSX.Element;
|
|
196
200
|
|
|
197
201
|
interface MoveOverlayProps {
|
|
198
202
|
dropIndicator: DropIndicator | null;
|
|
@@ -220,7 +224,7 @@ interface UseGuidelinesResult {
|
|
|
220
224
|
clearAll: () => void;
|
|
221
225
|
}
|
|
222
226
|
declare function getStoredGuidelines(): Guideline[];
|
|
223
|
-
declare function useGuidelines(enabled: boolean): UseGuidelinesResult;
|
|
227
|
+
declare function useGuidelines(enabled: boolean, hostElement?: HTMLElement | null): UseGuidelinesResult;
|
|
224
228
|
|
|
225
229
|
interface CommentOverlayProps {
|
|
226
230
|
comments: Comment[];
|