@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.
@@ -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,7 @@
1
+ import { Page } from './types';
2
+
3
+ interface BreadCrumbProps {
4
+ pages: Array<Page>;
5
+ }
6
+ export declare function Breadcrumb({ pages }: BreadCrumbProps): import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,5 @@
1
+ import { Page } from '../../types';
2
+
3
+ export default function MorePages({ pages }: {
4
+ pages: Array<Page>;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Breadcrumb';
@@ -0,0 +1,4 @@
1
+ export interface Page {
2
+ label: string;
3
+ to: string;
4
+ }
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Checkbox } from './Checkbox';
3
+
4
+ declare const meta: Meta<typeof Checkbox>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Checkbox>;
7
+ export declare const CheckboxDefault: Story;
@@ -27,6 +27,7 @@ export * from './user-chip';
27
27
  export * from './tabs';
28
28
  export * from './task-cards';
29
29
  export * from './button-v2';
30
+ export * from './breadcrumb';
30
31
  export * from './badge';
31
32
  export * from './pill';
32
33
  export * from './table-v3';
@@ -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 {};
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { RadioGroup } from './RadioGroup';
3
+
4
+ declare const meta: Meta<typeof RadioGroup>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof RadioGroup>;
7
+ export declare const RadioGroupDefault: Story;
@@ -1,2 +1,2 @@
1
- export { Tabs } from './Tabs';
2
- export { Tab } from './Tab';
1
+ export * from './Tabs';
2
+ export * from './Tab';
@@ -1,8 +1,11 @@
1
1
  import { ITask } from './types';
2
2
 
3
- interface TaskCardProps {
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 TaskCard({ headers, data }: TaskCardProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function TaskCards({ headers, data, isLoading, isError, emptyText, }: TaskCardsProps): import("react/jsx-runtime").JSX.Element;
8
11
  export {};