@cleen/ui 0.1.19 → 0.1.20
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.d.ts +2 -0
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1303,6 +1303,8 @@ type EditableCardProps = CardProps & {
|
|
|
1303
1303
|
description?: string;
|
|
1304
1304
|
/** Unified save callback for editable title and description fields */
|
|
1305
1305
|
onSave?: (field: EditableCardField, value: string) => Promise<void> | void;
|
|
1306
|
+
/** Whether to hide the description field */
|
|
1307
|
+
isDescriptionHidden?: boolean;
|
|
1306
1308
|
classNames?: {
|
|
1307
1309
|
/** Custom class name for the editable title element */
|
|
1308
1310
|
titleTextInput?: ComponentClassnames<EditableTextProps>;
|