@clarlabs/ui 0.1.9 → 0.1.10
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 +26 -0
- package/dist/index.js +22 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3471 -3061
- package/dist/index.mjs.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ export declare interface AudioProps extends Omit<default_2.AudioHTMLAttributes<H
|
|
|
86
86
|
|
|
87
87
|
export declare type AudioVariant = 'minimal' | 'standard' | 'detailed';
|
|
88
88
|
|
|
89
|
+
export declare const availableFlags: string[];
|
|
90
|
+
|
|
89
91
|
export declare const availableIcons: string[];
|
|
90
92
|
|
|
91
93
|
export declare function Avatar({ src, alt, initials, size, status, className }: AvatarProps): default_2.JSX.Element;
|
|
@@ -473,6 +475,18 @@ export declare interface FilePickerProps {
|
|
|
473
475
|
|
|
474
476
|
export declare type FileStatus = 'idle' | 'processing' | 'uploaded' | 'failed';
|
|
475
477
|
|
|
478
|
+
export declare function FlagIcon({ flag, width, height, className, title, style, rounded }: FlagIconProps): default_2.JSX.Element | null;
|
|
479
|
+
|
|
480
|
+
export declare interface FlagIconProps {
|
|
481
|
+
flag: string;
|
|
482
|
+
width?: number;
|
|
483
|
+
height?: number;
|
|
484
|
+
className?: string;
|
|
485
|
+
title?: string;
|
|
486
|
+
style?: default_2.CSSProperties;
|
|
487
|
+
rounded?: boolean;
|
|
488
|
+
}
|
|
489
|
+
|
|
476
490
|
export declare function Footer({ variant, brandName, brandLogo, brandDescription, sections, socialLinks, copyright, showYear, bottomLinks, children, className, ...props }: FooterProps): default_2.JSX.Element;
|
|
477
491
|
|
|
478
492
|
export declare interface FooterLink {
|
|
@@ -565,6 +579,18 @@ export declare type GaugeSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
|
565
579
|
|
|
566
580
|
export declare type GaugeVariant = 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
567
581
|
|
|
582
|
+
export declare const getAllFlags: () => {
|
|
583
|
+
code: string;
|
|
584
|
+
name: string;
|
|
585
|
+
translation: string;
|
|
586
|
+
}[];
|
|
587
|
+
|
|
588
|
+
export declare const getFlagInfo: (flagCode: string) => {
|
|
589
|
+
code: string;
|
|
590
|
+
name: string;
|
|
591
|
+
translation: string;
|
|
592
|
+
} | null;
|
|
593
|
+
|
|
568
594
|
export declare function Grid({ columns, columnsSm, columnsMd, columnsLg, columnsXl, gap, rowGap, columnGap, alignItems, justifyItems, justifyContent, autoFlow, className, children, ...props }: GridProps): default_2.JSX.Element;
|
|
569
595
|
|
|
570
596
|
export declare namespace Grid {
|