@trackunit/react-table-helpers 1.3.236 → 1.3.238
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": "@trackunit/react-table-helpers",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.238",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,16 +9,16 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react": "19.0.0",
|
|
11
11
|
"@js-temporal/polyfill": "^0.4.4",
|
|
12
|
-
"@trackunit/filters-filter-bar": "1.3.
|
|
13
|
-
"@trackunit/filters-graphql-hook": "1.5.
|
|
14
|
-
"@trackunit/i18n-library-translation": "1.3.
|
|
15
|
-
"@trackunit/custom-field-components": "1.3.
|
|
16
|
-
"@trackunit/iris-app-runtime-core": "1.4.
|
|
17
|
-
"@trackunit/react-core-contexts-api": "1.4.
|
|
18
|
-
"@trackunit/react-table-base-components": "1.3.
|
|
19
|
-
"@trackunit/iris-app-runtime-core-api": "1.3.
|
|
20
|
-
"@trackunit/react-table": "1.3.
|
|
21
|
-
"@trackunit/react-test-setup": "1.0.
|
|
12
|
+
"@trackunit/filters-filter-bar": "1.3.236",
|
|
13
|
+
"@trackunit/filters-graphql-hook": "1.5.110",
|
|
14
|
+
"@trackunit/i18n-library-translation": "1.3.160",
|
|
15
|
+
"@trackunit/custom-field-components": "1.3.213",
|
|
16
|
+
"@trackunit/iris-app-runtime-core": "1.4.151",
|
|
17
|
+
"@trackunit/react-core-contexts-api": "1.4.148",
|
|
18
|
+
"@trackunit/react-table-base-components": "1.3.194",
|
|
19
|
+
"@trackunit/iris-app-runtime-core-api": "1.3.151",
|
|
20
|
+
"@trackunit/react-table": "1.3.218",
|
|
21
|
+
"@trackunit/react-test-setup": "1.0.31"
|
|
22
22
|
},
|
|
23
23
|
"module": "./index.esm.js",
|
|
24
24
|
"main": "./index.cjs.js",
|
|
@@ -46,7 +46,7 @@ export type CustomFieldData = {
|
|
|
46
46
|
key?: string | null;
|
|
47
47
|
id?: string | null;
|
|
48
48
|
};
|
|
49
|
-
stringArrayValue?: string
|
|
49
|
+
stringArrayValue?: Array<string> | null;
|
|
50
50
|
} | {
|
|
51
51
|
valueId?: string | null;
|
|
52
52
|
__typename?: "StringListFieldValueAndDefinition";
|
|
@@ -56,7 +56,7 @@ export type CustomFieldData = {
|
|
|
56
56
|
key?: string | null;
|
|
57
57
|
id?: string | null;
|
|
58
58
|
};
|
|
59
|
-
stringArrayValue?: string
|
|
59
|
+
stringArrayValue?: Array<string> | null;
|
|
60
60
|
} | {
|
|
61
61
|
valueId?: string | null;
|
|
62
62
|
emailValue?: string | null;
|
|
@@ -136,9 +136,9 @@ export type CustomFieldData = {
|
|
|
136
136
|
*/
|
|
137
137
|
export interface DataWithCustomFields {
|
|
138
138
|
customFields?: {
|
|
139
|
-
edges?:
|
|
139
|
+
edges?: Array<{
|
|
140
140
|
node?: CustomFieldData | null;
|
|
141
|
-
} | null
|
|
141
|
+
} | null> | null;
|
|
142
142
|
} | null;
|
|
143
143
|
}
|
|
144
144
|
/**
|
|
@@ -146,8 +146,8 @@ export interface DataWithCustomFields {
|
|
|
146
146
|
* This is what is used to generate the ColumnDefinitions for the table.
|
|
147
147
|
*/
|
|
148
148
|
export type CustomFieldDefinitionEdgesContainer = {
|
|
149
|
-
edges?:
|
|
149
|
+
edges?: Array<{
|
|
150
150
|
node?: CustomFieldDefinition | null;
|
|
151
|
-
} | null
|
|
151
|
+
} | null> | null;
|
|
152
152
|
} | null;
|
|
153
153
|
export type CustomFieldDefinitionArray = NonNullable<CustomFieldDefinitionEdgesContainer>["edges"];
|