@genesislcap/foundation-utils 14.104.0 → 14.105.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.
@@ -343,49 +343,53 @@
343
343
  },
344
344
  {
345
345
  "kind": "javascript-module",
346
- "path": "src/design-system/design-system.ts",
346
+ "path": "src/decorators/index.ts",
347
+ "declarations": [],
348
+ "exports": [
349
+ {
350
+ "kind": "js",
351
+ "name": "*",
352
+ "declaration": {
353
+ "name": "*",
354
+ "package": "./renderOnChange"
355
+ }
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ "kind": "javascript-module",
361
+ "path": "src/decorators/renderOnChange.ts",
347
362
  "declarations": [
348
363
  {
349
364
  "kind": "function",
350
- "name": "assureDesignSystem",
351
- "return": {
352
- "type": {
353
- "text": "DesignSystemModule"
354
- }
355
- },
365
+ "name": "renderOnChange",
356
366
  "parameters": [
357
367
  {
358
- "name": "module",
368
+ "name": "target",
359
369
  "type": {
360
- "text": "DesignSystemModule"
361
- }
370
+ "text": "FASTElement & { render(): void }"
371
+ },
372
+ "description": "The target to define the property change handler on."
373
+ },
374
+ {
375
+ "name": "name",
376
+ "type": {
377
+ "text": "string"
378
+ },
379
+ "description": "The property name."
362
380
  }
363
381
  ],
382
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
364
383
  "privacy": "public"
365
384
  }
366
385
  ],
367
386
  "exports": [
368
387
  {
369
388
  "kind": "js",
370
- "name": "assureDesignSystem",
371
- "declaration": {
372
- "name": "assureDesignSystem",
373
- "module": "src/design-system/design-system.ts"
374
- }
375
- }
376
- ]
377
- },
378
- {
379
- "kind": "javascript-module",
380
- "path": "src/design-system/index.ts",
381
- "declarations": [],
382
- "exports": [
383
- {
384
- "kind": "js",
385
- "name": "*",
389
+ "name": "renderOnChange",
386
390
  "declaration": {
387
- "name": "*",
388
- "package": "./design-system"
391
+ "name": "renderOnChange",
392
+ "module": "src/decorators/renderOnChange.ts"
389
393
  }
390
394
  }
391
395
  ]
@@ -415,53 +419,49 @@
415
419
  },
416
420
  {
417
421
  "kind": "javascript-module",
418
- "path": "src/decorators/index.ts",
419
- "declarations": [],
420
- "exports": [
421
- {
422
- "kind": "js",
423
- "name": "*",
424
- "declaration": {
425
- "name": "*",
426
- "package": "./renderOnChange"
427
- }
428
- }
429
- ]
430
- },
431
- {
432
- "kind": "javascript-module",
433
- "path": "src/decorators/renderOnChange.ts",
422
+ "path": "src/design-system/design-system.ts",
434
423
  "declarations": [
435
424
  {
436
425
  "kind": "function",
437
- "name": "renderOnChange",
426
+ "name": "assureDesignSystem",
427
+ "return": {
428
+ "type": {
429
+ "text": "DesignSystemModule"
430
+ }
431
+ },
438
432
  "parameters": [
439
433
  {
440
- "name": "target",
441
- "type": {
442
- "text": "FASTElement & { render(): void }"
443
- },
444
- "description": "The target to define the property change handler on."
445
- },
446
- {
447
- "name": "name",
434
+ "name": "module",
448
435
  "type": {
449
- "text": "string"
450
- },
451
- "description": "The property name."
436
+ "text": "DesignSystemModule"
437
+ }
452
438
  }
453
439
  ],
454
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
455
440
  "privacy": "public"
456
441
  }
457
442
  ],
458
443
  "exports": [
459
444
  {
460
445
  "kind": "js",
461
- "name": "renderOnChange",
446
+ "name": "assureDesignSystem",
462
447
  "declaration": {
463
- "name": "renderOnChange",
464
- "module": "src/decorators/renderOnChange.ts"
448
+ "name": "assureDesignSystem",
449
+ "module": "src/design-system/design-system.ts"
450
+ }
451
+ }
452
+ ]
453
+ },
454
+ {
455
+ "kind": "javascript-module",
456
+ "path": "src/design-system/index.ts",
457
+ "declarations": [],
458
+ "exports": [
459
+ {
460
+ "kind": "js",
461
+ "name": "*",
462
+ "declaration": {
463
+ "name": "*",
464
+ "package": "./design-system"
465
465
  }
466
466
  }
467
467
  ]
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.104.0",
4
+ "version": "14.105.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,12 +19,12 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.104.0",
23
- "@genesislcap/genx": "14.104.0",
22
+ "@genesislcap/foundation-testing": "14.105.0",
23
+ "@genesislcap/genx": "14.105.0",
24
24
  "rimraf": "^3.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@genesislcap/foundation-logger": "14.104.0",
27
+ "@genesislcap/foundation-logger": "14.105.0",
28
28
  "@microsoft/fast-components": "^2.21.3",
29
29
  "@microsoft/fast-element": "^1.7.0",
30
30
  "@microsoft/fast-foundation": "^2.33.2",
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "customElements": "dist/custom-elements.json",
45
- "gitHead": "2df9499fe059d3142fb281802ba96c9f97240b9c"
45
+ "gitHead": "55eb8d2e16c039fc572b575c92fcca51460ba55b"
46
46
  }