@1money/component-ui 0.0.32 → 0.0.34

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 (47) hide show
  1. package/es/components/Copy/Clipboard.d.ts +6 -0
  2. package/es/components/Copy/Clipboard.js +43 -0
  3. package/es/components/Copy/index.d.ts +1 -0
  4. package/es/components/Copy/index.js +2 -1
  5. package/es/components/Copy/interface.d.ts +16 -0
  6. package/es/components/Copy/style/Clipboard.css +1 -0
  7. package/es/components/Copy/style/css.js +2 -1
  8. package/es/components/Copy/style/index.d.ts +1 -0
  9. package/es/components/Copy/style/index.js +2 -1
  10. package/es/components/Dialog/Dialog.js +9 -31
  11. package/es/components/Dialog/constants.d.ts +0 -3
  12. package/es/components/Dialog/constants.js +1 -4
  13. package/es/components/Dialog/interface.d.ts +0 -1
  14. package/es/components/Dialog/style/Dialog.css +1 -1
  15. package/es/components/Icons/Icons.d.ts +2 -1
  16. package/es/components/Icons/Icons.js +3 -2
  17. package/es/components/Icons/Illustrations.d.ts +1 -0
  18. package/es/components/Icons/Illustrations.js +70 -8
  19. package/es/index.css +1 -1
  20. package/es/index.d.ts +2 -2
  21. package/es/index.js +2 -2
  22. package/es/styles/index.css +1 -1
  23. package/lib/components/Copy/Clipboard.d.ts +6 -0
  24. package/lib/components/Copy/Clipboard.js +53 -0
  25. package/lib/components/Copy/index.d.ts +1 -0
  26. package/lib/components/Copy/index.js +10 -2
  27. package/lib/components/Copy/interface.d.ts +16 -0
  28. package/lib/components/Copy/style/Clipboard.css +1 -0
  29. package/lib/components/Copy/style/css.js +2 -1
  30. package/lib/components/Copy/style/index.d.ts +1 -0
  31. package/lib/components/Copy/style/index.js +2 -1
  32. package/lib/components/Dialog/Dialog.js +9 -31
  33. package/lib/components/Dialog/constants.d.ts +0 -3
  34. package/lib/components/Dialog/constants.js +1 -4
  35. package/lib/components/Dialog/interface.d.ts +0 -1
  36. package/lib/components/Dialog/style/Dialog.css +1 -1
  37. package/lib/components/Icons/Icons.d.ts +2 -1
  38. package/lib/components/Icons/Icons.js +2 -1
  39. package/lib/components/Icons/Illustrations.d.ts +1 -0
  40. package/lib/components/Icons/Illustrations.js +71 -9
  41. package/lib/index.css +1 -1
  42. package/lib/index.d.ts +2 -2
  43. package/lib/index.js +7 -1
  44. package/lib/styles/index.css +1 -1
  45. package/package.json +1 -1
  46. package/scripts/mcp-server/examples.generated.json +36 -12
  47. package/scripts/mcp-server/index.generated.json +140 -13
@@ -445,12 +445,6 @@
445
445
  "source": "stories",
446
446
  "compilable": true
447
447
  },
448
- "341d33a3398e2a18e0d6bd76c9602a448d9a775132d0ccb1e3591038cec0fa5c": {
449
- "title": "Usage",
450
- "code": "<Dialog\n open={open}\n title=\"Confirm transfer\"\n description=\"Review the details before submitting.\"\n onCancel={() => setOpen(false)}\n onOk={handleSubmit}\n/>",
451
- "source": "readme",
452
- "compilable": true
453
- },
454
448
  "34536f5f5abc20bc7255387d21700a4725ea8d6f9806b09cb947375f7afde43c": {
455
449
  "title": "Label Right",
456
450
  "code": "<div style={{ display: 'flex', flexDirection: 'column', gap: 16 }}>\n <Switch {...args} label=\"Label\" description=\"Description\" labelPlacement=\"right\" />\n <Switch {...args} label=\"Label\" description=\"Description\" labelPlacement=\"right\" defaultChecked />\n </div>",
@@ -919,6 +913,12 @@
919
913
  "source": "stories",
920
914
  "compilable": false
921
915
  },
