@genesislcap/foundation-utils 14.310.2-alpha-21b24a2.0 → 14.310.2-alpha-64966a4.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.
@@ -375,59 +375,6 @@
375
375
  }
376
376
  ]
377
377
  },
378
- {
379
- "kind": "javascript-module",
380
- "path": "src/decorators/index.ts",
381
- "declarations": [],
382
- "exports": [
383
- {
384
- "kind": "js",
385
- "name": "*",
386
- "declaration": {
387
- "name": "*",
388
- "package": "./renderOnChange"
389
- }
390
- }
391
- ]
392
- },
393
- {
394
- "kind": "javascript-module",
395
- "path": "src/decorators/renderOnChange.ts",
396
- "declarations": [
397
- {
398
- "kind": "function",
399
- "name": "renderOnChange",
400
- "parameters": [
401
- {
402
- "name": "target",
403
- "type": {
404
- "text": "FASTElement & { render(): void }"
405
- },
406
- "description": "The target to define the property change handler on."
407
- },
408
- {
409
- "name": "name",
410
- "type": {
411
- "text": "string"
412
- },
413
- "description": "The property name."
414
- }
415
- ],
416
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
417
- "privacy": "public"
418
- }
419
- ],
420
- "exports": [
421
- {
422
- "kind": "js",
423
- "name": "renderOnChange",
424
- "declaration": {
425
- "name": "renderOnChange",
426
- "module": "src/decorators/renderOnChange.ts"
427
- }
428
- }
429
- ]
430
- },
431
378
  {
432
379
  "kind": "javascript-module",
433
380
  "path": "src/design-system/design-system.ts",
@@ -550,7 +497,7 @@
550
497
  },
551
498
  {
552
499
  "kind": "javascript-module",
553
- "path": "src/directives/index.ts",
500
+ "path": "src/decorators/index.ts",
554
501
  "declarations": [],
555
502
  "exports": [
556
503
  {
@@ -558,22 +505,52 @@
558
505
  "name": "*",
559
506
  "declaration": {
560
507
  "name": "*",
561
- "package": "./sync"
508
+ "package": "./renderOnChange"
562
509
  }
563
- },
510
+ }
511
+ ]
512
+ },
513
+ {
514
+ "kind": "javascript-module",
515
+ "path": "src/decorators/renderOnChange.ts",
516
+ "declarations": [
517
+ {
518
+ "kind": "function",
519
+ "name": "renderOnChange",
520
+ "parameters": [
521
+ {
522
+ "name": "target",
523
+ "type": {
524
+ "text": "FASTElement & { render(): void }"
525
+ },
526
+ "description": "The target to define the property change handler on."
527
+ },
528
+ {
529
+ "name": "name",
530
+ "type": {
531
+ "text": "string"
532
+ },
533
+ "description": "The property name."
534
+ }
535
+ ],
536
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
537
+ "privacy": "public"
538
+ }
539
+ ],
540
+ "exports": [
564
541
  {
565
542
  "kind": "js",
566
- "name": "*",
543
+ "name": "renderOnChange",
567
544
  "declaration": {
568
- "name": "*",
569
- "package": "./when-else"
545
+ "name": "renderOnChange",
546
+ "module": "src/decorators/renderOnChange.ts"
570
547
  }
571
548
  }
572
549
  ]
573
550
  },
574
551
  {
575
552
  "kind": "javascript-module",
576
- "path": "src/encoding/index.ts",
553
+ "path": "src/directives/index.ts",
577
554
  "declarations": [],
578
555
  "exports": [
579
556
  {
@@ -581,7 +558,15 @@
581
558
  "name": "*",
582
559
  "declaration": {
583
560
  "name": "*",
584
- "package": "./base64"
561
+ "package": "./sync"
562
+ }
563
+ },
564
+ {
565
+ "kind": "js",
566
+ "name": "*",
567
+ "declaration": {
568
+ "name": "*",
569
+ "package": "./when-else"
585
570
  }
586
571
  }
587
572
  ]
@@ -1044,6 +1029,21 @@
1044
1029
  }
