@redsift/table 12.3.1-muiv6-alpha.4 → 12.4.0-muiv6
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/_internal/BasePopper.js +3 -2
- package/_internal/BasePopper.js.map +1 -1
- package/_internal/DataGrid2.js +7 -6
- package/_internal/DataGrid2.js.map +1 -1
- package/_internal/StatefulDataGrid.js +1 -1
- package/_internal/StatefulDataGrid2.js +690 -138
- package/_internal/StatefulDataGrid2.js.map +1 -1
- package/index.d.ts +170 -16
- package/index.js +329 -5
- package/index.js.map +1 -1
- package/package.json +5 -5
package/_internal/BasePopper.js
CHANGED
|
@@ -2199,13 +2199,14 @@ const BaseButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
2199
2199
|
}), children);
|
|
2200
2200
|
});
|
|
2201
2201
|
|
|
2202
|
-
const _excluded$2 = ["checked", "indeterminate", "disabled", "onChange"];
|
|
2202
|
+
const _excluded$2 = ["checked", "indeterminate", "disabled", "onChange", "touchRippleRef"];
|
|
2203
2203
|
const BaseCheckbox = /*#__PURE__*/forwardRef((props, ref) => {
|
|
2204
2204
|
const {
|
|
2205
2205
|
checked,
|
|
2206
2206
|
indeterminate,
|
|
2207
2207
|
disabled,
|
|
2208
|
-
onChange
|
|
2208
|
+
onChange,
|
|
2209
|
+
touchRippleRef: _touchRippleRef
|
|
2209
2210
|
} = props,
|
|
2210
2211
|
forwardedProps = _objectWithoutProperties(props, _excluded$2);
|
|
2211
2212
|
return /*#__PURE__*/React__default.createElement(Checkbox, _extends$1({}, forwardedProps, forwardedProps.inputProps, {
|