@mindly/ui-components 5.63.0 → 5.64.1
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/cjs/index.js +6 -6
- package/dist/cjs/lib2/shared/ui/ListItems/Item.d.ts +2 -0
- package/dist/cjs/lib2/shared/ui/Typography/Typography.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/shared/ui/ListItems/Item.d.ts +2 -0
- package/dist/esm/lib2/shared/ui/Typography/Typography.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,12 +4,14 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
4
4
|
rightContent?: React.ReactNode;
|
|
5
5
|
withBorders?: boolean;
|
|
6
6
|
isDisabled?: boolean;
|
|
7
|
+
isError?: boolean;
|
|
7
8
|
};
|
|
8
9
|
export declare const Item: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLIonItemElement> & {
|
|
9
10
|
leftContent?: React.ReactNode;
|
|
10
11
|
rightContent?: React.ReactNode;
|
|
11
12
|
withBorders?: boolean | undefined;
|
|
12
13
|
isDisabled?: boolean | undefined;
|
|
14
|
+
isError?: boolean | undefined;
|
|
13
15
|
} & React.RefAttributes<HTMLIonItemElement>>;
|
|
14
16
|
declare const _default: React.NamedExoticComponent<ItemProps>;
|
|
15
17
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1450,6 +1450,7 @@ type TypographyProps = {
|
|
|
1450
1450
|
className?: string;
|
|
1451
1451
|
children: React__default.ReactNode;
|
|
1452
1452
|
onClick?: (args: any) => typeof args;
|
|
1453
|
+
isError?: boolean;
|
|
1453
1454
|
};
|
|
1454
1455
|
declare const _default$r: React__default.NamedExoticComponent<TypographyProps>;
|
|
1455
1456
|
|
|
@@ -1903,6 +1904,7 @@ type ItemProps = React.HTMLAttributes<HTMLIonItemElement> & {
|
|
|
1903
1904
|
rightContent?: React.ReactNode;
|
|
1904
1905
|
withBorders?: boolean;
|
|
1905
1906
|
isDisabled?: boolean;
|
|
1907
|
+
isError?: boolean;
|
|
1906
1908
|
};
|
|
1907
1909
|
declare const _default$d: React.NamedExoticComponent<ItemProps>;
|
|
1908
1910
|
|