@data-c/ui 0.0.157 → 0.0.159

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
@@ -275,12 +275,15 @@ declare function PasswordTextField(props: TextFieldProps): react_jsx_runtime.JSX
275
275
 
276
276
  interface EditableProps {
277
277
  onChange: (value?: string) => void;
278
+ onEscape?: (oldValue?: string, newValue?: string) => void;
278
279
  value?: string;
279
280
  typographyProps?: TypographyProps;
280
281
  textFieldProps?: TextFieldProps;
281
282
  displayEditButton?: boolean;
282
283
  displaySaveButton?: boolean;
283
284
  isEditing?: boolean;
285
+ isLoading?: boolean;
286
+ error?: string | boolean;
284
287
  }
285
288
  declare function Editable(props: EditableProps): react_jsx_runtime.JSX.Element;
286
289