@patternfly/react-table 6.5.0-prerelease.31 → 6.5.0-prerelease.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-table",
3
- "version": "6.5.0-prerelease.31",
3
+ "version": "6.5.0-prerelease.32",
4
4
  "description": "This library provides a set of React table components for use with the PatternFly 4",
5
5
  "main": "dist/js/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -40,7 +40,7 @@
40
40
  "subpaths": "node ../../scripts/exportSubpaths.mjs --config subpaths.config.json"
41
41
  },
42
42
  "dependencies": {
43
- "@patternfly/react-core": "^6.5.0-prerelease.30",
43
+ "@patternfly/react-core": "^6.5.0-prerelease.31",
44
44
  "@patternfly/react-icons": "^6.5.0-prerelease.13",
45
45
  "@patternfly/react-styles": "^6.5.0-prerelease.11",
46
46
  "@patternfly/react-tokens": "^6.5.0-prerelease.10",
@@ -51,5 +51,5 @@
51
51
  "react": "^17 || ^18 || ^19",
52
52
  "react-dom": "^17 || ^18 || ^19"
53
53
  },
54
- "gitHead": "d589d3a24a46cc04abb58f43b8193aaaad029fda"
54
+ "gitHead": "d2d4b0c8b8f438fe41e560e0760efb2628623c03"
55
55
  }
@@ -6,8 +6,10 @@ import inlineStyles from '@patternfly/react-styles/css/components/InlineEdit/inl
6
6
  import formStyles from '@patternfly/react-styles/css/components/Form/form';
7
7
  import { EditableSelectInputProps } from './base/types';
8
8
 
9
- export interface IEditableSelectInputCell
10
- extends Omit<React.HTMLProps<HTMLElement | HTMLDivElement>, 'onSelect' | 'onToggle'> {
9
+ export interface IEditableSelectInputCell extends Omit<
10
+ React.HTMLProps<HTMLElement | HTMLDivElement>,
11
+ 'onSelect' | 'onToggle'
12
+ > {
11
13
  /** Row index of this select input cell */
12
14
  rowIndex: number;
13
15
  /** Cell index of this select input cell */
@@ -15,8 +15,7 @@ import cssStickyCellInlineStart from '@patternfly/react-tokens/dist/esm/c_table_
15
15
  import cssStickyCellInlineEnd from '@patternfly/react-tokens/dist/esm/c_table__sticky_cell_InsetInlineEnd';
16
16
 
17
17
  export interface ThProps
18
- extends BaseCellProps,
19
- Omit<React.HTMLProps<HTMLTableHeaderCellElement>, 'onSelect' | 'width'> {
18
+ extends BaseCellProps, Omit<React.HTMLProps<HTMLTableHeaderCellElement>, 'onSelect' | 'width'> {
20
19
  /**
21
20
  * The column header the cell corresponds to. Applicable when this component is used as a direct child to <Tr>.
22
21
  * This attribute replaces table header in mobile viewport. It is rendered by ::before pseudo element.