@valentinkolb/cloud 0.4.0 → 0.5.1

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 (194) hide show
  1. package/package.json +18 -6
  2. package/scripts/preload.ts +78 -23
  3. package/src/_internal/define-app.ts +53 -46
  4. package/src/api/accounts-entities.ts +4 -0
  5. package/src/api/admin-core-settings.ts +98 -0
  6. package/src/api/announcements.ts +131 -0
  7. package/src/api/auth/schemas.ts +24 -0
  8. package/src/api/auth.ts +116 -13
  9. package/src/api/index.ts +7 -2
  10. package/src/api/me.ts +203 -14
  11. package/src/api/search/schemas.ts +1 -0
  12. package/src/api/search.ts +62 -8
  13. package/src/config/ssr.ts +2 -9
  14. package/src/contracts/announcements.test.ts +37 -0
  15. package/src/contracts/announcements.ts +121 -0
  16. package/src/contracts/app.ts +2 -0
  17. package/src/contracts/index.ts +3 -2
  18. package/src/contracts/registry.ts +2 -0
  19. package/src/contracts/shared.ts +108 -1
  20. package/src/desktop/index.ts +704 -0
  21. package/src/desktop/solid.tsx +938 -0
  22. package/src/server/api/index.ts +1 -1
  23. package/src/server/api/respond.ts +50 -10
  24. package/src/server/index.ts +44 -38
  25. package/src/server/middleware/auth.ts +98 -9
  26. package/src/server/middleware/index.ts +2 -1
  27. package/src/server/middleware/settings.ts +26 -0
  28. package/src/server/services/access.test.ts +197 -0
  29. package/src/server/services/access.ts +254 -6
  30. package/src/server/services/index.ts +14 -11
  31. package/src/server/services/pagination.ts +22 -0
  32. package/src/server/time.ts +45 -0
  33. package/src/services/account-lifecycle/index.ts +142 -18
  34. package/src/services/accounts/app.ts +658 -170
  35. package/src/services/accounts/authz.test.ts +77 -0
  36. package/src/services/accounts/authz.ts +22 -0
  37. package/src/services/accounts/entities.ts +84 -5
  38. package/src/services/accounts/groups.ts +30 -24
  39. package/src/services/accounts/model.test.ts +30 -0
  40. package/src/services/accounts/switching.test.ts +14 -0
  41. package/src/services/accounts/switching.ts +15 -6
  42. package/src/services/accounts/users.ts +75 -52
  43. package/src/services/announcements/index.test.ts +32 -0
  44. package/src/services/announcements/index.ts +224 -0
  45. package/src/services/audit/index.test.ts +84 -0
  46. package/src/services/audit/index.ts +431 -0
  47. package/src/services/auth-flows/index.ts +9 -2
  48. package/src/services/auth-flows/ipa.ts +47 -7
  49. package/src/services/auth-flows/magic-link.ts +92 -20
  50. package/src/services/auth-flows/password-reset.ts +284 -0
  51. package/src/services/auth-flows/proxy-return.test.ts +24 -0
  52. package/src/services/auth-flows/proxy-return.ts +49 -0
  53. package/src/services/gateway.ts +162 -0
  54. package/src/services/index.ts +44 -2
  55. package/src/services/ipa/effective-groups.test.ts +33 -0
  56. package/src/services/ipa/effective-groups.ts +70 -0
  57. package/src/services/ipa/profile.ts +45 -3
  58. package/src/services/ipa/search.ts +3 -5
  59. package/src/services/ipa/service-account.ts +15 -0
  60. package/src/services/ipa/sync-planning.test.ts +32 -0
  61. package/src/services/ipa/sync-planning.ts +22 -0
  62. package/src/services/ipa/sync.ts +110 -38
  63. package/src/services/notifications/index.ts +82 -11
  64. package/src/services/oauth-tokens.ts +104 -0
  65. package/src/services/postgres.ts +21 -6
  66. package/src/services/providers/local/auth.test.ts +22 -0
  67. package/src/services/providers/local/auth.ts +46 -3
  68. package/src/services/secrets.ts +10 -0
  69. package/src/services/service-account-credentials.test.ts +210 -0
  70. package/src/services/service-account-credentials.ts +715 -0
  71. package/src/services/service-accounts.ts +188 -0
  72. package/src/services/session/index.ts +7 -8
  73. package/src/services/settings/app.ts +4 -20
  74. package/src/services/settings/defaults.ts +79 -22
  75. package/src/services/settings/store.ts +47 -0
  76. package/src/services/weather/forecast.ts +40 -7
  77. package/src/services/webauthn.test.ts +36 -0
  78. package/src/services/webauthn.ts +384 -0
  79. package/src/shared/icons.ts +391 -100
  80. package/src/shared/index.ts +7 -0
  81. package/src/shared/markdown/extensions/code.ts +38 -1
  82. package/src/shared/markdown/extensions/images.ts +39 -3
  83. package/src/shared/markdown/extensions/info-blocks.ts +5 -5
  84. package/src/shared/markdown/extensions/mark.ts +48 -0
  85. package/src/shared/markdown/extensions/sub-sup.ts +60 -0
  86. package/src/shared/markdown/extensions/tables.ts +79 -58
  87. package/src/shared/markdown/formula.test.ts +1089 -0
  88. package/src/shared/markdown/formula.ts +1187 -0
  89. package/src/shared/markdown/index.ts +76 -2
  90. package/src/shared/mock-cover.ts +130 -0
  91. package/src/shared/redirect.test.ts +58 -0
  92. package/src/shared/redirect.ts +56 -0
  93. package/src/shared/theme.test.ts +24 -0
  94. package/src/shared/theme.ts +68 -0
  95. package/src/shared/time.ts +13 -0
  96. package/src/ssr/AdminLayout.tsx +7 -3
  97. package/src/ssr/AdminSidebar.tsx +115 -49
  98. package/src/ssr/AppLaunchpad.island.tsx +176 -0
  99. package/src/ssr/Footer.island.tsx +3 -8
  100. package/src/ssr/GlobalAnnouncements.island.tsx +141 -0
  101. package/src/ssr/GlobalSearchDialog.tsx +545 -117
  102. package/src/ssr/HotkeysHelpRail.island.tsx +3 -70
  103. package/src/ssr/Layout.tsx +74 -66
  104. package/src/ssr/LayoutBreadcrumbs.island.tsx +44 -0
  105. package/src/ssr/LayoutHelp.tsx +266 -0
  106. package/src/ssr/NavMenu.island.tsx +0 -39
  107. package/src/ssr/ThemeToggleRail.island.tsx +3 -3
  108. package/src/ssr/TimezoneCookie.island.tsx +23 -0
  109. package/src/ssr/islands/index.ts +13 -0
  110. package/src/styles/base-popover.css +5 -2
  111. package/src/styles/effects.css +87 -6
  112. package/src/styles/global.css +146 -9
  113. package/src/styles/input.css +3 -1
  114. package/src/styles/utilities-buttons.css +133 -27
  115. package/src/styles/utilities-code-display.css +67 -0
  116. package/src/styles/utilities-completion.css +223 -0
  117. package/src/styles/utilities-detail.css +73 -0
  118. package/src/styles/utilities-feedback.css +16 -15
  119. package/src/styles/utilities-layout.css +42 -2
  120. package/src/styles/utilities-markdown-editor.css +472 -0
  121. package/src/styles/utilities-navigation.css +63 -8
  122. package/src/styles/utilities-script.css +84 -0
  123. package/src/styles/utilities-table-tile.css +229 -0
  124. package/src/types/ambient.d.ts +9 -0
  125. package/src/ui/completion/behaviors.test.ts +95 -0
  126. package/src/ui/completion/behaviors.ts +205 -0
  127. package/src/ui/completion/engine.ts +368 -0
  128. package/src/ui/completion/index.ts +40 -0
  129. package/src/ui/completion/overlay.ts +92 -0
  130. package/src/ui/dialog-core.ts +173 -45
  131. package/src/ui/filter/FilterChip.tsx +42 -40
  132. package/src/ui/index.ts +11 -12
  133. package/src/ui/input/AutocompleteEditor.tsx +656 -0
  134. package/src/ui/input/CheckboxCard.tsx +91 -0
  135. package/src/ui/input/Combobox.tsx +375 -0
  136. package/src/ui/input/DatePicker.tsx +846 -0
  137. package/src/ui/input/DateTimeInput.tsx +29 -4
  138. package/src/ui/input/FileDropzone.tsx +116 -0
  139. package/src/ui/input/IconInput.tsx +116 -0
  140. package/src/ui/input/ImageInput.tsx +19 -2
  141. package/src/ui/input/MultiSelectInput.tsx +448 -0
  142. package/src/ui/input/NumberInput.tsx +417 -61
  143. package/src/ui/input/SegmentedControl.tsx +2 -2
  144. package/src/ui/input/Select.tsx +172 -10
  145. package/src/ui/input/Slider.tsx +3 -4
  146. package/src/ui/input/Switch.tsx +3 -2
  147. package/src/ui/input/TemplateEditor.tsx +212 -0
  148. package/src/ui/input/TextInput.tsx +144 -13
  149. package/src/ui/input/index.ts +53 -8
  150. package/src/ui/input/markdown/MarkdownEditor.tsx +774 -0
  151. package/src/ui/input/markdown/Toolbar.tsx +90 -0
  152. package/src/ui/input/markdown/actions.ts +233 -0
  153. package/src/ui/input/markdown/active-formats.ts +94 -0
  154. package/src/ui/input/markdown/behaviors.ts +193 -0
  155. package/src/ui/input/markdown/code-zone.ts +23 -0
  156. package/src/ui/input/markdown/highlight.ts +316 -0
  157. package/src/ui/layout.ts +22 -0
  158. package/src/ui/misc/AppOverview.tsx +105 -0
  159. package/src/ui/misc/AppWorkspace.tsx +607 -0
  160. package/src/ui/misc/Calendar.tsx +1291 -0
  161. package/src/ui/misc/Chart.tsx +162 -0
  162. package/src/ui/misc/CodeDisplay.tsx +54 -0
  163. package/src/ui/misc/ContextMenu.tsx +2 -2
  164. package/src/ui/misc/DataTable.tsx +269 -0
  165. package/src/ui/misc/DockWorkspace.tsx +425 -0
  166. package/src/ui/misc/Docs.tsx +153 -0
  167. package/src/ui/misc/Dropdown.tsx +2 -2
  168. package/src/ui/misc/EntitySearch.tsx +260 -129
  169. package/src/ui/misc/LinkCard.tsx +14 -2
  170. package/src/ui/misc/LogEntriesTable.tsx +34 -31
  171. package/src/ui/misc/Pagination.tsx +31 -12
  172. package/src/ui/misc/PanelDialog.tsx +109 -0
  173. package/src/ui/misc/Panes.tsx +873 -0
  174. package/src/ui/misc/PermissionEditor.tsx +358 -262
  175. package/src/ui/misc/Placeholder.tsx +40 -0
  176. package/src/ui/misc/ProgressBar.tsx +1 -1
  177. package/src/ui/misc/ResourceApiKeys.tsx +260 -0
  178. package/src/ui/misc/SettingsModal.tsx +150 -0
  179. package/src/ui/misc/StatCell.tsx +182 -40
  180. package/src/ui/misc/StatGrid.tsx +149 -0
  181. package/src/ui/misc/StructuredDataPreview.tsx +107 -0
  182. package/src/ui/misc/code-highlight.ts +213 -0
  183. package/src/ui/misc/index.ts +93 -12
  184. package/src/ui/prompts.tsx +362 -312
  185. package/src/ui/toast.ts +384 -0
  186. package/src/ui/widgets/Widget.tsx +12 -4
  187. package/src/ssr/MoreAppsDropdown.island.tsx +0 -61
  188. package/src/ui/ipa/GroupView.tsx +0 -36
  189. package/src/ui/ipa/LoginBtn.tsx +0 -16
  190. package/src/ui/ipa/UserView.tsx +0 -58
  191. package/src/ui/ipa/index.ts +0 -4
  192. package/src/ui/navigation.ts +0 -32
  193. package/src/ui/sidebar.tsx +0 -468
  194. /package/src/ui/{ipa → misc}/Avatar.tsx +0 -0
