chore(release): v1.0.2

This commit is contained in:
2026-03-10 10:42:16 +01:00
parent df8e69dcf9
commit c100d55dd7
2 changed files with 6 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "cyberduck", "name": "cyberduck",
"private": false, "private": false,
"version": "1.0.1", "version": "1.0.2",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://git.maze.io/maze/cyberduck.git" "url": "git+https://git.maze.io/maze/cyberduck.git"

View File

@@ -53,7 +53,7 @@ const Split: React.FC<SplitProps> & { Panel: React.FC<PanelProps> } = ({
// detect Panel children and extract sizes and passthrough props // detect Panel children and extract sizes and passthrough props
const sizes: (number | null)[] = childrenArray.map((c) => { const sizes: (number | null)[] = childrenArray.map((c) => {
if (React.isValidElement(c) && (c.type as any).displayName === 'SplitPanel') { if (React.isValidElement(c) && (c.type as any)?.displayName === 'SplitPanel') {
const p = c as React.ReactElement<PanelProps> const p = c as React.ReactElement<PanelProps>
return typeof p.props.size === 'number' ? p.props.size : 1 return typeof p.props.size === 'number' ? p.props.size : 1
} }
@@ -71,7 +71,7 @@ const Split: React.FC<SplitProps> & { Panel: React.FC<PanelProps> } = ({
let extraClass = '' let extraClass = ''
let extraStyle: React.CSSProperties | undefined let extraStyle: React.CSSProperties | undefined
if (React.isValidElement(child) && (child.type as any).displayName === 'SplitPanel') { if (React.isValidElement(child) && (child.type as any)?.displayName === 'SplitPanel') {
const p = child as React.ReactElement<PanelProps> const p = child as React.ReactElement<PanelProps>
extraClass = p.props.className || '' extraClass = p.props.className || ''
extraStyle = p.props.style extraStyle = p.props.style
@@ -90,7 +90,9 @@ const Split: React.FC<SplitProps> & { Panel: React.FC<PanelProps> } = ({
} }
const mergedStyle = extraStyle ? { ...style, ...extraStyle } : style const mergedStyle = extraStyle ? { ...style, ...extraStyle } : style
const childElem = React.isValidElement(child) ? (child as React.ReactElement<PanelProps>) : null const childElem = React.isValidElement(child) && (child.type as any)?.displayName === 'SplitPanel'
? (child as React.ReactElement<PanelProps>)
: null
const variant = childElem ? childElem.props.variant ?? splitVariant : splitVariant const variant = childElem ? childElem.props.variant ?? splitVariant : splitVariant
// Determine accent: a panel with its own `accent` always uses it. // Determine accent: a panel with its own `accent` always uses it.
// Otherwise, if the parent `Split` has an `accent`, only the first // Otherwise, if the parent `Split` has an `accent`, only the first