@hybr1d-tech/charizard 0.7.113 → 0.7.115
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/hybr1d-ui.js +2136 -2116
- package/dist/hybr1d-ui.umd.cjs +18 -18
- package/dist/index.d.ts +15 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2510,6 +2510,8 @@ export declare function Skeleton({ className, ...props }: SkeletonProps): JSX_2.
|
|
|
2510
2510
|
|
|
2511
2511
|
declare type SkeletonProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2512
2512
|
|
|
2513
|
+
export declare function Status({ status, children }: StatusProps): JSX_2.Element;
|
|
2514
|
+
|
|
2513
2515
|
export declare enum STATUS_MAP {
|
|
2514
2516
|
SUCCESS = "success",
|
|
2515
2517
|
INFO = "info",
|
|
@@ -2518,6 +2520,14 @@ export declare enum STATUS_MAP {
|
|
|
2518
2520
|
DEFAULT = "default"
|
|
2519
2521
|
}
|
|
2520
2522
|
|
|
2523
|
+
export declare enum STATUS_STATUS {
|
|
2524
|
+
DISABLED = "disabled",
|
|
2525
|
+
ENABLED = "enabled",
|
|
2526
|
+
INFO = "info",
|
|
2527
|
+
WARNING = "warning",
|
|
2528
|
+
NODATA = "no-data"
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2521
2531
|
export declare const statusMap: {
|
|
2522
2532
|
neutral: {
|
|
2523
2533
|
bg: string;
|
|
@@ -2545,6 +2555,11 @@ export declare const statusMap: {
|
|
|
2545
2555
|
};
|
|
2546
2556
|
};
|
|
2547
2557
|
|
|
2558
|
+
declare interface StatusProps {
|
|
2559
|
+
status?: STATUS_STATUS;
|
|
2560
|
+
children: React_2.ReactNode;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2548
2563
|
export declare function SVG({ path, width, height, spanClassName, svgClassName, customSpanStyles, customSvgStyles, handleClick, }: SVGProps): JSX_2.Element;
|
|
2549
2564
|
|
|
2550
2565
|
export declare type SVGProps = {
|