@genesislcap/foundation-utils 14.88.0 → 14.89.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.
@@ -341,59 +341,6 @@
341
341
  }
342
342
  ]
343
343
  },
344
- {
345
- "kind": "javascript-module",
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",
362
- "declarations": [
363
- {
364
- "kind": "function",
365
- "name": "renderOnChange",
366
- "parameters": [
367
- {
368
- "name": "target",
369
- "type": {
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."
380
- }
381
- ],
382
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
383
- "privacy": "public"
384
- }
385
- ],
386
- "exports": [
387
- {
388
- "kind": "js",
389
- "name": "renderOnChange",
390
- "declaration": {
391
- "name": "renderOnChange",
392
- "module": "src/decorators/renderOnChange.ts"
393
- }
394
- }
395
- ]
396
- },
397
344
  {
398
345
  "kind": "javascript-module",
399
346
  "path": "src/design-system/design-system.ts",
@@ -466,6 +413,59 @@
466
413
  }
467
414
  ]
468
415
  },
416
+ {
417
+ "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",
434
+ "declarations": [
435
+ {
436
+ "kind": "function",
437
+ "name": "renderOnChange",
438
+ "parameters": [
439
+ {
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",
448
+ "type": {
449
+ "text": "string"
450
+ },
451
+ "description": "The property name."
452
+ }
453
+ ],
454
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
455
+ "privacy": "public"
456
+ }
457
+ ],
458
+ "exports": [
459
+ {
460
+ "kind": "js",
461
+ "name": "renderOnChange",
462
+ "declaration": {
463
+ "name": "renderOnChange",
464
+ "module": "src/decorators/renderOnChange.ts"
465
+ }
466
+ }
467
+ ]
468
+ },
469
469
  {
470
470
  "kind": "javascript-module",
471
471
  "path": "src/env/index.ts",
@@ -1349,95 +1349,42 @@
1349
1349
  },
1350
1350
  {
1351
1351
  "kind": "javascript-module",
1352
- "path": "src/styles/color.ts",
1353
- "declarations": [
1354
- {
1355
- "kind": "variable",
1356
- "name": "activeColorScheme",
1357
- "description": "A design token that represents the active color scheme (light or dark).",
1358
- "privacy": "public"
1359
- }
1360
- ],
1352
+ "path": "src/utils/index.ts",
1353
+ "declarations": [],
1361
1354
  "exports": [
1362
1355
  {
1363
1356
  "kind": "js",
1364
- "name": "activeColorScheme",
1357
+ "name": "*",
1365
1358
  "declaration": {
1366
- "name": "activeColorScheme",
1367
- "module": "src/styles/color.ts"
1359
+ "name": "*",
1360
+ "package": "./logger"
1368
1361
  }
1369
1362
  }
1370
1363
  ]
1371
1364
  },
1372
1365
  {
1373
1366
  "kind": "javascript-module",
1374
- "path": "src/styles/dom.ts",
1367
+ "path": "src/utils/logger.ts",
1375
1368
  "declarations": [
1376
1369
  {
1377
- "kind": "function",
1378
- "name": "insertDocumentCSSRule",
1379
- "return": {
1380
- "type": {
1381
- "text": ""
1382
- }
1383
- },
1384
- "parameters": [
1385
- {
1386
- "name": "cssRule",
1387
- "type": {
1388
- "text": "string"
1389
- },
1390
- "description": "The CSS rule to insert."
1391
- },
1392
- {
1393
- "name": "styleElementId",
1394
- "type": {
1395
- "text": "string"
1396
- },
1397
- "description": "The ID of the style element to use or create."
1398
- }
1399
- ],
1400
- "description": "Inserts a CSS rule into the document by creating a new style element or using an existing one with the specified ID.\nReturns a function that can be called to remove the rule from the document.",
1401
- "privacy": "public"
1402
- },
1403
- {
1404
- "kind": "function",
1405
- "name": "insertDocumentLink",
1406
- "parameters": [
1407
- {
1408
- "name": "href",
1409
- "type": {
1410
- "text": "string"
1411
- },
1412
- "description": "The URL of the CSS file to insert."
1413
- }
1414
- ],
1415
- "description": "Inserts a CSS link into the document if it doesn't already exist.",
1416
- "privacy": "public"
1370
+ "kind": "variable",
1371
+ "name": "logger"
1417
1372
  }
1418
1373
  ],
1419
1374
  "exports": [
1420
1375
  {
1421
1376
  "kind": "js",
1422
- "name": "insertDocumentCSSRule",
1423
- "declaration": {
1424
- "name": "insertDocumentCSSRule",
1425
- "module": "src/styles/dom.ts"
1426
- }
1427
- },
1428
- {
1429
- "kind": "js",
1430
- "name": "insertDocumentLink",
1377
+ "name": "logger",
1431
1378
  "declaration": {
1432
- "name": "insertDocumentLink",
1433
- "module": "src/styles/dom.ts"
1379
+ "name": "logger",
1380
+ "module": "src/utils/logger.ts"
1434
1381
  }
1435
1382
  }
1436
1383
  ]
1437
1384
  },