1045
1030
  ]
1046
1031
  },
1032
+ {
1033
+ "kind": "javascript-module",
1034
+ "path": "src/encoding/index.ts",
1035
+ "declarations": [],
1036
+ "exports": [
1037
+ {
1038
+ "kind": "js",
1039
+ "name": "*",
1040
+ "declaration": {
1041
+ "name": "*",
1042
+ "package": "./base64"
1043
+ }
1044
+ }
1045
+ ]
1046
+ },
1047
1047
  {
1048
1048
  "kind": "javascript-module",
1049
1049
  "path": "src/error/errorMap.ts",
@@ -1743,7 +1743,7 @@
1743
1743
  "text": "InactivityDialog"
1744
1744
  },
1745
1745
  "privacy": "private",
1746
- "default": "new InactivityDialog()"
1746
+ "default": "document.createElement('inactivity-dialog')"
1747
1747
  },
1748
1748
  {
1749
1749
  "kind": "field",
@@ -1,4 +1,3 @@
1
- import { InactivityDialog } from './inactivity-dialog';
2
1
  import { InactivityService } from './inactivity-service';
3
2
  export class InactivityManager {
4
3
  constructor(config) {
@@ -8,7 +7,7 @@ export class InactivityManager {
8
7
  timeoutMinutes: config.timeoutMinutes,
9
8
  warningMinutes: config.warningMinutes,
10
9
  });
11
- this.dialog = new InactivityDialog();
10
+ this.dialog = document.createElement('inactivity-dialog');
12
11
  this.setupEventListeners();
13
12
  }
14
13
  setupEventListeners() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.310.2-alpha-21b24a2.0",
4
+ "version": "14.310.2-alpha-64966a4.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,19 +27,19 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.310.2-alpha-21b24a2.0",
31
- "@genesislcap/genx": "14.310.2-alpha-21b24a2.0",
32
- "@genesislcap/rollup-builder": "14.310.2-alpha-21b24a2.0",
33
- "@genesislcap/ts-builder": "14.310.2-alpha-21b24a2.0",
34
- "@genesislcap/uvu-playwright-builder": "14.310.2-alpha-21b24a2.0",
35
- "@genesislcap/vite-builder": "14.310.2-alpha-21b24a2.0",
36
- "@genesislcap/webpack-builder": "14.310.2-alpha-21b24a2.0",
30
+ "@genesislcap/foundation-testing": "14.310.2-alpha-64966a4.0",
31
+ "@genesislcap/genx": "14.310.2-alpha-64966a4.0",
32
+ "@genesislcap/rollup-builder": "14.310.2-alpha-64966a4.0",
33
+ "@genesislcap/ts-builder": "14.310.2-alpha-64966a4.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.310.2-alpha-64966a4.0",
35
+ "@genesislcap/vite-builder": "14.310.2-alpha-64966a4.0",
36
+ "@genesislcap/webpack-builder": "14.310.2-alpha-64966a4.0",
37
37
  "@types/json-schema": "^7.0.11"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/expression-builder": "14.310.2-alpha-21b24a2.0",
41
- "@genesislcap/foundation-logger": "14.310.2-alpha-21b24a2.0",
42
- "@genesislcap/web-core": "14.310.2-alpha-21b24a2.0",
40
+ "@genesislcap/expression-builder": "14.310.2-alpha-64966a4.0",
41
+ "@genesislcap/foundation-logger": "14.310.2-alpha-64966a4.0",
42
+ "@genesislcap/web-core": "14.310.2-alpha-64966a4.0",
43
43
  "@microsoft/fast-components": "2.30.6",
44
44
  "@microsoft/fast-element": "1.14.0",
45
45
  "@microsoft/fast-foundation": "2.49.6",
@@ -56,5 +56,5 @@
56
56
  "access": "public"
57
57
  },
58
58
  "customElements": "dist/custom-elements.json",
59
- "gitHead": "818c2ab30a86f1f39c45dc375ff246d723f720b7"
59
+ "gitHead": "0b4ac0e7e669a9dda296582caf23fd624b7faab0"
60
60
  }