@trackunit/react-table-helpers 1.0.31 → 1.0.35

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/index.cjs.js CHANGED
@@ -119,7 +119,7 @@ const useColumnDefinitionsFromCustomFieldDefinition = ({ customFieldDefinitions,
119
119
  })?.node, {
120
120
  header: customFieldDefinition.node.title,
121
121
  id: customFieldDefinition.node.id,
122
- enableSorting: customFieldDefinition.node.type !== "DROPDOWN",
122
+ enableSorting: customFieldDefinition.node.type !== "DROPDOWN" && customFieldDefinition.node.type !== "STRING_LIST",
123
123
  meta: {
124
124
  hiddenByDefault: true,
125
125
  isCustomField: true,
package/index.esm.js CHANGED
@@ -117,7 +117,7 @@ const useColumnDefinitionsFromCustomFieldDefinition = ({ customFieldDefinitions,
117
117
  })?.node, {
118
118
  header: customFieldDefinition.node.title,
119
119
  id: customFieldDefinition.node.id,
120
- enableSorting: customFieldDefinition.node.type !== "DROPDOWN",
120
+ enableSorting: customFieldDefinition.node.type !== "DROPDOWN" && customFieldDefinition.node.type !== "STRING_LIST",
121
121
  meta: {
122
122
  hiddenByDefault: true,
123
123
  isCustomField: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-table-helpers",
3
- "version": "1.0.31",
3
+ "version": "1.0.35",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,13 +9,13 @@
9
9
  "dependencies": {
10
10
  "react": "18.3.1",
11
11
  "@js-temporal/polyfill": "^0.4.4",
12
- "@trackunit/i18n-library-translation": "1.0.14",
13
- "@trackunit/custom-field-components": "1.0.28",
14
- "@trackunit/iris-app-runtime-core": "1.0.10",
15
- "@trackunit/react-core-contexts-api": "1.0.10",
16
- "@trackunit/react-table-base-components": "1.0.26",
17
- "@trackunit/iris-app-runtime-core-api": "1.0.10",
18
- "@trackunit/react-table": "1.0.29"
12
+ "@trackunit/i18n-library-translation": "1.0.17",
13
+ "@trackunit/custom-field-components": "1.0.32",
14
+ "@trackunit/iris-app-runtime-core": "1.0.13",
15
+ "@trackunit/react-core-contexts-api": "1.0.13",
16
+ "@trackunit/react-table-base-components": "1.0.29",
17
+ "@trackunit/iris-app-runtime-core-api": "1.0.13",
18
+ "@trackunit/react-table": "1.0.32"
19
19
  },
20
20
  "module": "./index.esm.js",
21
21
  "main": "./index.cjs.js",