@react-querybuilder/core 8.15.0 → 8.16.1
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/README.md +114 -53
- package/dist/cjs/react-querybuilder_core.cjs.development.d.ts +95 -17
- package/dist/cjs/react-querybuilder_core.cjs.development.js +425 -24
- package/dist/cjs/react-querybuilder_core.cjs.development.js.map +1 -1
- package/dist/cjs/react-querybuilder_core.cjs.production.d.ts +95 -17
- package/dist/cjs/react-querybuilder_core.cjs.production.js +1 -1
- package/dist/cjs/react-querybuilder_core.cjs.production.js.map +1 -1
- package/dist/convertQuery-BeJJH9BI.mjs.map +1 -1
- package/dist/convertQuery-Lx2HQa0m.js.map +1 -1
- package/dist/formatQuery.d.mts +72 -2
- package/dist/formatQuery.d.ts +72 -2
- package/dist/formatQuery.js +425 -24
- package/dist/formatQuery.js.map +1 -1
- package/dist/formatQuery.mjs +418 -25
- package/dist/formatQuery.mjs.map +1 -1
- package/dist/{import-0wp72lLT.d.mts → import-BC_bAKQ8.d.mts} +2 -2
- package/dist/{import-yRVJh7E1.d.ts → import-D1KnXhkQ.d.ts} +2 -2
- package/dist/{index-D5TXNIzF.d.ts → index-AAZg4Uh1.d.mts} +15 -8
- package/dist/{index-Lht_Wq3V.d.mts → index-Ds06V0zO.d.ts} +15 -8
- package/dist/objectUtils-Bzug_QfX.js.map +1 -1
- package/dist/objectUtils-D96eEEzL.mjs.map +1 -1
- package/dist/parseCEL.d.mts +2 -2
- package/dist/parseCEL.d.ts +2 -2
- package/dist/parseCEL.js.map +1 -1
- package/dist/parseCEL.mjs.map +1 -1
- package/dist/parseCypher.d.mts +49 -0
- package/dist/parseCypher.d.ts +49 -0
- package/dist/parseCypher.js +578 -0
- package/dist/parseCypher.js.map +1 -0
- package/dist/parseCypher.mjs +575 -0
- package/dist/parseCypher.mjs.map +1 -0
- package/dist/parseGremlin.d.mts +35 -0
- package/dist/parseGremlin.d.ts +35 -0
- package/dist/parseGremlin.js +192 -0
- package/dist/parseGremlin.js.map +1 -0
- package/dist/parseGremlin.mjs +191 -0
- package/dist/parseGremlin.mjs.map +1 -0
- package/dist/parseJSONata.d.mts +2 -2
- package/dist/parseJSONata.d.ts +2 -2
- package/dist/parseJSONata.js.map +1 -1
- package/dist/parseJSONata.mjs.map +1 -1
- package/dist/parseJsonLogic.d.mts +2 -2
- package/dist/parseJsonLogic.d.ts +2 -2
- package/dist/parseJsonLogic.js.map +1 -1
- package/dist/parseJsonLogic.mjs.map +1 -1
- package/dist/parseMongoDB.d.mts +2 -2
- package/dist/parseMongoDB.d.ts +2 -2
- package/dist/parseMongoDB.js.map +1 -1
- package/dist/parseMongoDB.mjs.map +1 -1
- package/dist/parseSPARQL.d.mts +34 -0
- package/dist/parseSPARQL.d.ts +34 -0
- package/dist/parseSPARQL.js +253 -0
- package/dist/parseSPARQL.js.map +1 -0
- package/dist/parseSPARQL.mjs +251 -0
- package/dist/parseSPARQL.mjs.map +1 -0
- package/dist/parseSQL.d.mts +2 -2
- package/dist/parseSQL.d.ts +2 -2
- package/dist/parseSQL.js.map +1 -1
- package/dist/parseSQL.mjs.map +1 -1
- package/dist/parseSpEL.d.mts +2 -2
- package/dist/parseSpEL.d.ts +2 -2
- package/dist/parseSpEL.js.map +1 -1
- package/dist/parseSpEL.mjs.map +1 -1
- package/dist/prepareQueryObjects-BoG5Rt8z.js.map +1 -1
- package/dist/prepareQueryObjects-uA10ZpZX.mjs.map +1 -1
- package/dist/react-querybuilder_core.d.mts +95 -17
- package/dist/react-querybuilder_core.legacy-esm.d.ts +95 -17
- package/dist/react-querybuilder_core.legacy-esm.js +435 -37
- package/dist/react-querybuilder_core.legacy-esm.js.map +1 -1
- package/dist/react-querybuilder_core.mjs +418 -25
- package/dist/react-querybuilder_core.mjs.map +1 -1
- package/dist/react-querybuilder_core.production.d.mts +95 -17
- package/dist/react-querybuilder_core.production.mjs +1 -1
- package/dist/react-querybuilder_core.production.mjs.map +1 -1
- package/dist/transformQuery.d.mts +1 -1
- package/dist/transformQuery.d.ts +1 -1
- package/dist/transformQuery.js.map +1 -1
- package/dist/transformQuery.mjs.map +1 -1
- package/dist/utils-ChLG90DP.mjs.map +1 -1
- package/dist/utils-Qwkq2Q0F.js.map +1 -1
- package/formatQuery/package.json +1 -1
- package/package.json +51 -7
- package/parseCEL/package.json +1 -1
- package/parseCypher/package.json +4 -0
- package/parseGremlin/package.json +4 -0
- package/parseJSONata/package.json +1 -1
- package/parseJsonLogic/package.json +1 -1
- package/parseMongoDB/package.json +1 -1
- package/parseSPARQL/package.json +4 -0
- package/parseSQL/package.json +1 -1
- package/parseSpEL/package.json +1 -1
- package/transformQuery/package.json +1 -1
|
@@ -12,7 +12,7 @@ type Primitive = null | undefined | string | number | boolean | symbol | bigint;
|
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region ../../node_modules/type-fest/source/union-to-intersection.d.ts
|
|
14
14
|
/**
|
|
15
|
-
Convert a union type to an intersection type
|
|
15
|
+
Convert a union type to an intersection type.
|
|
16
16
|
|
|
17
17
|
Inspired by [this Stack Overflow answer](https://stackoverflow.com/a/50375286/2172153).
|
|
18
18
|
|
|
@@ -972,7 +972,7 @@ type _Except<ObjectType, KeysType extends keyof ObjectType, Options extends Requ
|
|
|
972
972
|
//#endregion
|
|
973
973
|
//#region ../../node_modules/type-fest/source/require-at-least-one.d.ts
|
|
974
974
|
/**
|
|
975
|
-
Create a type that requires at least one of the given keys
|
|
975
|
+
Create a type that requires at least one of the given keys, while keeping the remaining keys as is.
|
|
976
976
|
|
|
977
977
|
@example
|
|
978
978
|
```
|
|
@@ -994,19 +994,20 @@ const responder: RequireAtLeastOne<Responder, 'text' | 'json'> = {
|
|
|
994
994
|
*/
|
|
995
995
|
type RequireAtLeastOne$1<ObjectType, KeysType extends keyof ObjectType = keyof ObjectType> = IfNotAnyOrNever<ObjectType, If<IsNever<KeysType>, never, _RequireAtLeastOne<ObjectType, If<IsAny<KeysType>, keyof ObjectType, KeysType>>>>;
|
|
996
996
|
type _RequireAtLeastOne<ObjectType, KeysType extends keyof ObjectType> = { // For each `Key` in `KeysType` make a mapped type:
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
Partial<Pick<ObjectType, Exclude<KeysType, Key>>> }[KeysType] & // 3. Add the remaining keys not in `KeysType`
|
|
1000
|
-
Except<ObjectType, KeysType>;
|
|
997
|
+
// 2. Make all other keys in `KeysType` optional
|
|
998
|
+
[Key in KeysType]-?: Required<Pick<ObjectType, Key>> // 1. Make `Key`'s type required
|
|
999
|
+
& Partial<Pick<ObjectType, Exclude<KeysType, Key>>> }[KeysType] & Except<ObjectType, KeysType>; // 3. Add the remaining keys not in `KeysType`
|
|
1001
1000
|
//#endregion
|
|
1002
1001
|
//#region ../../node_modules/type-fest/source/required-deep.d.ts
|
|
1003
1002
|
/**
|
|
1004
|
-
Create a
|
|
1003
|
+
Create a deeply required version of another type.
|
|
1005
1004
|
|
|
1006
1005
|
Use-cases:
|
|
1007
1006
|
- Creating optional configuration interfaces where the underlying implementation still requires all options to be fully specified.
|
|
1008
1007
|
- Modeling the resulting type after a deep merge with a set of defaults.
|
|
1009
1008
|
|
|
1009
|
+
Use [`Required<T>`](https://www.typescriptlang.org/docs/handbook/utility-types.html#requiredtype) if you only need one level deep.
|
|
1010
|
+
|
|
1010
1011
|
@example
|
|
1011
1012
|
```
|
|
1012
1013
|
import type {RequiredDeep} from 'type-fest';
|
|
@@ -1047,7 +1048,7 @@ type RequiredObjectDeep<ObjectType extends object> = { [KeyType in keyof ObjectT
|
|
|
1047
1048
|
//#endregion
|
|
1048
1049
|
//#region ../../node_modules/type-fest/source/set-optional.d.ts
|
|
1049
1050
|
/**
|
|
1050
|
-
Create a type that makes the given keys optional
|
|
1051
|
+
Create a type that makes the given keys optional, while keeping the remaining keys as is.
|
|
1051
1052
|
|
|
1052
1053
|
Use-case: You want to define a single model where the only thing that changes is whether or not some of the keys are optional.
|
|
1053
1054
|
|
|
@@ -1070,12 +1071,12 @@ type SomeOptional = SetOptional<Foo, 'b' | 'c'>;
|
|
|
1070
1071
|
type SetOptional<BaseType, Keys extends keyof BaseType> = (BaseType extends ((...arguments_: never) => any) ? (...arguments_: Parameters<BaseType>) => ReturnType<BaseType> : unknown) & _SetOptional<BaseType, Keys>;
|
|
1071
1072
|
type _SetOptional<BaseType, Keys extends keyof BaseType> = BaseType extends unknown // To distribute `BaseType` when it's a union type.
|
|
1072
1073
|
? Simplify< // Pick just the keys that are readonly from the base type.
|
|
1073
|
-
Except<BaseType, Keys>
|
|
1074
|
-
Partial<HomomorphicPick<BaseType, Keys>>> : never;
|
|
1074
|
+
Except<BaseType, Keys> // Pick the keys that should be mutable from the base type and make them mutable.
|
|
1075
|
+
& Partial<HomomorphicPick<BaseType, Keys>>> : never;
|
|
1075
1076
|
//#endregion
|
|
1076
1077
|
//#region ../../node_modules/type-fest/source/set-required.d.ts
|
|
1077
1078
|
/**
|
|
1078
|
-
Create a type that makes the given keys required
|
|
1079
|
+
Create a type that makes the given keys required, while keeping the remaining keys as is.
|
|
1079
1080
|
|
|
1080
1081
|
Use-case: You want to define a single model where the only thing that changes is whether or not some of the keys are required.
|
|
1081
1082
|
|
|
@@ -1101,8 +1102,8 @@ type ArrayExample = SetRequired<[number?, number?, number?], 0 | 1>;
|
|
|
1101
1102
|
*/
|
|
1102
1103
|
type SetRequired<BaseType, Keys extends keyof BaseType> = (BaseType extends ((...arguments_: never) => any) ? (...arguments_: Parameters<BaseType>) => ReturnType<BaseType> : unknown) & _SetRequired<BaseType, Keys>;
|
|
1103
1104
|
type _SetRequired<BaseType, Keys extends keyof BaseType> = BaseType extends UnknownArray ? SetArrayRequired<BaseType, Keys> extends infer ResultantArray ? If<IsArrayReadonly<BaseType>, Readonly<ResultantArray>, ResultantArray> : never : Simplify< // Pick just the keys that are optional from the base type.
|
|
1104
|
-
Except<BaseType, Keys>
|
|
1105
|
-
Required<HomomorphicPick<BaseType, Keys>>>;
|
|
1105
|
+
Except<BaseType, Keys> // Pick the keys that should be required from the base type and make them required.
|
|
1106
|
+
& Required<HomomorphicPick<BaseType, Keys>>>;
|
|
1106
1107
|
/**
|
|
1107
1108
|
Remove the optional modifier from the specified keys in an array.
|
|
1108
1109
|
*/
|
|
@@ -1301,7 +1302,7 @@ interface CommonRuleAndGroupProperties {
|
|
|
1301
1302
|
* The main rule type. The `field`, `operator`, and `value` properties
|
|
1302
1303
|
* can be narrowed with generics.
|
|
1303
1304
|
*/
|
|
1304
|
-
interface RuleType<F extends string = string, O extends string = string, V = any, C extends string = string
|
|
1305
|
+
interface RuleType<F extends string = string, O extends string = string, V = any, C extends string = string, M = Record<string, any>> extends CommonRuleAndGroupProperties {
|
|
1305
1306
|
field: F;
|
|
1306
1307
|
operator: O;
|
|
1307
1308
|
value: V;
|
|
@@ -1311,6 +1312,13 @@ interface RuleType<F extends string = string, O extends string = string, V = any
|
|
|
1311
1312
|
* Only used when adding a rule to a query that uses independent combinators.
|
|
1312
1313
|
*/
|
|
1313
1314
|
combinatorPreceding?: C;
|
|
1315
|
+
/**
|
|
1316
|
+
* Opaque metadata for use by extension packages. The core library
|
|
1317
|
+
* preserves this property but does not read or interpret it.
|
|
1318
|
+
* Extensions like `@react-querybuilder/graph` use `meta` to store
|
|
1319
|
+
* domain-specific context (e.g., graph pattern information).
|
|
1320
|
+
*/
|
|
1321
|
+
meta?: M;
|
|
1314
1322
|
}
|
|
1315
1323
|
/**
|
|
1316
1324
|
* The main rule group type. This type is used for query definitions as well as
|
|
@@ -1740,7 +1748,7 @@ interface DropCollection {
|
|
|
1740
1748
|
*
|
|
1741
1749
|
* @group Export
|
|
1742
1750
|
*/
|
|
1743
|
-
type ExportFormat = "json" | "sql" | "json_without_ids" | "parameterized" | "parameterized_named" | "mongodb" | "mongodb_query" | "cel" | "jsonlogic" | "spel" | "elasticsearch" | "jsonata" | "natural_language" | "ldap" | "drizzle" | "prisma" | "sequelize" | "diagnostics";
|
|
1751
|
+
type ExportFormat = "json" | "sql" | "json_without_ids" | "parameterized" | "parameterized_named" | "mongodb" | "mongodb_query" | "cel" | "jsonlogic" | "spel" | "elasticsearch" | "jsonata" | "natural_language" | "ldap" | "drizzle" | "prisma" | "sequelize" | "cypher" | "gql" | "sparql" | "gremlin" | "diagnostics";
|
|
1744
1752
|
/**
|
|
1745
1753
|
* Export formats for {@link formatQuery} that produce objects instead of strings.
|
|
1746
1754
|
*
|
|
@@ -2326,7 +2334,7 @@ type GroupVariantCondition = "not" | "xor";
|
|
|
2326
2334
|
*
|
|
2327
2335
|
* @group Export
|
|
2328
2336
|
*/
|
|
2329
|
-
type NLTranslationKey = "and" | "or" | "true" | "false" | `groupPrefix${ZeroOrMoreGroupVariants}` | `groupSuffix${ZeroOrMoreGroupVariants}`;
|
|
2337
|
+
type NLTranslationKey = "and" | "or" | "true" | "false" | "ruleSeparator" | "betweenAnd" | "afterSubject" | "afterVerb" | "afterObject" | "listSeparator" | `groupPrefix${ZeroOrMoreGroupVariants}` | `groupSuffix${ZeroOrMoreGroupVariants}`;
|
|
2330
2338
|
/**
|
|
2331
2339
|
* `translations` config object for "natural_language" format.
|
|
2332
2340
|
*
|
|
@@ -3126,6 +3134,23 @@ declare const defaultValueProcessorByRule: ValueProcessorByRule;
|
|
|
3126
3134
|
*/
|
|
3127
3135
|
declare const defaultRuleGroupProcessorCEL: RuleGroupProcessor<string>;
|
|
3128
3136
|
//#endregion
|
|
3137
|
+
//#region src/utils/formatQuery/defaultRuleGroupProcessorCypher.d.ts
|
|
3138
|
+
/**
|
|
3139
|
+
* Maps a {@link DefaultCombinatorName} to a Cypher combinator keyword.
|
|
3140
|
+
*
|
|
3141
|
+
* @group Export
|
|
3142
|
+
*/
|
|
3143
|
+
declare const cypherCombinatorMap: {
|
|
3144
|
+
and: "AND";
|
|
3145
|
+
or: "OR";
|
|
3146
|
+
};
|
|
3147
|
+
/**
|
|
3148
|
+
* Rule group processor used by {@link formatQuery} for "cypher" and "gql" formats.
|
|
3149
|
+
*
|
|
3150
|
+
* @group Export
|
|
3151
|
+
*/
|
|
3152
|
+
declare const defaultRuleGroupProcessorCypher: RuleGroupProcessor<string>;
|
|
3153
|
+
//#endregion
|
|
3129
3154
|
//#region src/utils/formatQuery/defaultRuleGroupProcessorDrizzle.d.ts
|
|
3130
3155
|
/**
|
|
3131
3156
|
* Default rule group processor used by {@link formatQuery} for the "drizzle" format. The returned
|
|
@@ -3149,6 +3174,18 @@ declare const defaultRuleGroupProcessorDrizzle: RuleGroupProcessor<(columns: Rec
|
|
|
3149
3174
|
*/
|
|
3150
3175
|
declare const defaultRuleGroupProcessorElasticSearch: RuleGroupProcessor<Record<string, unknown>>;
|
|
3151
3176
|
//#endregion
|
|
3177
|
+
//#region src/utils/formatQuery/defaultRuleGroupProcessorGremlin.d.ts
|
|
3178
|
+
/**
|
|
3179
|
+
* Rule group processor used by {@link formatQuery} for "gremlin" format.
|
|
3180
|
+
*
|
|
3181
|
+
* At the top level, filter rules produce chained `.has()` steps (implicit AND).
|
|
3182
|
+
* Nested groups use `.and()` / `.or()` / `.not()` compound traversals with
|
|
3183
|
+
* `__` anonymous traversal prefixes.
|
|
3184
|
+
*
|
|
3185
|
+
* @group Export
|
|
3186
|
+
*/
|
|
3187
|
+
declare const defaultRuleGroupProcessorGremlin: RuleGroupProcessor<string>;
|
|
3188
|
+
//#endregion
|
|
3152
3189
|
//#region src/utils/formatQuery/defaultRuleGroupProcessorJSONata.d.ts
|
|
3153
3190
|
/**
|
|
3154
3191
|
* Rule group processor used by {@link formatQuery} for "jsonata" format.
|
|
@@ -3240,6 +3277,16 @@ declare const defaultRuleGroupProcessorPrisma: RuleGroupProcessor<Record<string,
|
|
|
3240
3277
|
*/
|
|
3241
3278
|
declare const defaultRuleGroupProcessorSequelize: RuleGroupProcessor<WhereOptions | undefined>;
|
|
3242
3279
|
//#endregion
|
|
3280
|
+
//#region src/utils/formatQuery/defaultRuleGroupProcessorSPARQL.d.ts
|
|
3281
|
+
/**
|
|
3282
|
+
* Rule group processor used by {@link formatQuery} for "sparql" format.
|
|
3283
|
+
*
|
|
3284
|
+
* SPARQL uses the same combinators as CEL (`&&` / `||`) and `!()` for negation.
|
|
3285
|
+
*
|
|
3286
|
+
* @group Export
|
|
3287
|
+
*/
|
|
3288
|
+
declare const defaultRuleGroupProcessorSPARQL: RuleGroupProcessor<string>;
|
|
3289
|
+
//#endregion
|
|
3243
3290
|
//#region src/utils/formatQuery/defaultRuleGroupProcessorSpEL.d.ts
|
|
3244
3291
|
/**
|
|
3245
3292
|
* Default rule processor used by {@link formatQuery} for "spel" format.
|
|
@@ -3269,6 +3316,14 @@ declare const defaultRuleGroupProcessorSQL: RuleGroupProcessor<string>;
|
|
|
3269
3316
|
*/
|
|
3270
3317
|
declare const defaultRuleGroupProcessorDiagnostics: RuleGroupProcessor<DiagnosticsResult>;
|
|
3271
3318
|
//#endregion
|
|
3319
|
+
//#region src/utils/formatQuery/defaultRuleProcessorCypher.d.ts
|
|
3320
|
+
/**
|
|
3321
|
+
* Default rule processor used by {@link formatQuery} for "cypher" and "gql" formats.
|
|
3322
|
+
*
|
|
3323
|
+
* @group Export
|
|
3324
|
+
*/
|
|
3325
|
+
declare const defaultRuleProcessorCypher: RuleProcessor;
|
|
3326
|
+
//#endregion
|
|
3272
3327
|
//#region src/utils/formatQuery/defaultRuleProcessorDrizzle.d.ts
|
|
3273
3328
|
/**
|
|
3274
3329
|
* Default rule processor used by {@link formatQuery} for the "drizzle" format.
|
|
@@ -3285,6 +3340,16 @@ declare const defaultRuleProcessorDrizzle: RuleProcessor;
|
|
|
3285
3340
|
*/
|
|
3286
3341
|
declare const defaultRuleProcessorElasticSearch: RuleProcessor;
|
|
3287
3342
|
//#endregion
|
|
3343
|
+
//#region src/utils/formatQuery/defaultRuleProcessorGremlin.d.ts
|
|
3344
|
+
/**
|
|
3345
|
+
* Default rule processor used by {@link formatQuery} for "gremlin" format.
|
|
3346
|
+
*
|
|
3347
|
+
* Each rule becomes a `.has()` step (or `.hasNot()`/`.has()` for null checks).
|
|
3348
|
+
*
|
|
3349
|
+
* @group Export
|
|
3350
|
+
*/
|
|
3351
|
+
declare const defaultRuleProcessorGremlin: RuleProcessor;
|
|
3352
|
+
//#endregion
|
|
3288
3353
|
//#region src/utils/formatQuery/defaultRuleProcessorJSONata.d.ts
|
|
3289
3354
|
/**
|
|
3290
3355
|
* Default rule processor used by {@link formatQuery} for "jsonata" format.
|
|
@@ -3362,6 +3427,19 @@ declare const defaultRuleProcessorPrisma: RuleProcessor;
|
|
|
3362
3427
|
*/
|
|
3363
3428
|
declare const defaultRuleProcessorSequelize: RuleProcessor;
|
|
3364
3429
|
//#endregion
|
|
3430
|
+
//#region src/utils/formatQuery/defaultRuleProcessorSPARQL.d.ts
|
|
3431
|
+
/** Auto-prefix a SPARQL variable name with `?` unless it's already prefixed, a URI, or a prefixed name.
|
|
3432
|
+
*
|
|
3433
|
+
* @group Export
|
|
3434
|
+
*/
|
|
3435
|
+
declare const sparqlVar: (name: string) => string;
|
|
3436
|
+
/**
|
|
3437
|
+
* Default rule processor used by {@link formatQuery} for "sparql" format.
|
|
3438
|
+
*
|
|
3439
|
+
* @group Export
|
|
3440
|
+
*/
|
|
3441
|
+
declare const defaultRuleProcessorSPARQL: RuleProcessor;
|
|
3442
|
+
//#endregion
|
|
3365
3443
|
//#region src/utils/formatQuery/defaultRuleProcessorSQL.d.ts
|
|
3366
3444
|
/**
|
|
3367
3445
|
* Default operator processor used by {@link formatQuery} for "sql" and "parameterized*" formats.
|
|
@@ -4561,5 +4639,5 @@ declare function transformQuery(query: RuleGroupType, options?: TransformQueryOp
|
|
|
4561
4639
|
*/
|
|
4562
4640
|
declare function transformQuery(query: RuleGroupTypeIC, options?: TransformQueryOptions<RuleGroupTypeIC>): any;
|
|
4563
4641
|
//#endregion
|
|
4564
|
-
export { AccessibleDescriptionGenerator, ActionElementEventHandler, AddMethod, AddOptions, Arity, BaseFullOption, BaseOption, BaseOptionMap, BaseTranslation, BaseTranslationWithLabel, BaseTranslationWithPlaceholders, BaseTranslations, BaseTranslationsFull, Classname, Classnames, Combinator, CombinatorByValue, CommonRuleAndGroupProperties, CommonRuleSubComponentProps, ConstituentWordOrder, ConstituentWordOrderString, DefaultCombinator, DefaultCombinatorExtended, DefaultCombinatorName, DefaultCombinatorNameExtended, DefaultCombinators, DefaultCombinatorsExtended, DefaultMatchModes, DefaultOperator, DefaultOperatorName, DefaultOperators, DefaultRuleGroupArray, DefaultRuleGroupICArray, DefaultRuleGroupType, DefaultRuleGroupTypeAny, DefaultRuleGroupTypeIC, DefaultRuleOrGroupArray, DefaultRuleType, DiagnosticEntry, DiagnosticsFieldSummaryEntry, DiagnosticsResult, DiagnosticsStats, DndDropTargetType, DragCollection, DraggedItem, DropCollection, DropEffect, DropResult, ExportFormat, ExportObjectFormats, ExportOperatorMap, Field, FieldByValue, FindPathReturnType, FlexibleOption, FlexibleOptionGroup, FlexibleOptionList, FlexibleOptionListProp, FormatQueryFinalOptions, FormatQueryOptions, FormatQueryValidateRule, FullCombinator, FullField, FullOperator, FullOption, FullOptionList, FullOptionMap, FullOptionRecord, GenericizeRuleGroupType, GetOptionIdentifierType, GetOptionType, GetRuleGroupType, GetRuleTypeFromGroupWithFieldAndOperator, GroupMethod, GroupOptions, GroupVariantCondition, InputType, InsertMethod, InsertOptions, type JsonLogicAll, type JsonLogicAnd, type JsonLogicDoubleNegation, type JsonLogicEqual, type JsonLogicGreaterThan, type JsonLogicGreaterThanOrEqual, type JsonLogicInArray, type JsonLogicInString, type JsonLogicLessThan, type JsonLogicLessThanOrEqual, type JsonLogicNegation, type JsonLogicNone, type JsonLogicNotEqual, type JsonLogicOr, type JsonLogicReservedOperations, type JsonLogicRulesLogic, type JsonLogicSome, type JsonLogicStrictEqual, type JsonLogicStrictNotEqual, type JsonLogicVar, LogType, MatchConfig, MatchMode, MatchModeOptions, MoveMethod, MoveOptions, NLTranslationKey, NLTranslations, NameLabelPair, Operator, OperatorByValue, Option, OptionGroup, OptionList, ParameterizedNamedSQL, ParameterizedSQL, ParseNumberMethod, ParseNumberOptions, ParseNumbersPropConfig, Path, Placeholder, PrepareOptionListParams, PreparedOptionList, PreparerOptions, QueryActions, QueryBuilderFlags, QueryValidator, RQBJsonLogic, RQBJsonLogicEndsWith, RQBJsonLogicStartsWith, RQBJsonLogicVar, RegenerateIdOptions, RemoveMethod, RemoveNullability, RuleDiagnosticsResult, RuleGroupArray, RuleGroupDiagnosticsArray, RuleGroupDiagnosticsResult, RuleGroupICArray, RuleGroupICDiagnosticsArray, RuleGroupICDiagnosticsResult, RuleGroupProcessor, RuleGroupType, RuleGroupTypeAny, RuleGroupTypeIC, RuleOrGroupArray, RuleProcessor, RuleType, RuleValidator, SQLPreset, StringUnionToFlexibleOptionArray, StringUnionToFullOptionArray, TestID, ToFlexibleOption, ToFullOption, ToRuleGroupType, ToRuleGroupTypeIC, TransformQueryOptions, UpdateMethod, UpdateOptions, UpdateableProperties, ValidationMap, ValidationResult, ValueChangeEventHandler, ValueEditorType, ValueOption, ValueProcessor, ValueProcessorByRule, ValueProcessorLegacy, ValueProcessorOptions, ValueSource, ValueSourceFlexibleOptions, ValueSourceFullOptions, ValueSources, WithRequired, WithUnknownIndex, add, addInPlace, bigIntJsonParseReviver, bigIntJsonStringifyReplacer, celCombinatorMap, clsx, convertFromIC, convertQuery, convertToIC, defaultCELValueProcessor, defaultCombinatorLabelMap, defaultCombinators, defaultCombinatorsExtended, defaultControlClassnames, defaultExportOperatorMap, defaultJoinChar, defaultMatchModes, defaultMongoDBValueProcessor, defaultNLTranslations, defaultOperatorLabelMap, defaultOperatorNegationMap, defaultOperatorProcessorNL, defaultOperatorProcessorSQL, defaultOperators, defaultPlaceholderFieldGroupLabel, defaultPlaceholderFieldLabel, defaultPlaceholderFieldName, defaultPlaceholderLabel, defaultPlaceholderName, defaultPlaceholderOperatorGroupLabel, defaultPlaceholderOperatorLabel, defaultPlaceholderOperatorName, defaultPlaceholderValueGroupLabel, defaultPlaceholderValueLabel, defaultPlaceholderValueName, defaultRuleGroupProcessorCEL, defaultRuleGroupProcessorDiagnostics, defaultRuleGroupProcessorDrizzle, defaultRuleGroupProcessorElasticSearch, defaultRuleGroupProcessorJSONata, defaultRuleGroupProcessorJsonLogic, defaultRuleGroupProcessorLDAP, defaultRuleGroupProcessorMongoDB, defaultRuleGroupProcessorMongoDBQuery, defaultRuleGroupProcessorNL, defaultRuleGroupProcessorParameterized, defaultRuleGroupProcessorPrisma, defaultRuleGroupProcessorSQL, defaultRuleGroupProcessorSequelize, defaultRuleGroupProcessorSpEL, defaultRuleProcessorCEL, defaultRuleProcessorDrizzle, defaultRuleProcessorElasticSearch, defaultRuleProcessorJSONata, defaultRuleProcessorJsonLogic, defaultRuleProcessorLDAP, defaultRuleProcessorMongoDB, defaultRuleProcessorMongoDBQuery, defaultRuleProcessorNL, defaultRuleProcessorParameterized, defaultRuleProcessorPrisma, defaultRuleProcessorSQL, defaultRuleProcessorSequelize, defaultRuleProcessorSpEL, defaultSpELValueProcessor, defaultTranslations, defaultValidator, defaultValueProcessor, defaultValueProcessorByRule, defaultValueProcessorCELByRule, defaultValueProcessorMongoDBByRule, defaultValueProcessorNL, defaultValueProcessorSpELByRule, filterFieldsByComparator, findID, findPath, formatQuery, formatQueryOptionPresets, generateAccessibleDescription, generateID, getCommonAncestorPath, getFirstOption, getMatchModesUtil, getNLTranslataion, getOption, getParentPath, getParseNumberMethod, getPathOfID, getQuoteFieldNamesWithArray, getQuotedFieldName, getValidationClassNames, getValueSourcesUtil, group, groupInPlace, groupInvalidReasons, insert, insertInPlace, isAncestor, isFlexibleOptionArray, isFlexibleOptionGroupArray, isFullOptionArray, isFullOptionGroupArray, isOptionGroupArray, isPojo, isRuleGroup, isRuleGroupType, isRuleGroupTypeIC, isRuleOrGroupValid, isRuleType, isUnsafeKey, isValidValue, isValidationResult, isValueProcessorLegacy, joinWith, jsonLogicAdditionalOperators, lc, mapSQLOperator, mergeAnyTranslation, mergeAnyTranslations, mergeClassnames, mongoDbFallback, mongoOperators, move, moveInPlace, normalizeConstituentWordOrder, nullFreeArray, nullOrUndefinedOrEmpty, numericRegex, numerifyValues, objectEntries, objectKeys, parseNumber, pathIsDisabled, pathsAreEqual, preferAnyProp, preferFlagProps, preferProp, prepareOptionList, prepareRule, prepareRuleGroup, prepareRuleOrGroup, prismaFallback, prismaOperators, processMatchMode, queryBuilderFlagDefaults, regenerateID, regenerateIDs, remove, removeInPlace, rootPath, shouldRenderAsNumber, splitBy, sqlDialectPresets, standardClassnames, toArray, toFlatOptionArray, toFullOption, toFullOptionList, toFullOptionMap, transformQuery, trimIfString, uniqByIdentifier, uniqByName, uniqOptGroups, uniqOptList, update, updateInPlace, uuidV4regex };
|
|
4642
|
+
export { AccessibleDescriptionGenerator, ActionElementEventHandler, AddMethod, AddOptions, Arity, BaseFullOption, BaseOption, BaseOptionMap, BaseTranslation, BaseTranslationWithLabel, BaseTranslationWithPlaceholders, BaseTranslations, BaseTranslationsFull, Classname, Classnames, Combinator, CombinatorByValue, CommonRuleAndGroupProperties, CommonRuleSubComponentProps, ConstituentWordOrder, ConstituentWordOrderString, DefaultCombinator, DefaultCombinatorExtended, DefaultCombinatorName, DefaultCombinatorNameExtended, DefaultCombinators, DefaultCombinatorsExtended, DefaultMatchModes, DefaultOperator, DefaultOperatorName, DefaultOperators, DefaultRuleGroupArray, DefaultRuleGroupICArray, DefaultRuleGroupType, DefaultRuleGroupTypeAny, DefaultRuleGroupTypeIC, DefaultRuleOrGroupArray, DefaultRuleType, DiagnosticEntry, DiagnosticsFieldSummaryEntry, DiagnosticsResult, DiagnosticsStats, DndDropTargetType, DragCollection, DraggedItem, DropCollection, DropEffect, DropResult, ExportFormat, ExportObjectFormats, ExportOperatorMap, Field, FieldByValue, FindPathReturnType, FlexibleOption, FlexibleOptionGroup, FlexibleOptionList, FlexibleOptionListProp, FormatQueryFinalOptions, FormatQueryOptions, FormatQueryValidateRule, FullCombinator, FullField, FullOperator, FullOption, FullOptionList, FullOptionMap, FullOptionRecord, GenericizeRuleGroupType, GetOptionIdentifierType, GetOptionType, GetRuleGroupType, GetRuleTypeFromGroupWithFieldAndOperator, GroupMethod, GroupOptions, GroupVariantCondition, InputType, InsertMethod, InsertOptions, type JsonLogicAll, type JsonLogicAnd, type JsonLogicDoubleNegation, type JsonLogicEqual, type JsonLogicGreaterThan, type JsonLogicGreaterThanOrEqual, type JsonLogicInArray, type JsonLogicInString, type JsonLogicLessThan, type JsonLogicLessThanOrEqual, type JsonLogicNegation, type JsonLogicNone, type JsonLogicNotEqual, type JsonLogicOr, type JsonLogicReservedOperations, type JsonLogicRulesLogic, type JsonLogicSome, type JsonLogicStrictEqual, type JsonLogicStrictNotEqual, type JsonLogicVar, LogType, MatchConfig, MatchMode, MatchModeOptions, MoveMethod, MoveOptions, NLTranslationKey, NLTranslations, NameLabelPair, Operator, OperatorByValue, Option, OptionGroup, OptionList, ParameterizedNamedSQL, ParameterizedSQL, ParseNumberMethod, ParseNumberOptions, ParseNumbersPropConfig, Path, Placeholder, PrepareOptionListParams, PreparedOptionList, PreparerOptions, QueryActions, QueryBuilderFlags, QueryValidator, RQBJsonLogic, RQBJsonLogicEndsWith, RQBJsonLogicStartsWith, RQBJsonLogicVar, RegenerateIdOptions, RemoveMethod, RemoveNullability, RuleDiagnosticsResult, RuleGroupArray, RuleGroupDiagnosticsArray, RuleGroupDiagnosticsResult, RuleGroupICArray, RuleGroupICDiagnosticsArray, RuleGroupICDiagnosticsResult, RuleGroupProcessor, RuleGroupType, RuleGroupTypeAny, RuleGroupTypeIC, RuleOrGroupArray, RuleProcessor, RuleType, RuleValidator, SQLPreset, StringUnionToFlexibleOptionArray, StringUnionToFullOptionArray, TestID, ToFlexibleOption, ToFullOption, ToRuleGroupType, ToRuleGroupTypeIC, TransformQueryOptions, UpdateMethod, UpdateOptions, UpdateableProperties, ValidationMap, ValidationResult, ValueChangeEventHandler, ValueEditorType, ValueOption, ValueProcessor, ValueProcessorByRule, ValueProcessorLegacy, ValueProcessorOptions, ValueSource, ValueSourceFlexibleOptions, ValueSourceFullOptions, ValueSources, WithRequired, WithUnknownIndex, add, addInPlace, bigIntJsonParseReviver, bigIntJsonStringifyReplacer, celCombinatorMap, clsx, convertFromIC, convertQuery, convertToIC, cypherCombinatorMap, defaultCELValueProcessor, defaultCombinatorLabelMap, defaultCombinators, defaultCombinatorsExtended, defaultControlClassnames, defaultExportOperatorMap, defaultJoinChar, defaultMatchModes, defaultMongoDBValueProcessor, defaultNLTranslations, defaultOperatorLabelMap, defaultOperatorNegationMap, defaultOperatorProcessorNL, defaultOperatorProcessorSQL, defaultOperators, defaultPlaceholderFieldGroupLabel, defaultPlaceholderFieldLabel, defaultPlaceholderFieldName, defaultPlaceholderLabel, defaultPlaceholderName, defaultPlaceholderOperatorGroupLabel, defaultPlaceholderOperatorLabel, defaultPlaceholderOperatorName, defaultPlaceholderValueGroupLabel, defaultPlaceholderValueLabel, defaultPlaceholderValueName, defaultRuleGroupProcessorCEL, defaultRuleGroupProcessorCypher, defaultRuleGroupProcessorDiagnostics, defaultRuleGroupProcessorDrizzle, defaultRuleGroupProcessorElasticSearch, defaultRuleGroupProcessorGremlin, defaultRuleGroupProcessorJSONata, defaultRuleGroupProcessorJsonLogic, defaultRuleGroupProcessorLDAP, defaultRuleGroupProcessorMongoDB, defaultRuleGroupProcessorMongoDBQuery, defaultRuleGroupProcessorNL, defaultRuleGroupProcessorParameterized, defaultRuleGroupProcessorPrisma, defaultRuleGroupProcessorSPARQL, defaultRuleGroupProcessorSQL, defaultRuleGroupProcessorSequelize, defaultRuleGroupProcessorSpEL, defaultRuleProcessorCEL, defaultRuleProcessorCypher, defaultRuleProcessorDrizzle, defaultRuleProcessorElasticSearch, defaultRuleProcessorGremlin, defaultRuleProcessorJSONata, defaultRuleProcessorJsonLogic, defaultRuleProcessorLDAP, defaultRuleProcessorMongoDB, defaultRuleProcessorMongoDBQuery, defaultRuleProcessorNL, defaultRuleProcessorParameterized, defaultRuleProcessorPrisma, defaultRuleProcessorSPARQL, defaultRuleProcessorSQL, defaultRuleProcessorSequelize, defaultRuleProcessorSpEL, defaultSpELValueProcessor, defaultTranslations, defaultValidator, defaultValueProcessor, defaultValueProcessorByRule, defaultValueProcessorCELByRule, defaultValueProcessorMongoDBByRule, defaultValueProcessorNL, defaultValueProcessorSpELByRule, filterFieldsByComparator, findID, findPath, formatQuery, formatQueryOptionPresets, generateAccessibleDescription, generateID, getCommonAncestorPath, getFirstOption, getMatchModesUtil, getNLTranslataion, getOption, getParentPath, getParseNumberMethod, getPathOfID, getQuoteFieldNamesWithArray, getQuotedFieldName, getValidationClassNames, getValueSourcesUtil, group, groupInPlace, groupInvalidReasons, insert, insertInPlace, isAncestor, isFlexibleOptionArray, isFlexibleOptionGroupArray, isFullOptionArray, isFullOptionGroupArray, isOptionGroupArray, isPojo, isRuleGroup, isRuleGroupType, isRuleGroupTypeIC, isRuleOrGroupValid, isRuleType, isUnsafeKey, isValidValue, isValidationResult, isValueProcessorLegacy, joinWith, jsonLogicAdditionalOperators, lc, mapSQLOperator, mergeAnyTranslation, mergeAnyTranslations, mergeClassnames, mongoDbFallback, mongoOperators, move, moveInPlace, normalizeConstituentWordOrder, nullFreeArray, nullOrUndefinedOrEmpty, numericRegex, numerifyValues, objectEntries, objectKeys, parseNumber, pathIsDisabled, pathsAreEqual, preferAnyProp, preferFlagProps, preferProp, prepareOptionList, prepareRule, prepareRuleGroup, prepareRuleOrGroup, prismaFallback, prismaOperators, processMatchMode, queryBuilderFlagDefaults, regenerateID, regenerateIDs, remove, removeInPlace, rootPath, shouldRenderAsNumber, sparqlVar, splitBy, sqlDialectPresets, standardClassnames, toArray, toFlatOptionArray, toFullOption, toFullOptionList, toFullOptionMap, transformQuery, trimIfString, uniqByIdentifier, uniqByName, uniqOptGroups, uniqOptList, update, updateInPlace, uuidV4regex };
|
|
4565
4643
|
//# sourceMappingURL=react-querybuilder_core.production.d.mts.map
|