@pdg/react-table 1.0.133 → 1.0.134

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.esm.js CHANGED
@@ -3678,7 +3678,7 @@ function requirePropTypes () {
3678
3678
  return propTypes.exports;
3679
3679
  }var propTypesExports = /*@__PURE__*/ requirePropTypes();
3680
3680
  var PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);/**
3681
- * @mui/styled-engine v7.1.0
3681
+ * @mui/styled-engine v7.1.1
3682
3682
  *
3683
3683
  * @license MIT
3684
3684
  * This source code is licensed under the MIT license found in the
@@ -5676,10 +5676,15 @@ function createStyled(input = {}) {
5676
5676
  ...options
5677
5677
  });
5678
5678
  const transformStyle = style => {
5679
- // On the server Emotion doesn't use React.forwardRef for creating components, so the created
5680
- // component stays as a function. This condition makes sure that we do not interpolate functions
5681
- // which are basically components used as a selectors.
5682
- if (typeof style === 'function' && style.__emotion_real !== style) {
5679
+ // - On the server Emotion doesn't use React.forwardRef for creating components, so the created
5680
+ // component stays as a function. This condition makes sure that we do not interpolate functions
5681
+ // which are basically components used as a selectors.
5682
+ // - `style` could be a styled component from a babel plugin for component selectors, This condition
5683
+ // makes sure that we do not interpolate them.
5684
+ if (style.__emotion_real === style) {
5685
+ return style;
5686
+ }
5687
+ if (typeof style === 'function') {
5683
5688
  return function styleFunctionProcessor(props) {
5684
5689
  return processStyle(props, style);
5685
5690
  };
package/dist/index.js CHANGED
@@ -3678,7 +3678,7 @@ function requirePropTypes () {
3678
3678
  return propTypes.exports;
3679
3679
  }var propTypesExports = /*@__PURE__*/ requirePropTypes();
3680
3680
  var PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);/**
3681
- * @mui/styled-engine v7.1.0
3681
+ * @mui/styled-engine v7.1.1
3682
3682
  *
3683
3683
  * @license MIT
3684
3684
  * This source code is licensed under the MIT license found in the
@@ -5676,10 +5676,15 @@ function createStyled(input = {}) {
5676
5676
  ...options
5677
5677
  });
5678
5678
  const transformStyle = style => {
5679
- // On the server Emotion doesn't use React.forwardRef for creating components, so the created
5680
- // component stays as a function. This condition makes sure that we do not interpolate functions
5681
- // which are basically components used as a selectors.
5682
- if (typeof style === 'function' && style.__emotion_real !== style) {
5679
+ // - On the server Emotion doesn't use React.forwardRef for creating components, so the created
5680
+ // component stays as a function. This condition makes sure that we do not interpolate functions
5681
+ // which are basically components used as a selectors.
5682
+ // - `style` could be a styled component from a babel plugin for component selectors, This condition
5683
+ // makes sure that we do not interpolate them.
5684
+ if (style.__emotion_real === style) {
5685
+ return style;
5686
+ }
5687
+ if (typeof style === 'function') {
5683
5688
  return function styleFunctionProcessor(props) {
5684
5689
  return processStyle(props, style);
5685
5690
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pdg/react-table",
3
3
  "title": "React Table",
4
- "version": "1.0.133",
4
+ "version": "1.0.134",
5
5
  "description": "React Table",
6
6
  "type": "module",
7
7
  "types": "dist/index.d.ts",
@@ -46,7 +46,7 @@
46
46
  "dependencies": {
47
47
  "@dnd-kit/core": "^6.3.1",
48
48
  "@dnd-kit/sortable": "^10.0.0",
49
- "@pdg/react-form": "^1.0.155",
49
+ "@pdg/react-form": "^1.0.156",
50
50
  "react-intersection-observer": "^9.16.0"
51
51
  },
52
52
  "devDependencies": {