@@ -1,107 +1,398 @@
1
1
  /**
2
- * Curated list of tabler icon options for use in select inputs.
3
- * Each entry has an `id` (icon class without `ti-` prefix is the tabler name,
4
- * but stored as `ti-<name>` to match usage like `ti ti-<name>`),
5
- * a human-readable `label`, and an `icon` class string for rendering.
2
+ * Curated Tabler-icon catalogue for use in icon pickers.
3
+ *
4
+ * Each entry holds:
5
+ * - `id` — the full Tabler class string ("ti ti-foo"). Used as the
6
+ * stored value in DB / config so consumers can render
7
+ * directly via `<i class={value}>` without having to
8
+ * prepend the family class. Render sites that DO prepend
9
+ * `ti ` produce a duplicate-token (`ti ti ti-foo`) which
10
+ * the browser's classList tolerates as a no-op.
11
+ * - `label` — primary display name shown in the picker.
12
+ * - `icon` — same string as `id`. Kept as a separate field so the
13
+ * generic `SelectInput` can pick it up via its
14
+ * `option.icon` slot for the dropdown glyph.
15
+ * - `keywords`— synonym list used by the fuzzy-search picker. Includes
16
+ * the bare icon name, common alternative names, symbol
17
+ * forms ("€", "$"), and adjacent concepts ("money",
18
+ * "cash" for currency icons). English only — KISS.
19
+ *
20
+ * Categories below are sorted top-down by the order common dashboards
21
+ * tend to reach for; within each category entries are alphabetical.
22
+ *
23
+ * Size budget: ~250 entries, ~15-20 KB of inlined JSON. Bigger lists
24
+ * would warrant a lazy-load strategy or generated data, but at this
25
+ * size the convenience of a bundled-in module beats both.
6
26
  */