1438
1385
  {
1439
1386
  "kind": "javascript-module",
1440
- "path": "src/styles/index.ts",
1387
+ "path": "src/uuid/index.ts",
1441
1388
  "declarations": [],
1442
1389
  "exports": [
1443
1390
  {
@@ -1445,301 +1392,51 @@
1445
1392
  "name": "*",
1446
1393
  "declaration": {
1447
1394
  "name": "*",
1448
- "package": "./color"
1395
+ "package": "./uuid"
1449
1396
  }
1450
- },
1397
+ }
1398
+ ]
1399
+ },
1400
+ {
1401
+ "kind": "javascript-module",
1402
+ "path": "src/uuid/uuid.ts",
1403
+ "declarations": [
1451
1404
  {
1452
- "kind": "js",
1453
- "name": "*",
1454
- "declaration": {
1455
- "name": "*",
1456
- "package": "./dom"
1457
- }
1458
- },
1405
+ "kind": "variable",
1406
+ "name": "UUID",
1407
+ "description": "A dependency injection token for the UUID interface.",
1408
+ "privacy": "public"
1409
+ }
1410
+ ],
1411
+ "exports": [
1459
1412
  {
1460
1413
  "kind": "js",
1461
- "name": "*",
1414
+ "name": "UUID",
1462
1415
  "declaration": {
1463
- "name": "*",
1464
- "package": "./slotted-styles"
1416
+ "name": "UUID",
1417
+ "module": "src/uuid/uuid.ts"
1465
1418
  }
1466
- },
1419
+ }
1420
+ ]
1421
+ },
1422
+ {
1423
+ "kind": "javascript-module",
1424
+ "path": "src/window/index.ts",
1425
+ "declarations": [],
1426
+ "exports": [
1467
1427
  {
1468
1428
  "kind": "js",
1469
1429
  "name": "*",
1470
1430
  "declaration": {
1471
1431
  "name": "*",
1472
- "package": "./typography"
1432
+ "package": "./window"
1473
1433
  }
1474
1434
  }
1475
1435
  ]
1476
1436
  },
