@snhaman/pollymorph 1.4.0 → 1.6.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.
Files changed (45) hide show
  1. package/dist/fonts/PDS-Icon-Font-20.ttf +0 -0
  2. package/dist/fonts/PDS-Icon-Font-20.woff2 +0 -0
  3. package/dist/icons.d.mts +23 -0
  4. package/dist/icons.d.ts +23 -0
  5. package/dist/icons.js +1165 -0
  6. package/dist/icons.js.map +1 -0
  7. package/dist/icons.mjs +1135 -0
  8. package/dist/icons.mjs.map +1 -0
  9. package/dist/index.d.mts +4 -4
  10. package/dist/index.d.ts +4 -4
  11. package/dist/index.js +1742 -23
  12. package/dist/index.js.map +1 -1
  13. package/dist/index.mjs +1721 -19
  14. package/dist/index.mjs.map +1 -1
  15. package/dist/pds-icons.css +117 -0
  16. package/dist/pollymorph.css +573 -0
  17. package/dist/react-icons.d.mts +753 -0
  18. package/dist/react-icons.d.ts +753 -0
  19. package/dist/react-icons.js +3353 -0
  20. package/dist/react-icons.js.map +1 -0
  21. package/dist/react-icons.mjs +3143 -0
  22. package/dist/react-icons.mjs.map +1 -0
  23. package/dist/rules.d.mts +19 -9
  24. package/dist/rules.d.ts +19 -9
  25. package/dist/rules.js +603 -23
  26. package/dist/rules.js.map +1 -1
  27. package/dist/rules.mjs +588 -19
  28. package/dist/rules.mjs.map +1 -1
  29. package/dist/svg.d.mts +187 -0
  30. package/dist/svg.d.ts +187 -0
  31. package/dist/svg.js +1064 -0
  32. package/dist/svg.js.map +1 -0
  33. package/dist/svg.mjs +855 -0
  34. package/dist/svg.mjs.map +1 -0
  35. package/dist/tokens-B3FQ_Pbh.d.mts +221 -0
  36. package/dist/tokens-B3FQ_Pbh.d.ts +221 -0
  37. package/dist/tokens.d.mts +1 -62
  38. package/dist/tokens.d.ts +1 -62
  39. package/dist/tokens.js +558 -11
  40. package/dist/tokens.js.map +1 -1
  41. package/dist/tokens.mjs +558 -11
  42. package/dist/tokens.mjs.map +1 -1
  43. package/package.json +34 -3
  44. package/dist/types-C6UlcDOW.d.mts +0 -162
  45. package/dist/types-C6UlcDOW.d.ts +0 -162
