klun-ui 0.1.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/LICENSE +21 -0
- package/README.md +106 -0
- package/dist/charts/index.cjs +160 -0
- package/dist/charts/index.cjs.map +1 -0
- package/dist/charts/index.d.cts +89 -0
- package/dist/charts/index.d.ts +89 -0
- package/dist/charts/index.js +154 -0
- package/dist/charts/index.js.map +1 -0
- package/dist/chunk-FTYQRXS5.cjs +10152 -0
- package/dist/chunk-FTYQRXS5.cjs.map +1 -0
- package/dist/chunk-T225J6LV.js +13 -0
- package/dist/chunk-T225J6LV.js.map +1 -0
- package/dist/chunk-TPGAXYFU.cjs +15 -0
- package/dist/chunk-TPGAXYFU.cjs.map +1 -0
- package/dist/chunk-XDAR7UMF.js +10009 -0
- package/dist/chunk-XDAR7UMF.js.map +1 -0
- package/dist/fonts/DMMono-Light.ttf +0 -0
- package/dist/fonts/DMMono-Medium.ttf +0 -0
- package/dist/fonts/DMMono-Regular.ttf +0 -0
- package/dist/fonts/InterDisplay-Bold.woff2 +0 -0
- package/dist/fonts/InterDisplay-Medium.woff2 +0 -0
- package/dist/fonts/InterDisplay-Regular.woff2 +0 -0
- package/dist/fonts/InterDisplay-SemiBold.woff2 +0 -0
- package/dist/fonts/InterVariable-Italic.woff2 +0 -0
- package/dist/fonts/InterVariable.woff2 +0 -0
- package/dist/index.cjs +581 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2701 -0
- package/dist/index.d.ts +2701 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +9137 -0
- package/dist/templates/index.cjs +1132 -0
- package/dist/templates/index.cjs.map +1 -0
- package/dist/templates/index.d.cts +43 -0
- package/dist/templates/index.d.ts +43 -0
- package/dist/templates/index.js +1120 -0
- package/dist/templates/index.js.map +1 -0
- package/package.json +95 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
|
|
3
|
+
interface SidebarUser {
|
|
4
|
+
name: string;
|
|
5
|
+
email: string;
|
|
6
|
+
initials: string;
|
|
7
|
+
}
|
|
8
|
+
interface SidebarProps {
|
|
9
|
+
active: string;
|
|
10
|
+
onNavigate: (id: string) => void;
|
|
11
|
+
user: SidebarUser;
|
|
12
|
+
}
|
|
13
|
+
declare function Sidebar({ active, onNavigate, user }: SidebarProps): react.JSX.Element;
|
|
14
|
+
|
|
15
|
+
interface TopBarProps {
|
|
16
|
+
title: string;
|
|
17
|
+
subtitle: string;
|
|
18
|
+
}
|
|
19
|
+
declare function TopBar({ title, subtitle }: TopBarProps): react.JSX.Element;
|
|
20
|
+
|
|
21
|
+
declare function OverviewScreen(): react.JSX.Element;
|
|
22
|
+
|
|
23
|
+
declare function SettingsScreen(): react.JSX.Element;
|
|
24
|
+
|
|
25
|
+
declare function DashboardTemplate(): react.JSX.Element;
|
|
26
|
+
|
|
27
|
+
declare function AIAssistantTemplate(): react.JSX.Element;
|
|
28
|
+
|
|
29
|
+
declare function CryptoTemplate(): react.JSX.Element;
|
|
30
|
+
|
|
31
|
+
/** Marketing site starting point — hero, features, pricing, FAQ, footer. */
|
|
32
|
+
declare function MarketingTemplate(): react.JSX.Element;
|
|
33
|
+
|
|
34
|
+
/** Calendar starting point — month grid, period nav, filters and agenda. */
|
|
35
|
+
declare function CalendarTemplate(): react.JSX.Element;
|
|
36
|
+
|
|
37
|
+
/** Pricing starting point — plan toggle, tier cards and an FAQ. */
|
|
38
|
+
declare function PricingTemplate(): react.JSX.Element;
|
|
39
|
+
|
|
40
|
+
/** Account settings starting point — tabbed sections, profile form, notifications, integrations. */
|
|
41
|
+
declare function SettingsTemplate(): react.JSX.Element;
|
|
42
|
+
|
|
43
|
+
export { AIAssistantTemplate, CalendarTemplate, CryptoTemplate, DashboardTemplate, MarketingTemplate, OverviewScreen, PricingTemplate, SettingsScreen, SettingsTemplate, Sidebar, type SidebarProps, type SidebarUser, TopBar, type TopBarProps };
|