916
+ "69f29e0647a74609f6aaa9ea3dc6ffa3559143861f405d2fd72e046abddd390a": {
917
+ "title": "Import",
918
+ "code": "import { Clipboard } from '@1money/components-ui';\n// or\nimport { Clipboard } from '@1money/components-ui/Copy';",
919
+ "source": "readme",
920
+ "compilable": true
921
+ },
922
922
  "6a4d77a29ff76bfcd465b53ac79952fae765bb337ef3ca2affc7781ce487a74f": {
923
923
  "title": "With Icon End",
924
924
  "code": "<Button {...args} iconEnd={<Icons name=\"arrowRight\" />}>\n Icon End\n </Button>",
@@ -961,6 +961,12 @@
961
961
  "source": "canonical",
962
962
  "compilable": true
963
963
  },
964
+ "6ea2fa87fa2050f0e9e5f271bfbcac33d12cf62034f24d55257ec9955430ef59": {
965
+ "title": "Usage",
966
+ "code": "<Clipboard\n label=\"Setup Key\"\n content=\"GWKLDLVE25dfLIJOHUD578JPIHD24JLJGHGOUH27HLIHOUGOLIKHJ547HOU\"\n onSuccess={(val) => console.log('Copied:', val)}\n onError={(val) => console.log('Failed:', val)}\n/>",
967
+ "source": "readme",
968
+ "compilable": true
969
+ },
964
970
  "6f2b7da00479a6033fdaca36f0646a924c61cbf09cd0e07da6948a884af98a61": {
965
971
  "title": "Dependency",
966
972
  "code": "<ProForm\n {...args}\n initialValues={{ hasAccount: false, accountType: '' }}\n >\n <ProFormSwitch name=\"hasAccount\" label=\"Has Account\" />\n <ProFormDependency name={['hasAccount']}>\n {({ hasAccount }) =>\n hasAccount ? (\n <>\n <ProFormText\n name=\"accountId\"\n label=\"Account ID\"\n rules={[{ required: true }]}\n />\n <ProFormText name=\"accountName\" label=\"Account Name\" />\n </>\n ) : null\n }\n </ProFormDependency>\n </ProForm>",
@@ -1015,6 +1021,12 @@
1015
1021
  "source": "stories",
1016
1022
  "compilable": false
1017
1023
  },
1024
+ "75fc55f93a5502c927a0f7967cd25465c98417b3afe02ec8880531efc12a3362": {
1025
+ "title": "Canonical usage",
1026
+ "code": "import { Clipboard } from '@1money/components-ui';\n\n<Clipboard\n label=\"Setup Key\"\n content=\"GWKLDLVE25dfLIJOHUD578JPIHD24JLJGHGOUH27HLIHOUGOLIKHJ547HOU\"\n onSuccess={(v) => console.log(v)}\n/>",
1027
+ "source": "canonical",
1028
+ "compilable": true
1029
+ },
1018
1030
  "76052e611a155b488f8eee38973e3b050274bc58b0a974f66b8c9a55e77e28b6": {
1019
1031
  "title": "Canonical usage",
1020
1032
  "code": "import { Typography } from '@1money/components-ui';\n// or\nimport { Typography } from '@1money/components-ui/Typography';",
@@ -1279,12 +1291,6 @@
1279
1291
  "source": "stories",
1280
1292
  "compilable": false
1281
1293
  },
