@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.
@@ -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?: Expression | ExpressionList;
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: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
19
- And: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
20
- Or: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
21
- Not: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
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,UAAU,GAAG,cAAc,CAAC;IACzC,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,UAAU,GAAG,cAAc,EACvC,OAAO,GAAE,iBAAsB,EAC/B,SAAS,GAAE,IAAiB;IAgDvB,GAAG,eAAgB,UAAU,GAAG,cAAc,YAAW,iBAAiB,UAC1B;IAEhD,EAAE,eAAgB,UAAU,GAAG,cAAc,YAAW,iBAAiB,UAC1B;IAE/C,GAAG,eAAgB,UAAU,GAAG,cAAc,YAAW,iBAAiB,UAC1B;IAEhD,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,MAAM;IAmBvD,KAAK;IAIZ,OAAO,CAAC,eAAe;CA8BxB"}
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"}
@@ -35,5 +35,6 @@ export declare class CriteriaSegmentedControl extends FASTElement {
35
35
  selectedLabel: string;
36
36
  selectedLabelChanged(): void;
37
37
  itemClickHandler(label: string): void;
38
+ private createCriteria;
38
39
  }
39
40
  //# sourceMappingURL=criteria-segmented-control.d.ts.map
@@ -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,EAAE,MAAM,UAAU,CAAC;AAG1D;;;;;;;;;;;;;;;;;;;;;;;;;;;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;IAmBpB,gBAAgB,CAAC,KAAK,EAAE,MAAM;CAK/B"}
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 (Array.isArray(expression)) {
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 = new CriteriaBuilder()
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": "Expression",
248
- "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
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": 8
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": "Expression",
362
- "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
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": 8
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": "Expression",
419
- "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
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": 8
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": "Expression",
503
- "canonicalReference": "@genesislcap/foundation-criteria!Expression:type"
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": 9,
548
- "endIndex": 10
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": 4
522
+ "endIndex": 2
559
523
  },
560
524
  "isOptional": false
561
525
  },
562
526
  {
563
527
  "parameterName": "options",
564
528
  "parameterTypeTokenRange": {
565
- "startIndex": 5,
566
- "endIndex": 6
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": 7,
574
- "endIndex": 8
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?: Expression | ExpressionList;
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: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
23
- And: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
24
- Or: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
25
- Not: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
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 { }
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- And: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
10
+ And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
11
11
  ```
@@ -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: Expression \| ExpressionList, options?: ExpressionOptions) =&gt; this | |
20
- | [Not](./foundation-criteria.criteriabuilder.not.md) | | (expression: Expression \| ExpressionList, options?: ExpressionOptions) =&gt; this | |
21
- | [Or](./foundation-criteria.criteriabuilder.or.md) | | (expression: Expression \| ExpressionList, options?: ExpressionOptions) =&gt; this | |
19
+ | [And](./foundation-criteria.criteriabuilder.and.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) =&gt; this | |
20
+ | [Not](./foundation-criteria.criteriabuilder.not.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) =&gt; this | |
21
+ | [Or](./foundation-criteria.criteriabuilder.or.md) | | (expression: ValidExpressionType, options?: ExpressionOptions) =&gt; this | |
22
22
 
23
23
  ## Methods
24
24
 
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- Not: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
10
+ Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
11
11
  ```
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- Or: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
10
+ Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
11
11
  ```
@@ -7,14 +7,14 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- withExpression(expression: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
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 | Expression \| ExpressionList | |
17
+ | expression | ValidExpressionType | |
18
18
  | options | ExpressionOptions | _(Optional)_ |
19
19
  | groupJoin | [Join](./foundation-criteria.join.md) | _(Optional)_ |
20
20
 
@@ -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: Expression | ExpressionList, options?: ExpressionOptions) => this;
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: Expression | ExpressionList, options?: ExpressionOptions) => this;
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: Expression | ExpressionList, options?: ExpressionOptions) => this;
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: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
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.43.1",
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.43.1",
41
- "@genesislcap/genx": "^14.43.1"
40
+ "@genesislcap/foundation-testing": "^14.44.0",
41
+ "@genesislcap/genx": "^14.44.0"
42
42
  },
43
43
  "dependencies": {
44
- "@genesislcap/foundation-utils": "^14.43.1",
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": "08b81f08ecc65a57ccfb6d349d37efd0fdc24287"
56
+ "gitHead": "077e749b309b7cce6982ec9c85255036e5f254dc"
57
57
  }