opus-react 0.6.8 → 0.6.9

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.cts CHANGED
@@ -1191,6 +1191,7 @@ type CrmWorkspaceLabProps = {
1191
1191
  declare function CrmWorkspaceLab({ variant, onAction }: CrmWorkspaceLabProps): react.JSX.Element;
1192
1192
 
1193
1193
  type OtpFieldProps = {
1194
+ autoFocus?: boolean;
1194
1195
  error?: string;
1195
1196
  help?: string;
1196
1197
  id: string;
@@ -1203,7 +1204,7 @@ type OtpFieldProps = {
1203
1204
  onChange: (value: string) => void;
1204
1205
  onComplete?: (value: string) => void;
1205
1206
  };
1206
- declare function OtpField({ error, help, id, label, labelPosition, length, mode, required, value, onChange, onComplete }: OtpFieldProps): react.JSX.Element;
1207
+ declare function OtpField({ autoFocus, error, help, id, label, labelPosition, length, mode, required, value, onChange, onComplete, }: OtpFieldProps): react.JSX.Element;
1207
1208
 
1208
1209
  type ShellProps = {
1209
1210
  error?: string;
package/dist/index.d.ts CHANGED
@@ -1191,6 +1191,7 @@ type CrmWorkspaceLabProps = {
1191
1191
  declare function CrmWorkspaceLab({ variant, onAction }: CrmWorkspaceLabProps): react.JSX.Element;
1192
1192
 
1193
1193
  type OtpFieldProps = {
1194
+ autoFocus?: boolean;
1194
1195
  error?: string;
1195
1196
  help?: string;
1196
1197
  id: string;
@@ -1203,7 +1204,7 @@ type OtpFieldProps = {
1203
1204
  onChange: (value: string) => void;
1204
1205
  onComplete?: (value: string) => void;
1205
1206
  };
1206
- declare function OtpField({ error, help, id, label, labelPosition, length, mode, required, value, onChange, onComplete }: OtpFieldProps): react.JSX.Element;
1207
+ declare function OtpField({ autoFocus, error, help, id, label, labelPosition, length, mode, required, value, onChange, onComplete, }: OtpFieldProps): react.JSX.Element;
1207
1208
 
1208
1209
  type ShellProps = {
1209
1210
  error?: string;