7
- export const ICON_OPTIONS = [
8
- // Documents & Writing
9
- { id: "ti-notebook", label: "Notebook", icon: "ti ti-notebook" },
10
- { id: "ti-book", label: "Book", icon: "ti ti-book" },
11
- { id: "ti-note", label: "Note", icon: "ti ti-note" },
12
- { id: "ti-notes", label: "Notes", icon: "ti ti-notes" },
13
- { id: "ti-file-text", label: "Document", icon: "ti ti-file-text" },
14
- { id: "ti-file-code", label: "Code", icon: "ti ti-file-code" },
15
- { id: "ti-clipboard", label: "Clipboard", icon: "ti ti-clipboard" },
16
- { id: "ti-list-check", label: "Checklist", icon: "ti ti-list-check" },
17
- { id: "ti-bookmark", label: "Bookmark", icon: "ti ti-bookmark" },
18
- { id: "ti-pencil", label: "Pencil", icon: "ti ti-pencil" },
19
- { id: "ti-quote", label: "Quote", icon: "ti ti-quote" },
20
- { id: "ti-tag", label: "Tag", icon: "ti ti-tag" },
21
- // Objects
22
- { id: "ti-star", label: "Star", icon: "ti ti-star" },
23
- { id: "ti-heart", label: "Heart", icon: "ti ti-heart" },
24
- { id: "ti-diamond", label: "Diamond", icon: "ti ti-diamond" },
25
- { id: "ti-crown", label: "Crown", icon: "ti ti-crown" },
26
- { id: "ti-trophy", label: "Trophy", icon: "ti ti-trophy" },
27
- { id: "ti-flag", label: "Flag", icon: "ti ti-flag" },
28
- { id: "ti-key", label: "Key", icon: "ti ti-key" },
29
- { id: "ti-lock", label: "Lock", icon: "ti ti-lock" },
30
- { id: "ti-shield", label: "Shield", icon: "ti ti-shield" },
31
- { id: "ti-gift", label: "Gift", icon: "ti ti-gift" },
32
- { id: "ti-bell", label: "Bell", icon: "ti ti-bell" },
33
- { id: "ti-lamp", label: "Lamp", icon: "ti ti-lamp" },
34
- { id: "ti-bolt", label: "Bolt", icon: "ti ti-bolt" },
35
- { id: "ti-bulb", label: "Idea", icon: "ti ti-bulb" },
36
- { id: "ti-puzzle", label: "Puzzle", icon: "ti ti-puzzle" },
37
- { id: "ti-eye", label: "Eye", icon: "ti ti-eye" },
38
- { id: "ti-brain", label: "Brain", icon: "ti ti-brain" },
39
- { id: "ti-compass", label: "Compass", icon: "ti ti-compass" },
40
- { id: "ti-wand", label: "Wand", icon: "ti ti-wand" },
41
- { id: "ti-sword", label: "Sword", icon: "ti ti-sword" },
42
- { id: "ti-anchor", label: "Anchor", icon: "ti ti-anchor" },
43
- { id: "ti-camera", label: "Camera", icon: "ti ti-camera" },
44
- { id: "ti-music", label: "Music", icon: "ti ti-music" },
45
- { id: "ti-palette", label: "Palette", icon: "ti ti-palette" },
46
- { id: "ti-paint", label: "Paint", icon: "ti ti-paint" },
47
- { id: "ti-coffee", label: "Coffee", icon: "ti ti-coffee" },
48
- // Animals
49
- { id: "ti-cat", label: "Cat", icon: "ti ti-cat" },
50
- { id: "ti-dog", label: "Dog", icon: "ti ti-dog" },
51
- { id: "ti-fish", label: "Fish", icon: "ti ti-fish" },
52
- { id: "ti-bug", label: "Bug", icon: "ti ti-bug" },
53
- { id: "ti-butterfly", label: "Butterfly", icon: "ti ti-butterfly" },
54
- { id: "ti-feather", label: "Feather", icon: "ti ti-feather" },
55
- { id: "ti-paw", label: "Paw", icon: "ti ti-paw" },
56
- { id: "ti-deer", label: "Deer", icon: "ti ti-deer" },
57
- { id: "ti-horse", label: "Horse", icon: "ti ti-horse" },
58
- { id: "ti-pig", label: "Pig", icon: "ti ti-pig" },
59
- { id: "ti-spider", label: "Spider", icon: "ti ti-spider" },
60
- { id: "ti-bat", label: "Bat", icon: "ti ti-bat" },
61
- // Nature & Weather
62
- { id: "ti-flower", label: "Flower", icon: "ti ti-flower" },
63
- { id: "ti-leaf", label: "Leaf", icon: "ti ti-leaf" },
64
- { id: "ti-tree", label: "Tree", icon: "ti ti-tree" },
65
- { id: "ti-plant", label: "Plant", icon: "ti ti-plant" },
66
- { id: "ti-seeding", label: "Seeding", icon: "ti ti-seeding" },
67
- { id: "ti-mushroom", label: "Mushroom", icon: "ti ti-mushroom" },
68
- { id: "ti-cactus", label: "Cactus", icon: "ti ti-cactus" },
69
- { id: "ti-sun", label: "Sun", icon: "ti ti-sun" },
70
- { id: "ti-moon", label: "Moon", icon: "ti ti-moon" },
71
- { id: "ti-cloud", label: "Cloud", icon: "ti ti-cloud" },
72
- { id: "ti-snowflake", label: "Snowflake", icon: "ti ti-snowflake" },
73
- { id: "ti-flame", label: "Flame", icon: "ti ti-flame" },
74
- { id: "ti-rainbow", label: "Rainbow", icon: "ti ti-rainbow" },
75
- { id: "ti-tornado", label: "Tornado", icon: "ti ti-tornado" },
76
- { id: "ti-mountain", label: "Mountain", icon: "ti ti-mountain" },
77
- // Travel & Space
78
- { id: "ti-home", label: "Home", icon: "ti ti-home" },
79
- { id: "ti-world", label: "World", icon: "ti ti-world" },
80
- { id: "ti-globe", label: "Globe", icon: "ti ti-globe" },
81
- { id: "ti-map", label: "Map", icon: "ti ti-map" },
82
- { id: "ti-rocket", label: "Rocket", icon: "ti ti-rocket" },
83
- { id: "ti-planet", label: "Planet", icon: "ti ti-planet" },
84
- { id: "ti-meteor", label: "Meteor", icon: "ti ti-meteor" },
85
- { id: "ti-comet", label: "Comet", icon: "ti ti-comet" },
86
- { id: "ti-tent", label: "Tent", icon: "ti ti-tent" },
87
- { id: "ti-sailboat", label: "Sailboat", icon: "ti ti-sailboat" },
88
- { id: "ti-plane", label: "Plane", icon: "ti ti-plane" },
89
- // Food & Drink
90
- { id: "ti-apple", label: "Apple", icon: "ti ti-apple" },
91
- { id: "ti-cherry", label: "Cherry", icon: "ti ti-cherry" },
92
- { id: "ti-lemon", label: "Lemon", icon: "ti ti-lemon" },
93
- { id: "ti-pizza", label: "Pizza", icon: "ti ti-pizza" },
94
- { id: "ti-cake", label: "Cake", icon: "ti ti-cake" },
95
- { id: "ti-cookie", label: "Cookie", icon: "ti ti-cookie" },
96
- { id: "ti-candy", label: "Candy", icon: "ti ti-candy" },
97
- { id: "ti-ice-cream", label: "Ice Cream", icon: "ti ti-ice-cream" },
98
- // Fun
99
- { id: "ti-ghost", label: "Ghost", icon: "ti ti-ghost" },
100
- { id: "ti-alien", label: "Alien", icon: "ti ti-alien" },
101
- { id: "ti-atom", label: "Atom", icon: "ti ti-atom" },
27
+
28
+ export type IconOption = {
29
+ id: string;
30
+ label: string;
31
+ icon: string;
32
+ keywords: string[];
33
+ };
34
+
35
+ const E = (id: string, label: string, keywords: string[]): IconOption => ({
36
+ id: `ti ti-${id}`,
37
+ label,
38
+ icon: `ti ti-${id}`,
39
+ keywords: [id, ...keywords],
40
+ });
41
+
42
+ export const ICON_OPTIONS: IconOption[] = [
43
+ // ── Finance & Money ──────────────────────────────────────────────
44
+ E("currency-euro", "Euro", ["euro", "currency", "money", "cash", "€", "eur"]),
45
+ E("currency-dollar", "Dollar", ["dollar", "currency", "money", "cash", "$", "usd"]),
46
+ E("currency-pound", "Pound", ["pound", "currency", "money", "£", "gbp"]),
47
+ E("currency-yen", "Yen", ["yen", "currency", "money", "¥", "jpy"]),
48
+ E("currency-bitcoin", "Bitcoin", ["bitcoin", "btc", "crypto", "currency"]),
49
+ E("coin", "Coin", ["coin", "money", "cash", "currency"]),
50
+ E("coins", "Coins", ["coins", "money", "cash", "currency", "stack"]),
51
+ E("cash", "Cash", ["cash", "money", "bill", "banknote"]),
52
+ E("wallet", "Wallet", ["wallet", "money", "cash", "purse", "billfold"]),
53
+ E("credit-card", "Credit Card", ["card", "credit", "debit", "payment", "money"]),
54
+ E("receipt", "Receipt", ["receipt", "bill", "invoice", "purchase"]),
55
+ E("percentage", "Percent", ["percent", "percentage", "%", "discount", "rate"]),
56
+ E("calculator", "Calculator", ["calculator", "math", "calc", "compute"]),
57
+ E("pig-money", "Piggy Bank", ["piggy", "savings", "bank", "money"]),
58
+ E("building-bank", "Bank", ["bank", "money", "finance", "institution"]),
59
+ E("shopping-cart", "Shopping Cart", ["cart", "shop", "shopping", "buy", "purchase"]),
60
+ E("shopping-bag", "Shopping Bag", ["bag", "shop", "shopping", "buy"]),
61
+ E("trending-up", "Trending Up", ["trending", "up", "growth", "increase", "rise"]),
62
+ E("trending-down", "Trending Down", ["trending", "down", "decrease", "fall", "drop"]),
63
+
64
+ // ── Charts & Analytics ───────────────────────────────────────────
65
+ E("chart-bar", "Bar Chart", ["chart", "bar", "graph", "analytics", "stats"]),
66
+ E("chart-line", "Line Chart", ["chart", "line", "graph", "analytics", "trend"]),
67
+ E("chart-pie", "Pie Chart", ["chart", "pie", "donut", "graph", "analytics"]),
68
+ E("chart-donut", "Donut Chart", ["chart", "donut", "pie", "ring"]),
69
+ E("chart-area", "Area Chart", ["chart", "area", "graph", "filled"]),
70
+ E("chart-dots", "Scatter Chart", ["chart", "scatter", "dots", "points"]),
71
+ E("chart-histogram", "Histogram", ["chart", "histogram", "distribution"]),
72
+ E("chart-arcs", "Gauge", ["chart", "gauge", "arc", "meter"]),
73
+ E("activity", "Activity", ["activity", "pulse", "heartbeat", "monitor"]),
74
+
75
+ // ── Communication ────────────────────────────────────────────────
76
+ E("mail", "Mail", ["mail", "email", "message", "letter", "envelope"]),
77
+ E("mail-opened", "Mail Opened", ["mail", "email", "opened", "read"]),
78
+ E("message", "Message", ["message", "chat", "speech", "bubble"]),
79
+ E("message-circle", "Message Circle", ["message", "chat", "comment", "talk"]),
80
+ E("messages", "Messages", ["messages", "chat", "conversation"]),
81
+ E("phone", "Phone", ["phone", "call", "telephone", "mobile"]),
82
+ E("phone-call", "Phone Call", ["phone", "call", "ringing"]),
83
+ E("video", "Video", ["video", "camera", "film", "movie"]),
84
+ E("microphone", "Microphone", ["microphone", "mic", "voice", "audio", "record"]),
85
+ E("send", "Send", ["send", "submit", "deliver", "post"]),
86
+ E("share", "Share", ["share", "send", "distribute", "social"]),
87
+ E("rss", "RSS", ["rss", "feed", "subscribe"]),
88
+ E("at", "At", ["at", "mention", "@", "email"]),
89
+
90
+ // ── Notifications & Status ───────────────────────────────────────
91
+ E("bell", "Bell", ["bell", "notification", "alert", "alarm"]),
92
+ E("bell-ringing", "Bell Ringing", ["bell", "notification", "ringing", "alert"]),
93
+ E("alarm", "Alarm", ["alarm", "alert", "warning", "siren"]),
94
+ E("alert-triangle", "Warning", ["alert", "warning", "caution", "danger"]),
95
+ E("alert-circle", "Alert", ["alert", "warning", "info", "exclamation"]),
96
+ E("info-circle", "Info", ["info", "information", "help", "tip"]),
97
+ E("circle-check", "Check Circle", ["check", "ok", "done", "success", "approved"]),
98
+ E("circle-x", "Cancel", ["cancel", "close", "x", "remove", "rejected"]),
99
+ E("check", "Check", ["check", "tick", "ok", "done", "yes"]),
100
+ E("x", "Close", ["close", "x", "cancel", "dismiss", "remove"]),
101
+
102
+ // ── Documents & Writing ──────────────────────────────────────────
103
+ E("notebook", "Notebook", ["notebook", "journal", "diary", "writing"]),
104
+ E("book", "Book", ["book", "read", "library", "novel"]),
105
+ E("note", "Note", ["note", "memo", "annotation"]),
106
+ E("notes", "Notes", ["notes", "memo", "list", "writing"]),
107
+ E("file-text", "Document", ["document", "file", "text", "doc"]),
108
+ E("file-code", "Code File", ["file", "code", "source", "script"]),
109
+ E("file-spreadsheet", "Spreadsheet", ["spreadsheet", "excel", "sheet", "csv", "table"]),
110
+ E("file", "File", ["file", "document"]),
111
+ E("files", "Files", ["files", "documents", "multiple"]),
112
+ E("clipboard", "Clipboard", ["clipboard", "paste", "copy"]),
113
+ E("clipboard-list", "Clipboard List", ["clipboard", "list", "todo", "checklist"]),
114
+ E("list-check", "Checklist", ["checklist", "todo", "tasks", "list"]),
115
+ E("bookmark", "Bookmark", ["bookmark", "save", "favorite", "marker"]),
116
+ E("pencil", "Pencil", ["pencil", "edit", "write", "compose"]),
117
+ E("edit", "Edit", ["edit", "modify", "change", "pencil"]),
118
+ E("quote", "Quote", ["quote", "citation", "blockquote"]),
119
+ E("tag", "Tag", ["tag", "label", "category", "marker"]),
120
+ E("tags", "Tags", ["tags", "labels", "categories"]),
121
+
122
+ // ── Office & Work ────────────────────────────────────────────────
123
+ E("briefcase", "Briefcase", ["briefcase", "work", "business", "job"]),
124
+ E("building", "Building", ["building", "office", "company", "enterprise"]),
125
+ E("building-store", "Store", ["store", "shop", "retail", "market"]),
126
+ E("building-skyscraper", "Skyscraper", ["skyscraper", "building", "tower", "city"]),
127
+ E("folder", "Folder", ["folder", "directory", "files"]),
128
+ E("folder-open", "Folder Open", ["folder", "open", "directory"]),
129
+ E("archive", "Archive", ["archive", "storage", "box"]),
130
+ E("paperclip", "Paperclip", ["paperclip", "attach", "attachment"]),
131
+ E("scissors", "Scissors", ["scissors", "cut", "trim"]),
132
+ E("stamp", "Stamp", ["stamp", "approved", "seal"]),
133
+ E("printer", "Printer", ["printer", "print"]),
134
+ E("presentation", "Presentation", ["presentation", "slides", "deck"]),
135
+ E("calendar", "Calendar", ["calendar", "date", "schedule", "agenda"]),
136
+ E("calendar-event", "Event", ["event", "calendar", "meeting", "appointment"]),
137
+ E("calendar-stats", "Calendar Stats", ["calendar", "stats", "schedule"]),
138
+
139
+ // ── Time ────────────────────────────────────────────────────────
140
+ E("clock", "Clock", ["clock", "time", "hour", "minute"]),
141
+ E("clock-hour-3", "Clock 3", ["clock", "time", "afternoon"]),
142
+ E("hourglass", "Hourglass", ["hourglass", "time", "wait", "duration"]),
143
+ E("alarm-clock", "Alarm Clock", ["alarm", "clock", "wake", "time"]),
144
+ E("history", "History", ["history", "past", "log", "back"]),
145
+ E("watch", "Watch", ["watch", "time", "wristwatch"]),
146
+ E("stopwatch", "Stopwatch", ["stopwatch", "timer", "time", "race"]),
147
+
148
+ // ── Places & Travel ──────────────────────────────────────────────
149
+ E("home", "Home", ["home", "house", "main"]),
150
+ E("home-2", "Home 2", ["home", "house"]),
151
+ E("map-pin", "Map Pin", ["pin", "map", "location", "place", "marker"]),
152
+ E("map", "Map", ["map", "location", "geography"]),
153
+ E("map-2", "Map 2", ["map", "location"]),
154
+ E("world", "World", ["world", "earth", "global", "international"]),
155
+ E("globe", "Globe", ["globe", "world", "earth", "global"]),
156
+ E("compass", "Compass", ["compass", "direction", "navigation"]),
157
+ E("car", "Car", ["car", "auto", "vehicle", "drive"]),
158
+ E("truck", "Truck", ["truck", "delivery", "shipping", "lorry"]),
159
+ E("bus", "Bus", ["bus", "transport", "public"]),
160
+ E("train", "Train", ["train", "rail", "transport"]),
161
+ E("plane", "Plane", ["plane", "flight", "airplane", "aviation"]),
162
+ E("rocket", "Rocket", ["rocket", "launch", "space", "fast", "boost"]),
163
+ E("ship", "Ship", ["ship", "boat", "vessel", "sea"]),
164
+ E("sailboat", "Sailboat", ["sailboat", "boat", "sail"]),
165
+ E("bike", "Bike", ["bike", "bicycle", "cycle"]),
166
+ E("walk", "Walk", ["walk", "person", "pedestrian"]),
167
+ E("tent", "Tent", ["tent", "camping", "outdoors"]),
168
+ E("plant", "Plant", ["plant", "nature", "green"]),
169
+
170
+ // ── Action Verbs ─────────────────────────────────────────────────
171
+ E("plus", "Plus", ["plus", "add", "new", "create", "+"]),
172
+ E("minus", "Minus", ["minus", "subtract", "remove", "-"]),
173
+ E("trash", "Trash", ["trash", "delete", "remove", "bin", "garbage"]),
174
+ E("copy", "Copy", ["copy", "duplicate", "clone"]),
175
+ E("device-floppy", "Save", ["save", "floppy", "disk", "store"]),
176
+ E("refresh", "Refresh", ["refresh", "reload", "sync", "update"]),
177
+ E("rotate", "Rotate", ["rotate", "spin", "turn"]),
178
+ E("download", "Download", ["download", "save", "import"]),
179
+ E("upload", "Upload", ["upload", "import", "send"]),
180
+ E("search", "Search", ["search", "find", "magnify", "look"]),
181
+ E("filter", "Filter", ["filter", "narrow", "refine"]),
182
+ E("settings", "Settings", ["settings", "preferences", "config", "gear", "cog"]),
183
+ E("adjustments", "Adjustments", ["adjustments", "settings", "tune", "sliders"]),
184
+ E("link", "Link", ["link", "url", "chain", "hyperlink"]),
185
+ E("external-link", "External Link", ["external", "link", "open", "new"]),
186
+ E("login", "Login", ["login", "signin", "enter"]),
187
+ E("logout", "Logout", ["logout", "signout", "exit"]),
188
+ E("dots", "Dots", ["dots", "more", "menu", "ellipsis"]),
189
+ E("dots-vertical", "Dots Vertical", ["dots", "vertical", "more", "menu"]),
190
+ E("menu-2", "Menu", ["menu", "hamburger", "nav"]),
191
+
192
+ // ── Arrows & Navigation ──────────────────────────────────────────
193
+ E("arrow-up", "Arrow Up", ["arrow", "up"]),
194
+ E("arrow-down", "Arrow Down", ["arrow", "down"]),
195
+ E("arrow-left", "Arrow Left", ["arrow", "left", "back"]),
196
+ E("arrow-right", "Arrow Right", ["arrow", "right", "forward", "next"]),
197
+ E("chevron-up", "Chevron Up", ["chevron", "up", "collapse"]),
198
+ E("chevron-down", "Chevron Down", ["chevron", "down", "expand", "dropdown"]),
199
+ E("chevron-left", "Chevron Left", ["chevron", "left", "back"]),
200
+ E("chevron-right", "Chevron Right", ["chevron", "right", "forward"]),
201
+ E("arrow-up-right", "Arrow Up Right", ["arrow", "diagonal", "external"]),
202
+ E("arrows-shuffle", "Shuffle", ["shuffle", "random", "arrows"]),
203
+ E("arrows-sort", "Sort", ["sort", "arrange", "order"]),
204
+ E("arrows-up-down", "Up Down", ["arrows", "vertical", "swap"]),
205
+
206
+ // ── Security ─────────────────────────────────────────────────────
207
+ E("lock", "Lock", ["lock", "secure", "private", "locked"]),
208
+ E("lock-open", "Unlock", ["unlock", "open", "unlocked"]),
209
+ E("shield", "Shield", ["shield", "protect", "guard", "secure"]),
210
+ E("shield-check", "Shield Check", ["shield", "secure", "verified"]),
211
+ E("eye", "Eye", ["eye", "see", "view", "show", "visible"]),
212
+ E("eye-off", "Eye Off", ["hide", "invisible", "hidden", "private"]),
213
+ E("key", "Key", ["key", "password", "secret", "auth"]),
214
+ E("ban", "Ban", ["ban", "forbidden", "block", "no", "denied"]),
215
+ E("fingerprint", "Fingerprint", ["fingerprint", "biometric", "security", "id"]),
216
+
217
+ // ── Layout & UI ──────────────────────────────────────────────────
218
+ E("layout", "Layout", ["layout", "design", "arrangement"]),
219
+ E("layout-grid", "Grid", ["grid", "layout", "tiles"]),
220
+ E("layout-dashboard", "Dashboard", ["dashboard", "layout", "panels", "tiles"]),
221
+ E("layout-rows", "Rows", ["rows", "layout", "horizontal"]),
222
+ E("layout-columns", "Columns", ["columns", "layout", "vertical"]),
223
+ E("layout-list", "List Layout", ["list", "layout"]),
224
+ E("list", "List", ["list", "items"]),
225
+ E("list-numbers", "Ordered List", ["list", "ordered", "numbers", "1234"]),
226
+ E("table", "Table", ["table", "rows", "columns", "grid", "spreadsheet"]),
227
+ E("columns", "Columns", ["columns", "vertical"]),
228
+ E("pin", "Pin", ["pin", "fix", "stick"]),
229
+ E("pinned", "Pinned", ["pinned", "fixed", "saved"]),
230
+ E("focus-2", "Focus", ["focus", "target", "center"]),
231
+
232
+ // ── People & Users ───────────────────────────────────────────────
233
+ E("user", "User", ["user", "person", "profile", "account"]),
234
+ E("users", "Users", ["users", "people", "group", "team"]),
235
+ E("user-plus", "Add User", ["user", "add", "invite", "join"]),
236
+ E("user-minus", "Remove User", ["user", "remove", "leave"]),
237
+ E("user-check", "User Verified", ["user", "verified", "approved"]),
238
+ E("user-circle", "User Circle", ["user", "profile", "avatar"]),
239
+ E("friends", "Friends", ["friends", "people", "social"]),
240
+ E("id", "ID", ["id", "card", "identification"]),
241
+ E("id-badge", "ID Badge", ["badge", "id", "lanyard", "pass"]),
242
+ E("mood-smile", "Smile", ["smile", "happy", "mood", "emoji"]),
243
+ E("mood-happy", "Happy", ["happy", "mood", "smile", "emoji"]),
244
+
245
+ // ── Media ────────────────────────────────────────────────────────
246
+ E("photo", "Photo", ["photo", "image", "picture"]),
247
+ E("camera", "Camera", ["camera", "photo", "capture", "snap"]),
248
+ E("video", "Video", ["video", "movie", "film"]),
249
+ E("music", "Music", ["music", "song", "audio", "tune"]),
250
+ E("headphones", "Headphones", ["headphones", "audio", "music", "listen"]),
251
+ E("player-play", "Play", ["play", "start", "media"]),
252
+ E("player-pause", "Pause", ["pause", "stop", "media"]),
253
+ E("player-stop", "Stop", ["stop", "halt", "media"]),
254
+ E("volume", "Volume", ["volume", "sound", "audio"]),
255
+ E("volume-off", "Mute", ["mute", "silent", "volume", "off"]),
256
+ E("device-tv", "TV", ["tv", "television", "screen"]),
257
+ E("podcast", "Podcast", ["podcast", "audio", "show"]),
258
+
259
+ // ── Tech & Dev ───────────────────────────────────────────────────
260
+ E("code", "Code", ["code", "programming", "source", "dev"]),
261
+ E("braces", "Braces", ["braces", "code", "json", "{}"]),
262
+ E("brackets", "Brackets", ["brackets", "code", "[]"]),
263
+ E("terminal", "Terminal", ["terminal", "console", "shell", "cli"]),
264
+ E("command", "Command", ["command", "key", "cmd"]),
265
+ E("git-branch", "Git Branch", ["git", "branch", "fork"]),
266
+ E("git-commit", "Git Commit", ["git", "commit"]),
267
+ E("git-merge", "Git Merge", ["git", "merge", "combine"]),
268
+ E("git-pull-request", "Pull Request", ["git", "pr", "pull", "merge"]),
269
+ E("brand-github", "GitHub", ["github", "git", "code", "repo"]),
270
+ E("brand-gitlab", "GitLab", ["gitlab", "git", "code", "repo"]),
271
+ E("bug", "Bug", ["bug", "error", "issue", "defect"]),
272
+ E("database", "Database", ["database", "db", "storage", "data"]),
273
+ E("server", "Server", ["server", "host", "machine"]),
274
+ E("cloud", "Cloud", ["cloud", "storage", "online", "sync"]),
275
+ E("cloud-upload", "Cloud Upload", ["cloud", "upload", "sync"]),
276
+ E("cloud-download", "Cloud Download", ["cloud", "download", "sync"]),
277
+ E("api", "API", ["api", "endpoint", "service"]),
278
+ E("cpu", "CPU", ["cpu", "processor", "chip", "compute"]),
279
+ E("device-laptop", "Laptop", ["laptop", "computer", "device"]),
280
+ E("device-desktop", "Desktop", ["desktop", "computer", "monitor"]),
281
+ E("device-mobile", "Mobile", ["mobile", "phone", "device"]),
282
+ E("device-tablet", "Tablet", ["tablet", "ipad", "device"]),
283
+ E("plug", "Plug", ["plug", "connect", "power", "outlet"]),
284
+ E("robot", "Robot", ["robot", "bot", "ai", "automation"]),
285
+ E("browser", "Browser", ["browser", "web", "www"]),
286
+ E("www", "WWW", ["www", "web", "internet", "url"]),
287
+ E("network", "Network", ["network", "connection", "graph"]),
288
+ E("wifi", "WiFi", ["wifi", "wireless", "internet"]),
289
+ E("bluetooth", "Bluetooth", ["bluetooth", "wireless"]),
290
+
291
+ // ── Symbols & Awards ─────────────────────────────────────────────
292
+ E("star", "Star", ["star", "favorite", "rating"]),
293
+ E("star-filled", "Star Filled", ["star", "filled", "favorite"]),
294
+ E("heart", "Heart", ["heart", "love", "favorite", "like"]),
295
+ E("heart-filled", "Heart Filled", ["heart", "filled", "love"]),
296
+ E("diamond", "Diamond", ["diamond", "gem", "premium"]),
297
+ E("crown", "Crown", ["crown", "king", "vip", "premium"]),
298
+ E("trophy", "Trophy", ["trophy", "award", "winner", "champion"]),
299
+ E("award", "Award", ["award", "medal", "achievement"]),
300
+ E("medal", "Medal", ["medal", "award", "achievement"]),
301
+ E("ribbon", "Ribbon", ["ribbon", "badge", "award"]),
302
+ E("flag", "Flag", ["flag", "marker", "country", "milestone"]),
303
+ E("target", "Target", ["target", "goal", "aim", "bullseye"]),
304
+ E("sparkles", "Sparkles", ["sparkles", "magic", "shiny", "new"]),
305
+ E("flame", "Flame", ["flame", "fire", "hot", "trending"]),
306
+ E("bolt", "Bolt", ["bolt", "lightning", "electric", "fast", "energy"]),
307
+ E("infinity", "Infinity", ["infinity", "endless", "∞"]),
308
+ E("circle", "Circle", ["circle", "round", "dot"]),
309
+ E("square", "Square", ["square", "box"]),
310
+ E("triangle", "Triangle", ["triangle"]),
311
+
312
+ // ── Tools & Crafts ───────────────────────────────────────────────
313
+ E("tool", "Tool", ["tool", "wrench", "fix", "repair"]),
314
+ E("tools", "Tools", ["tools", "build", "fix"]),
315
+ E("hammer", "Hammer", ["hammer", "build", "tool"]),
316
+ E("ruler", "Ruler", ["ruler", "measure"]),
317
+ E("magnet", "Magnet", ["magnet", "attract"]),
318
+ E("paint", "Paint", ["paint", "color", "art", "brush"]),
319
+ E("palette", "Palette", ["palette", "color", "art"]),
320
+ E("brush", "Brush", ["brush", "paint", "art"]),
321
+ E("droplet", "Droplet", ["droplet", "drop", "water", "color"]),
322
+ E("typography", "Typography", ["typography", "text", "font"]),
323
+ E("color-swatch", "Color Swatch", ["color", "swatch", "palette"]),
324
+ E("photo-edit", "Photo Edit", ["photo", "edit", "image", "filter"]),
325
+
326
+ // ── Nature & Weather ─────────────────────────────────────────────
327
+ E("sun", "Sun", ["sun", "light", "day", "bright"]),
328
+ E("moon", "Moon", ["moon", "night", "dark"]),
329
+ E("cloud-rain", "Rain", ["rain", "weather", "cloud", "wet"]),
330
+ E("snowflake", "Snow", ["snow", "snowflake", "winter", "cold"]),
331
+ E("flame-2", "Fire", ["fire", "flame", "hot"]),
332
+ E("rainbow", "Rainbow", ["rainbow", "colors"]),
333
+ E("tornado", "Tornado", ["tornado", "storm", "wind"]),
334
+ E("mountain", "Mountain", ["mountain", "peak", "alps"]),
335
+ E("flower", "Flower", ["flower", "bloom", "rose"]),
336
+ E("leaf", "Leaf", ["leaf", "nature", "green", "eco"]),
337
+ E("tree", "Tree", ["tree", "nature", "forest"]),
338
+ E("seeding", "Seedling", ["seedling", "plant", "grow", "sprout"]),
339
+ E("mushroom", "Mushroom", ["mushroom", "fungi"]),
340
+ E("cactus", "Cactus", ["cactus", "desert", "plant"]),
341
+ E("wind", "Wind", ["wind", "breeze"]),
342
+ E("temperature", "Temperature", ["temperature", "thermometer", "heat", "weather"]),
343
+
344
+ // ── Animals ──────────────────────────────────────────────────────
345
+ E("cat", "Cat", ["cat", "kitty", "pet", "animal"]),
346
+ E("dog", "Dog", ["dog", "puppy", "pet", "animal"]),
347
+ E("fish", "Fish", ["fish", "animal", "aquarium"]),
348
+ E("bug", "Bug", ["bug", "insect", "issue"]),
349
+ E("butterfly", "Butterfly", ["butterfly", "insect"]),
350
+ E("feather", "Feather", ["feather", "bird", "light"]),
351
+ E("paw", "Paw", ["paw", "animal", "pet"]),
352
+ E("deer", "Deer", ["deer", "animal", "wildlife"]),
353
+ E("horse", "Horse", ["horse", "animal"]),
354
+ E("pig", "Pig", ["pig", "animal", "farm"]),
355
+ E("spider", "Spider", ["spider", "arachnid", "halloween"]),
356
+ E("bat", "Bat", ["bat", "animal", "halloween"]),
357
+
358
+ // ── Food & Drink ─────────────────────────────────────────────────
359
+ E("apple", "Apple", ["apple", "fruit", "food"]),
360
+ E("cherry", "Cherry", ["cherry", "fruit", "food"]),
361
+ E("lemon", "Lemon", ["lemon", "fruit", "citrus"]),
362
+ E("pizza", "Pizza", ["pizza", "food"]),
363
+ E("cake", "Cake", ["cake", "dessert", "birthday"]),
364
+ E("cookie", "Cookie", ["cookie", "dessert", "snack"]),
365
+ E("candy", "Candy", ["candy", "sweet", "treat"]),
366
+ E("ice-cream", "Ice Cream", ["icecream", "dessert", "frozen"]),
367
+ E("coffee", "Coffee", ["coffee", "cup", "drink", "caffeine"]),
368
+ E("mug", "Mug", ["mug", "cup", "drink", "beverage"]),
369
+ E("glass", "Glass", ["glass", "drink", "wine"]),
370
+ E("bottle", "Bottle", ["bottle", "drink"]),
371
+
372
+ // ── Misc & Fun ───────────────────────────────────────────────────
373
+ E("puzzle", "Puzzle", ["puzzle", "piece", "jigsaw"]),
374
+ E("dice", "Dice", ["dice", "random", "game"]),
375
+ E("ghost", "Ghost", ["ghost", "halloween", "spooky"]),
376
+ E("alien", "Alien", ["alien", "ufo", "space"]),
377
+ E("atom", "Atom", ["atom", "science", "physics"]),
378
+ E("dna", "DNA", ["dna", "biology", "genetics"]),
379
+ E("microscope", "Microscope", ["microscope", "science", "lab"]),
380
+ E("telescope", "Telescope", ["telescope", "astronomy", "space"]),
381
+ E("planet", "Planet", ["planet", "space", "world"]),
382
+ E("meteor", "Meteor", ["meteor", "space", "comet"]),
383
+ E("gift", "Gift", ["gift", "present", "box"]),
384
+ E("balloon", "Balloon", ["balloon", "party", "celebration"]),
385
+ E("confetti", "Confetti", ["confetti", "party", "celebration"]),
386
+ E("lamp", "Lamp", ["lamp", "light", "lighting"]),
387
+ E("bulb", "Idea", ["bulb", "idea", "light", "innovation", "lightbulb"]),
388
+ E("brain", "Brain", ["brain", "mind", "think"]),
389
+ E("anchor", "Anchor", ["anchor", "ship", "stable"]),
390
+ E("wand", "Wand", ["wand", "magic", "spell"]),
391
+ E("sword", "Sword", ["sword", "weapon", "fight"]),
392
+ E("shopping-cart-off", "Empty Cart", ["cart", "empty", "off"]),
102
393
  ];
103
394
 
104
- export type IconOption = (typeof ICON_OPTIONS)[number];
395
+ export type IconOptionLegacy = IconOption;
105
396
 
106
397
  export const icons = {
107
398
  ICON_OPTIONS,
@@ -1,9 +1,16 @@
1
1
  // Cloud-specific shared utils (NOT in stdlib)
2
2
  export * from "./account-display";
3
3
  export * from "./account-session";
4
+ export * from "./redirect";
5
+ export * from "./theme";
6
+ export * from "./time";
4
7
  export type * from "./icons";
5
8
  export { icons } from "./icons";
6
9
  export { markdown } from "./markdown";
10
+ export { createProgressValue, evaluateFormula, formatValue, isFormula, isTotalRow, parseProgressValue } from "./markdown/formula";
11
+ export type { EvalContext, EvalError, EvalResult, EvalValue, ErrorCode, ProgressValue } from "./markdown/formula";
12
+ export { createMockCover, createMockCoverSvg, parseDataUrl } from "./mock-cover";
13
+ export type { MockCover, MockCoverIcon, MockCoverOptions, MockCoverTheme } from "./mock-cover";
7
14
 
8
15
  // Re-export from stdlib for backward compatibility
9
16
  // Prefer importing directly from @valentinkolb/stdlib