1477
1437
  {
1478
1438
  "kind": "javascript-module",
1479
- "path": "src/styles/slotted-styles.ts",
1480
- "declarations": [
1481
- {
1482
- "kind": "class",
1483
- "description": "A custom element that encapsulates a set of styles that can be applied to slotted elements.",
1484
- "name": "SlottedStyles",
1485
- "members": [
1486
- {
1487
- "kind": "field",
1488
- "name": "styles",
1489
- "type": {
1490
- "text": "ElementStyles"
1491
- },
1492
- "description": "The styles to apply to slotted elements."
1493
- },
1494
- {
1495
- "kind": "method",
1496
- "name": "stylesChanged",
1497
- "return": {
1498
- "type": {
1499
- "text": "void"
1500
- }
1501
- },
1502
- "parameters": [
1503
- {
1504
- "name": "prev",
1505
- "type": {
1506
- "text": "ElementStyles"
1507
- },
1508
- "description": "The previous value of the `styles` property."
1509
- },
1510
- {
1511
- "name": "next",
1512
- "type": {
1513
- "text": "ElementStyles"
1514
- },
1515
- "description": "The new value of the `styles` property."
1516
- }
1517
- ],
1518
- "description": "Called when the `styles` property changes.\nRemoves the previous styles from the parent element's FAST controller and adds the new styles."
1519
- }
1520
- ],
1521
- "superclass": {
1522
- "name": "FASTElement",
1523
- "package": "@microsoft/fast-element"
1524
- },
1525
- "tagName": "slotted-styles",
1526
- "customElement": true
1527
- }
1528
- ],
1529
- "exports": [
1530
- {
1531
- "kind": "js",
1532
- "name": "SlottedStyles",
1533
- "declaration": {
1534
- "name": "SlottedStyles",
1535
- "module": "src/styles/slotted-styles.ts"
1536
- }
1537
- },
1538
- {
1539
- "kind": "custom-element-definition",
1540
- "name": "slotted-styles",
1541
- "declaration": {
1542
- "name": "SlottedStyles",
1543
- "module": "src/styles/slotted-styles.ts"
1544
- }
1545
- }
1546
- ]
1547
- },
1548
- {
1549
- "kind": "javascript-module",
1550
- "path": "src/styles/typography.ts",
1551
- "declarations": [
1552
- {
1553
- "kind": "function",
1554
- "name": "loadFontFaces",
1555
- "return": {
1556
- "type": {
1557
- "text": "void"
1558
- }
1559
- },
1560
- "parameters": [
1561
- {
1562
- "name": "fontFaceRules",
1563
- "type": {
1564
- "text": "string"
1565
- },
1566
- "description": "The CSS rules for the font faces."
1567
- },
1568
- {
1569
- "name": "styleElementId",
1570
- "type": {
1571
- "text": "string"
1572
- },
1573
- "description": "The ID of the style element to insert into the document."
1574
- }
1575
- ],
1576
- "description": "Loads font faces by inserting a style element with the specified font face rules into the document.",
1577
- "privacy": "public"
1578
- },
1579
- {
1580
- "kind": "function",
1581
- "name": "getFontMixin",
1582
- "return": {
1583
- "type": {
1584
- "text": ""
1585
- }
1586
- },
1587
- "parameters": [
1588
- {
1589
- "name": "family",
1590
- "type": {
1591
- "text": "string"
1592
- },
1593
- "description": "The font family."
1594
- },
1595
- {
1596
- "name": "style",
1597
- "default": "FontStyle.Normal",
1598
- "type": {
1599
- "text": "FontStyle"
1600
- },
1601
- "description": "Optional. The font style. Defaults to FontStyle.Normal."
1602
- },
1603
- {
1604
- "name": "weight",
1605
- "default": "FontWeight.Regular",
1606
- "type": {
1607
- "text": "FontWeight"
1608
- },
1609
- "description": "Optional. The font weight. Defaults to FontWeight.Regular."
1610
- }
1611
- ],
1612
- "description": "Generates a CSS mixin for the specified font family, style, and weight.",
1613
- "privacy": "public"
1614
- },
1615
- {
1616
- "kind": "variable",
1617
- "name": "TypeRampValues",
1618
- "type": {
1619
- "text": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
1620
- },
1621
- "default": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}",
1622
- "description": "An object containing type ramp values.",
1623
- "privacy": "public"
1624
- }
1625
- ],
1626
- "exports": [
1627
- {
1628
- "kind": "js",
1629
- "name": "loadFontFaces",
1630
- "declaration": {
1631
- "name": "loadFontFaces",
1632
- "module": "src/styles/typography.ts"
1633
- }
1634
- },
1635
- {
1636
- "kind": "js",
1637
- "name": "getFontMixin",
1638
- "declaration": {
1639
- "name": "getFontMixin",
1640
- "module": "src/styles/typography.ts"
1641
- }
1642
- },
1643
- {
1644
- "kind": "js",
1645
- "name": "TypeRampValues",
1646
- "declaration": {
1647
- "name": "TypeRampValues",
1648
- "module": "src/styles/typography.ts"
1649
- }
1650
- }
1651
- ]
1652
- },
1653
- {
1654
- "kind": "javascript-module",
1655
- "path": "src/utils/index.ts",
1656
- "declarations": [],
1657
- "exports": [
1658
- {
1659
- "kind": "js",
1660
- "name": "*",
1661
- "declaration": {
1662
- "name": "*",
1663
- "package": "./logger"
1664
- }
1665
- }
1666
- ]
1667
- },
1668
- {
1669
- "kind": "javascript-module",
1670
- "path": "src/utils/logger.ts",
1671
- "declarations": [
1672
- {
1673
- "kind": "variable",
1674
- "name": "logger"
1675
- }
1676
- ],
1677
- "exports": [
1678
- {
1679
- "kind": "js",
1680
- "name": "logger",
1681
- "declaration": {
1682
- "name": "logger",
1683
- "module": "src/utils/logger.ts"
1684
- }
1685
- }
1686
- ]
1687
- },
1688
- {
1689
- "kind": "javascript-module",
1690
- "path": "src/uuid/index.ts",
1691
- "declarations": [],
1692
- "exports": [
1693
- {
1694
- "kind": "js",
1695
- "name": "*",
1696
- "declaration": {
1697
- "name": "*",
1698
- "package": "./uuid"
1699
- }
1700
- }
1701
- ]
1702
- },
1703
- {
1704
- "kind": "javascript-module",
1705
- "path": "src/uuid/uuid.ts",
1706
- "declarations": [
1707
- {
1708
- "kind": "variable",
1709
- "name": "UUID",
1710
- "description": "A dependency injection token for the UUID interface.",
1711
- "privacy": "public"
1712
- }
1713
- ],
1714
- "exports": [
1715
- {
1716
- "kind": "js",
1717
- "name": "UUID",
1718
- "declaration": {
1719
- "name": "UUID",
1720
- "module": "src/uuid/uuid.ts"
1721
- }
1722
- }
1723
- ]
1724
- },
1725
- {
1726
- "kind": "javascript-module",
1727
- "path": "src/window/index.ts",
1728
- "declarations": [],
1729
- "exports": [
1730
- {
1731
- "kind": "js",
1732
- "name": "*",
1733
- "declaration": {
1734
- "name": "*",
1735
- "package": "./window"
1736
- }
1737
- }
1738
- ]
1739
- },
1740
- {
1741
- "kind": "javascript-module",
1742
- "path": "src/window/window.ts",
1439
+ "path": "src/window/window.ts",
1743
1440
  "declarations": [
1744
1441
  {
1745
1442
  "kind": "function",
@@ -2561,6 +2258,309 @@
2561
2258
  "path": "src/serializers/json/types.ts",
2562
2259
  "declarations": [],
2563
2260
  "exports": []
2261
+ },
2262
+ {
2263
+ "kind": "javascript-module",
2264
+ "path": "src/styles/color.ts",
2265
+ "declarations": [
2266
+ {
2267
+ "kind": "variable",
2268
+ "name": "activeColorScheme",
2269
+ "description": "A design token that represents the active color scheme (light or dark).",
2270
+ "privacy": "public"
2271
+ }
2272
+ ],
2273
+ "exports": [
2274
+ {
2275
+ "kind": "js",
2276
+ "name": "activeColorScheme",
2277
+ "declaration": {
2278
+ "name": "activeColorScheme",
2279
+ "module": "src/styles/color.ts"
2280
+ }
2281
+ }
2282
+ ]
2283
+ },
2284
+ {
2285
+ "kind": "javascript-module",
2286
+ "path": "src/styles/dom.ts",
2287
+ "declarations": [
2288
+ {
2289
+ "kind": "function",
2290
+ "name": "insertDocumentCSSRule",
2291
+ "return": {
2292
+ "type": {
2293
+ "text": ""
2294
+ }
2295
+ },
2296
+ "parameters": [
2297
+ {
2298
+ "name": "cssRule",
2299
+ "type": {
2300
+ "text": "string"
2301
+ },
2302
+ "description": "The CSS rule to insert."
2303
+ },
2304
+ {
2305
+ "name": "styleElementId",
2306
+ "type": {
2307
+ "text": "string"
2308
+ },
2309
+ "description": "The ID of the style element to use or create."
2310
+ }
2311
+ ],
2312
+ "description": "Inserts a CSS rule into the document by creating a new style element or using an existing one with the specified ID.\nReturns a function that can be called to remove the rule from the document.",
2313
+ "privacy": "public"
2314
+ },
2315
+ {
2316
+ "kind": "function",
2317
+ "name": "insertDocumentLink",
2318
+ "parameters": [
2319
+ {
2320
+ "name": "href",
2321
+ "type": {
2322
+ "text": "string"
2323
+ },
2324
+ "description": "The URL of the CSS file to insert."
2325
+ }
2326
+ ],
2327
+ "description": "Inserts a CSS link into the document if it doesn't already exist.",
2328
+ "privacy": "public"
2329
+ }
2330
+ ],
2331
+ "exports": [
2332
+ {
2333
+ "kind": "js",
2334
+ "name": "insertDocumentCSSRule",
2335
+ "declaration": {
2336
+ "name": "insertDocumentCSSRule",
2337
+ "module": "src/styles/dom.ts"
2338
+ }
2339
+ },
2340
+ {
2341
+ "kind": "js",
2342
+ "name": "insertDocumentLink",
2343
+ "declaration": {
2344
+ "name": "insertDocumentLink",
2345
+ "module": "src/styles/dom.ts"
2346
+ }
2347
+ }
2348
+ ]
2349
+ },
2350
+ {
2351
+ "kind": "javascript-module",
2352
+ "path": "src/styles/index.ts",
2353
+ "declarations": [],
2354
+ "exports": [
2355
+ {
2356
+ "kind": "js",
2357
+ "name": "*",
2358
+ "declaration": {
2359
+ "name": "*",
2360
+ "package": "./color"
2361
+ }
2362
+ },
2363
+ {
2364
+ "kind": "js",
2365
+ "name": "*",
2366
+ "declaration": {
2367
+ "name": "*",
2368
+ "package": "./dom"
2369
+ }
2370
+ },
2371
+ {
2372
+ "kind": "js",
2373
+ "name": "*",
2374
+ "declaration": {
2375
+ "name": "*",
2376
+ "package": "./slotted-styles"
2377
+ }
2378
+ },
2379
+ {
2380
+ "kind": "js",
2381
+ "name": "*",
2382
+ "declaration": {
2383
+ "name": "*",
2384
+ "package": "./typography"
2385
+ }
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "kind": "javascript-module",
2391
+ "path": "src/styles/slotted-styles.ts",
2392
+ "declarations": [
2393
+ {
2394
+ "kind": "class",
2395
+ "description": "A custom element that encapsulates a set of styles that can be applied to slotted elements.",
2396
+ "name": "SlottedStyles",
2397
+ "members": [
2398
+ {
2399
+ "kind": "field",
2400
+ "name": "styles",
2401
+ "type": {
2402
+ "text": "ElementStyles"
2403
+ },
2404
+ "description": "The styles to apply to slotted elements."
2405
+ },
2406
+ {
2407
+ "kind": "method",
2408
+ "name": "stylesChanged",
2409
+ "return": {
2410
+ "type": {
2411
+ "text": "void"
2412
+ }
2413
+ },
2414
+ "parameters": [
2415
+ {
2416
+ "name": "prev",
2417
+ "type": {
2418
+ "text": "ElementStyles"
2419
+ },
2420
+ "description": "The previous value of the `styles` property."
2421
+ },
2422
+ {
2423
+ "name": "next",
2424
+ "type": {
2425
+ "text": "ElementStyles"
2426
+ },
2427
+ "description": "The new value of the `styles` property."
2428
+ }
2429
+ ],
2430
+ "description": "Called when the `styles` property changes.\nRemoves the previous styles from the parent element's FAST controller and adds the new styles."
2431
+ }
2432
+ ],
2433
+ "superclass": {
2434
+ "name": "FASTElement",
2435
+ "package": "@microsoft/fast-element"
2436
+ },
2437
+ "tagName": "slotted-styles",
2438
+ "customElement": true
2439
+ }
2440
+ ],
2441
+ "exports": [
2442
+ {
2443
+ "kind": "js",
2444
+ "name": "SlottedStyles",
2445
+ "declaration": {
2446
+ "name": "SlottedStyles",
2447
+ "module": "src/styles/slotted-styles.ts"
2448
+ }
2449
+ },
2450
+ {
2451
+ "kind": "custom-element-definition",
2452
+ "name": "slotted-styles",
2453
+ "declaration": {
2454
+ "name": "SlottedStyles",
2455
+ "module": "src/styles/slotted-styles.ts"
2456
+ }
2457
+ }
2458
+ ]
2459
+ },
2460
+ {
2461
+ "kind": "javascript-module",
2462
+ "path": "src/styles/typography.ts",
2463
+ "declarations": [
2464
+ {
2465
+ "kind": "function",
2466
+ "name": "loadFontFaces",
2467
+ "return": {
2468
+ "type": {
2469
+ "text": "void"
2470
+ }
2471
+ },
2472
+ "parameters": [
2473
+ {
2474
+ "name": "fontFaceRules",
2475
+ "type": {
2476
+ "text": "string"
2477
+ },
2478
+ "description": "The CSS rules for the font faces."
2479
+ },
2480
+ {
2481
+ "name": "styleElementId",
2482
+ "type": {
2483
+ "text": "string"
2484
+ },
2485
+ "description": "The ID of the style element to insert into the document."
2486
+ }
2487
+ ],
2488
+ "description": "Loads font faces by inserting a style element with the specified font face rules into the document.",
2489
+ "privacy": "public"
2490
+ },
2491
+ {
2492
+ "kind": "function",
2493
+ "name": "getFontMixin",
2494
+ "return": {
2495
+ "type": {
2496
+ "text": ""
2497
+ }
2498
+ },
2499
+ "parameters": [
2500
+ {
2501
+ "name": "family",
2502
+ "type": {
2503
+ "text": "string"
2504
+ },
2505
+ "description": "The font family."
2506
+ },
2507
+ {
2508
+ "name": "style",
2509
+ "default": "FontStyle.Normal",
2510
+ "type": {
2511
+ "text": "FontStyle"
2512
+ },
2513
+ "description": "Optional. The font style. Defaults to FontStyle.Normal."
2514
+ },
2515
+ {
2516
+ "name": "weight",
2517
+ "default": "FontWeight.Regular",
2518
+ "type": {
2519
+ "text": "FontWeight"
2520
+ },
2521
+ "description": "Optional. The font weight. Defaults to FontWeight.Regular."
2522
+ }
2523
+ ],
2524
+ "description": "Generates a CSS mixin for the specified font family, style, and weight.",
2525
+ "privacy": "public"
2526
+ },
2527
+ {
2528
+ "kind": "variable",
2529
+ "name": "TypeRampValues",
2530
+ "type": {
2531
+ "text": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}"
2532
+ },
2533
+ "default": "{\n minusOne: -1,\n minusTwo: -2,\n plusOne: 1,\n plusTwo: 2,\n plusThree: 3,\n plusFour: 4,\n plusFive: 5,\n plusSix: 6,\n}",
2534
+ "description": "An object containing type ramp values.",
2535
+ "privacy": "public"
2536
+ }
2537
+ ],
2538
+ "exports": [
2539
+ {
2540
+ "kind": "js",
2541
+ "name": "loadFontFaces",
2542
+ "declaration": {
2543
+ "name": "loadFontFaces",
2544
+ "module": "src/styles/typography.ts"
2545
+ }
2546
+ },
2547
+ {
2548
+ "kind": "js",
2549
+ "name": "getFontMixin",
2550
+ "declaration": {
2551
+ "name": "getFontMixin",
2552
+ "module": "src/styles/typography.ts"
2553
+ }
2554
+ },
2555
+ {
2556
+ "kind": "js",
2557
+ "name": "TypeRampValues",
2558
+ "declaration": {
2559
+ "name": "TypeRampValues",
2560
+ "module": "src/styles/typography.ts"
2561
+ }
2562
+ }
2563
+ ]
2564
2564
  }
2565
2565
  ]
2566
2566
  }
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.88.0",
4
+ "version": "14.89.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.88.0",
23
- "@genesislcap/genx": "14.88.0",
22
+ "@genesislcap/foundation-testing": "14.89.0",
23
+ "@genesislcap/genx": "14.89.0",
24
24
  "rimraf": "^3.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@genesislcap/foundation-logger": "14.88.0",
27
+ "@genesislcap/foundation-logger": "14.89.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": "2e0aecfc90fb2ea2b2008b5b5067640d71ef13d8"
45
+ "gitHead": "e00a0f3b5ed7faff580af89e74a94f9a2e397001"
46
46
  }