package/dist/index.mjs CHANGED
@@ -10,7 +10,7 @@ var require_pollymorph = __commonJS({
10
10
  $schema: "https://design-tokens.github.io/community-group/format/",
11
11
  meta: {
12
12
  name: "PollyMorph",
13
- version: "1.4.0",
13
+ version: "1.6.0",
14
14
  description: "Elucidata unified design system token file. Consolidates all core primitives and semantic component tokens.",
15
15
  generatedAt: "2026-03-18",
16
16
  lastAudit: "2026-03-18",
@@ -44,7 +44,8 @@ var require_pollymorph = __commonJS({
44
44
  -80
45
45
  ],
46
46
  note: "Full computed hex ramp tokenised in v1.3.0. Each colour has a 'base' key (pure colour) plus 22 tint/shade steps."
47
- }
47
+ },
48
+ componentRulesSource: "Figma PDS-2.0-Library nodes: 850-601,602,603,605,1026-2068,7763-5244/5245,1916-4113,4718-1770,6228-7796/7063,280-59,447-188,452-304,230-280,289-101,448-191"
48
49
  },
49
50
  core: {
50
51
  color: {
@@ -1310,16 +1311,562 @@ var require_pollymorph = __commonJS({
1310
1311
  search_bar_placement: "Search bars inside the global header are centered and fill available space between the nav title and action buttons. They never span the full content width."
1311
1312
  },
1312
1313
  components: {
1313
- buttons: {
1314
- primary: "One primary button per screen. Use for the main action only.",
1315
- secondary: "Secondary actions (e.g. 'Request a Dataset') use the Secondary/Outlined variant with a purple border. Never use a filled secondary color.",
1316
- icon_button: "Icon-only action buttons (filter, view toggle, etc.) use the icon button variant with no visible border in default state."
1314
+ $description: "Component-level rules derived from PDS-2.0-Library Figma specs. Each entry covers variants, states, token values, and composition constraints.",
1315
+ button: {
1316
+ variants: {
1317
+ filled: {
1318
+ description: "Primary action. One per view maximum.",
1319
+ background: "primary.purple.base",
1320
+ text: "white",
1321
+ border: "none",
1322
+ radius: "radius.md",
1323
+ elevation: "none",
1324
+ hover: {
1325
+ background: "primary.purple[-10]"
1326
+ },
1327
+ active: {
1328
+ background: "primary.purple[-20]"
1329
+ },
1330
+ disabled: {
1331
+ background: "primary.purple[80]",
1332
+ text: "white",
1333
+ cursor: "not-allowed"
1334
+ },
1335
+ loading: "Spinner replaces label. Width preserved. No interaction."
1336
+ },
1337
+ outlined: {
1338
+ description: "Secondary action. Can appear alongside ghost.",
1339
+ background: "transparent",
1340
+ border: "1px solid primary.purple.base",
1341
+ text: "primary.purple.base",
1342
+ radius: "radius.md",
1343
+ hover: {
1344
+ background: "primary.purple[95]"
1345
+ },
1346
+ active: {
1347
+ background: "primary.purple[90]"
1348
+ },
1349
+ disabled: {
1350
+ border: "primary.purple[80]",
1351
+ text: "primary.purple[80]",
1352
+ cursor: "not-allowed"
1353
+ }
1354
+ },
1355
+ ghost: {
1356
+ description: "Tertiary action. No border, no background.",
1357
+ background: "transparent",
1358
+ border: "none",
1359
+ text: "primary.purple.base",
1360
+ radius: "radius.md",
1361
+ hover: {
1362
+ background: "primary.purple[95]"
1363
+ },
1364
+ active: {
1365
+ background: "primary.purple[90]"
1366
+ },
1367
+ disabled: {
1368
+ text: "neutral.warm[60]",
1369
+ cursor: "not-allowed"
1370
+ }
1371
+ }
1372
+ },
1373
+ sizes: {
1374
+ large: {
1375
+ height: "40px",
1376
+ paddingX: "spacing.4",
1377
+ fontSize: "font.size.md",
1378
+ iconGap: "spacing.2"
1379
+ },
1380
+ medium: {
1381
+ height: "32px",
1382
+ paddingX: "spacing.3",
1383
+ fontSize: "font.size.sm",
1384
+ iconGap: "spacing.2"
1385
+ },
1386
+ small: {
1387
+ height: "24px",
1388
+ paddingX: "spacing.2",
1389
+ fontSize: "font.size.xs",
1390
+ iconGap: "spacing.1"
1391
+ },
1392
+ xsmall: {
1393
+ height: "20px",
1394
+ paddingX: "spacing.2",
1395
+ fontSize: "font.size.xxs",
1396
+ iconGap: "spacing.1"
1397
+ }
1398
+ },
1399
+ iconPlacement: "Leading icon left of label, trailing icon right of label. Icon-only: square aspect ratio, tooltip required.",
1400
+ font: "Inter SemiBold (600). No uppercase transform.",
1401
+ radius: "radius.md (6px). Never radius.full for buttons.",
1402
+ composition: "Never stack two Filled buttons side by side. Destructive action uses red Filled variant only in modal footers."
1403
+ },
1404
+ tag: {
1405
+ variants: {
1406
+ filled: "Background: color[90] tint. Text and icon: color.base.",
1407
+ outlined: "Background: transparent. Border: 1px solid color.base. Text: color.base."
1408
+ },
1409
+ colors: {
1410
+ brand: "primary.purple.base filled, white text. Only for Polly/Elucidata-attributed labels.",
1411
+ content: "cyan, pink, blue, green, orange for data category tags.",
1412
+ statusReserved: "red and yellow reserved for status only. Never use for data category tags."
1413
+ },
1414
+ sizes: {
1415
+ medium: {
1416
+ height: "24px",
1417
+ paddingX: "spacing.2",
1418
+ fontSize: "font.size.xs"
1419
+ },
1420
+ small: {
1421
+ height: "20px",
1422
+ paddingX: "spacing.1",
1423
+ fontSize: "font.size.xxs"
1424
+ }
1425
+ },
1426
+ font: "Inter Medium (500). Never bold inside a tag.",
1427
+ radius: "radius.full (pill shape).",
1428
+ closeable: "x icon on right, same color as label. Click removes tag.",
1429
+ truncation: "Tags never wrap. Truncate with ellipsis. Set max-width on parent.",
1430
+ icon: "Optional leading icon, same color as label."
1431
+ },
1432
+ textInput: {
1433
+ states: {
1434
+ default: {
1435
+ border: "1px solid neutral.warm[70]",
1436
+ background: "white",
1437
+ placeholder: "neutral.warm[50]"
1438
+ },
1439
+ focused: {
1440
+ border: "1px solid primary.purple.base",
1441
+ shadow: "none",
1442
+ outline: "none"
1443
+ },
1444
+ filled: {
1445
+ border: "1px solid neutral.warm[70]"
1446
+ },
1447
+ error: {
1448
+ border: "1px solid red.base",
1449
+ trailingIcon: "warning icon in red.base",
1450
+ helperText: "red.base, font.size.xs"
1451
+ },
1452
+ disabled: {
1453
+ background: "neutral.warm[95]",
1454
+ border: "neutral.warm[85]",
1455
+ text: "neutral.warm[60]",
1456
+ cursor: "not-allowed"
1457
+ }
1458
+ },
1459
+ radius: "radius.sm",
1460
+ label: "Always above the field. Inter Medium (500), font.size.sm. Never inside field as permanent placeholder.",
1461
+ helperText: "Below field, neutral.warm[50], font.size.xs. Replaced by error message in error state.",
1462
+ leadingIcon: "Optional. neutral.warm[50] default, primary.purple.base when focused.",
1463
+ trailingIcon: "Password toggle, clear (x), or error indicator.",
1464
+ textarea: "Same border/state rules. Min-height 3 rows. Vertical resize only.",
1465
+ search: "Always has leading search icon. Trailing clear (x) when filled. No floating label.",
1466
+ select: {
1467
+ trailingIcon: "Chevron, rotates 180 degrees when open",
1468
+ menu: {
1469
+ background: "white",
1470
+ radius: "radius.md",
1471
+ elevation: "elevation.md"
1472
+ }
1473
+ }
1474
+ },
1475
+ selectionControl: {
1476
+ radio: {
1477
+ size: "18px",
1478
+ states: {
1479
+ default: {
1480
+ border: "1.5px solid neutral.warm[70]"
1481
+ },
1482
+ hover: {
1483
+ border: "1.5px solid primary.purple.base"
1484
+ },
1485
+ checked: {
1486
+ outerRing: "primary.purple.base",
1487
+ innerDot: "primary.purple.base"
1488
+ },
1489
+ disabled: {
1490
+ border: "neutral.warm[80]",
1491
+ dot: "neutral.warm[70]",
1492
+ cursor: "not-allowed"
1493
+ }
1494
+ }
1495
+ },
1496
+ checkbox: {
1497
+ size: "18px",
1498
+ radius: "radius.xs",
1499
+ states: {
1500
+ default: {
1501
+ border: "1.5px solid neutral.warm[70]"
1502
+ },
1503
+ hover: {
1504
+ border: "1.5px solid primary.purple.base"
1505
+ },
1506
+ checked: {
1507
+ background: "primary.purple.base",
1508
+ icon: "white checkmark"
1509
+ },
1510
+ indeterminate: {
1511
+ background: "primary.purple.base",
1512
+ icon: "white dash"
1513
+ },
1514
+ disabled: {
1515
+ background: "neutral.warm[90]",
1516
+ border: "neutral.warm[80]",
1517
+ cursor: "not-allowed"
1518
+ },
1519
+ error: {
1520
+ border: "red.base"
1521
+ }
1522
+ }
1523
+ },
1524
+ label: "Right of control. Inter Regular (400), font.size.sm. Never above or below.",
1525
+ groupSpacing: {
1526
+ vertical: "spacing.2 between items",
1527
+ horizontal: "spacing.4 gap"
1528
+ }
1529
+ },
1530
+ table: {
1531
+ container: {
1532
+ background: "white",
1533
+ radius: "radius.xl",
1534
+ elevation: "elevation.md"
1535
+ },
1536
+ header: {
1537
+ background: "neutral.warm[97]",
1538
+ font: "Label/Small SemiBold (600)",
1539
+ color: "neutral.warm[50]",
1540
+ sortIcon: "Always visible. Active column: primary.purple.base"
1541
+ },
1542
+ rows: {
1543
+ default: {
1544
+ background: "white",
1545
+ border: "1px solid neutral.warm[90] bottom"
1546
+ },
1547
+ hover: {
1548
+ background: "primary.purple[98]"
1549
+ },
1550
+ selected: {
1551
+ background: "primary.purple[95]",
1552
+ leftAccent: "3px solid primary.purple.base"
1553
+ }
1554
+ },
1555
+ cellTypes: {
1556
+ text: "Left-aligned. Inter Regular (400), font.size.sm, neutral.warm[20].",
1557
+ number: "Right-aligned. JetBrains Mono.",
1558
+ status: "Centered. Tag component.",
1559
+ actions: "Right-aligned. Icon buttons, visible on row hover. Max 3 \u2014 overflow to meatball menu."
1560
+ },
1561
+ sort: "Click cycles: ascending to descending to unsorted.",
1562
+ emptyState: "Centered illustration + headline + optional CTA. Never headers-only without empty state component.",
1563
+ pagination: {
1564
+ rowsPerPage: [
1565
+ 10,
1566
+ 25,
1567
+ 50,
1568
+ 100
1569
+ ],
1570
+ display: "Showing {start}-{end} of {total}",
1571
+ controls: "Prev/next arrows + page numbers"
1572
+ }
1573
+ },
1574
+ tabs: {
1575
+ containerBorder: "1px solid neutral.warm[85] bottom",
1576
+ indicator: "2px solid primary.purple.base bottom, active tab only",
1577
+ states: {
1578
+ active: {
1579
+ label: "primary.purple.base",
1580
+ font: "Inter SemiBold (600)"
1581
+ },
1582
+ default: {
1583
+ label: "neutral.warm[40]",
1584
+ font: "Inter Medium (500)"
1585
+ },
1586
+ hover: {
1587
+ label: "neutral.warm[20]"
1588
+ },
1589
+ disabled: {
1590
+ label: "neutral.warm[70]",
1591
+ cursor: "not-allowed"
1592
+ }
1593
+ },
1594
+ badge: {
1595
+ default: {
1596
+ background: "neutral.warm[80]",
1597
+ text: "neutral.warm[30]"
1598
+ },
1599
+ active: {
1600
+ background: "primary.purple[90]",
1601
+ text: "primary.purple.base"
1602
+ }
1603
+ },
1604
+ maxVisible: "6 tabs before dropdown overflow. No horizontal scroll.",
1605
+ style: "Indicator line only. Never filled/pill background tabs in main nav context."
1317
1606
  },
1318
- tabs: "Tabs use a bottom-border indicator in #8E42EE for the active state. Inactive tabs have no underline and use neutral text. Filled or pill-style tabs are not permitted in the main nav context.",
1319
- table_sort: "Sort controls in table headers show the sort icon alongside the label at all times \u2014 not only on hover.",
1320
- pagination: "Pagination uses the minimal numeric style with previous/next arrows. Always display the total dataset count alongside (e.g. 'Showing 1\u201325 of 345').",
1321
- sidebar_active_state: "Active sidebar nav item is indicated by a left-side purple pill/accent bar only. No background fill, icon color change, or text weight change. This is the only permitted active state pattern for sidebar nav.",
1322
- notification_badges: "Notification badges on sidebar icons use the red semantic color token. Small, circular, positioned top-right of the icon."
1607
+ sidebarNav: {
1608
+ background: "platform.sidebar.surfaces (#211D33)",
1609
+ item: {
1610
+ default: {
1611
+ icon: "white",
1612
+ label: "neutral.warm[70]",
1613
+ padding: "spacing.3 vertical"
1614
+ },
1615
+ hover: {
1616
+ background: "rgba(255,255,255,0.06)",
1617
+ radius: "radius.sm"
1618
+ },
1619
+ active: {
1620
+ leftAccent: "3px solid primary.purple[60]",
1621
+ label: "white",
1622
+ icon: "primary.purple[60]"
1623
+ }
1624
+ },
1625
+ divider: "1px solid platform.sidebar.stroke (#433B60)",
1626
+ iconSize: "20px. Always use PDS-Icon-Font-20 or SVG. Never emoji or text characters.",
1627
+ notificationBadge: {
1628
+ background: "red.base",
1629
+ text: "white",
1630
+ position: "top-right of icon",
1631
+ maxDisplay: "99+"
1632
+ },
1633
+ collapseBehavior: "Never collapses to icon-only on desktop. Mobile: drawer/overlay."
1634
+ },
1635
+ breadcrumb: {
1636
+ separator: "/ or > in neutral.warm[60], spacing.2 each side",
1637
+ crumbs: {
1638
+ nonCurrent: {
1639
+ color: "primary.purple.base",
1640
+ hoverDecoration: "underline"
1641
+ },
1642
+ current: {
1643
+ color: "neutral.warm[30]",
1644
+ interactive: "false"
1645
+ }
1646
+ },
1647
+ font: "Inter Regular (400), font.size.sm",
1648
+ maxDepth: "4 levels. Collapse middle levels to ellipsis if deeper."
1649
+ },
1650
+ modal: {
1651
+ overlay: "rgba(0,0,0,0.4) full-screen",
1652
+ container: {
1653
+ background: "white",
1654
+ radius: "radius.xl",
1655
+ elevation: "elevation.lg",
1656
+ border: "1px solid neutral.warm[85]"
1657
+ },
1658
+ sizes: {
1659
+ popup: {
1660
+ maxWidth: "480px",
1661
+ scrollable: "false",
1662
+ use: "Confirmations, quick forms"
1663
+ },
1664
+ modal: {
1665
+ maxWidth: "720px",
1666
+ maxHeight: "80vh",
1667
+ bodyScrollable: "true",
1668
+ use: "Complex forms, data views"
1669
+ }
1670
+ },
1671
+ header: {
1672
+ background: "primary.purple[98]",
1673
+ padding: "spacing.4 spacing.5",
1674
+ title: "Inter SemiBold (600), font.size.md, neutral.warm[10]",
1675
+ closeButton: "Ghost icon button, top-right, always present"
1676
+ },
1677
+ body: {
1678
+ background: "white",
1679
+ padding: "spacing.5",
1680
+ scrollbar: "Thin, primary.purple[60] track, visible during scroll only"
1681
+ },
1682
+ footer: {
1683
+ padding: "spacing.4 spacing.5",
1684
+ border: "1px solid neutral.warm[90] top",
1685
+ alignment: "right",
1686
+ buttonPattern: "Tertiary (ghost) + Primary (filled). Destructive: red Filled.",
1687
+ note: "Never ghost for destructive actions."
1688
+ },
1689
+ animation: "200ms fade + subtle scale on open/close",
1690
+ closing: "x button, overlay click (configurable), Escape key",
1691
+ nesting: "Never nest modals. Use multi-step flow within same modal instead."
1692
+ },
1693
+ snackbar: {
1694
+ position: "Bottom-right. Stacks upward if multiple queued.",
1695
+ container: {
1696
+ background: "white",
1697
+ radius: "radius.md",
1698
+ elevation: "elevation.md",
1699
+ border: "1px solid neutral.warm[85]",
1700
+ width: "320px-480px"
1701
+ },
1702
+ variants: {
1703
+ default: {
1704
+ icon: "none or neutral info icon"
1705
+ },
1706
+ success: {
1707
+ icon: "green check-circle, green.base"
1708
+ },
1709
+ error: {
1710
+ icon: "red error-circle, red.base"
1711
+ },
1712
+ warning: {
1713
+ icon: "orange warning-triangle, orange.base"
1714
+ }
1715
+ },
1716
+ sizes: {
1717
+ compact: "Single line: icon + title + optional action + dismiss",
1718
+ expanded: "Icon + title + body text + optional action + dismiss"
1719
+ },
1720
+ content: {
1721
+ title: "Inter SemiBold (600), font.size.sm, neutral.warm[10]. Required.",
1722
+ body: "Inter Regular (400), font.size.sm, neutral.warm[30]. Optional.",
1723
+ action: "One maximum. Right-aligned text link, primary.purple.base. Style: Open / Undo / View.",
1724
+ dismiss: "x ghost icon button, top-right. Always present."
1725
+ },
1726
+ autoDismiss: "Default/Success: 4 seconds. Error/Warning: manual dismiss only.",
1727
+ background: "Always white. Never colored backgrounds \u2014 icon carries semantic meaning.",
1728
+ persistence: "Not for persistent messages. Use top-of-content-area banner for those."
1729
+ },
1730
+ tooltip: {
1731
+ variants: {
1732
+ dark: {
1733
+ background: "neutral.warm[-70]",
1734
+ border: "none",
1735
+ text: "white"
1736
+ },
1737
+ light: {
1738
+ background: "white",
1739
+ border: "1px solid neutral.warm[85]",
1740
+ text: "neutral.warm[10]"
1741
+ }
1742
+ },
1743
+ shared: {
1744
+ radius: "radius.sm",
1745
+ elevation: "elevation.sm",
1746
+ padding: "spacing.1 spacing.2",
1747
+ maxWidth: "200px",
1748
+ font: "Inter Regular (400), font.size.xs"
1749
+ },
1750
+ arrow: "6px triangle pointing toward trigger. Matches tooltip background. 4 directions + alignment variants.",
1751
+ trigger: "Hover or focus. 300ms appear delay. Immediate dismiss on mouse-out.",
1752
+ usage: {
1753
+ dark: "Default for icon-only triggers (sidebar icons, action buttons).",
1754
+ light: "Longer descriptive text.",
1755
+ restriction: "Supplementary labels only. Never for critical task information. Never interactive elements inside \u2014 use hover card instead."
1756
+ }
1757
+ },
1758
+ hoverCard: {
1759
+ trigger: "Hover over element (table cell, username, tag). 400ms delay.",
1760
+ container: {
1761
+ background: "white",
1762
+ radius: "radius.lg",
1763
+ elevation: "elevation.md",
1764
+ border: "1px solid neutral.warm[85]",
1765
+ width: "220px-320px"
1766
+ },
1767
+ header: "Title: Inter SemiBold (600), font.size.sm. Optional meatball menu icon button on right.",
1768
+ body: "Inter Regular (400), font.size.sm, neutral.warm[20]. Short text, key-value pairs, or small list.",
1769
+ footer: "None. Hover cards are read-only. Use popup for actions.",
1770
+ arrow: "Optional. Use when card needs visual connection to trigger in dense layouts.",
1771
+ dismiss: "On mouse-out (no delay) or when focus leaves."
1772
+ },
1773
+ commentThread: {
1774
+ input: {
1775
+ placeholder: "Enter your comment here.",
1776
+ sendButton: "Icon button, primary.purple.base bg, white arrow icon, trailing. Active only when input non-empty.",
1777
+ sendButtonDisabled: "Muted purple when empty."
1778
+ },
1779
+ postedComment: {
1780
+ avatar: "User initials, primary.purple.base background, white text.",
1781
+ header: "Display name (SemiBold) + timestamp (neutral.warm[50], font.size.xs) on one line.",
1782
+ body: "Inter Regular (400), font.size.sm."
1783
+ },
1784
+ actions: "Thumbs-up + count, reply link. neutral.warm[50] default, primary.purple.base on hover.",
1785
+ nesting: "Max 2 levels. Replies: left-indent with 2px solid neutral.warm[85] left border.",
1786
+ highlighted: {
1787
+ background: "primary.purple[95]",
1788
+ border: "1px dashed primary.purple.base",
1789
+ radius: "radius.md"
1790
+ }
1791
+ },
1792
+ chartColors: {
1793
+ sequence: [
1794
+ {
1795
+ index: 1,
1796
+ color: "secondary.purple (tint)",
1797
+ use: "First data series"
1798
+ },
1799
+ {
1800
+ index: 2,
1801
+ color: "orange.base",
1802
+ use: "Second data series"
1803
+ },
1804
+ {
1805
+ index: 3,
1806
+ color: "pink.base",
1807
+ use: "Third data series"
1808
+ },
1809
+ {
1810
+ index: 4,
1811
+ color: "cyan.base",
1812
+ use: "Fourth data series"
1813
+ },
1814
+ {
1815
+ index: 5,
1816
+ color: "blue.base",
1817
+ use: "Fifth data series"
1818
+ },
1819
+ {
1820
+ index: 6,
1821
+ color: "neutral.warm.base",
1822
+ use: "Sixth data series"
1823
+ },
1824
+ {
1825
+ index: 7,
1826
+ color: "green.base",
1827
+ use: "Seventh data series"
1828
+ },
1829
+ {
1830
+ index: 8,
1831
+ color: "neutral.orange",
1832
+ use: "Eighth data series"
1833
+ },
1834
+ {
1835
+ index: 9,
1836
+ color: "red.base",
1837
+ use: "Ninth data series"
1838
+ }
1839
+ ],
1840
+ rules: [
1841
+ "Apply colors in sequence. Do not skip or reorder.",
1842
+ "Each color has a chart tint (~20% lightened) and an offset variant for comparison charts.",
1843
+ "Chart colors for data visualisation only. Never repurpose for UI status.",
1844
+ "More than 9 series: wrap palette at 0.6x opacity. Never invent new colors.",
1845
+ "Minimum 3:1 contrast between adjacent chart segments."
1846
+ ]
1847
+ },
1848
+ cliColors: {
1849
+ sqlCLI: {
1850
+ keywords: "secondary.purple[-20]",
1851
+ comments: "orange[-20]",
1852
+ strings: "pink[-30]",
1853
+ numeralsDatetime: "cyan[-20]",
1854
+ atoms: "blue[-20]",
1855
+ generic: "neutral[-40]",
1856
+ identifiers: "green[-30]",
1857
+ brackets: "neutral.orange[-20]",
1858
+ errorText: "red[-40]"
1859
+ },
1860
+ logCLI: {
1861
+ background: "neutral[-70]",
1862
+ debug: "cyan[40]",
1863
+ warning: "orange[50]",
1864
+ error: "pink[90]",
1865
+ critical: "red[0]",
1866
+ info: "green[50]",
1867
+ regularText: "neutral[95]"
1868
+ }
1869
+ }
1323
1870
  },
1324
1871
  spacing: {
1325
1872
  card_padding: "Internal card padding uses spacing.4 (1rem) on all sides.",
@@ -1394,6 +1941,7 @@ var radiusFull = "9999px";
1394
1941
  // src/rules.ts
1395
1942
  var raw2 = require_pollymorph();
1396
1943
  var rules = raw2.rules;
1944
+ var componentRules = raw2.rules.components;
1397
1945
  var rulePrimaryPurple = raw2.rules.color.brand.primary_purple;
1398
1946
  var rulePrimaryOrange = raw2.rules.color.brand.primary_orange;
1399
1947
  var ruleNonBrandAccents = raw2.rules.color.brand.non_brand_accents;
@@ -1414,11 +1962,1148 @@ var ruleFontMixing = raw2.rules.typography.font_families.mixing_rule;
1414
1962
  var rulePageStructure = raw2.rules.layout.page_structure;
1415
1963
  var ruleCards = raw2.rules.layout.cards;
1416
1964
  var ruleTables = raw2.rules.layout.tables;
1417
- var ruleButtonPrimary = raw2.rules.components.buttons.primary;
1418
- var ruleButtonSecondary = raw2.rules.components.buttons.secondary;
1965
+ var ruleButton = raw2.rules.components.button;
1966
+ var ruleTag = raw2.rules.components.tag;
1967
+ var ruleTextInput = raw2.rules.components.textInput;
1968
+ var ruleSelection = raw2.rules.components.selectionControl;
1969
+ var ruleTable = raw2.rules.components.table;
1419
1970
  var ruleTabs = raw2.rules.components.tabs;
1420
- var ruleSidebarActiveState = raw2.rules.components.sidebar_active_state;
1421
- var rulePagination = raw2.rules.components.pagination;
1971
+ var ruleSidebarNav = raw2.rules.components.sidebarNav;
1972
+ var ruleBreadcrumb = raw2.rules.components.breadcrumb;
1973
+ var ruleModal = raw2.rules.components.modal;
1974
+ var ruleSnackbar = raw2.rules.components.snackbar;
1975
+ var ruleTooltip = raw2.rules.components.tooltip;
1976
+ var ruleHoverCard = raw2.rules.components.hoverCard;
1977
+ var ruleCommentThread = raw2.rules.components.commentThread;
1978
+ var ruleChartColors = raw2.rules.components.chartColors;
1979
+ var ruleCLIColors = raw2.rules.components.cliColors;
1980
+
1981
+ // src/icons.ts
1982
+ var icons = [
1983
+ {
1984
+ "num": 1,
1985
+ "name": "meatballsSettings",
1986
+ "codepoint": "U+E900",
1987
+ "unicode": "\uE900",
1988
+ "inFont": true
1989
+ },
1990
+ {
1991
+ "num": 2,
1992
+ "name": "addToShortlist",
1993
+ "codepoint": "U+E901",
1994
+ "unicode": "\uE901",
1995
+ "inFont": true
1996
+ },
1997
+ {
1998
+ "num": 3,
1999
+ "name": "shortlist",
2000
+ "codepoint": "U+E902",
2001
+ "unicode": "\uE902",
2002
+ "inFont": true
2003
+ },
2004
+ {
2005
+ "num": 4,
2006
+ "name": "uploadFile",
2007
+ "codepoint": "U+E903",
2008
+ "unicode": "\uE903",
2009
+ "inFont": true
2010
+ },
2011
+ {
2012
+ "num": 5,
2013
+ "name": "downloadFile",
2014
+ "codepoint": "U+E904",
2015
+ "unicode": "\uE904",
2016
+ "inFont": true
2017
+ },
2018
+ {
2019
+ "num": 6,
2020
+ "name": "edit",
2021
+ "codepoint": "U+E905",
2022
+ "unicode": "\uE905",
2023
+ "inFont": true
2024
+ },
2025
+ {
2026
+ "num": 7,
2027
+ "name": "duplicateOrCopy",
2028
+ "codepoint": "U+E906",
2029
+ "unicode": "\uE906",
2030
+ "inFont": true
2031
+ },
2032
+ {
2033
+ "num": 8,
2034
+ "name": "print",
2035
+ "codepoint": "U+E907",
2036
+ "unicode": "\uE907",
2037
+ "inFont": true
2038
+ },
2039
+ {
2040
+ "num": 9,
2041
+ "name": "openInNewWindow",
2042
+ "codepoint": "U+E908",
2043
+ "unicode": "\uE908",
2044
+ "inFont": true
2045
+ },
2046
+ {
2047
+ "num": 10,
2048
+ "name": "tableEditor",
2049
+ "codepoint": "U+E909",
2050
+ "unicode": "\uE909",
2051
+ "inFont": true
2052
+ },
2053
+ {
2054
+ "num": 11,
2055
+ "name": "tableSort",
2056
+ "codepoint": "U+E90A",
2057
+ "unicode": "\uE90A",
2058
+ "inFont": true
2059
+ },
2060
+ {
2061
+ "num": 12,
2062
+ "name": "save",
2063
+ "codepoint": "U+E90B",
2064
+ "unicode": "\uE90B",
2065
+ "inFont": true
2066
+ },
2067
+ {
2068
+ "num": 13,
2069
+ "name": "delete",
2070
+ "codepoint": "U+E90C",
2071
+ "unicode": "\uE90C",
2072
+ "inFont": true
2073
+ },
2074
+ {
2075
+ "num": 14,
2076
+ "name": "openFolder",
2077
+ "codepoint": "U+E90D",
2078
+ "unicode": "\uE90D",
2079
+ "inFont": true
2080
+ },
2081
+ {
2082
+ "num": 15,
2083
+ "name": "analyse",
2084
+ "codepoint": "U+E90E",
2085
+ "unicode": "\uE90E",
2086
+ "inFont": true
2087
+ },
2088
+ {
2089
+ "num": 16,
2090
+ "name": "starEmpty",
2091
+ "codepoint": "U+E90F",
2092
+ "unicode": "\uE90F",
2093
+ "inFont": true
2094
+ },
2095
+ {
2096
+ "num": 17,
2097
+ "name": "filter",
2098
+ "codepoint": "U+E910",
2099
+ "unicode": "\uE910",
2100
+ "inFont": true
2101
+ },
2102
+ {
2103
+ "num": 18,
2104
+ "name": "add",
2105
+ "codepoint": "U+E911",
2106
+ "unicode": "\uE911",
2107
+ "inFont": true
2108
+ },
2109
+ {
2110
+ "num": 19,
2111
+ "name": "contract",
2112
+ "codepoint": "U+E912",
2113
+ "unicode": "\uE912",
2114
+ "inFont": true
2115
+ },
2116
+ {
2117
+ "num": 20,
2118
+ "name": "expand",
2119
+ "codepoint": "U+E913",
2120
+ "unicode": "\uE913",
2121
+ "inFont": true
2122
+ },
2123
+ {
2124
+ "num": 21,
2125
+ "name": "close",
2126
+ "codepoint": "U+E914",
2127
+ "unicode": "\uE914",
2128
+ "inFont": true
2129
+ },
2130
+ {
2131
+ "num": 22,
2132
+ "name": "upChevron",
2133
+ "codepoint": "U+E915",
2134
+ "unicode": "\uE915",
2135
+ "inFont": true
2136
+ },
2137
+ {
2138
+ "num": 23,
2139
+ "name": "leftChevron",
2140
+ "codepoint": "U+E916",
2141
+ "unicode": "\uE916",
2142
+ "inFont": true
2143
+ },
2144
+ {
2145
+ "num": 24,
2146
+ "name": "rightChevron",
2147
+ "codepoint": "U+E917",
2148
+ "unicode": "\uE917",
2149
+ "inFont": true
2150
+ },
2151
+ {
2152
+ "num": 25,
2153
+ "name": "expandChevron",
2154
+ "codepoint": "U+E918",
2155
+ "unicode": "\uE918",
2156
+ "inFont": true
2157
+ },
2158
+ {
2159
+ "num": 26,
2160
+ "name": "upCarrot",
2161
+ "codepoint": "U+E919",
2162
+ "unicode": "\uE919",
2163
+ "inFont": true
2164
+ },
2165
+ {
2166
+ "num": 27,
2167
+ "name": "leftCarrot",
2168
+ "codepoint": "U+E91A",
2169
+ "unicode": "\uE91A",
2170
+ "inFont": true
2171
+ },
2172
+ {
2173
+ "num": 28,
2174
+ "name": "rightCarrot",
2175
+ "codepoint": "U+E91B",
2176
+ "unicode": "\uE91B",
2177
+ "inFont": true
2178
+ },
2179
+ {
2180
+ "num": 29,
2181
+ "name": "downCarrot",
2182
+ "codepoint": "U+E91C",
2183
+ "unicode": "\uE91C",
2184
+ "inFont": true
2185
+ },
2186
+ {
2187
+ "num": 30,
2188
+ "name": "arrowUp",
2189
+ "codepoint": "U+E91D",
2190
+ "unicode": "\uE91D",
2191
+ "inFont": true
2192
+ },
2193
+ {
2194
+ "num": 31,
2195
+ "name": "arrowLeftBack",
2196
+ "codepoint": "U+E91E",
2197
+ "unicode": "\uE91E",
2198
+ "inFont": true
2199
+ },
2200
+ {
2201
+ "num": 32,
2202
+ "name": "arrowRightForward",
2203
+ "codepoint": "U+E91F",
2204
+ "unicode": "\uE91F",
2205
+ "inFont": true
2206
+ },
2207
+ {
2208
+ "num": 33,
2209
+ "name": "arrowDown",
2210
+ "codepoint": "U+E920",
2211
+ "unicode": "\uE920",
2212
+ "inFont": true
2213
+ },
2214
+ {
2215
+ "num": 34,
2216
+ "name": "northEast",
2217
+ "codepoint": "U+E921",
2218
+ "unicode": "\uE921",
2219
+ "inFont": true
2220
+ },
2221
+ {
2222
+ "num": 35,
2223
+ "name": "northWest",
2224
+ "codepoint": "U+E922",
2225
+ "unicode": "\uE922",
2226
+ "inFont": true
2227
+ },
2228
+ {
2229
+ "num": 36,
2230
+ "name": "southEast",
2231
+ "codepoint": "U+E923",
2232
+ "unicode": "\uE923",
2233
+ "inFont": true
2234
+ },
2235
+ {
2236
+ "num": 37,
2237
+ "name": "southWest",
2238
+ "codepoint": "U+E924",
2239
+ "unicode": "\uE924",
2240
+ "inFont": true
2241
+ },
2242
+ {
2243
+ "num": 38,
2244
+ "name": "arrowForwardLarge",
2245
+ "codepoint": "U+E925",
2246
+ "unicode": "\uE925",
2247
+ "inFont": true
2248
+ },
2249
+ {
2250
+ "num": 39,
2251
+ "name": "arrowBackLarge",
2252
+ "codepoint": "U+E926",
2253
+ "unicode": "\uE926",
2254
+ "inFont": true
2255
+ },
2256
+ {
2257
+ "num": 40,
2258
+ "name": "skipToFirst",
2259
+ "codepoint": "U+E927",
2260
+ "unicode": "\uE927",
2261
+ "inFont": true
2262
+ },
2263
+ {
2264
+ "num": 41,
2265
+ "name": "skipToLast",
2266
+ "codepoint": "U+E928",
2267
+ "unicode": "\uE928",
2268
+ "inFont": true
2269
+ },
2270
+ {
2271
+ "num": 42,
2272
+ "name": "starFull",
2273
+ "codepoint": "U+E929",
2274
+ "unicode": "\uE929",
2275
+ "inFont": true
2276
+ },
2277
+ {
2278
+ "num": 43,
2279
+ "name": "visibilityOn",
2280
+ "codepoint": "U+E92A",
2281
+ "unicode": "\uE92A",
2282
+ "inFont": true
2283
+ },
2284
+ {
2285
+ "num": 44,
2286
+ "name": "visibilityOff",
2287
+ "codepoint": "U+E92B",
2288
+ "unicode": "\uE92B",
2289
+ "inFont": true
2290
+ },
2291
+ {
2292
+ "num": 45,
2293
+ "name": "pinned",
2294
+ "codepoint": "U+E92C",
2295
+ "unicode": "\uE92C",
2296
+ "inFont": true
2297
+ },
2298
+ {
2299
+ "num": 46,
2300
+ "name": "pin",
2301
+ "codepoint": "U+E92D",
2302
+ "unicode": "\uE92D",
2303
+ "inFont": true
2304
+ },
2305
+ {
2306
+ "num": 47,
2307
+ "name": "starHalf",
2308
+ "codepoint": "U+E92E",
2309
+ "unicode": "\uE92E",
2310
+ "inFont": true
2311
+ },
2312
+ {
2313
+ "num": 48,
2314
+ "name": "previousArrow",
2315
+ "codepoint": "U+E92F",
2316
+ "unicode": "\uE92F",
2317
+ "inFont": true
2318
+ },
2319
+ {
2320
+ "num": 49,
2321
+ "name": "nextArrow",
2322
+ "codepoint": "U+E930",
2323
+ "unicode": "\uE930",
2324
+ "inFont": true
2325
+ },
2326
+ {
2327
+ "num": 50,
2328
+ "name": "folderOpen",
2329
+ "codepoint": "U+E931",
2330
+ "unicode": "\uE931",
2331
+ "inFont": true
2332
+ },
2333
+ {
2334
+ "num": 51,
2335
+ "name": "folder",
2336
+ "codepoint": "U+E932",
2337
+ "unicode": "\uE932",
2338
+ "inFont": true
2339
+ },
2340
+ {
2341
+ "num": 52,
2342
+ "name": "createNewFolder",
2343
+ "codepoint": "U+E933",
2344
+ "unicode": "\uE933",
2345
+ "inFont": true
2346
+ },
2347
+ {
2348
+ "num": 53,
2349
+ "name": "uploadFolder",
2350
+ "codepoint": "U+E934",
2351
+ "unicode": "\uE934",
2352
+ "inFont": true
2353
+ },
2354
+ {
2355
+ "num": 54,
2356
+ "name": "archive",
2357
+ "codepoint": "U+E935",
2358
+ "unicode": "\uE935",
2359
+ "inFont": true
2360
+ },
2361
+ {
2362
+ "num": 55,
2363
+ "name": "unarchive",
2364
+ "codepoint": "U+E936",
2365
+ "unicode": "\uE936",
2366
+ "inFont": true
2367
+ },
2368
+ {
2369
+ "num": 56,
2370
+ "name": "link",
2371
+ "codepoint": "U+E937",
2372
+ "unicode": "\uE937",
2373
+ "inFont": true
2374
+ },
2375
+ {
2376
+ "num": 57,
2377
+ "name": "done",
2378
+ "codepoint": "U+E938",
2379
+ "unicode": "\uE938",
2380
+ "inFont": true
2381
+ },
2382
+ {
2383
+ "num": 58,
2384
+ "name": "chartIcon",
2385
+ "codepoint": "U+E939",
2386
+ "unicode": "\uE939",
2387
+ "inFont": true
2388
+ },
2389
+ {
2390
+ "num": 59,
2391
+ "name": "document",
2392
+ "codepoint": "U+E93A",
2393
+ "unicode": "\uE93A",
2394
+ "inFont": true
2395
+ },
2396
+ {
2397
+ "num": 60,
2398
+ "name": "codeDocument",
2399
+ "codepoint": "U+E93B",
2400
+ "unicode": "\uE93B",
2401
+ "inFont": true
2402
+ },
2403
+ {
2404
+ "num": 61,
2405
+ "name": "info",
2406
+ "codepoint": "U+E93C",
2407
+ "unicode": "\uE93C",
2408
+ "inFont": true
2409
+ },
2410
+ {
2411
+ "num": 62,
2412
+ "name": "swap",
2413
+ "codepoint": "U+E93D",
2414
+ "unicode": "\uE93D",
2415
+ "inFont": true
2416
+ },
2417
+ {
2418
+ "num": 63,
2419
+ "name": "description",
2420
+ "codepoint": "U+E93E",
2421
+ "unicode": "\uE93E",
2422
+ "inFont": true
2423
+ },
2424
+ {
2425
+ "num": 64,
2426
+ "name": "history",
2427
+ "codepoint": "U+E93F",
2428
+ "unicode": "\uE93F",
2429
+ "inFont": true
2430
+ },
2431
+ {
2432
+ "num": 65,
2433
+ "name": "rename",
2434
+ "codepoint": "U+E940",
2435
+ "unicode": "\uE940",
2436
+ "inFont": true
2437
+ },
2438
+ {
2439
+ "num": 66,
2440
+ "name": "panMove",
2441
+ "codepoint": "U+E941",
2442
+ "unicode": "\uE941",
2443
+ "inFont": true
2444
+ },
2445
+ {
2446
+ "num": 67,
2447
+ "name": "github",
2448
+ "codepoint": "U+E942",
2449
+ "unicode": "\uE942",
2450
+ "inFont": true
2451
+ },
2452
+ {
2453
+ "num": 68,
2454
+ "name": "curation",
2455
+ "codepoint": "U+E943",
2456
+ "unicode": "\uE943",
2457
+ "inFont": true
2458
+ },
2459
+ {
2460
+ "num": 69,
2461
+ "name": "helpAndSupport",
2462
+ "codepoint": "U+E944",
2463
+ "unicode": "\uE944",
2464
+ "inFont": true
2465
+ },
2466
+ {
2467
+ "num": 70,
2468
+ "name": "userProfile",
2469
+ "codepoint": "U+E945",
2470
+ "unicode": "\uE945",
2471
+ "inFont": true
2472
+ },
2473
+ {
2474
+ "num": 71,
2475
+ "name": "settings",
2476
+ "codepoint": "U+E946",
2477
+ "unicode": "\uE946",
2478
+ "inFont": true
2479
+ },
2480
+ {
2481
+ "num": 72,
2482
+ "name": "notification",
2483
+ "codepoint": "U+E947",
2484
+ "unicode": "\uE947",
2485
+ "inFont": true
2486
+ },
2487
+ {
2488
+ "num": 73,
2489
+ "name": "ingestion",
2490
+ "codepoint": "U+E948",
2491
+ "unicode": "\uE948",
2492
+ "inFont": true
2493
+ },
2494
+ {
2495
+ "num": 74,
2496
+ "name": "omixLogoSimple",
2497
+ "codepoint": "U+E949",
2498
+ "unicode": "\uE949",
2499
+ "inFont": true
2500
+ },
2501
+ {
2502
+ "num": 75,
2503
+ "name": "workspaces",
2504
+ "codepoint": "U+E94A",
2505
+ "unicode": "\uE94A",
2506
+ "inFont": true
2507
+ },
2508
+ {
2509
+ "num": 76,
2510
+ "name": "application",
2511
+ "codepoint": "U+E94B",
2512
+ "unicode": "\uE94B",
2513
+ "inFont": true
2514
+ },
2515
+ {
2516
+ "num": 77,
2517
+ "name": "usersOA",
2518
+ "codepoint": "U+E94C",
2519
+ "unicode": "\uE94C",
2520
+ "inFont": true
2521
+ },
2522
+ {
2523
+ "num": 78,
2524
+ "name": "admin",
2525
+ "codepoint": "U+E94D",
2526
+ "unicode": "\uE94D",
2527
+ "inFont": true
2528
+ },
2529
+ {
2530
+ "num": 79,
2531
+ "name": "costWallet",
2532
+ "codepoint": "U+E94E",
2533
+ "unicode": "\uE94E",
2534
+ "inFont": true
2535
+ },
2536
+ {
2537
+ "num": 80,
2538
+ "name": "splitView",
2539
+ "codepoint": "U+E94F",
2540
+ "unicode": "\uE94F",
2541
+ "inFont": true
2542
+ },
2543
+ {
2544
+ "num": 81,
2545
+ "name": "summaryView",
2546
+ "codepoint": "U+E9B0",
2547
+ "unicode": "\uE9B0",
2548
+ "inFont": true,
2549
+ "codepointUnverified": true
2550
+ },
2551
+ {
2552
+ "num": 82,
2553
+ "name": "listView",
2554
+ "codepoint": "U+E9B1",
2555
+ "unicode": "\uE9B1",
2556
+ "inFont": true,
2557
+ "codepointUnverified": true
2558
+ },
2559
+ {
2560
+ "num": 83,
2561
+ "name": "cardView",
2562
+ "codepoint": "U+E9B2",
2563
+ "unicode": "\uE9B2",
2564
+ "inFont": true,
2565
+ "codepointUnverified": true
2566
+ },
2567
+ {
2568
+ "num": 84,
2569
+ "name": "tableView",
2570
+ "codepoint": "U+E9B3",
2571
+ "unicode": "\uE9B3",
2572
+ "inFont": true,
2573
+ "codepointUnverified": true
2574
+ },
2575
+ {
2576
+ "num": 85,
2577
+ "name": "cancelRound",
2578
+ "codepoint": "U+E9B4",
2579
+ "unicode": "\uE9B4",
2580
+ "inFont": true,
2581
+ "codepointUnverified": true
2582
+ },
2583
+ {
2584
+ "num": 86,
2585
+ "name": "userSingle",
2586
+ "codepoint": "U+E9B5",
2587
+ "unicode": "\uE9B5",
2588
+ "inFont": true,
2589
+ "codepointUnverified": true
2590
+ },
2591
+ {
2592
+ "num": 87,
2593
+ "name": "addUser",
2594
+ "codepoint": "U+E9B6",
2595
+ "unicode": "\uE9B6",
2596
+ "inFont": true,
2597
+ "codepointUnverified": true
2598
+ },
2599
+ {
2600
+ "num": 88,
2601
+ "name": "calendarEvent",
2602
+ "codepoint": "U+E9B7",
2603
+ "unicode": "\uE9B7",
2604
+ "inFont": true,
2605
+ "codepointUnverified": true
2606
+ },
2607
+ {
2608
+ "num": 89,
2609
+ "name": "calendarEmpty",
2610
+ "codepoint": "U+E9B8",
2611
+ "unicode": "\uE9B8",
2612
+ "inFont": true,
2613
+ "codepointUnverified": true
2614
+ },
2615
+ {
2616
+ "num": 90,
2617
+ "name": "calendarMonth",
2618
+ "inFont": false
2619
+ },
2620
+ {
2621
+ "num": 91,
2622
+ "name": "alarm",
2623
+ "inFont": false
2624
+ },
2625
+ {
2626
+ "num": 92,
2627
+ "name": "loadingIcon",
2628
+ "inFont": false
2629
+ },
2630
+ {
2631
+ "num": 93,
2632
+ "name": "search",
2633
+ "inFont": false
2634
+ },
2635
+ {
2636
+ "num": 94,
2637
+ "name": "dragHandle",
2638
+ "inFont": false
2639
+ },
2640
+ {
2641
+ "num": 95,
2642
+ "name": "sortAscending",
2643
+ "inFont": false
2644
+ },
2645
+ {
2646
+ "num": 96,
2647
+ "name": "sortDescending",
2648
+ "inFont": false
2649
+ },
2650
+ {
2651
+ "num": 97,
2652
+ "name": "emptyFlag",
2653
+ "inFont": false
2654
+ },
2655
+ {
2656
+ "num": 98,
2657
+ "name": "filledFlag",
2658
+ "inFont": false
2659
+ },
2660
+ {
2661
+ "num": 99,
2662
+ "name": "refreshIcon",
2663
+ "inFont": false
2664
+ },
2665
+ {
2666
+ "num": 100,
2667
+ "name": "pollyFlow",
2668
+ "inFont": false
2669
+ },
2670
+ {
2671
+ "num": 101,
2672
+ "name": "pollyPipelines",
2673
+ "inFont": false
2674
+ },
2675
+ {
2676
+ "num": 102,
2677
+ "name": "hamburgerMenuToggle",
2678
+ "inFont": false
2679
+ },
2680
+ {
2681
+ "num": 103,
2682
+ "name": "hamburgerMenu",
2683
+ "inFont": false
2684
+ },
2685
+ {
2686
+ "num": 104,
2687
+ "name": "checkBoxSelected",
2688
+ "inFont": false
2689
+ },
2690
+ {
2691
+ "num": 105,
2692
+ "name": "checkBoxIndeterminate",
2693
+ "inFont": false
2694
+ },
2695
+ {
2696
+ "num": 106,
2697
+ "name": "addReport",
2698
+ "inFont": false
2699
+ },
2700
+ {
2701
+ "num": 107,
2702
+ "name": "viewReport",
2703
+ "inFont": false
2704
+ },
2705
+ {
2706
+ "num": 108,
2707
+ "name": "key",
2708
+ "inFont": false
2709
+ },
2710
+ {
2711
+ "num": 109,
2712
+ "name": "databaseIcon",
2713
+ "inFont": false
2714
+ },
2715
+ {
2716
+ "num": 110,
2717
+ "name": "databaseSettings",
2718
+ "inFont": false
2719
+ },
2720
+ {
2721
+ "num": 111,
2722
+ "name": "databaseEditIcon",
2723
+ "inFont": false
2724
+ },
2725
+ {
2726
+ "num": 112,
2727
+ "name": "databaseAddIcon",
2728
+ "inFont": false
2729
+ },
2730
+ {
2731
+ "num": 113,
2732
+ "name": "frameworkOntologyFlowchart",
2733
+ "inFont": false
2734
+ },
2735
+ {
2736
+ "num": 114,
2737
+ "name": "thumbUpFilled",
2738
+ "inFont": false
2739
+ },
2740
+ {
2741
+ "num": 115,
2742
+ "name": "thumbUp",
2743
+ "inFont": false
2744
+ },
2745
+ {
2746
+ "num": 116,
2747
+ "name": "thumbDownFilled",
2748
+ "inFont": false
2749
+ },
2750
+ {
2751
+ "num": 117,
2752
+ "name": "thumbDown",
2753
+ "inFont": false
2754
+ },
2755
+ {
2756
+ "num": 118,
2757
+ "name": "mailIcon",
2758
+ "inFont": false
2759
+ },
2760
+ {
2761
+ "num": 119,
2762
+ "name": "reply",
2763
+ "inFont": false
2764
+ },
2765
+ {
2766
+ "num": 120,
2767
+ "name": "send",
2768
+ "inFont": false
2769
+ },
2770
+ {
2771
+ "num": 121,
2772
+ "name": "chatIcon",
2773
+ "inFont": false
2774
+ },
2775
+ {
2776
+ "num": 122,
2777
+ "name": "comment",
2778
+ "inFont": false
2779
+ },
2780
+ {
2781
+ "num": 123,
2782
+ "name": "editTableIcon",
2783
+ "inFont": false
2784
+ },
2785
+ {
2786
+ "num": 124,
2787
+ "name": "addTable",
2788
+ "inFont": false
2789
+ },
2790
+ {
2791
+ "num": 125,
2792
+ "name": "editTableRow",
2793
+ "inFont": false
2794
+ },
2795
+ {
2796
+ "num": 126,
2797
+ "name": "addTableRow",
2798
+ "inFont": false
2799
+ },
2800
+ {
2801
+ "num": 127,
2802
+ "name": "editTableColumn",
2803
+ "inFont": false
2804
+ },
2805
+ {
2806
+ "num": 128,
2807
+ "name": "addTableColumn",
2808
+ "inFont": false
2809
+ },
2810
+ {
2811
+ "num": 129,
2812
+ "name": "dashboardIcon",
2813
+ "inFont": false
2814
+ },
2815
+ {
2816
+ "num": 130,
2817
+ "name": "organisationIcon",
2818
+ "inFont": false
2819
+ },
2820
+ {
2821
+ "num": 131,
2822
+ "name": "detailsIcons",
2823
+ "inFont": false
2824
+ },
2825
+ {
2826
+ "num": 132,
2827
+ "name": "userGroups",
2828
+ "inFont": false
2829
+ },
2830
+ {
2831
+ "num": 133,
2832
+ "name": "foreignKey",
2833
+ "inFont": false
2834
+ },
2835
+ {
2836
+ "num": 134,
2837
+ "name": "blockCancelled",
2838
+ "inFont": false
2839
+ },
2840
+ {
2841
+ "num": 135,
2842
+ "name": "hourglassRunning",
2843
+ "inFont": false
2844
+ },
2845
+ {
2846
+ "num": 136,
2847
+ "name": "checkCircleDone",
2848
+ "inFont": false
2849
+ },
2850
+ {
2851
+ "num": 137,
2852
+ "name": "warning",
2853
+ "inFont": false
2854
+ },
2855
+ {
2856
+ "num": 138,
2857
+ "name": "cohorts",
2858
+ "inFont": false
2859
+ },
2860
+ {
2861
+ "num": 139,
2862
+ "name": "medicine",
2863
+ "inFont": false
2864
+ },
2865
+ {
2866
+ "num": 140,
2867
+ "name": "aiIcon",
2868
+ "inFont": false
2869
+ },
2870
+ {
2871
+ "num": 141,
2872
+ "name": "aiKnowledge",
2873
+ "inFont": false
2874
+ },
2875
+ {
2876
+ "num": 142,
2877
+ "name": "aiInsights",
2878
+ "inFont": false
2879
+ },
2880
+ {
2881
+ "num": 143,
2882
+ "name": "dataProductIcon",
2883
+ "inFont": false
2884
+ },
2885
+ {
2886
+ "num": 144,
2887
+ "name": "performance",
2888
+ "inFont": false
2889
+ },
2890
+ {
2891
+ "num": 145,
2892
+ "name": "collections",
2893
+ "inFont": false
2894
+ },
2895
+ {
2896
+ "num": 146,
2897
+ "name": "config",
2898
+ "inFont": false
2899
+ },
2900
+ {
2901
+ "num": 147,
2902
+ "name": "reviewerTasks",
2903
+ "inFont": false
2904
+ },
2905
+ {
2906
+ "num": 148,
2907
+ "name": "chatHistory",
2908
+ "inFont": false
2909
+ },
2910
+ {
2911
+ "num": 149,
2912
+ "name": "shareIcon",
2913
+ "inFont": false
2914
+ },
2915
+ {
2916
+ "num": 150,
2917
+ "name": "collectionsAlt",
2918
+ "inFont": false
2919
+ },
2920
+ {
2921
+ "num": 151,
2922
+ "name": "reviewerTasksAlt",
2923
+ "inFont": false
2924
+ },
2925
+ {
2926
+ "num": 152,
2927
+ "name": "pollyScout",
2928
+ "inFont": false
2929
+ },
2930
+ {
2931
+ "num": 153,
2932
+ "name": "pendingTasks",
2933
+ "inFont": false
2934
+ },
2935
+ {
2936
+ "num": 154,
2937
+ "name": "pollyXtract",
2938
+ "inFont": false
2939
+ },
2940
+ {
2941
+ "num": 155,
2942
+ "name": "logout",
2943
+ "inFont": false
2944
+ },
2945
+ {
2946
+ "num": 156,
2947
+ "name": "login",
2948
+ "inFont": false
2949
+ },
2950
+ {
2951
+ "num": 157,
2952
+ "name": "mic",
2953
+ "inFont": false
2954
+ },
2955
+ {
2956
+ "num": 158,
2957
+ "name": "micOff",
2958
+ "inFont": false
2959
+ },
2960
+ {
2961
+ "num": 159,
2962
+ "name": "attach",
2963
+ "inFont": false
2964
+ },
2965
+ {
2966
+ "num": 160,
2967
+ "name": "aiInsight",
2968
+ "inFont": false
2969
+ },
2970
+ {
2971
+ "num": 161,
2972
+ "name": "pollyKG",
2973
+ "inFont": false
2974
+ },
2975
+ {
2976
+ "num": 162,
2977
+ "name": "video",
2978
+ "inFont": false
2979
+ },
2980
+ {
2981
+ "num": 163,
2982
+ "name": "files",
2983
+ "inFont": false
2984
+ },
2985
+ {
2986
+ "num": 164,
2987
+ "name": "audio",
2988
+ "inFont": false
2989
+ },
2990
+ {
2991
+ "num": 165,
2992
+ "name": "camera",
2993
+ "inFont": false
2994
+ },
2995
+ {
2996
+ "num": 166,
2997
+ "name": "images",
2998
+ "inFont": false
2999
+ },
3000
+ {
3001
+ "num": 167,
3002
+ "name": "pollyPipelinesAlt",
3003
+ "inFont": false
3004
+ },
3005
+ {
3006
+ "num": 168,
3007
+ "name": "coScientistIcon",
3008
+ "inFont": false
3009
+ },
3010
+ {
3011
+ "num": 169,
3012
+ "name": "youtubeSearchedFor",
3013
+ "inFont": false
3014
+ },
3015
+ {
3016
+ "num": 170,
3017
+ "name": "zoomIn",
3018
+ "inFont": false
3019
+ },
3020
+ {
3021
+ "num": 171,
3022
+ "name": "zoomOut",
3023
+ "inFont": false
3024
+ },
3025
+ {
3026
+ "num": 172,
3027
+ "name": "addCircle",
3028
+ "inFont": false
3029
+ },
3030
+ {
3031
+ "num": 173,
3032
+ "name": "addCircleOutline",
3033
+ "inFont": false
3034
+ },
3035
+ {
3036
+ "num": 174,
3037
+ "name": "remove",
3038
+ "inFont": false
3039
+ },
3040
+ {
3041
+ "num": 175,
3042
+ "name": "removeCircle",
3043
+ "inFont": false
3044
+ },
3045
+ {
3046
+ "num": 176,
3047
+ "name": "removeCircleOutline",
3048
+ "inFont": false
3049
+ },
3050
+ {
3051
+ "num": 177,
3052
+ "name": "playArrow",
3053
+ "inFont": false
3054
+ },
3055
+ {
3056
+ "num": 178,
3057
+ "name": "pause",
3058
+ "inFont": false
3059
+ },
3060
+ {
3061
+ "num": 179,
3062
+ "name": "stop",
3063
+ "inFont": false
3064
+ },
3065
+ {
3066
+ "num": 180,
3067
+ "name": "playCircle",
3068
+ "inFont": false
3069
+ },
3070
+ {
3071
+ "num": 181,
3072
+ "name": "pauseCircle",
3073
+ "inFont": false
3074
+ },
3075
+ {
3076
+ "num": 182,
3077
+ "name": "stopCircle",
3078
+ "inFont": false
3079
+ },
3080
+ {
3081
+ "num": 183,
3082
+ "name": "replay",
3083
+ "inFont": false
3084
+ },
3085
+ {
3086
+ "num": 184,
3087
+ "name": "loopRefreshUpdate",
3088
+ "inFont": false
3089
+ },
3090
+ {
3091
+ "num": 185,
3092
+ "name": "forward",
3093
+ "inFont": false
3094
+ }
3095
+ ];
3096
+ var fontIcons = icons.filter((i) => i.inFont);
3097
+ var svgIcons = icons.filter((i) => !i.inFont);
3098
+ function getIcon(name) {
3099
+ return icons.find((i) => i.name === name);
3100
+ }
3101
+ function getIconChar(name) {
3102
+ return icons.find((i) => i.name === name)?.unicode;
3103
+ }
3104
+ var iconCharMap = Object.fromEntries(
3105
+ icons.filter((i) => i.inFont && i.unicode).map((i) => [i.name, i.unicode])
3106
+ );
1422
3107
 
1423
3108
  // src/index.ts
1424
3109
  var raw3 = require_pollymorph();
@@ -1452,18 +3137,24 @@ export {
1452
3137
  colorSidebarStroke,
1453
3138
  colorWhite,
1454
3139
  colorYellow,
3140
+ componentRules,
1455
3141
  src_default as default,
1456
3142
  fontFamilyBase,
1457
3143
  fontFamilyGrotesk,
1458
3144
  fontFamilyIcon,
1459
3145
  fontFamilyInter,
1460
3146
  fontFamilyJetbrains,
3147
+ fontIcons,
1461
3148
  fontWeightBold,
1462
3149
  fontWeightExtraThick,
1463
3150
  fontWeightMedium,
1464
3151
  fontWeightNormal,
1465
3152
  fontWeightSemiBold,
1466
3153
  fontWeightThick,
3154
+ getIcon,
3155
+ getIconChar,
3156
+ iconCharMap,
3157
+ icons,
1467
3158
  radius2xl,
1468
3159
  radiusFull,
1469
3160
  radiusLg,
@@ -1471,31 +3162,41 @@ export {
1471
3162
  radiusNone,
1472
3163
  radiusSm,
1473
3164
  radiusXl,
1474
- ruleButtonPrimary,
1475
- ruleButtonSecondary,
3165
+ ruleBreadcrumb,
3166
+ ruleButton,
3167
+ ruleCLIColors,
1476
3168
  ruleCardBg,
1477
3169
  ruleCards,
3170
+ ruleChartColors,
3171
+ ruleCommentThread,
1478
3172
  ruleFontInter,
1479
3173
  ruleFontMixing,
1480
3174
  ruleFontMono,
1481
3175
  ruleFontSpaceGrotesk,
3176
+ ruleHoverCard,
1482
3177
  ruleInteractiveLinks,
3178
+ ruleModal,
1483
3179
  ruleMutedText,
1484
3180
  ruleNonBrandAccents,
1485
3181
  rulePageStructure,
1486
- rulePagination,
1487
3182
  rulePlatformSurface,
1488
3183
  rulePrimaryOrange,
1489
3184
  rulePrimaryPurple,
1490
- ruleSidebarActiveState,
3185
+ ruleSelection,
1491
3186
  ruleSidebarBg,
3187
+ ruleSidebarNav,
1492
3188
  ruleSidebarStroke,
3189
+ ruleSnackbar,
1493
3190
  ruleStatusBlue,
1494
3191
  ruleStatusGreen,
1495
3192
  ruleStatusRed,
1496
3193
  ruleStatusYellow,
3194
+ ruleTable,
1497
3195
  ruleTables,
1498
3196
  ruleTabs,
3197
+ ruleTag,
3198
+ ruleTextInput,
3199
+ ruleTooltip,
1499
3200
  rules,
1500
3201
  spacing0,
1501
3202
  spacing1,
@@ -1508,6 +3209,7 @@ export {
1508
3209
  spacing5,
1509
3210
  spacing6,
1510
3211
  spacing8,
3212
+ svgIcons,
1511
3213
  tokens
1512
3214
  };
1513
3215
  //# sourceMappingURL=index.mjs.map