@genesislcap/foundation-criteria 14.43.1 → 14.44.0
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/dts/criteria-builder.d.ts +6 -5
- package/dist/dts/criteria-builder.d.ts.map +1 -1
- package/dist/dts/segmented-control/criteria-segmented-control.d.ts +1 -0
- package/dist/dts/segmented-control/criteria-segmented-control.d.ts.map +1 -1
- package/dist/esm/criteria-builder.js +7 -1
- package/dist/esm/segmented-control/criteria-segmented-control.js +18 -7
- package/dist/foundation-criteria.api.json +18 -54
- package/dist/foundation-criteria.d.ts +8 -5
- package/docs/api/foundation-criteria.criteriabuilder.and.md +1 -1
- package/docs/api/foundation-criteria.criteriabuilder.md +3 -3
- package/docs/api/foundation-criteria.criteriabuilder.not.md +1 -1
- package/docs/api/foundation-criteria.criteriabuilder.or.md +1 -1
- package/docs/api/foundation-criteria.criteriabuilder.withexpression.md +2 -2
- package/docs/api-report.md +5 -15
- package/package.json +5 -5
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Expression, ExpressionList, Join } from './types';
|
|
2
2
|
type Predicate = () => boolean;
|
|
3
|
+
type ValidExpressionType = Expression | ExpressionList | string;
|
|
3
4
|
type ConditionalExpression = {
|
|
4
|
-
expression?:
|
|
5
|
+
expression?: ValidExpressionType;
|
|
5
6
|
condition?: Predicate;
|
|
6
7
|
join?: Join;
|
|
7
8
|
groupName?: string;
|
|
@@ -15,10 +16,10 @@ type GroupedExpressions = Record<string, string[]>;
|
|
|
15
16
|
*/
|
|
16
17
|
export declare class CriteriaBuilder {
|
|
17
18
|
private expressions;
|
|
18
|
-
withExpression(expression:
|
|
19
|
-
And: (expression:
|
|
20
|
-
Or: (expression:
|
|
21
|
-
Not: (expression:
|
|
19
|
+
withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
|
|
20
|
+
And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
21
|
+
Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
22
|
+
Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
22
23
|
build(outputFn?: (groups: GroupedExpressions) => string): string;
|
|
23
24
|
reset(): void;
|
|
24
25
|
private parseExpression;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"criteria-builder.d.ts","sourceRoot":"","sources":["../../src/criteria-builder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAG3D,KAAK,SAAS,GAAG,MAAM,OAAO,CAAC;AAE/B,KAAK,qBAAqB,GAAG;IAC3B,UAAU,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"criteria-builder.d.ts","sourceRoot":"","sources":["../../src/criteria-builder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAG3D,KAAK,SAAS,GAAG,MAAM,OAAO,CAAC;AAE/B,KAAK,mBAAmB,GAAG,UAAU,GAAG,cAAc,GAAG,MAAM,CAAC;AAEhE,KAAK,qBAAqB,GAAG;IAC3B,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,iBAAiB,GAAG,IAAI,CAAC,qBAAqB,EAAE,YAAY,CAAC,CAAC;AACnE,KAAK,kBAAkB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;AAInD;;;;GAIG;AACH,qBAAa,eAAe;IAC1B,OAAO,CAAC,WAAW,CAA+C;IAE3D,cAAc,CACnB,UAAU,EAAE,mBAAmB,EAC/B,OAAO,GAAE,iBAAsB,EAC/B,SAAS,GAAE,IAAiB;IA+CvB,GAAG,eAAgB,mBAAmB,YAAW,iBAAiB,UAClB;IAEhD,EAAE,eAAgB,mBAAmB,YAAW,iBAAiB,UAClB;IAE/C,GAAG,eAAgB,mBAAmB,YAAW,iBAAiB,UAClB;IAEhD,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,MAAM;IAmBvD,KAAK;IAIZ,OAAO,CAAC,eAAe;CAgCxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"criteria-segmented-control.d.ts","sourceRoot":"","sources":["../../../src/segmented-control/criteria-segmented-control.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAGtF,OAAO,EAAE,8BAA8B,
|
|
1
|
+
{"version":3,"file":"criteria-segmented-control.d.ts","sourceRoot":"","sources":["../../../src/segmented-control/criteria-segmented-control.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,WAAW,EAAc,MAAM,yBAAyB,CAAC;AAGtF,OAAO,EAAE,8BAA8B,EAAQ,MAAM,UAAU,CAAC;AAIhE;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,qBAKa,wBAAyB,SAAQ,WAAW;IAC3C,eAAe,EAAE,8BAA8B,EAAE,CAAM;IAEvD,KAAK,EAAE,MAAM,CAAC;IAC1B,YAAY;IAIA,aAAa,EAAE,MAAM,CAAC;IAClC,oBAAoB;IAWpB,gBAAgB,CAAC,KAAK,EAAE,MAAM;IAM9B,OAAO,CAAC,cAAc,CAyBpB;CACH"}
|
|
@@ -52,6 +52,9 @@ export class CriteriaBuilder {
|
|
|
52
52
|
addExpressionToGroup(expression, DEFAULT_GROUP);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
+
else if (typeof expression === 'string') {
|
|
56
|
+
addExpressionToGroup(expression, DEFAULT_GROUP);
|
|
57
|
+
}
|
|
55
58
|
else {
|
|
56
59
|
addExpressionToGroup(expression, expression.group);
|
|
57
60
|
}
|
|
@@ -74,7 +77,10 @@ export class CriteriaBuilder {
|
|
|
74
77
|
if (join && !!previous) {
|
|
75
78
|
result.push(` ${join.operator} `);
|
|
76
79
|
}
|
|
77
|
-
if (
|
|
80
|
+
if (typeof expression === 'string') {
|
|
81
|
+
result.push(expression);
|
|
82
|
+
}
|
|
83
|
+
else if (Array.isArray(expression)) {
|
|
78
84
|
expression.forEach((e, idx, arr) => {
|
|
79
85
|
if (e instanceof Join) {
|
|
80
86
|
const prev = arr[idx - 1];
|
|
@@ -2,6 +2,8 @@ import { __decorate } from "tslib";
|
|
|
2
2
|
import { css, customElement, FASTElement, observable } from '@microsoft/fast-element';
|
|
3
3
|
import { CriteriaBuilder } from '../criteria-builder';
|
|
4
4
|
import { ExpressionBuilder } from '../expression-builder';
|
|
5
|
+
import { Join } from '../types';
|
|
6
|
+
import { ensureArray } from '../utils';
|
|
5
7
|
import { template } from './criteria-segmented-control.template';
|
|
6
8
|
/**
|
|
7
9
|
* Main class which defines the criteria segmented control component.
|
|
@@ -35,6 +37,21 @@ let CriteriaSegmentedControl = class CriteriaSegmentedControl extends FASTElemen
|
|
|
35
37
|
constructor() {
|
|
36
38
|
super(...arguments);
|
|
37
39
|
this.criteriaOptions = [];
|
|
40
|
+
this.createCriteria = (selectedOption) => {
|
|
41
|
+
const criteriaBuilder = new CriteriaBuilder();
|
|
42
|
+
const { field, serialiser, value } = selectedOption;
|
|
43
|
+
if (Array.isArray(field) || Array.isArray(value)) {
|
|
44
|
+
criteriaBuilder.And(ensureArray(value).map((option) => ensureArray(field).map((fname) => new ExpressionBuilder()
|
|
45
|
+
.withField(fname)
|
|
46
|
+
.withValue(option)
|
|
47
|
+
.withSerialiser(serialiser)
|
|
48
|
+
.build())), { join: Join.Or() });
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
criteriaBuilder.And(new ExpressionBuilder().withField(field).withValue(value).withSerialiser(serialiser).build());
|
|
52
|
+
}
|
|
53
|
+
return criteriaBuilder;
|
|
54
|
+
};
|
|
38
55
|
}
|
|
39
56
|
valueChanged() {
|
|
40
57
|
this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
|
|
@@ -42,13 +59,7 @@ let CriteriaSegmentedControl = class CriteriaSegmentedControl extends FASTElemen
|
|
|
42
59
|
selectedLabelChanged() {
|
|
43
60
|
const selectedOption = this.criteriaOptions.find((option) => option.label === this.selectedLabel);
|
|
44
61
|
if (selectedOption) {
|
|
45
|
-
this.value =
|
|
46
|
-
.withExpression(new ExpressionBuilder()
|
|
47
|
-
.withField(selectedOption.field)
|
|
48
|
-
.withValue(selectedOption.value)
|
|
49
|
-
.withSerialiser(selectedOption.serialiser)
|
|
50
|
-
.build())
|
|
51
|
-
.build();
|
|
62
|
+
this.value = this.createCriteria(selectedOption).build();
|
|
52
63
|
}
|
|
53
64
|
else {
|
|
54
65
|
this.value = '';
|
|
@@ -244,17 +244,8 @@
|
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"kind": "Reference",
|
|
247
|
-
"text": "
|
|
248
|
-
"canonicalReference": "@genesislcap/foundation-criteria
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"kind": "Content",
|
|
252
|
-
"text": " | "
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
"kind": "Reference",
|
|
256
|
-
"text": "ExpressionList",
|
|
257
|
-
"canonicalReference": "@genesislcap/foundation-criteria!ExpressionList:type"
|
|
247
|
+
"text": "ValidExpressionType",
|
|
248
|
+
"canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
|
|
258
249
|
},
|
|
259
250
|
{
|
|
260
251
|
"kind": "Content",
|
|
@@ -280,7 +271,7 @@
|
|
|
280
271
|
"name": "And",
|
|
281
272
|
"propertyTypeTokenRange": {
|
|
282
273
|
"startIndex": 1,
|
|
283
|
-
"endIndex":
|
|
274
|
+
"endIndex": 6
|
|
284
275
|
},
|
|
285
276
|
"isStatic": false,
|
|
286
277
|
"isProtected": false,
|
|
@@ -358,17 +349,8 @@
|
|
|
358
349
|
},
|
|
359
350
|
{
|
|
360
351
|
"kind": "Reference",
|
|
361
|
-
"text": "
|
|
362
|
-
"canonicalReference": "@genesislcap/foundation-criteria
|
|
363
|
-
},
|
|
364
|
-
{
|
|
365
|
-
"kind": "Content",
|
|
366
|
-
"text": " | "
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"kind": "Reference",
|
|
370
|
-
"text": "ExpressionList",
|
|
371
|
-
"canonicalReference": "@genesislcap/foundation-criteria!ExpressionList:type"
|
|
352
|
+
"text": "ValidExpressionType",
|
|
353
|
+
"canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
|
|
372
354
|
},
|
|
373
355
|
{
|
|
374
356
|
"kind": "Content",
|
|
@@ -394,7 +376,7 @@
|
|
|
394
376
|
"name": "Not",
|
|
395
377
|
"propertyTypeTokenRange": {
|
|
396
378
|
"startIndex": 1,
|
|
397
|
-
"endIndex":
|
|
379
|
+
"endIndex": 6
|
|
398
380
|
},
|
|
399
381
|
"isStatic": false,
|
|
400
382
|
"isProtected": false,
|
|
@@ -415,17 +397,8 @@
|
|
|
415
397
|
},
|
|
416
398
|
{
|
|
417
399
|
"kind": "Reference",
|
|
418
|
-
"text": "
|
|
419
|
-
"canonicalReference": "@genesislcap/foundation-criteria
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"kind": "Content",
|
|
423
|
-
"text": " | "
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"kind": "Reference",
|
|
427
|
-
"text": "ExpressionList",
|
|
428
|
-
"canonicalReference": "@genesislcap/foundation-criteria!ExpressionList:type"
|
|
400
|
+
"text": "ValidExpressionType",
|
|
401
|
+
"canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
|
|
429
402
|
},
|
|
430
403
|
{
|
|
431
404
|
"kind": "Content",
|
|
@@ -451,7 +424,7 @@
|
|
|
451
424
|
"name": "Or",
|
|
452
425
|
"propertyTypeTokenRange": {
|
|
453
426
|
"startIndex": 1,
|
|
454
|
-
"endIndex":
|
|
427
|
+
"endIndex": 6
|
|
455
428
|
},
|
|
456
429
|
"isStatic": false,
|
|
457
430
|
"isProtected": false,
|
|
@@ -499,17 +472,8 @@
|
|
|
499
472
|
},
|
|
500
473
|
{
|
|
501
474
|
"kind": "Reference",
|
|
502
|
-
"text": "
|
|
503
|
-
"canonicalReference": "@genesislcap/foundation-criteria
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"kind": "Content",
|
|
507
|
-
"text": " | "
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"kind": "Reference",
|
|
511
|
-
"text": "ExpressionList",
|
|
512
|
-
"canonicalReference": "@genesislcap/foundation-criteria!ExpressionList:type"
|
|
475
|
+
"text": "ValidExpressionType",
|
|
476
|
+
"canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
|
|
513
477
|
},
|
|
514
478
|
{
|
|
515
479
|
"kind": "Content",
|
|
@@ -544,8 +508,8 @@
|
|
|
544
508
|
],
|
|
545
509
|
"isStatic": false,
|
|
546
510
|
"returnTypeTokenRange": {
|
|
547
|
-
"startIndex":
|
|
548
|
-
"endIndex":
|
|
511
|
+
"startIndex": 7,
|
|
512
|
+
"endIndex": 8
|
|
549
513
|
},
|
|
550
514
|
"releaseTag": "Public",
|
|
551
515
|
"isProtected": false,
|
|
@@ -555,23 +519,23 @@
|
|
|
555
519
|
"parameterName": "expression",
|
|
556
520
|
"parameterTypeTokenRange": {
|
|
557
521
|
"startIndex": 1,
|
|
558
|
-
"endIndex":
|
|
522
|
+
"endIndex": 2
|
|
559
523
|
},
|
|
560
524
|
"isOptional": false
|
|
561
525
|
},
|
|
562
526
|
{
|
|
563
527
|
"parameterName": "options",
|
|
564
528
|
"parameterTypeTokenRange": {
|
|
565
|
-
"startIndex":
|
|
566
|
-
"endIndex":
|
|
529
|
+
"startIndex": 3,
|
|
530
|
+
"endIndex": 4
|
|
567
531
|
},
|
|
568
532
|
"isOptional": true
|
|
569
533
|
},
|
|
570
534
|
{
|
|
571
535
|
"parameterName": "groupJoin",
|
|
572
536
|
"parameterTypeTokenRange": {
|
|
573
|
-
"startIndex":
|
|
574
|
-
"endIndex":
|
|
537
|
+
"startIndex": 5,
|
|
538
|
+
"endIndex": 6
|
|
575
539
|
},
|
|
576
540
|
"isOptional": true
|
|
577
541
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FASTElement } from '@microsoft/fast-element';
|
|
2
2
|
|
|
3
3
|
declare type ConditionalExpression = {
|
|
4
|
-
expression?:
|
|
4
|
+
expression?: ValidExpressionType;
|
|
5
5
|
condition?: Predicate;
|
|
6
6
|
join?: Join;
|
|
7
7
|
groupName?: string;
|
|
@@ -19,10 +19,10 @@ export declare const createFormCriteriaBuilder: <T>(criteriaBuilder: CriteriaBui
|
|
|
19
19
|
*/
|
|
20
20
|
export declare class CriteriaBuilder {
|
|
21
21
|
private expressions;
|
|
22
|
-
withExpression(expression:
|
|
23
|
-
And: (expression:
|
|
24
|
-
Or: (expression:
|
|
25
|
-
Not: (expression:
|
|
22
|
+
withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
|
|
23
|
+
And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
24
|
+
Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
25
|
+
Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
26
26
|
build(outputFn?: (groups: GroupedExpressions) => string): string;
|
|
27
27
|
reset(): void;
|
|
28
28
|
private parseExpression;
|
|
@@ -63,6 +63,7 @@ export declare class CriteriaSegmentedControl extends FASTElement {
|
|
|
63
63
|
selectedLabel: string;
|
|
64
64
|
selectedLabelChanged(): void;
|
|
65
65
|
itemClickHandler(label: string): void;
|
|
66
|
+
private createCriteria;
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
/**
|
|
@@ -217,4 +218,6 @@ export declare const Serialisers: {
|
|
|
217
218
|
dateIsLessEqual: (e: Expression) => string;
|
|
218
219
|
};
|
|
219
220
|
|
|
221
|
+
declare type ValidExpressionType = Expression | ExpressionList | string;
|
|
222
|
+
|
|
220
223
|
export { }
|
|
@@ -16,9 +16,9 @@ export declare class CriteriaBuilder
|
|
|
16
16
|
|
|
17
17
|
| Property | Modifiers | Type | Description |
|
|
18
18
|
| --- | --- | --- | --- |
|
|
19
|
-
| [And](./foundation-criteria.criteriabuilder.and.md) | | (expression:
|
|
20
|
-
| [Not](./foundation-criteria.criteriabuilder.not.md) | | (expression:
|
|
21
|
-
| [Or](./foundation-criteria.criteriabuilder.or.md) | | (expression:
|
|
19
|
+
| [And](./foundation-criteria.criteriabuilder.and.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) => this | |
|
|
20
|
+
| [Not](./foundation-criteria.criteriabuilder.not.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) => this | |
|
|
21
|
+
| [Or](./foundation-criteria.criteriabuilder.or.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) => this | |
|
|
22
22
|
|
|
23
23
|
## Methods
|
|
24
24
|
|
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
**Signature:**
|
|
8
8
|
|
|
9
9
|
```typescript
|
|
10
|
-
withExpression(expression:
|
|
10
|
+
withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Parameters
|
|
14
14
|
|
|
15
15
|
| Parameter | Type | Description |
|
|
16
16
|
| --- | --- | --- |
|
|
17
|
-
| expression |
|
|
17
|
+
| expression | ValidExpressionType | |
|
|
18
18
|
| options | ExpressionOptions | _(Optional)_ |
|
|
19
19
|
| groupJoin | [Join](./foundation-criteria.join.md) | _(Optional)_ |
|
|
20
20
|
|
package/docs/api-report.md
CHANGED
|
@@ -11,33 +11,23 @@ export const createFormCriteriaBuilder: <T>(criteriaBuilder: CriteriaBuilder) =>
|
|
|
11
11
|
|
|
12
12
|
// @public
|
|
13
13
|
export class CriteriaBuilder {
|
|
14
|
-
// Warning: (ae-incompatible-release-tags) The symbol "And" is marked as @public, but its signature references "Expression" which is marked as @internal
|
|
15
|
-
// Warning: (ae-incompatible-release-tags) The symbol "And" is marked as @public, but its signature references "ExpressionList" which is marked as @internal
|
|
16
|
-
//
|
|
17
14
|
// (undocumented)
|
|
18
|
-
And: (expression:
|
|
15
|
+
And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
19
16
|
// Warning: (ae-forgotten-export) The symbol "GroupedExpressions" needs to be exported by the entry point index.d.ts
|
|
20
17
|
//
|
|
21
18
|
// (undocumented)
|
|
22
19
|
build(outputFn?: (groups: GroupedExpressions) => string): string;
|
|
23
|
-
// Warning: (ae-incompatible-release-tags) The symbol "Not" is marked as @public, but its signature references "Expression" which is marked as @internal
|
|
24
|
-
// Warning: (ae-incompatible-release-tags) The symbol "Not" is marked as @public, but its signature references "ExpressionList" which is marked as @internal
|
|
25
|
-
//
|
|
26
20
|
// (undocumented)
|
|
27
|
-
Not: (expression:
|
|
28
|
-
// Warning: (ae-incompatible-release-tags) The symbol "Or" is marked as @public, but its signature references "Expression" which is marked as @internal
|
|
29
|
-
// Warning: (ae-incompatible-release-tags) The symbol "Or" is marked as @public, but its signature references "ExpressionList" which is marked as @internal
|
|
30
|
-
//
|
|
21
|
+
Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
31
22
|
// (undocumented)
|
|
32
|
-
Or: (expression:
|
|
23
|
+
Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
|
|
33
24
|
// (undocumented)
|
|
34
25
|
reset(): void;
|
|
26
|
+
// Warning: (ae-forgotten-export) The symbol "ValidExpressionType" needs to be exported by the entry point index.d.ts
|
|
35
27
|
// Warning: (ae-forgotten-export) The symbol "ExpressionOptions" needs to be exported by the entry point index.d.ts
|
|
36
|
-
// Warning: (ae-incompatible-release-tags) The symbol "withExpression" is marked as @public, but its signature references "Expression" which is marked as @internal
|
|
37
|
-
// Warning: (ae-incompatible-release-tags) The symbol "withExpression" is marked as @public, but its signature references "ExpressionList" which is marked as @internal
|
|
38
28
|
//
|
|
39
29
|
// (undocumented)
|
|
40
|
-
withExpression(expression:
|
|
30
|
+
withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
|
|
41
31
|
}
|
|
42
32
|
|
|
43
33
|
// @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-criteria",
|
|
3
3
|
"description": "Genesis Foundation UI Criteria Utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.44.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"test:debug": "genx test --debug"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@genesislcap/foundation-testing": "^14.
|
|
41
|
-
"@genesislcap/genx": "^14.
|
|
40
|
+
"@genesislcap/foundation-testing": "^14.44.0",
|
|
41
|
+
"@genesislcap/genx": "^14.44.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@genesislcap/foundation-utils": "^14.
|
|
44
|
+
"@genesislcap/foundation-utils": "^14.44.0",
|
|
45
45
|
"@microsoft/fast-element": "^1.7.0",
|
|
46
46
|
"tslib": "^2.3.1"
|
|
47
47
|
},
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "077e749b309b7cce6982ec9c85255036e5f254dc"
|
|
57
57
|
}
|