@gen3/core 0.12.23 → 0.12.25
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/cjs/constants.js +1 -0
- package/dist/cjs/constants.js.map +1 -1
- package/dist/cjs/index.js +1117 -891
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/server.js +1 -0
- package/dist/cjs/server.js.map +1 -1
- package/dist/constants.d.ts +2 -1
- package/dist/dts/constants.d.ts +1 -0
- package/dist/dts/constants.d.ts.map +1 -1
- package/dist/dts/features/cohortComparison/cohortFacetSlice.d.ts +201 -0
- package/dist/dts/features/cohortComparison/cohortFacetSlice.d.ts.map +1 -0
- package/dist/dts/features/cohortComparison/index.d.ts +7 -0
- package/dist/dts/features/cohortComparison/index.d.ts.map +1 -0
- package/dist/dts/features/cohortComparison/pValueApi.d.ts +186 -0
- package/dist/dts/features/cohortComparison/pValueApi.d.ts.map +1 -0
- package/dist/dts/features/cohortComparison/types.d.ts +74 -0
- package/dist/dts/features/cohortComparison/types.d.ts.map +1 -0
- package/dist/dts/features/cohortComparison/vennDiagramSlice.d.ts +198 -0
- package/dist/dts/features/cohortComparison/vennDiagramSlice.d.ts.map +1 -0
- package/dist/dts/features/filters/index.d.ts +1 -0
- package/dist/dts/features/filters/index.d.ts.map +1 -1
- package/dist/dts/features/filters/nestedFilters.d.ts +0 -2
- package/dist/dts/features/filters/nestedFilters.d.ts.map +1 -1
- package/dist/dts/features/filters/utils.d.ts +2 -2
- package/dist/dts/features/guppy/guppySlice.d.ts +566 -0
- package/dist/dts/features/guppy/guppySlice.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/types/types.d.ts +15 -13
- package/dist/dts/types/types.d.ts.map +1 -1
- package/dist/esm/constants.js +1 -0
- package/dist/esm/constants.js.map +1 -1
- package/dist/esm/index.js +1103 -890
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/server.js +1 -0
- package/dist/esm/server.js.map +1 -1
- package/dist/index.d.ts +7633 -6431
- package/package.json +3 -3
- package/LICENSE +0 -201
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import { GQLFilter } from '../filters';
|
|
2
|
+
interface CohortVennDiagramData {
|
|
3
|
+
readonly set1?: number;
|
|
4
|
+
readonly set2?: number;
|
|
5
|
+
readonly intersection?: number;
|
|
6
|
+
}
|
|
7
|
+
interface VennDiagramRequest {
|
|
8
|
+
set1Filters: GQLFilter;
|
|
9
|
+
set2Filters: GQLFilter;
|
|
10
|
+
index: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const useVennDiagramQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
13
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
14
|
+
originalArgs?: undefined | undefined;
|
|
15
|
+
data?: undefined | undefined;
|
|
16
|
+
error?: undefined | undefined;
|
|
17
|
+
requestId?: undefined | undefined;
|
|
18
|
+
endpointName?: string | undefined;
|
|
19
|
+
startedTimeStamp?: undefined | undefined;
|
|
20
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
21
|
+
} & {
|
|
22
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
23
|
+
isUninitialized: false;
|
|
24
|
+
isLoading: false;
|
|
25
|
+
isFetching: false;
|
|
26
|
+
isSuccess: false;
|
|
27
|
+
isError: false;
|
|
28
|
+
}, "isUninitialized"> & {
|
|
29
|
+
isUninitialized: true;
|
|
30
|
+
}) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
31
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
32
|
+
isUninitialized: false;
|
|
33
|
+
isLoading: false;
|
|
34
|
+
isFetching: false;
|
|
35
|
+
isSuccess: false;
|
|
36
|
+
isError: false;
|
|
37
|
+
}, "data" | "isLoading" | "isFetching"> & {
|
|
38
|
+
isLoading: true;
|
|
39
|
+
isFetching: boolean;
|
|
40
|
+
data: undefined;
|
|
41
|
+
}) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
42
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
43
|
+
isUninitialized: false;
|
|
44
|
+
isLoading: false;
|
|
45
|
+
isFetching: false;
|
|
46
|
+
isSuccess: false;
|
|
47
|
+
isError: false;
|
|
48
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
|
|
49
|
+
isSuccess: true;
|
|
50
|
+
isFetching: true;
|
|
51
|
+
error: undefined;
|
|
52
|
+
} & {
|
|
53
|
+
data: CohortVennDiagramData;
|
|
54
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
55
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
56
|
+
isUninitialized: false;
|
|
57
|
+
isLoading: false;
|
|
58
|
+
isFetching: false;
|
|
59
|
+
isSuccess: false;
|
|
60
|
+
isError: false;
|
|
61
|
+
}, "fulfilledTimeStamp">>) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
62
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
63
|
+
isUninitialized: false;
|
|
64
|
+
isLoading: false;
|
|
65
|
+
isFetching: false;
|
|
66
|
+
isSuccess: false;
|
|
67
|
+
isError: false;
|
|
68
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
|
|
69
|
+
isSuccess: true;
|
|
70
|
+
isFetching: false;
|
|
71
|
+
error: undefined;
|
|
72
|
+
} & {
|
|
73
|
+
data: CohortVennDiagramData;
|
|
74
|
+
currentData: CohortVennDiagramData;
|
|
75
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
76
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
77
|
+
isUninitialized: false;
|
|
78
|
+
isLoading: false;
|
|
79
|
+
isFetching: false;
|
|
80
|
+
isSuccess: false;
|
|
81
|
+
isError: false;
|
|
82
|
+
}, "fulfilledTimeStamp">>) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
83
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
84
|
+
isUninitialized: false;
|
|
85
|
+
isLoading: false;
|
|
86
|
+
isFetching: false;
|
|
87
|
+
isSuccess: false;
|
|
88
|
+
isError: false;
|
|
89
|
+
}, "error" | "isError"> & {
|
|
90
|
+
isError: true;
|
|
91
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
92
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
93
|
+
isUninitialized: false;
|
|
94
|
+
isLoading: false;
|
|
95
|
+
isFetching: false;
|
|
96
|
+
isSuccess: false;
|
|
97
|
+
isError: false;
|
|
98
|
+
}, "error">>)> & {
|
|
99
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
100
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | VennDiagramRequest, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
101
|
+
skip?: boolean;
|
|
102
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
103
|
+
} & {
|
|
104
|
+
skip?: boolean;
|
|
105
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
106
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
107
|
+
originalArgs?: undefined | undefined;
|
|
108
|
+
data?: undefined | undefined;
|
|
109
|
+
error?: undefined | undefined;
|
|
110
|
+
requestId?: undefined | undefined;
|
|
111
|
+
endpointName?: string | undefined;
|
|
112
|
+
startedTimeStamp?: undefined | undefined;
|
|
113
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
114
|
+
} & {
|
|
115
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
116
|
+
isUninitialized: false;
|
|
117
|
+
isLoading: false;
|
|
118
|
+
isFetching: false;
|
|
119
|
+
isSuccess: false;
|
|
120
|
+
isError: false;
|
|
121
|
+
}, "isUninitialized"> & {
|
|
122
|
+
isUninitialized: true;
|
|
123
|
+
}) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
124
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
125
|
+
isUninitialized: false;
|
|
126
|
+
isLoading: false;
|
|
127
|
+
isFetching: false;
|
|
128
|
+
isSuccess: false;
|
|
129
|
+
isError: false;
|
|
130
|
+
}, "data" | "isLoading" | "isFetching"> & {
|
|
131
|
+
isLoading: true;
|
|
132
|
+
isFetching: boolean;
|
|
133
|
+
data: undefined;
|
|
134
|
+
}) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
135
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
136
|
+
isUninitialized: false;
|
|
137
|
+
isLoading: false;
|
|
138
|
+
isFetching: false;
|
|
139
|
+
isSuccess: false;
|
|
140
|
+
isError: false;
|
|
141
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "isFetching" | "isSuccess"> & {
|
|
142
|
+
isSuccess: true;
|
|
143
|
+
isFetching: true;
|
|
144
|
+
error: undefined;
|
|
145
|
+
} & {
|
|
146
|
+
data: CohortVennDiagramData;
|
|
147
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
148
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
149
|
+
isUninitialized: false;
|
|
150
|
+
isLoading: false;
|
|
151
|
+
isFetching: false;
|
|
152
|
+
isSuccess: false;
|
|
153
|
+
isError: false;
|
|
154
|
+
}, "fulfilledTimeStamp">>) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
155
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
156
|
+
isUninitialized: false;
|
|
157
|
+
isLoading: false;
|
|
158
|
+
isFetching: false;
|
|
159
|
+
isSuccess: false;
|
|
160
|
+
isError: false;
|
|
161
|
+
}, "data" | "error" | "fulfilledTimeStamp" | "currentData" | "isFetching" | "isSuccess"> & {
|
|
162
|
+
isSuccess: true;
|
|
163
|
+
isFetching: false;
|
|
164
|
+
error: undefined;
|
|
165
|
+
} & {
|
|
166
|
+
data: CohortVennDiagramData;
|
|
167
|
+
currentData: CohortVennDiagramData;
|
|
168
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
169
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
170
|
+
isUninitialized: false;
|
|
171
|
+
isLoading: false;
|
|
172
|
+
isFetching: false;
|
|
173
|
+
isSuccess: false;
|
|
174
|
+
isError: false;
|
|
175
|
+
}, "fulfilledTimeStamp">>) | (Omit<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
176
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
177
|
+
isUninitialized: false;
|
|
178
|
+
isLoading: false;
|
|
179
|
+
isFetching: false;
|
|
180
|
+
isSuccess: false;
|
|
181
|
+
isError: false;
|
|
182
|
+
}, "error" | "isError"> & {
|
|
183
|
+
isError: true;
|
|
184
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>> & {
|
|
185
|
+
currentData?: CohortVennDiagramData | undefined;
|
|
186
|
+
isUninitialized: false;
|
|
187
|
+
isLoading: false;
|
|
188
|
+
isFetching: false;
|
|
189
|
+
isSuccess: false;
|
|
190
|
+
isError: false;
|
|
191
|
+
}, "error">>)> & {
|
|
192
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
193
|
+
}) => R) | undefined;
|
|
194
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
195
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<VennDiagramRequest, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "graphQL", CohortVennDiagramData, "gen3Services", unknown>>;
|
|
196
|
+
};
|
|
197
|
+
export {};
|
|
198
|
+
//# sourceMappingURL=vennDiagramSlice.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vennDiagramSlice.d.ts","sourceRoot":"","sources":["../../../../src/features/cohortComparison/vennDiagramSlice.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAGvC,UAAU,qBAAqB;IAC7B,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,UAAU,kBAAkB;IAC1B,WAAW,EAAE,SAAS,CAAC;IACvB,WAAW,EAAE,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf;AA+BD,eAAO,MAAQ,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAwB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/filters/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/filters/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Equals, ExcludeIfAny, Excludes, Exists, FilterSet, GreaterThan, GreaterThanOrEquals, Includes, Intersection, LessThan, LessThanOrEquals, Missing, NestedFilter, NotEquals, Operation, OperationHandler, Union } from './types';
|
|
2
|
-
import { CoreState } from '../../reducers';
|
|
3
2
|
import { GQLEqual, GQLExcludeIfAny, GQLExcludes, GQLExists, GQLFilter, GQLGreaterThan, GQLGreaterThanOrEquals, GQLIncludes, GQLIntersection, GQLLessThan, GQLLessThanOrEquals, GQLMissing, GQLNestedFilter, GQLNotEqual, GQLUnion } from './filters';
|
|
4
3
|
/**
|
|
5
4
|
* Constructs a nested operation object based on the provided field and leaf operand.
|
|
@@ -16,7 +15,6 @@ import { GQLEqual, GQLExcludeIfAny, GQLExcludes, GQLExists, GQLFilter, GQLGreate
|
|
|
16
15
|
*/
|
|
17
16
|
export declare const buildNestedWithParentPathGQLFilter: (field: string, leafOperand: GQLFilter, parentPath?: string | undefined) => GQLFilter;
|
|
18
17
|
export declare const buildCohortGqlOperator: (fs: FilterSet | undefined) => GQLFilter | undefined;
|
|
19
|
-
export declare const selectCurrentCohortCaseFilters: (state: CoreState, index?: string) => FilterSet;
|
|
20
18
|
/**
|
|
21
19
|
* Merged two FilterSets returning the merged pair.
|
|
22
20
|
* @param a - first FilterSet
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nestedFilters.d.ts","sourceRoot":"","sources":["../../../../src/features/filters/nestedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,SAAS,EACT,WAAW,EACX,mBAAmB,EACnB,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,OAAO,EACP,YAAY,EACZ,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,KAAK,EACN,MAAM,SAAS,CAAC;AACjB,OAAO,
|
|
1
|
+
{"version":3,"file":"nestedFilters.d.ts","sourceRoot":"","sources":["../../../../src/features/filters/nestedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,SAAS,EACT,WAAW,EACX,mBAAmB,EACnB,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,OAAO,EACP,YAAY,EACZ,SAAS,EACT,SAAS,EACT,gBAAgB,EAChB,KAAK,EACN,MAAM,SAAS,CAAC;AACjB,OAAO,EAGL,QAAQ,EACR,eAAe,EACf,WAAW,EACX,SAAS,EACT,SAAS,EACT,cAAc,EACd,sBAAsB,EACtB,WAAW,EACX,eAAe,EACf,WAAW,EACX,mBAAmB,EACnB,UAAU,EACV,eAAe,EACf,WAAW,EACX,QAAQ,EAIT,MAAM,WAAW,CAAC;AAEnB;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,kCAAkC,GAC7C,OAAO,MAAM,EACb,aAAa,SAAS,EACtB,aAAY,MAAM,GAAG,SAAqB,KACzC,SAyBF,CAAC;AAEF,eAAO,MAAM,sBAAsB,GACjC,IAAI,SAAS,GAAG,SAAS,KACxB,SAAS,GAAG,SA2Dd,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,WAAW,GAAI,GAAG,SAAS,EAAE,GAAG,SAAS,KAAG,SAExD,CAAC;AAEF,eAAO,MAAM,2BAA2B,GACtC,IAAI,SAAS,GAAG,SAAS,KACxB,SAAS,GAAG,SAcd,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,QAAQ,SAAS,KAChB,SAAS,SAAS,EAAE,GAAG,SAQzB,CAAC;AAEF,qBAAa,cAAe,YAAW,gBAAgB,CAAC,SAAS,CAAC;IAChE,YAAY,GAAI,IAAI,MAAM,KAAG,QAAQ,GAAG,eAAe,CAYrD;IACF,eAAe,GAAI,IAAI,SAAS,KAAG,WAAW,GAAG,eAAe,CAY9D;IACF,cAAc,GAAI,IAAI,QAAQ,KAAG,WAAW,GAAG,eAAe,CAY5D;IACF,sBAAsB,GACpB,IAAI,gBAAgB,KACnB,mBAAmB,GAAG,eAAe,CAYtC;IACF,iBAAiB,GAAI,IAAI,WAAW,KAAG,cAAc,GAAG,eAAe,CAYrE;IACF,yBAAyB,GACvB,IAAI,mBAAmB,KACtB,sBAAsB,GAAG,eAAe,CAYzC;IAEF,cAAc,GAAI,IAAI,QAAQ,KAAG,WAAW,GAAG,eAAe,CAY5D;IAEF,cAAc,GAAI,IAAI,QAAQ,KAAG,WAAW,GAAG,eAAe,CAY5D;IAEF,kBAAkB,GAChB,IAAI,YAAY,KACf,eAAe,GAAG,eAAe,CAYlC;IAEF,kBAAkB,GAAI,IAAI,YAAY,KAAG,eAAe,CAIrD;IAEH,WAAW,GAAI,IAAI,KAAK,KAAG,QAAQ,CAEhC;IAEH,aAAa,GAAI,IAAI,OAAO,KAAG,UAAU,GAAG,eAAe,CAYzD;IAEF,YAAY,GAAI,IAAI,MAAM,KAAG,SAAS,GAAG,eAAe,CAYtD;IAEF,kBAAkB,GAAI,IAAI,YAAY,KAAG,eAAe,CAQtD;CACH;AAED,eAAO,MAAM,8BAA8B,GACzC,QAAQ,SAAS,KAChB,SAGF,CAAC;AAEF,eAAO,MAAM,iCAAiC,GAC5C,IAAI,SAAS,EACb,aAAY,KAAK,GAAG,IAAY,KAC/B,SAQF,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const trimFirstfieldNameToLabel: (fieldName: string, trim?: boolean) => string;
|
|
2
2
|
/**
|
|
3
3
|
* Converts a filter name to a title,
|
|
4
4
|
* For example files.input.experimental_strategy will get converted to Experimental Strategy
|
|
@@ -6,7 +6,7 @@ export declare const trimFirstFieldNameToTitle: (fieldName: string, trim?: boole
|
|
|
6
6
|
* @param fieldName input filter expected to be: string.firstpart_secondpart
|
|
7
7
|
* @param sections number of "sections" string.string.string to got back from the end of the field
|
|
8
8
|
*/
|
|
9
|
-
export declare const
|
|
9
|
+
export declare const fieldNameToLabel: (fieldName: string, sections?: number) => string;
|
|
10
10
|
/**
|
|
11
11
|
* Extracts the index name from the field name
|
|
12
12
|
* @param fieldName
|