1282
- "92d700fd2da1bf06587fe4c86118bff9b3b4b42eb3ec5a4c9a790f7ac8950ff6": {
1283
- "title": "Illustrations",
1284
- "code": "{\n const handleCopy = (el: string) => {\n copy(el);\n };\n\n return <div style={{ display: 'grid', gap: 24, gridTemplateColumns: 'repeat(auto-fill, minmax(200px, 1fr))' }}>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusChecked' />\")}>\n <Icons {...args} name='illusChecked' />\n <span>illusChecked</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusEmailError' />\")}>\n <Icons {...args} name='illusEmailError' />\n <span>illusEmailError</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusLinkExpired' />\")}>\n <Icons {...args} name='illusLinkExpired' />\n <span>illusLinkExpired</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illus2FA' />\")}>\n <Icons {...args} name='illus2FA' />\n <span>illus2FA</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusLocked' />\")}>\n <Icons {...args} name='illusLocked' />\n <span>illusLocked</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusError' />\")}>\n <Icons {...args} name='illusError' />\n <span>illusError</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusRegionNotSupported' />\")}>\n <Icons {...args} name='illusRegionNotSupported' />\n <span>illusRegionNotSupported</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusID' />\")}>\n <Icons {...args} name='illusID' />\n <span>illusID</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusVerification' />\")}>\n <Icons {...args} name='illusVerification' />\n <span>illusVerification</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusPending' />\")}>\n <Icons {...args} name='illusPending' color='#F4C600' />\n <span>illusPending</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusPasskey' />\")}>\n <Icons {...args} name='illusPasskey' />\n <span>illusPasskey</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusAddAccount' />\")}>\n <Icons {...args} name='illusAddAccount' />\n <span>illusAddAccount</span>\n </CopyIconBox>\n </div>;\n }",
1285
- "source": "stories",
1286
- "compilable": false
1287
- },
1288
1294
  "93778978611c05850a486471281bd8bb01ceeac22d3d7708ec1c59aaefb0ae95": {
1289
1295
  "title": "Canonical usage",
1290
1296
  "code": "import { Alert } from '@1money/components-ui';\n// or\nimport { Alert } from '@1money/components-ui/Alert';",
@@ -1957,6 +1963,12 @@
1957
1963
  "source": "canonical",
1958
1964
  "compilable": true
1959
1965
  },
1966
+ "deeed04202c3f64b444b70c4f7e483cfb165662a2c6508394c229835f70cf112": {
1967
+ "title": "Clipboard Field",
1968
+ "code": "<div style={{ display: 'flex', flexDirection: 'column', gap: 16}}>\n <Clipboard\n label=\"Setup Key\"\n content=\"GWKLDLVE25dfLIJOHUD578JPIHD24JLJGHGOUH27HLIHOUGOLIKHJ547HOU\"\n onSuccess={COPY_SUCCESS}\n onError={COPY_ERROR}\n />\n <Clipboard\n content=\"0x96789C2b0f47B3F7BbEcbB5C12a2d0eA5d9afd89\"\n onSuccess={COPY_SUCCESS}\n onError={COPY_ERROR}\n />\n </div>",
1969
+ "source": "stories",
1970
+ "compilable": true
1971
+ },
1960
1972
  "df516870a4f3b627969e2e1b0c6fc40fccc4ccb0fb7c04a34e5e169a928de479": {
1961
1973
  "title": "Usage",
1962
1974
  "code": "<Cell iconStart=\"security\" iconEnd=\"arrowRight\" active>\n Authenticator app\n</Cell>",
@@ -2005,6 +2017,12 @@
2005
2017
  "source": "readme",
2006
2018
  "compilable": true
2007
2019
  },
2020
+ "e57037f057f4da5ac90baae9ad1d85153cb48c9cfff34a65cbe2a927bf5cb713": {
2021
+ "title": "Usage",
2022
+ "code": "<Dialog\n open={open}\n title=\"Confirm transfer\"\n onCancel={() => setOpen(false)}\n onOk={handleSubmit}\n/>",
2023
+ "source": "readme",
2024
+ "compilable": true
2025
+ },
2008
2026
  "e590bf2afc81b30b930dada6662ca8d5f1563febfe83f4e804b82bdeaa55d9e3": {
2009
2027
  "title": "Value Enum",
2010
2028
  "code": "<ProForm\n {...args}\n onFinish={(values) => alert(JSON.stringify(values, null, 2))}\n >\n <ProFormSelect\n name=\"status\"\n label=\"Status\"\n valueEnum={{ active: 'Active', inactive: 'Inactive', pending: { text: 'Pending', disabled: true } }}\n />\n <ProFormRadioGroup\n name=\"role\"\n label=\"Role\"\n valueEnum={{ admin: 'Admin', editor: 'Editor', viewer: 'Viewer' }}\n />\n </ProForm>",
@@ -2059,6 +2077,12 @@
2059
2077
  "source": "stories",
2060
2078
  "compilable": true
2061
2079
  },
