opus-react 0.2.30 → 0.2.31
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.cjs +118 -116
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +37 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +118 -116
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1397,13 +1397,14 @@ type SplitterProps = {
|
|
|
1397
1397
|
children: [ReactNode, ReactNode];
|
|
1398
1398
|
className?: string;
|
|
1399
1399
|
defaultSize?: number;
|
|
1400
|
+
flush?: boolean;
|
|
1400
1401
|
minSize?: number;
|
|
1401
1402
|
onSizeChange?: (size: number) => void;
|
|
1402
1403
|
orientation?: SplitterOrientation;
|
|
1403
1404
|
size?: number;
|
|
1404
1405
|
style?: CSSProperties;
|
|
1405
1406
|
};
|
|
1406
|
-
declare function Splitter({ children, className, defaultSize, minSize, onSizeChange, orientation, size: controlledSize, style, }: SplitterProps): react.JSX.Element;
|
|
1407
|
+
declare function Splitter({ children, className, defaultSize, flush, minSize, onSizeChange, orientation, size: controlledSize, style, }: SplitterProps): react.JSX.Element;
|
|
1407
1408
|
|
|
1408
1409
|
type ResizablePanelProps = {
|
|
1409
1410
|
children: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -1397,13 +1397,14 @@ type SplitterProps = {
|
|
|
1397
1397
|
children: [ReactNode, ReactNode];
|
|
1398
1398
|
className?: string;
|
|
1399
1399
|
defaultSize?: number;
|
|
1400
|
+
flush?: boolean;
|
|
1400
1401
|
minSize?: number;
|
|
1401
1402
|
onSizeChange?: (size: number) => void;
|
|
1402
1403
|
orientation?: SplitterOrientation;
|
|
1403
1404
|
size?: number;
|
|
1404
1405
|
style?: CSSProperties;
|
|
1405
1406
|
};
|
|
1406
|
-
declare function Splitter({ children, className, defaultSize, minSize, onSizeChange, orientation, size: controlledSize, style, }: SplitterProps): react.JSX.Element;
|
|
1407
|
+
declare function Splitter({ children, className, defaultSize, flush, minSize, onSizeChange, orientation, size: controlledSize, style, }: SplitterProps): react.JSX.Element;
|
|
1407
1408
|
|
|
1408
1409
|
type ResizablePanelProps = {
|
|
1409
1410
|
children: ReactNode;
|