@valentinkolb/cloud 0.3.1 → 0.5.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.
- package/package.json +18 -8
- package/scripts/preload.ts +78 -23
- package/src/_internal/define-app.ts +119 -47
- package/src/_internal/runtime-context.ts +1 -0
- package/src/api/accounts-entities.ts +4 -0
- package/src/api/admin-core-settings.ts +98 -0
- package/src/api/announcements.ts +131 -0
- package/src/api/auth/schemas.ts +24 -0
- package/src/api/auth.ts +113 -10
- package/src/api/index.ts +15 -25
- package/src/api/me.ts +203 -14
- package/src/api/search/schemas.ts +1 -0
- package/src/api/search.ts +62 -8
- package/src/config/ssr.ts +2 -9
- package/src/contracts/announcements.test.ts +37 -0
- package/src/contracts/announcements.ts +121 -0
- package/src/contracts/app.ts +4 -0
- package/src/contracts/index.ts +3 -2
- package/src/contracts/registry.ts +4 -0
- package/src/contracts/shared.ts +108 -1
- package/src/desktop/index.ts +704 -0
- package/src/desktop/solid.tsx +938 -0
- package/src/server/api/index.ts +1 -1
- package/src/server/api/respond.ts +50 -10
- package/src/server/index.ts +44 -38
- package/src/server/middleware/auth.ts +98 -9
- package/src/server/middleware/index.ts +2 -1
- package/src/server/middleware/settings.ts +26 -0
- package/src/server/services/access.test.ts +197 -0
- package/src/server/services/access.ts +254 -6
- package/src/server/services/index.ts +14 -11
- package/src/server/services/pagination.ts +22 -0
- package/src/server/time.ts +45 -0
- package/src/services/account-lifecycle/index.ts +142 -18
- package/src/services/accounts/app.ts +658 -170
- package/src/services/accounts/authz.test.ts +77 -0
- package/src/services/accounts/authz.ts +22 -0
- package/src/services/accounts/entities.ts +84 -5
- package/src/services/accounts/groups.ts +30 -24
- package/src/services/accounts/model.test.ts +30 -0
- package/src/services/accounts/switching.test.ts +14 -0
- package/src/services/accounts/switching.ts +15 -6
- package/src/services/accounts/users.ts +75 -52
- package/src/services/announcements/index.test.ts +32 -0
- package/src/services/announcements/index.ts +224 -0
- package/src/services/audit/index.test.ts +84 -0
- package/src/services/audit/index.ts +431 -0
- package/src/services/auth-flows/index.ts +9 -2
- package/src/services/auth-flows/ipa.ts +0 -2
- package/src/services/auth-flows/magic-link.ts +3 -2
- package/src/services/auth-flows/password-reset.ts +284 -0
- package/src/services/auth-flows/proxy-return.test.ts +24 -0
- package/src/services/auth-flows/proxy-return.ts +49 -0
- package/src/services/gateway.ts +162 -0
- package/src/services/index.ts +44 -2
- package/src/services/ipa/effective-groups.test.ts +33 -0
- package/src/services/ipa/effective-groups.ts +70 -0
- package/src/services/ipa/profile.ts +45 -3
- package/src/services/ipa/search.ts +3 -5
- package/src/services/ipa/service-account.ts +15 -0
- package/src/services/ipa/sync-planning.test.ts +32 -0
- package/src/services/ipa/sync-planning.ts +22 -0
- package/src/services/ipa/sync.ts +110 -38
- package/src/services/oauth-tokens.ts +104 -0
- package/src/services/postgres.ts +21 -6
- package/src/services/providers/local/auth.test.ts +22 -0
- package/src/services/providers/local/auth.ts +46 -3
- package/src/services/secrets.ts +10 -0
- package/src/services/service-account-credentials.test.ts +210 -0
- package/src/services/service-account-credentials.ts +715 -0
- package/src/services/service-accounts.ts +188 -0
- package/src/services/session/index.ts +7 -8
- package/src/services/settings/app.ts +4 -20
- package/src/services/settings/defaults.ts +64 -22
- package/src/services/settings/store.ts +47 -0
- package/src/services/weather/forecast.ts +40 -7
- package/src/services/webauthn.test.ts +36 -0
- package/src/services/webauthn.ts +384 -0
- package/src/shared/icons.ts +391 -100
- package/src/shared/index.ts +7 -0
- package/src/shared/markdown/extensions/code.ts +38 -1
- package/src/shared/markdown/extensions/images.ts +39 -3
- package/src/shared/markdown/extensions/info-blocks.ts +5 -5
- package/src/shared/markdown/extensions/mark.ts +48 -0
- package/src/shared/markdown/extensions/sub-sup.ts +60 -0
- package/src/shared/markdown/extensions/tables.ts +79 -58
- package/src/shared/markdown/formula.test.ts +1089 -0
- package/src/shared/markdown/formula.ts +1187 -0
- package/src/shared/markdown/index.ts +76 -2
- package/src/shared/mock-cover.ts +130 -0
- package/src/shared/redirect.test.ts +49 -0
- package/src/shared/redirect.ts +52 -0
- package/src/shared/theme.test.ts +24 -0
- package/src/shared/theme.ts +68 -0
- package/src/shared/time.ts +13 -0
- package/src/ssr/AdminLayout.tsx +7 -3
- package/src/ssr/AdminSidebar.tsx +115 -49
- package/src/ssr/AppLaunchpad.island.tsx +176 -0
- package/src/ssr/Footer.island.tsx +3 -8
- package/src/ssr/GlobalAnnouncements.island.tsx +141 -0
- package/src/ssr/GlobalSearchDialog.tsx +545 -117
- package/src/ssr/HotkeysHelpRail.island.tsx +3 -70
- package/src/ssr/Layout.tsx +74 -66
- package/src/ssr/LayoutBreadcrumbs.island.tsx +44 -0
- package/src/ssr/LayoutHelp.tsx +266 -0
- package/src/ssr/NavMenu.island.tsx +0 -39
- package/src/ssr/ThemeToggleRail.island.tsx +3 -3
- package/src/ssr/TimezoneCookie.island.tsx +23 -0
- package/src/ssr/islands/index.ts +13 -0
- package/src/styles/base-popover.css +5 -2
- package/src/styles/effects.css +87 -6
- package/src/styles/global.css +146 -9
- package/src/styles/input.css +3 -1
- package/src/styles/utilities-buttons.css +133 -27
- package/src/styles/utilities-code-display.css +67 -0
- package/src/styles/utilities-completion.css +223 -0
- package/src/styles/utilities-detail.css +73 -0
- package/src/styles/utilities-feedback.css +16 -15
- package/src/styles/utilities-layout.css +42 -2
- package/src/styles/utilities-markdown-editor.css +472 -0
- package/src/styles/utilities-navigation.css +63 -8
- package/src/styles/utilities-script.css +84 -0
- package/src/styles/utilities-table-tile.css +229 -0
- package/src/types/ambient.d.ts +9 -0
- package/src/ui/completion/behaviors.test.ts +95 -0
- package/src/ui/completion/behaviors.ts +205 -0
- package/src/ui/completion/engine.ts +368 -0
- package/src/ui/completion/index.ts +40 -0
- package/src/ui/completion/overlay.ts +92 -0
- package/src/ui/dialog-core.ts +173 -45
- package/src/ui/filter/FilterChip.tsx +42 -40
- package/src/ui/index.ts +11 -12
- package/src/ui/input/AutocompleteEditor.tsx +656 -0
- package/src/ui/input/CheckboxCard.tsx +91 -0
- package/src/ui/input/Combobox.tsx +375 -0
- package/src/ui/input/DatePicker.tsx +846 -0
- package/src/ui/input/DateTimeInput.tsx +29 -4
- package/src/ui/input/FileDropzone.tsx +116 -0
- package/src/ui/input/IconInput.tsx +116 -0
- package/src/ui/input/ImageInput.tsx +19 -2
- package/src/ui/input/MultiSelectInput.tsx +448 -0
- package/src/ui/input/NumberInput.tsx +417 -61
- package/src/ui/input/SegmentedControl.tsx +2 -2
- package/src/ui/input/Select.tsx +172 -10
- package/src/ui/input/Slider.tsx +3 -4
- package/src/ui/input/Switch.tsx +3 -2
- package/src/ui/input/TemplateEditor.tsx +212 -0
- package/src/ui/input/TextInput.tsx +144 -13
- package/src/ui/input/index.ts +53 -8
- package/src/ui/input/markdown/MarkdownEditor.tsx +774 -0
- package/src/ui/input/markdown/Toolbar.tsx +90 -0
- package/src/ui/input/markdown/actions.ts +233 -0
- package/src/ui/input/markdown/active-formats.ts +94 -0
- package/src/ui/input/markdown/behaviors.ts +193 -0
- package/src/ui/input/markdown/code-zone.ts +23 -0
- package/src/ui/input/markdown/highlight.ts +316 -0
- package/src/ui/layout.ts +22 -0
- package/src/ui/misc/AppOverview.tsx +105 -0
- package/src/ui/misc/AppWorkspace.tsx +607 -0
- package/src/ui/misc/Calendar.tsx +1291 -0
- package/src/ui/misc/Chart.tsx +162 -0
- package/src/ui/misc/CodeDisplay.tsx +54 -0
- package/src/ui/misc/ContextMenu.tsx +2 -2
- package/src/ui/misc/DataTable.tsx +269 -0
- package/src/ui/misc/DockWorkspace.tsx +425 -0
- package/src/ui/misc/Docs.tsx +153 -0
- package/src/ui/misc/Dropdown.tsx +2 -2
- package/src/ui/misc/EntitySearch.tsx +260 -129
- package/src/ui/misc/LinkCard.tsx +14 -2
- package/src/ui/misc/LogEntriesTable.tsx +34 -31
- package/src/ui/misc/Pagination.tsx +31 -12
- package/src/ui/misc/PanelDialog.tsx +109 -0
- package/src/ui/misc/Panes.tsx +873 -0
- package/src/ui/misc/PermissionEditor.tsx +358 -262
- package/src/ui/misc/Placeholder.tsx +40 -0
- package/src/ui/misc/ProgressBar.tsx +1 -1
- package/src/ui/misc/ResourceApiKeys.tsx +260 -0
- package/src/ui/misc/SettingsModal.tsx +150 -0
- package/src/ui/misc/StatCell.tsx +182 -40
- package/src/ui/misc/StatGrid.tsx +149 -0
- package/src/ui/misc/StructuredDataPreview.tsx +107 -0
- package/src/ui/misc/code-highlight.ts +213 -0
- package/src/ui/misc/index.ts +93 -12
- package/src/ui/prompts.tsx +362 -312
- package/src/ui/toast.ts +384 -0
- package/src/ui/widgets/Widget.tsx +12 -4
- package/src/ssr/MoreAppsDropdown.island.tsx +0 -61
- package/src/ui/ipa/GroupView.tsx +0 -36
- package/src/ui/ipa/LoginBtn.tsx +0 -16
- package/src/ui/ipa/UserView.tsx +0 -58
- package/src/ui/ipa/index.ts +0 -4
- package/src/ui/navigation.ts +0 -32
- package/src/ui/sidebar.tsx +0 -468
- /package/src/ui/{ipa → misc}/Avatar.tsx +0 -0
package/src/shared/icons.ts
CHANGED
|
@@ -1,107 +1,398 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Curated
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
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
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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
|
|
395
|
+
export type IconOptionLegacy = IconOption;
|
|
105
396
|
|
|
106
397
|
export const icons = {
|
|
107
398
|
ICON_OPTIONS,
|
package/src/shared/index.ts
CHANGED
|
@@ -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
|