@cleen/ui 0.1.20 → 0.1.21

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 CHANGED
@@ -1215,6 +1215,7 @@ type EditableTextProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1215
1215
  saveOnBlur?: boolean;
1216
1216
  isLoading?: boolean;
1217
1217
  customLoader?: ReactNode;
1218
+ renderText?: (value: string) => ReactNode | ReactNode;
1218
1219
  classNames?: {
1219
1220
  container?: string;
1220
1221
  input?: ComponentClassnames<InputProps>;
@@ -1279,6 +1280,7 @@ type EditableTextAreaProps = Omit<ComponentProps<'div'>, 'onChange'> & {
1279
1280
  saveOnBlur?: boolean;
1280
1281
  isLoading?: boolean;
1281
1282
  customLoader?: ReactNode;
1283
+ renderText?: (value: string) => ReactNode | ReactNode;
1282
1284
  classNames?: {
1283
1285
  container?: string;
1284
1286
  textArea?: ComponentClassnames<TextAreaProps>;