@clarlabs/ui 0.1.7 → 0.1.8
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/dist/index.d.ts +10 -0
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1619 -1603
- package/dist/index.mjs.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1339,6 +1339,16 @@ export declare interface TimelineProps {
|
|
|
1339
1339
|
className?: string;
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
1342
|
+
export declare function Title({ children, subtitle, level, align, className }: TitleProps): default_2.JSX.Element;
|
|
1343
|
+
|
|
1344
|
+
export declare interface TitleProps {
|
|
1345
|
+
children: default_2.ReactNode;
|
|
1346
|
+
subtitle?: string;
|
|
1347
|
+
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
1348
|
+
align?: 'left' | 'center' | 'right';
|
|
1349
|
+
className?: string;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1342
1352
|
declare interface ToastContextValue {
|
|
1343
1353
|
showToast: (message: string, options?: ToastOptions) => void;
|
|
1344
1354
|
}
|