2080
+ "ed5aa33f8e734dad460aa9b2a7c6fc0690efc9cda3b0854c642d59b2bbf55870": {
2081
+ "title": "Illustrations",
2082
+ "code": "{\n const handleCopy = (el: string) => {\n copy(el);\n };\n\n return <div style={{ display: 'grid', gap: 24, gridTemplateColumns: 'repeat(auto-fill, minmax(200px, 1fr))' }}>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusChecked' />\")}>\n <Icons {...args} name='illusChecked' />\n <span>illusChecked</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusEmailError' />\")}>\n <Icons {...args} name='illusEmailError' />\n <span>illusEmailError</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusLinkExpired' />\")}>\n <Icons {...args} name='illusLinkExpired' />\n <span>illusLinkExpired</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illus2FA' />\")}>\n <Icons {...args} name='illus2FA' />\n <span>illus2FA</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusLocked' />\")}>\n <Icons {...args} name='illusLocked' />\n <span>illusLocked</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusError' />\")}>\n <Icons {...args} name='illusError' />\n <span>illusError</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusRegionNotSupported' />\")}>\n <Icons {...args} name='illusRegionNotSupported' />\n <span>illusRegionNotSupported</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusID' />\")}>\n <Icons {...args} name='illusID' />\n <span>illusID</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusVerification' />\")}>\n <Icons {...args} name='illusVerification' />\n <span>illusVerification</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusPending' />\")}>\n <Icons {...args} name='illusPending' color='#F4C600' />\n <span>illusPending</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusPasskey' />\")}>\n <Icons {...args} name='illusPasskey' />\n <span>illusPasskey</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusAddAccount' />\")}>\n <Icons {...args} name='illusAddAccount' />\n <span>illusAddAccount</span>\n </CopyIconBox>\n <CopyIconBox onClick={() => handleCopy(\"<Icons name='illusRewards' />\")}>\n <Icons {...args} name='illusRewards' />\n <span>illusRewards</span>\n </CopyIconBox>\n </div>;\n }",
2083
+ "source": "stories",
2084
+ "compilable": false
2085
+ },
2062
2086
  "ede4a5629c02420f621373a9169c9671b906cc09439931df34b222da85911147": {
2063
2087
  "title": "With Action",
2064
2088
  "code": "<Alert\n {...args}\n status=\"info\"\n title=\"Payment instruction ready\"\n body=\"Share the deposit instruction with your treasury team or copy it directly.\"\n link={{ label: 'Preview instruction', onClick: fn() }}\n action={<Button onClick={fn()}>Copy details</Button>}\n closable={false}\n />",
@@ -1421,6 +1421,118 @@
1421
1421
  }
1422
1422
  ]
1423
1423
  },
