elseware-ui 2.29.1 → 2.30.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/dist/index.css +1884 -9
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +146 -140
- package/dist/index.d.ts +146 -140
- package/dist/index.js +808 -474
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +802 -473
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -12
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,12 @@ interface BaseComponentProps<T extends HTMLElement = HTMLDivElement> extends Omi
|
|
|
20
20
|
className?: string;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
declare const CURRENCIES: {
|
|
24
|
+
name: string;
|
|
25
|
+
symbol: string;
|
|
26
|
+
code: string;
|
|
27
|
+
}[];
|
|
28
|
+
|
|
23
29
|
type Variant$1 = "default" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark";
|
|
24
30
|
type Shape$1 = "circle" | "roundedSquare" | "softRoundedSquare" | "square";
|
|
25
31
|
type Size$1 = "xs" | "sm" | "md" | "lg" | "xl";
|
|
@@ -36,6 +42,7 @@ type ListBulletType = "dot" | "diamond" | "number" | "none";
|
|
|
36
42
|
type ListAlign = "start" | "center";
|
|
37
43
|
type ListDirection = "vertical" | "horizontal";
|
|
38
44
|
type RouteTabMode = "route" | "state";
|
|
45
|
+
type CurrencyCode = (typeof CURRENCIES)[number]["code"];
|
|
39
46
|
|
|
40
47
|
interface AvatarProps extends BaseComponentProps {
|
|
41
48
|
alt?: string;
|
|
@@ -285,21 +292,15 @@ type LayoutExecutor = (ctx: LayoutContext) => {
|
|
|
285
292
|
declare const registerLayout: (type: GraphLayoutType, executor: LayoutExecutor) => void;
|
|
286
293
|
declare const getLayout: (type: GraphLayoutType) => LayoutExecutor;
|
|
287
294
|
|
|
288
|
-
interface CloudinaryImageProps extends BaseComponentProps {
|
|
295
|
+
interface CloudinaryImageProps extends BaseComponentProps<HTMLImageElement> {
|
|
289
296
|
publicId?: string;
|
|
290
297
|
cloudName?: string;
|
|
291
298
|
secure?: boolean;
|
|
292
299
|
alt?: string;
|
|
300
|
+
fallbackSrc?: string;
|
|
301
|
+
loading?: "lazy" | "eager";
|
|
293
302
|
}
|
|
294
|
-
declare function CloudinaryImage({ publicId, cloudName, secure, alt, className, ...rest }: CloudinaryImageProps): react_jsx_runtime.JSX.Element;
|
|
295
|
-
|
|
296
|
-
interface CloudinaryConfig {
|
|
297
|
-
cloudName: string;
|
|
298
|
-
}
|
|
299
|
-
declare const CloudinaryProvider: ({ cloudName, children, }: CloudinaryConfig & {
|
|
300
|
-
children: React.ReactNode;
|
|
301
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
302
|
-
declare const useCloudinaryConfig: () => CloudinaryConfig;
|
|
303
|
+
declare function CloudinaryImage({ publicId, cloudName, secure, alt, fallbackSrc, loading, className, ...rest }: CloudinaryImageProps): react_jsx_runtime.JSX.Element;
|
|
303
304
|
|
|
304
305
|
interface ImageProps extends BaseComponentProps {
|
|
305
306
|
alt?: string;
|
|
@@ -315,7 +316,7 @@ interface InfoProps extends BaseComponentProps {
|
|
|
315
316
|
shape?: Shape$1;
|
|
316
317
|
children?: ReactNode;
|
|
317
318
|
}
|
|
318
|
-
declare function Info({ children,
|
|
319
|
+
declare function Info({ children, variant, appearance, shape, className, ...rest }: InfoProps): react_jsx_runtime.JSX.Element;
|
|
319
320
|
|
|
320
321
|
interface ListItemData {
|
|
321
322
|
content: React$1.ReactNode;
|
|
@@ -347,81 +348,30 @@ interface ListItemProps {
|
|
|
347
348
|
}
|
|
348
349
|
declare const ListItem: ({ content, TypographyComponent, bulletType, renderBullet, index, align, className, }: ListItemProps) => react_jsx_runtime.JSX.Element;
|
|
349
350
|
|
|
350
|
-
interface PriceTagProps {
|
|
351
|
+
interface PriceTagProps extends BaseComponentProps {
|
|
351
352
|
discount?: number;
|
|
352
353
|
price: number;
|
|
353
|
-
code?:
|
|
354
|
-
styles?: string;
|
|
354
|
+
code?: CurrencyCode;
|
|
355
355
|
}
|
|
356
|
-
declare function PriceTag({ discount, price, code,
|
|
356
|
+
declare function PriceTag({ discount, price, code, className, ...rest }: PriceTagProps): react_jsx_runtime.JSX.Element | undefined;
|
|
357
357
|
|
|
358
|
-
|
|
359
|
-
default = "default",
|
|
360
|
-
primary = "primary",
|
|
361
|
-
secondary = "secondary",
|
|
362
|
-
success = "success",
|
|
363
|
-
danger = "danger",
|
|
364
|
-
warning = "warning",
|
|
365
|
-
info = "info",
|
|
366
|
-
light = "light",
|
|
367
|
-
dark = "dark"
|
|
368
|
-
}
|
|
369
|
-
declare enum TextVariant {
|
|
370
|
-
default = "default",
|
|
371
|
-
primary = "primary",
|
|
372
|
-
secondary = "secondary",
|
|
373
|
-
success = "success",
|
|
374
|
-
danger = "danger",
|
|
375
|
-
warning = "warning",
|
|
376
|
-
info = "info",
|
|
377
|
-
light = "light",
|
|
378
|
-
dark = "dark"
|
|
379
|
-
}
|
|
380
|
-
declare enum Shape {
|
|
381
|
-
circle = "circle",
|
|
382
|
-
roundedSquare = "roundedSquare",
|
|
383
|
-
softRoundedSquare = "softRoundedSquare",
|
|
384
|
-
square = "square"
|
|
385
|
-
}
|
|
386
|
-
declare enum Size {
|
|
387
|
-
xs = "xs",
|
|
388
|
-
sm = "sm",
|
|
389
|
-
md = "md",
|
|
390
|
-
lg = "lg",
|
|
391
|
-
xl = "xl"
|
|
392
|
-
}
|
|
393
|
-
declare enum Decoration {
|
|
394
|
-
underline = "underline",
|
|
395
|
-
overline = "overline",
|
|
396
|
-
lineThrough = "lineThrough",
|
|
397
|
-
noUnderline = "noUnderline"
|
|
398
|
-
}
|
|
399
|
-
declare enum Target {
|
|
400
|
-
blank = "blank",
|
|
401
|
-
self = "self",
|
|
402
|
-
parent = "parent",
|
|
403
|
-
top = "top"
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
interface ProgressBarProps {
|
|
358
|
+
interface ProgressBarProps extends BaseComponentProps {
|
|
407
359
|
value: number;
|
|
408
|
-
variant?:
|
|
409
|
-
size?:
|
|
360
|
+
variant?: Variant$1;
|
|
361
|
+
size?: Size$1;
|
|
410
362
|
showLabel?: boolean;
|
|
411
363
|
label?: string;
|
|
412
364
|
labelPlacement?: "top" | "overlay";
|
|
413
|
-
styles?: string;
|
|
414
365
|
}
|
|
415
|
-
declare const ProgressBar: ({ value, variant, size, showLabel, label, labelPlacement,
|
|
366
|
+
declare const ProgressBar: ({ value, variant, size, showLabel, label, labelPlacement, className, ...rest }: ProgressBarProps) => react_jsx_runtime.JSX.Element;
|
|
416
367
|
|
|
417
|
-
interface StarRatingProps {
|
|
368
|
+
interface StarRatingProps extends BaseComponentProps {
|
|
418
369
|
rating: number;
|
|
419
370
|
isNumericRatingEnabled?: boolean;
|
|
420
371
|
reviewAmount?: number;
|
|
421
372
|
isReviewAmountEnabled?: boolean;
|
|
422
|
-
styles?: string;
|
|
423
373
|
}
|
|
424
|
-
declare function StarRating({ rating, reviewAmount, isNumericRatingEnabled, isReviewAmountEnabled,
|
|
374
|
+
declare function StarRating({ rating, reviewAmount, isNumericRatingEnabled, isReviewAmountEnabled, className, ...rest }: StarRatingProps): react_jsx_runtime.JSX.Element;
|
|
425
375
|
|
|
426
376
|
declare function StarRatingDistribution({ numericRating, progressBarsRating, ratingDistribution, }: {
|
|
427
377
|
numericRating?: boolean | undefined;
|
|
@@ -432,14 +382,6 @@ declare function StarRatingDistribution({ numericRating, progressBarsRating, rat
|
|
|
432
382
|
}[] | undefined;
|
|
433
383
|
}): react_jsx_runtime.JSX.Element;
|
|
434
384
|
|
|
435
|
-
interface SliderProps {
|
|
436
|
-
isLoading?: boolean;
|
|
437
|
-
isSuccess?: boolean;
|
|
438
|
-
coverArt: string;
|
|
439
|
-
screenshots: string[];
|
|
440
|
-
}
|
|
441
|
-
declare function Slider({ isLoading, isSuccess, coverArt, screenshots }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
442
|
-
|
|
443
385
|
interface TableColumnConfig<T> {
|
|
444
386
|
key: keyof T | string;
|
|
445
387
|
header: string;
|
|
@@ -454,71 +396,62 @@ interface TableProps<T> {
|
|
|
454
396
|
}
|
|
455
397
|
declare function Table<T extends Record<string, any>>({ title, columns, data, shape, }: TableProps<T>): react_jsx_runtime.JSX.Element;
|
|
456
398
|
|
|
457
|
-
interface TagProps {
|
|
399
|
+
interface TagProps extends BaseComponentProps {
|
|
458
400
|
text: string;
|
|
459
|
-
styles?: string;
|
|
460
401
|
}
|
|
461
|
-
declare function Tag({ text,
|
|
402
|
+
declare function Tag({ text, className, ...rest }: TagProps): react_jsx_runtime.JSX.Element;
|
|
462
403
|
|
|
463
|
-
interface TooltipProps {
|
|
464
|
-
|
|
404
|
+
interface TooltipProps extends BaseComponentProps {
|
|
405
|
+
children: ReactNode;
|
|
465
406
|
show: boolean;
|
|
466
407
|
offsetX?: number;
|
|
467
408
|
offsetY?: number;
|
|
468
|
-
className?: string;
|
|
469
409
|
}
|
|
470
|
-
|
|
471
|
-
* A generalized tooltip that automatically follows the mouse cursor.
|
|
472
|
-
*/
|
|
473
|
-
declare function Tooltip({ content, show, offsetX, offsetY, className, }: TooltipProps): react_jsx_runtime.JSX.Element | null;
|
|
410
|
+
declare function Tooltip({ children, show, offsetX, offsetY, className, ...rest }: TooltipProps): react_jsx_runtime.JSX.Element | null;
|
|
474
411
|
|
|
475
|
-
interface
|
|
476
|
-
children?:
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
interface ParagraphProps {
|
|
482
|
-
level: 1 | 2 | 3;
|
|
483
|
-
children?: string;
|
|
484
|
-
variant?: keyof typeof TextVariant;
|
|
485
|
-
styles?: string;
|
|
486
|
-
decoration?: keyof typeof Decoration;
|
|
412
|
+
interface TypographyProps extends BaseComponentProps {
|
|
413
|
+
children?: ReactNode;
|
|
414
|
+
level?: 1 | 2 | 3;
|
|
415
|
+
variant?: Variant$1;
|
|
416
|
+
decoration?: TextDecoration;
|
|
487
417
|
bold?: boolean;
|
|
488
418
|
italic?: boolean;
|
|
489
|
-
onClick?: () => void;
|
|
490
419
|
}
|
|
491
|
-
declare const Paragraph: ({ level, children, variant, decoration, bold, italic, styles, onClick, }: ParagraphProps) => react_jsx_runtime.JSX.Element;
|
|
492
420
|
|
|
493
|
-
interface
|
|
494
|
-
level
|
|
495
|
-
children?: string;
|
|
496
|
-
variant?: keyof typeof TextVariant;
|
|
497
|
-
styles?: string;
|
|
498
|
-
decoration?: keyof typeof Decoration;
|
|
499
|
-
bold?: boolean;
|
|
500
|
-
italic?: boolean;
|
|
501
|
-
onClick?: () => void;
|
|
421
|
+
interface DisplayProps extends TypographyProps {
|
|
422
|
+
level?: 1 | 2 | 3;
|
|
502
423
|
}
|
|
503
|
-
declare const
|
|
424
|
+
declare const Display: ({ level, children, variant, decoration, bold, italic, className, ...rest }: DisplayProps) => react_jsx_runtime.JSX.Element;
|
|
504
425
|
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
declare const
|
|
426
|
+
declare const Chapter: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
427
|
+
|
|
428
|
+
declare const Section: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
429
|
+
|
|
430
|
+
declare const Paragraph: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
431
|
+
|
|
432
|
+
declare const Quote: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
433
|
+
|
|
434
|
+
declare const Caption: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
435
|
+
|
|
436
|
+
declare const Label: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
437
|
+
|
|
438
|
+
declare const Code: ({ children, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
439
|
+
|
|
440
|
+
declare const Lead: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
441
|
+
|
|
442
|
+
declare const Overline: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
516
443
|
|
|
517
444
|
declare const Typography: {
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
445
|
+
Display: ({ level, children, variant, decoration, bold, italic, className, ...rest }: DisplayProps) => react_jsx_runtime.JSX.Element;
|
|
446
|
+
Chapter: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
447
|
+
Section: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
448
|
+
Paragraph: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
449
|
+
Quote: ({ level, children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
450
|
+
Lead: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
451
|
+
Caption: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
452
|
+
Label: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
453
|
+
Code: ({ children, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
454
|
+
Overline: ({ children, variant, decoration, bold, italic, className, ...rest }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
522
455
|
};
|
|
523
456
|
|
|
524
457
|
interface Tier {
|
|
@@ -539,31 +472,95 @@ interface ValueBadgeProps {
|
|
|
539
472
|
}
|
|
540
473
|
declare const ValueBadge: ({ value, tiers, lowerBound, upperBound, formatValue, className, noBackground, }: ValueBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
541
474
|
|
|
542
|
-
|
|
475
|
+
interface CloudinaryVideoProps extends BaseComponentProps<HTMLVideoElement> {
|
|
476
|
+
publicId?: string;
|
|
477
|
+
cloudName?: string;
|
|
478
|
+
secure?: boolean;
|
|
479
|
+
controls?: boolean;
|
|
480
|
+
autoPlay?: boolean;
|
|
481
|
+
muted?: boolean;
|
|
482
|
+
loop?: boolean;
|
|
483
|
+
playsInline?: boolean;
|
|
484
|
+
poster?: string;
|
|
485
|
+
preload?: "none" | "metadata" | "auto";
|
|
486
|
+
}
|
|
487
|
+
declare function CloudinaryVideo({ publicId, cloudName, secure, controls, autoPlay, muted, loop, playsInline, poster, preload, className, ...rest }: CloudinaryVideoProps): react_jsx_runtime.JSX.Element;
|
|
543
488
|
|
|
544
|
-
interface
|
|
489
|
+
interface YoutubeVideoProps extends BaseComponentProps<HTMLIFrameElement> {
|
|
545
490
|
videoUrl: string;
|
|
546
491
|
width?: number;
|
|
547
492
|
height?: number;
|
|
493
|
+
autoPlay?: boolean;
|
|
494
|
+
muted?: boolean;
|
|
495
|
+
controls?: boolean;
|
|
496
|
+
loop?: boolean;
|
|
497
|
+
privacyMode?: boolean;
|
|
548
498
|
}
|
|
549
|
-
declare function
|
|
499
|
+
declare function YoutubeVideo({ videoUrl, width, height, autoPlay, muted, controls, className, ...rest }: YoutubeVideoProps): react_jsx_runtime.JSX.Element;
|
|
550
500
|
|
|
551
501
|
interface WorldMapPoint {
|
|
552
502
|
code: string;
|
|
553
503
|
value: number;
|
|
554
504
|
}
|
|
555
|
-
interface WorldMapProps {
|
|
505
|
+
interface WorldMapProps extends BaseComponentProps {
|
|
556
506
|
data: WorldMapPoint[];
|
|
557
507
|
title?: string;
|
|
558
508
|
bubbleColor?: string;
|
|
559
509
|
bubbleStroke?: string;
|
|
560
510
|
bubbleScale?: number;
|
|
561
511
|
minBubble?: number;
|
|
562
|
-
styles?: string;
|
|
563
512
|
disableCountryHover?: boolean;
|
|
564
513
|
disableCountrySelect?: boolean;
|
|
565
514
|
}
|
|
566
|
-
declare function WorldMap({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble,
|
|
515
|
+
declare function WorldMap({ data, title, bubbleColor, bubbleStroke, bubbleScale, minBubble, disableCountryHover, disableCountrySelect, className, ...rest }: WorldMapProps): react_jsx_runtime.JSX.Element;
|
|
516
|
+
|
|
517
|
+
declare enum Variant {
|
|
518
|
+
default = "default",
|
|
519
|
+
primary = "primary",
|
|
520
|
+
secondary = "secondary",
|
|
521
|
+
success = "success",
|
|
522
|
+
danger = "danger",
|
|
523
|
+
warning = "warning",
|
|
524
|
+
info = "info",
|
|
525
|
+
light = "light",
|
|
526
|
+
dark = "dark"
|
|
527
|
+
}
|
|
528
|
+
declare enum TextVariant {
|
|
529
|
+
default = "default",
|
|
530
|
+
primary = "primary",
|
|
531
|
+
secondary = "secondary",
|
|
532
|
+
success = "success",
|
|
533
|
+
danger = "danger",
|
|
534
|
+
warning = "warning",
|
|
535
|
+
info = "info",
|
|
536
|
+
light = "light",
|
|
537
|
+
dark = "dark"
|
|
538
|
+
}
|
|
539
|
+
declare enum Shape {
|
|
540
|
+
circle = "circle",
|
|
541
|
+
roundedSquare = "roundedSquare",
|
|
542
|
+
softRoundedSquare = "softRoundedSquare",
|
|
543
|
+
square = "square"
|
|
544
|
+
}
|
|
545
|
+
declare enum Size {
|
|
546
|
+
xs = "xs",
|
|
547
|
+
sm = "sm",
|
|
548
|
+
md = "md",
|
|
549
|
+
lg = "lg",
|
|
550
|
+
xl = "xl"
|
|
551
|
+
}
|
|
552
|
+
declare enum Decoration {
|
|
553
|
+
underline = "underline",
|
|
554
|
+
overline = "overline",
|
|
555
|
+
lineThrough = "lineThrough",
|
|
556
|
+
noUnderline = "noUnderline"
|
|
557
|
+
}
|
|
558
|
+
declare enum Target {
|
|
559
|
+
blank = "blank",
|
|
560
|
+
self = "self",
|
|
561
|
+
parent = "parent",
|
|
562
|
+
top = "top"
|
|
563
|
+
}
|
|
567
564
|
|
|
568
565
|
interface ButtonProps {
|
|
569
566
|
type?: "button" | "submit";
|
|
@@ -772,11 +769,10 @@ interface BackdropProps {
|
|
|
772
769
|
}
|
|
773
770
|
declare const Backdrop: ({ children, styles }: BackdropProps) => react_jsx_runtime.JSX.Element;
|
|
774
771
|
|
|
775
|
-
interface SkeletonProps {
|
|
772
|
+
interface SkeletonProps extends BaseComponentProps {
|
|
776
773
|
children?: React$1.ReactNode;
|
|
777
|
-
styles?: string;
|
|
778
774
|
}
|
|
779
|
-
declare const Skeleton: ({ children,
|
|
775
|
+
declare const Skeleton: ({ children, className, ...rest }: SkeletonProps) => react_jsx_runtime.JSX.Element;
|
|
780
776
|
|
|
781
777
|
declare function sendToast(data?: {
|
|
782
778
|
status: string;
|
|
@@ -1354,6 +1350,14 @@ interface DocumentationPanelProps {
|
|
|
1354
1350
|
}
|
|
1355
1351
|
declare function DocumentationPanel({ value, toc }: DocumentationPanelProps): react_jsx_runtime.JSX.Element;
|
|
1356
1352
|
|
|
1353
|
+
interface SliderProps {
|
|
1354
|
+
isLoading?: boolean;
|
|
1355
|
+
isSuccess?: boolean;
|
|
1356
|
+
coverArt: string;
|
|
1357
|
+
screenshots: string[];
|
|
1358
|
+
}
|
|
1359
|
+
declare function Slider({ isLoading, isSuccess, coverArt, screenshots }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
1360
|
+
|
|
1357
1361
|
interface WorldMapCountryTableProps {
|
|
1358
1362
|
title?: string;
|
|
1359
1363
|
data: WorldMapPoint[];
|
|
@@ -1534,11 +1538,13 @@ declare function ScrollToTop({ trigger, behavior, target, }: ScrollToTopProps):
|
|
|
1534
1538
|
|
|
1535
1539
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1536
1540
|
|
|
1537
|
-
declare const getCurrencySymbol: (code: string) => string | null;
|
|
1538
|
-
|
|
1539
1541
|
declare function isRenderFn(children: ReactNode | ((activeTab: string) => ReactNode)): children is (activeTab: string) => ReactNode;
|
|
1540
1542
|
|
|
1543
|
+
declare const getCurrencySymbol: (code: CurrencyCode) => string | null;
|
|
1544
|
+
|
|
1545
|
+
declare const enumValues: <T extends Record<string, string>>(enumObject: T) => string[];
|
|
1546
|
+
|
|
1541
1547
|
declare const normalize: (path?: string) => string;
|
|
1542
1548
|
declare const isMatch: (itemPath?: string, currentPath?: string) => boolean;
|
|
1543
1549
|
|
|
1544
|
-
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AsyncComponentWrapper, Avatar, Backdrop, Badge, BarChart, type BaseAnimationConfig, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, Button, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Checkbox, Chip, CloudinaryImage,
|
|
1550
|
+
export { Accordion, type AnimationComponentProps, type AnimationVariant, type Appearance, AsyncComponentWrapper, Avatar, Backdrop, Badge, BarChart, type BaseAnimationConfig, type BaseComponentProps, type BaseMenuNode, type BaseOverlayConfig, type BaseTopNavNode, type BlobAnimationConfig, Block, BlockGroup, BoxNav, BoxNavItem, Brand, Breadcrumb, BreadcrumbItem, Button, Caption, Card, CardContent, CardFooter, CardHeader, type CardinalPosition, Chapter, Checkbox, Chip, CloudinaryImage, CloudinaryVideo, Code, Content, ContentArea, type CornerPosition, type CurrencyCode, DataView, DataViewTable, DateSelector, DefaultLayout, type DefaultMenuElements, Display, DocumentationPanel, Drawer, DrawerToggler, type EUIComponentDefaults, type EUIConfigs, EUIDevLayout, EUIProvider, type EUIRoute, Flag, Flex, FlexCol, FlexRow, Footer, FooterNav, FooterNavGroup, FooterNavItem, FooterNavItemContext, FooterNavItemTitle, Form, FormResponse, GenericLayout, GlowWrapper, type GradientAnimationConfig, Graph, type GraphData, GraphEdge, type GraphEdgeType, type GraphLayoutType, GraphNode, type GraphNodeType, type GraphProps, GraphRenderer, Grid, Header, HeaderNav, HeaderNavGroup, HeaderNavItem, HeaderNavItemContext, HeaderNavItemTitle, HomeLayout, type HyperRefTarget, Image, ImageInput, Info, Input, InputFile, InputLabel, InputList, InputListGroup, InputResponse, Label, Layout, type LayoutContext, type LayoutExecutor, Lead, LineChart, Link, List, type ListAlign, type ListBulletType, type ListDirection, ListItem, type ListItemData, MarkdownEditor, MarkdownProvider, MarkdownTOC, MarkdownViewer, Menu, type MenuElementType, MenuGroup, type MenuGroupNode, MenuItem, type MenuItemNode, MenuItemTitle, type MenuNode, type MenuProps, type MenuTitleNode, type MeshAnimationConfig, Modal, MotionSurface, MultiImageInput, type NavItem, type OctilePosition, type OverlayVariant, Overline, Paragraph, PieChart, PriceTag, ProgressBar, type ProgressBarProps, Quote, Radio, RouteTab, type RouteTabMode, RouteTabs, ScrollToTop, Section, Select, type Shape$1 as Shape, ShapeSwitch, ShowMore, Sidebar, SidebarLayout, SidemenuLayout, type Size$1 as Size, Skeleton, Slider, StarRating, StarRatingDistribution, StarRatingInput, Switch, TNDropdown, TNDropdownItem, TNDropdownTitle, TNGroup, Table, Tag, Tags, TextArea, type TextDecoration, ThemeContext, ThemeProvider, ThemeSwitch, TitleBanner, type TitleBannerLevel, Toast, Tooltip, TopNav, type TopNavComponents, type TopNavGroupNode, type TopNavItemNode, type TopNavNode, type TopNavProps, type TopNavTitleNode, Transition, TransitionDropdown, TransitionFadeIn, Typography, UnderConstructionBanner, ValueBadge, type Variant$1 as Variant, WorldMap, WorldMapCountryTable, YoutubeVideo as YoutubeVideoPlayer, cn, createForceLayout, createGridLayout, createTreeLayout, enumValues, getCurrencySymbol, getLayout, isMatch, isRenderFn, normalize, registerLayout, resolveWithGlobal, sendToast, useClickOutside, useCurrentTheme, useDrawer, useEUIConfig, useIsMobile, useModal, useTheme };
|