@tcn/ui-layout
Advanced tools
Comparing version 0.3.20 to 0.3.21
import React from 'react'; | ||
import { Box } from "./box/box.js"; | ||
export const StyleBox = React.forwardRef(function StyleBox({ width, height, children, className, style, tabIndex, ...props }, ref) { | ||
return (React.createElement(Box, { tabIndex: tabIndex, ref: ref, width: width, height: height, style: { | ||
export const StyleBox = React.forwardRef(function StyleBox({ width, height, children, className, style, tabIndex, enableResizeOnTop, enableResizeOnEnd, enableResizeOnBottom, enableResizeOnStart, enableResizeOnLeft, enableResizeOnRight, handleProps, onWidthResize, onHeightResize, onWidthResizeEnd, onHeightResizeEnd, ...props }, ref) { | ||
return (React.createElement(Box, { tabIndex: tabIndex, ref: ref, width: width, height: height, enableResizeOnBottom: enableResizeOnBottom, enableResizeOnEnd: enableResizeOnEnd, enableResizeOnLeft: enableResizeOnLeft, enableResizeOnRight: enableResizeOnRight, enableResizeOnStart: enableResizeOnStart, enableResizeOnTop: enableResizeOnTop, onWidthResize: onWidthResize, onHeightResize: onHeightResize, onWidthResizeEnd: onWidthResizeEnd, onHeightResizeEnd: onHeightResizeEnd, style: { | ||
...props, | ||
@@ -6,0 +6,0 @@ ...style, |
{ | ||
"name": "@tcn/ui-layout", | ||
"version": "0.3.20", | ||
"version": "0.3.21", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "TCN Layout.", |
Sorry, the diff of this file is not supported yet
222346
2932