1424
+ {
1425
+ "name": "Clipboard",
1426
+ "kind": "component",
1427
+ "category": "input",
1428
+ "summary": "",
1429
+ "importPath": "@1money/component-ui",
1430
+ "subpathImport": "@1money/component-ui/Copy",
1431
+ "sourceFile": "src/components/Copy/Clipboard.tsx",
1432
+ "props": [
1433
+ {
1434
+ "name": "content",
1435
+ "type": "string",
1436
+ "optional": false,
1437
+ "default": null,
1438
+ "description": "The text content to display and copy to clipboard",
1439
+ "inheritedFrom": null
1440
+ },
1441
+ {
1442
+ "name": "label",
1443
+ "type": "string",
1444
+ "optional": true,
1445
+ "default": null,
1446
+ "description": "Optional label rendered above the content card",
1447
+ "inheritedFrom": null
1448
+ },
1449
+ {
1450
+ "name": "className",
1451
+ "type": "string",
1452
+ "optional": true,
1453
+ "default": null,
1454
+ "description": "Additional CSS class names for the root element",
1455
+ "inheritedFrom": null
1456
+ },
1457
+ {
1458
+ "name": "labelCls",
1459
+ "type": "string",
1460
+ "optional": true,
1461
+ "default": null,
1462
+ "description": "Additional CSS class names for the label",
1463
+ "inheritedFrom": null
1464
+ },
1465
+ {
1466
+ "name": "prefixCls",
1467
+ "type": "string",
1468
+ "optional": true,
1469
+ "default": null,
1470
+ "description": "CSS class name prefix (default: 'clipboard')",
1471
+ "inheritedFrom": null
1472
+ },
1473
+ {
1474
+ "name": "onSuccess",
1475
+ "type": "(value: string) => void",
1476
+ "optional": true,
1477
+ "default": null,
1478
+ "description": "Callback fired when the copy operation succeeds",
1479
+ "inheritedFrom": null
1480
+ },
1481
+ {
1482
+ "name": "onError",
1483
+ "type": "(value: string) => void",
1484
+ "optional": true,
1485
+ "default": null,
1486
+ "description": "Callback fired when the copy operation fails",
1487
+ "inheritedFrom": null
1488
+ }
1489
+ ],
1490
+ "extends": [],
1491
+ "relatedSymbols": [
1492
+ "ClipboardProps",
1493
+ "Copy",
1494
+ "CopyProps"
1495
+ ],
1496
+ "searchTags": [
1497
+ "clipboard",
1498
+ "copy",
1499
+ "copy to clipboard",
1500
+ "copyable field",
1501
+ "secret field"
1502
+ ],
1503
+ "canonicalUsage": "import { Clipboard } from '@1money/components-ui';\n\n<Clipboard\n label=\"Setup Key\"\n content=\"GWKLDLVE25dfLIJOHUD578JPIHD24JLJGHGOUH27HLIHOUGOLIKHJ547HOU\"\n onSuccess={(v) => console.log(v)}\n/>",
1504
+ "examples": [
1505
+ {
1506
+ "hash": "75fc55f93a5502c927a0f7967cd25465c98417b3afe02ec8880531efc12a3362",
1507
+ "source": "canonical"
1508
+ }
1509
+ ]
1510
+ },
1511
+ {
1512
+ "name": "ClipboardProps",
1513
+ "kind": "type",
1514
+ "category": "input",
1515
+ "summary": "",
1516
+ "importPath": "@1money/component-ui",
1517
+ "subpathImport": "@1money/component-ui/Copy",
1518
+ "sourceFile": "src/components/Copy/interface.ts",
1519
+ "props": [],
1520
+ "extends": [],
1521
+ "relatedSymbols": [
1522
+ "Clipboard",
1523
+ "Copy",
1524
+ "CopyProps"
1525
+ ],
1526
+ "searchTags": [],
1527
+ "typeText": "interface ClipboardProps { ... }",
1528
+ "canonicalUsage": "import { Copy } from '@1money/components-ui';\n// or\nimport { Copy } from '@1money/components-ui/Copy';",
1529
+ "examples": [
1530
+ {
1531
+ "hash": "95dc922235c54890ef40e287095692b232702132d592073e3c6b66efd6929f50",
1532
+ "source": "canonical"
1533
+ }
1534
+ ]
1535
+ },
1424
1536
  {
1425
1537
  "name": "CoachMark",
1426
1538
  "kind": "component",
@@ -1779,9 +1891,15 @@
1779
1891
  ],
1780
1892
  "extends": [],
1781
1893
  "relatedSymbols": [
1894
+ "Clipboard",
1895
+ "ClipboardProps",
1782
1896
  "CopyProps"
1783
1897
  ],
1784
- "searchTags": [],
1898
+ "searchTags": [
1899
+ "clipboard",
1900
+ "copy",
1901
+ "copy to clipboard"
1902
+ ],
1785
1903
  "canonicalUsage": "import { Copy } from '@1money/components-ui';\n// or\nimport { Copy } from '@1money/components-ui/Copy';",
