@hybr1d-tech/charizard 0.6.31 → 0.6.33
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/components/badge/Badge.d.ts +2 -1
- package/dist/components/breadcrumb/Breadcrumb.d.ts +7 -0
- package/dist/components/breadcrumb/components/more-pages/MorePages.d.ts +5 -0
- package/dist/components/breadcrumb/index.d.ts +1 -0
- package/dist/components/breadcrumb/types.d.ts +4 -0
- package/dist/components/checkbox/checkbox.stories.d.ts +7 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/radio-group/RadioGroup.d.ts +2 -1
- package/dist/components/radio-group/radio.stories.d.ts +7 -0
- package/dist/components/tabs/index.d.ts +2 -2
- package/dist/components/task-cards/TaskCards.d.ts +5 -2
- package/dist/hybr1d-ui.js +2725 -2632
- package/dist/hybr1d-ui.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -18,8 +18,9 @@ interface BadgeProps {
|
|
|
18
18
|
selected?: boolean;
|
|
19
19
|
children: React.ReactNode;
|
|
20
20
|
icon?: string;
|
|
21
|
+
customSvgStyles?: React.CSSProperties;
|
|
21
22
|
}
|
|
22
|
-
export declare function Badge({ highlight, status, selected, children, icon, }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare function Badge({ highlight, status, selected, children, icon, customSvgStyles, }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
23
24
|
export declare const statusMap: {
|
|
24
25
|
neutral: {
|
|
25
26
|
bg: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Breadcrumb';
|
|
@@ -39,6 +39,7 @@ interface RadioGroupProps {
|
|
|
39
39
|
errorMsg?: string;
|
|
40
40
|
optionsContainerStyles?: React.CSSProperties;
|
|
41
41
|
disabled?: boolean;
|
|
42
|
+
showSkeleton?: boolean;
|
|
42
43
|
}
|
|
43
|
-
export declare function RadioGroup({ items, radioHeading, defaultValue, onChange, required, errorMsg, optionsContainerStyles, disabled, }: RadioGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export declare function RadioGroup({ items, radioHeading, defaultValue, onChange, required, errorMsg, optionsContainerStyles, disabled, showSkeleton, }: RadioGroupProps): import("react/jsx-runtime").JSX.Element;
|
|
44
45
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export * from './Tabs';
|
|
2
|
+
export * from './Tab';
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { ITask } from './types';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface TaskCardsProps {
|
|
4
4
|
headers: string[];
|
|
5
5
|
data: ITask[];
|
|
6
|
+
isLoading?: boolean;
|
|
7
|
+
isError?: boolean;
|
|
8
|
+
emptyText?: string;
|
|
6
9
|
}
|
|
7
|
-
export declare function
|
|
10
|
+
export declare function TaskCards({ headers, data, isLoading, isError, emptyText, }: TaskCardsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
11
|
export {};
|