publ-echo 0.0.99 → 0.0.100
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.
|
@@ -38,7 +38,7 @@ function getIndentationValue(param, breakpoint) {
|
|
|
38
38
|
}
|
|
39
39
|
export var ResponsiveGridLayout = function (_a) {
|
|
40
40
|
var children = _a.children, props = __rest(_a, ["children"]);
|
|
41
|
-
var breakpoint = props.breakpoint, compactType = props.compactType, _b = props.breakpoints, breakpoints = _b === void 0 ? { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 } : _b, _c = props.cols, cols = _c === void 0 ? { lg: 12, md: 10, sm: 6, xs: 4, xxs: 2 } : _c, _d = props.containerPadding, containerPadding = _d === void 0 ? {} : _d, _e = props.layouts, layouts = _e === void 0 ? {} : _e, _f = props.width, width = _f === void 0 ? 0 : _f, _g = props.margin, margin = _g === void 0 ? [10, 10] : _g, _h = props.onBreakpointChange, onBreakpointChange = _h === void 0 ? noop : _h, _j = props.onLayoutChange, onLayoutChange = _j === void 0 ? noop : _j, _k = props.onWidthChange, onWidthChange = _k === void 0 ? noop : _k, restProps = __rest(props, ["breakpoint", "compactType", "breakpoints", "cols", "containerPadding", "layouts", "width", "margin", "onBreakpointChange", "onLayoutChange", "onWidthChange"]);
|
|
41
|
+
var breakpoint = props.breakpoint, compactType = props.compactType, _b = props.breakpoints, breakpoints = _b === void 0 ? { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 } : _b, _c = props.cols, cols = _c === void 0 ? { lg: 12, md: 10, sm: 6, xs: 4, xxs: 2 } : _c, _d = props.containerPadding, containerPadding = _d === void 0 ? {} : _d, _e = props.layouts, layouts = _e === void 0 ? {} : _e, _f = props.width, width = _f === void 0 ? 0 : _f, _g = props.margin, margin = _g === void 0 ? [10, 10] : _g, _h = props.onBreakpointChange, onBreakpointChange = _h === void 0 ? noop : _h, _j = props.onLayoutChange, onLayoutChange = _j === void 0 ? noop : _j, _k = props.onWidthChange, onWidthChange = _k === void 0 ? noop : _k, transformScale = props.transformScale, restProps = __rest(props, ["breakpoint", "compactType", "breakpoints", "cols", "containerPadding", "layouts", "width", "margin", "onBreakpointChange", "onLayoutChange", "onWidthChange", "transformScale"]);
|
|
42
42
|
var _l = useState({ width: width, breakpoints: breakpoints, cols: cols }), prevProps = _l[0], setPrevProps = _l[1];
|
|
43
43
|
var generateInitialState = function () {
|
|
44
44
|
var breakpoint = getBreakpointFromWidth(breakpoints, width);
|
|
@@ -112,6 +112,6 @@ export var ResponsiveGridLayout = function (_a) {
|
|
|
112
112
|
var containerPaddingModified = getIndentationValue(containerPadding, newBreakpoint);
|
|
113
113
|
onWidthChange(width, modifiedMargin, newCols, containerPaddingModified);
|
|
114
114
|
};
|
|
115
|
-
return (_jsx(ReactGridLayout, __assign({}, restProps, { children: children, width: width, margin: getIndentationValue(margin, state.breakpoint), containerPadding: getIndentationValue(containerPadding, state.breakpoint), onLayoutChange: onLayoutChangeHandler, layout: state.layout, cols: state.cols })));
|
|
115
|
+
return (_jsx(ReactGridLayout, __assign({}, restProps, { children: children, width: width, margin: getIndentationValue(margin, state.breakpoint), containerPadding: getIndentationValue(containerPadding, state.breakpoint), onLayoutChange: onLayoutChangeHandler, layout: state.layout, cols: state.cols, transformScale: transformScale })));
|
|
116
116
|
};
|
|
117
117
|
export default ResponsiveGridLayout;
|
|
@@ -118,7 +118,7 @@ export type ResponsiveGridLayoutStateType = {
|
|
|
118
118
|
layout: Layout;
|
|
119
119
|
layouts?: ResponsiveLayout<string>;
|
|
120
120
|
};
|
|
121
|
-
type CoreType = Omit<ReactGridLayoutProps, "cols" | "layout" | "margin" | "containerPadding" | "
|
|
121
|
+
type CoreType = Omit<ReactGridLayoutProps, "cols" | "layout" | "margin" | "containerPadding" | "onLayoutChange" | "isHiddenVisibility">;
|
|
122
122
|
export type ResponsiveGridLayoutProps = {
|
|
123
123
|
breakpoint?: Breakpoint;
|
|
124
124
|
breakpoints?: Breakpoints<Breakpoint>;
|