1786
1904
  "examples": [
1787
1905
  {
@@ -1796,9 +1914,21 @@
1796
1914
  "hash": "b040eead4ef6d0382049572436b1eb5a21c9357a41e519f5204a58fc04e0c1ab",
1797
1915
  "source": "readme"
1798
1916
  },
1917
+ {
1918
+ "hash": "69f29e0647a74609f6aaa9ea3dc6ffa3559143861f405d2fd72e046abddd390a",
1919
+ "source": "readme"
1920
+ },
1921
+ {
1922
+ "hash": "6ea2fa87fa2050f0e9e5f271bfbcac33d12cf62034f24d55257ec9955430ef59",
1923
+ "source": "readme"
1924
+ },
1799
1925
  {
1800
1926
  "hash": "144e248f0e0e1f5a681bdd8625add8d71643d3cca3f40bd840d914b057970d9a",
1801
1927
  "source": "stories"
1928
+ },
1929
+ {
1930
+ "hash": "deeed04202c3f64b444b70c4f7e483cfb165662a2c6508394c229835f70cf112",
1931
+ "source": "stories"
1802
1932
  }
1803
1933
  ]
1804
1934
  },
@@ -1813,6 +1943,8 @@
1813
1943
  "props": [],
1814
1944
  "extends": [],
1815
1945
  "relatedSymbols": [
1946
+ "Clipboard",
1947
+ "ClipboardProps",
1816
1948
  "Copy"
1817
1949
  ],
1818
1950
  "searchTags": [],
@@ -1970,14 +2102,6 @@
1970
2102
  "description": "",
1971
2103
  "inheritedFrom": null
1972
2104
  },
1973
- {
1974
- "name": "description",
1975
- "type": "ReactNode",
1976
- "optional": true,
1977
- "default": null,
1978
- "description": "",
1979
- "inheritedFrom": null
1980
- },
1981
2105
  {
1982
2106
  "name": "children",
1983
2107
  "type": "ReactNode",
@@ -2154,7 +2278,7 @@
2154
2278
  "source": "readme"
2155
2279
  },
2156
2280
  {
2157
- "hash": "341d33a3398e2a18e0d6bd76c9602a448d9a775132d0ccb1e3591038cec0fa5c",
2281
+ "hash": "e57037f057f4da5ac90baae9ad1d85153cb48c9cfff34a65cbe2a927bf5cb713",
2158
2282
  "source": "readme"
2159
2283
  },
2160
2284
  {
@@ -4374,7 +4498,7 @@
4374
4498
  "source": "stories"
4375
4499
  },
4376
4500
  {
4377
- "hash": "92d700fd2da1bf06587fe4c86118bff9b3b4b42eb3ec5a4c9a790f7ac8950ff6",
4501
+ "hash": "ed5aa33f8e734dad460aa9b2a7c6fc0690efc9cda3b0854c642d59b2bbf55870",
4378
4502
  "source": "stories"
4379
4503
  },
4380
4504
  {
@@ -17658,8 +17782,8 @@
17658
17782
  "name": "typography-headline-xs",
17659
17783
  "scss": "$om-typography-headline['xs']",
17660
17784
  "cssVar": "--om-typography-typography-headline-xs",
17661
- "value": "(\n font-family: $om-font-display,\n font-weight: $om-font-weight-medium,\n font-size: 18px,\n line-height: 26px,\n letter-spacing: $om-tracking-none,\n )",
17662
- "resolved": "(\n font-family: $om-font-display,\n font-weight: $om-font-weight-medium,\n font-size: 18px,\n line-height: 26px,\n letter-spacing: $om-tracking-none,\n )",
17785
+ "value": "(\n font-family: $om-font-display,\n font-weight: $om-font-weight-medium,\n font-size: 16px,\n line-height: 26px,\n letter-spacing: $om-tracking-none,\n )",
17786
+ "resolved": "(\n font-family: $om-font-display,\n font-weight: $om-font-weight-medium,\n font-size: 16px,\n line-height: 26px,\n letter-spacing: $om-tracking-none,\n )",
17663
17787
  "kind": "typography",
17664
17788
  "layer": "semantic"
17665
17789
  },
@@ -17980,6 +18104,9 @@
17980
18104
  {
17981
18105
  "name": "illusRegionNotSupported"
17982
18106
  },
18107
+ {
18108
+ "name": "illusRewards"
18109
+ },
17983
18110
  {
17984
18111
  "name": "illusVerification"
17985
18112
  },