@genesislcap/foundation-criteria 14.30.2-bny.1 → 14.30.3

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,8 +1,7 @@
1
1
  import { Expression, ExpressionList, Join } from './types';
2
2
  type Predicate = () => boolean;
3
- type ValidExpressionType = Expression | ExpressionList | string;
4
3
  type ConditionalExpression = {
5
- expression?: ValidExpressionType;
4
+ expression?: Expression | ExpressionList;
6
5
  condition?: Predicate;
7
6
  join?: Join;
8
7
  groupName?: string;
@@ -16,10 +15,10 @@ type GroupedExpressions = Record<string, string[]>;
16
15
  */
17
16
  export declare class CriteriaBuilder {
18
17
  private expressions;
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;
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;
23
22
  build(outputFn?: (groups: GroupedExpressions) => string): string;
24
23
  reset(): void;
25
24
  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,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
+ {"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"}
@@ -35,6 +35,5 @@ export declare class CriteriaSegmentedControl extends FASTElement {
35
35
  selectedLabel: string;
36
36
  selectedLabelChanged(): void;
37
37
  itemClickHandler(label: string): void;
38
- private createCriteria;
39
38
  }
40
39
  //# 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,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"}
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"}
@@ -52,9 +52,6 @@ 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
- }
58
55
  else {
59
56
  addExpressionToGroup(expression, expression.group);
60
57
  }
@@ -77,10 +74,7 @@ export class CriteriaBuilder {
77
74
  if (join && !!previous) {
78
75
  result.push(` ${join.operator} `);
79
76
  }
80
- if (typeof expression === 'string') {
81
- result.push(expression);
82
- }
83
- else if (Array.isArray(expression)) {
77
+ if (Array.isArray(expression)) {
84
78
  expression.forEach((e, idx, arr) => {
85
79
  if (e instanceof Join) {
86
80
  const prev = arr[idx - 1];
@@ -2,9 +2,7 @@ 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
5
  import { template } from './criteria-segmented-control.template';
7
- import { ensureArray } from '../utils';
8
6
  /**
9
7
  * Main class which defines the criteria segmented control component.
10
8
  *
@@ -37,21 +35,6 @@ let CriteriaSegmentedControl = class CriteriaSegmentedControl extends FASTElemen
37
35
  constructor() {
38
36
  super(...arguments);
39
37
  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
- };
55
38
  }
56
39
  valueChanged() {
57
40
  this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
@@ -59,7 +42,13 @@ let CriteriaSegmentedControl = class CriteriaSegmentedControl extends FASTElemen
59
42
  selectedLabelChanged() {
60
43
  const selectedOption = this.criteriaOptions.find((option) => option.label === this.selectedLabel);
61
44
  if (selectedOption) {
62
- this.value = this.createCriteria(selectedOption).build();
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();
63
52
  }
64
53
  else {
65
54
  this.value = '';
@@ -244,8 +244,17 @@
244
244
  },
245
245
  {
246
246
  "kind": "Reference",
247
- "text": "ValidExpressionType",
248
- "canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
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"
249
258
  },
250
259
  {
251
260
  "kind": "Content",
@@ -271,7 +280,7 @@
271
280
  "name": "And",
272
281
  "propertyTypeTokenRange": {
273
282
  "startIndex": 1,
274
- "endIndex": 6
283
+ "endIndex": 8
275
284
  },
276
285
  "isStatic": false,
277
286
  "isProtected": false,
@@ -349,8 +358,17 @@
349
358
  },
350
359
  {
351
360
  "kind": "Reference",
352
- "text": "ValidExpressionType",
353
- "canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
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"
354
372
  },
355
373
  {
356
374
  "kind": "Content",
@@ -376,7 +394,7 @@
376
394
  "name": "Not",
377
395
  "propertyTypeTokenRange": {
378
396
  "startIndex": 1,
379
- "endIndex": 6
397
+ "endIndex": 8
380
398
  },
381
399
  "isStatic": false,
382
400
  "isProtected": false,
@@ -397,8 +415,17 @@
397
415
  },
398
416
  {
399
417
  "kind": "Reference",
400
- "text": "ValidExpressionType",
401
- "canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
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"
402
429
  },
403
430
  {
404
431
  "kind": "Content",
@@ -424,7 +451,7 @@
424
451
  "name": "Or",
425
452
  "propertyTypeTokenRange": {
426
453
  "startIndex": 1,
427
- "endIndex": 6
454
+ "endIndex": 8
428
455
  },
429
456
  "isStatic": false,
430
457
  "isProtected": false,
@@ -472,8 +499,17 @@
472
499
  },
473
500
  {
474
501
  "kind": "Reference",
475
- "text": "ValidExpressionType",
476
- "canonicalReference": "@genesislcap/foundation-criteria!~ValidExpressionType:type"
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"
477
513
  },
478
514
  {
479
515
  "kind": "Content",
@@ -508,8 +544,8 @@
508
544
  ],
509
545
  "isStatic": false,
510
546
  "returnTypeTokenRange": {
511
- "startIndex": 7,
512
- "endIndex": 8
547
+ "startIndex": 9,
548
+ "endIndex": 10
513
549
  },
514
550
  "releaseTag": "Public",
515
551
  "isProtected": false,
@@ -519,23 +555,23 @@
519
555
  "parameterName": "expression",
520
556
  "parameterTypeTokenRange": {
521
557
  "startIndex": 1,
522
- "endIndex": 2
558
+ "endIndex": 4
523
559
  },
524
560
  "isOptional": false
525
561
  },
526
562
  {
527
563
  "parameterName": "options",
528
564
  "parameterTypeTokenRange": {
529
- "startIndex": 3,
530
- "endIndex": 4
565
+ "startIndex": 5,
566
+ "endIndex": 6
531
567
  },
532
568
  "isOptional": true
533
569
  },
534
570
  {
535
571
  "parameterName": "groupJoin",
536
572
  "parameterTypeTokenRange": {
537
- "startIndex": 5,
538
- "endIndex": 6
573
+ "startIndex": 7,
574
+ "endIndex": 8
539
575
  },
540
576
  "isOptional": true
541
577
  }
@@ -1,7 +1,7 @@
1
1
  import { FASTElement } from '@microsoft/fast-element';
2
2
 
3
3
  declare type ConditionalExpression = {
4
- expression?: ValidExpressionType;
4
+ expression?: Expression | ExpressionList;
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: 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;
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;
26
26
  build(outputFn?: (groups: GroupedExpressions) => string): string;
27
27
  reset(): void;
28
28
  private parseExpression;
@@ -63,7 +63,6 @@ export declare class CriteriaSegmentedControl extends FASTElement {
63
63
  selectedLabel: string;
64
64
  selectedLabelChanged(): void;
65
65
  itemClickHandler(label: string): void;
66
- private createCriteria;
67
66
  }
68
67
 
69
68
  /**
@@ -218,6 +217,4 @@ export declare const Serialisers: {
218
217
  dateIsLessEqual: (e: Expression) => string;
219
218
  };
220
219
 
221
- declare type ValidExpressionType = Expression | ExpressionList | string;
222
-
223
220
  export { }
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
10
+ And: (expression: Expression | ExpressionList, 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: 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 | |
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 | |
22
22
 
23
23
  ## Methods
24
24
 
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
10
+ Not: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
11
11
  ```
@@ -7,5 +7,5 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
10
+ Or: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
11
11
  ```
@@ -7,14 +7,14 @@
7
7
  **Signature:**
8
8
 
9
9
  ```typescript
10
- withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
10
+ withExpression(expression: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
11
11
  ```
12
12
 
13
13
  ## Parameters
14
14
 
15
15
  | Parameter | Type | Description |
16
16
  | --- | --- | --- |
17
- | expression | ValidExpressionType | |
17
+ | expression | Expression \| ExpressionList | |
18
18
  | options | ExpressionOptions | _(Optional)_ |
19
19
  | groupJoin | [Join](./foundation-criteria.join.md) | _(Optional)_ |
20
20
 
@@ -11,23 +11,33 @@ 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
+ //
14
17
  // (undocumented)
15
- And: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
18
+ And: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
16
19
  // Warning: (ae-forgotten-export) The symbol "GroupedExpressions" needs to be exported by the entry point index.d.ts
17
20
  //
18
21
  // (undocumented)
19
22
  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
+ //
20
26
  // (undocumented)
21
- Not: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
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
+ //
22
31
  // (undocumented)
23
- Or: (expression: ValidExpressionType, options?: ExpressionOptions) => this;
32
+ Or: (expression: Expression | ExpressionList, options?: ExpressionOptions) => this;
24
33
  // (undocumented)
25
34
  reset(): void;
26
- // Warning: (ae-forgotten-export) The symbol "ValidExpressionType" needs to be exported by the entry point index.d.ts
27
35
  // 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
28
38
  //
29
39
  // (undocumented)
30
- withExpression(expression: ValidExpressionType, options?: ExpressionOptions, groupJoin?: Join): this;
40
+ withExpression(expression: Expression | ExpressionList, options?: ExpressionOptions, groupJoin?: Join): this;
31
41
  }
32
42
 
33
43
  // @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.30.2-bny.1",
4
+ "version": "14.30.3",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -40,8 +40,8 @@
40
40
  "test:unit:watch": "watchlist src test -- npm run test:unit"
41
41
  },
42
42
  "devDependencies": {
43
- "@genesislcap/foundation-testing": "14.30.2-bny.1",
44
- "@genesislcap/genx": "14.30.2-bny.1",
43
+ "@genesislcap/foundation-testing": "^14.30.3",
44
+ "@genesislcap/genx": "^14.30.3",
45
45
  "@playwright/test": "^1.18.1",
46
46
  "c8": "^7.11.0",
47
47
  "esm": "^3.2.25",
@@ -53,7 +53,7 @@
53
53
  "watchlist": "^0.3.1"
54
54
  },
55
55
  "dependencies": {
56
- "@genesislcap/foundation-utils": "14.30.2-bny.1",
56
+ "@genesislcap/foundation-utils": "^14.30.3",
57
57
  "@microsoft/fast-element": "^1.7.0",
58
58
  "tslib": "^2.3.1"
59
59
  },
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "63f9dfb5e58f87fc514c73b185788088b7fac94a"
68
+ "gitHead": "5f2858b6708b64c5ed6378fc54e09629539a563a"
69
69
  }