@expresscsv/react 0.1.10 → 0.1.12

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.mts CHANGED
@@ -2970,6 +2970,13 @@ declare interface ExpressCSVLocale {
2970
2970
  validation: {
2971
2971
  showOtherMatch: string;
2972
2972
  };
2973
+ status: {
2974
+ successTitle: string;
2975
+ successDescription: string;
2976
+ errorTitle: string;
2977
+ errorDescription: string;
2978
+ close: string;
2979
+ };
2973
2980
  steps: {
2974
2981
  upload: string;
2975
2982
  selectSheet: string;
@@ -3720,7 +3727,7 @@ declare interface URLOptions {
3720
3727
  message?: string;
3721
3728
  }
3722
3729
 
3723
- export declare function useExpressCSV<TSchema extends ExType<unknown, ExBaseDef, unknown>>({ schema, title, importIdentifier, publishableKey, debug, preload, theme, colorMode, customCSS, fonts, stepDisplay, previewSchemaBeforeUpload, templateDownload, saveSession, locale, }: UseExpressCSVOptions<TSchema>): {
3730
+ export declare function useExpressCSV<TSchema extends ExType<unknown, ExBaseDef, unknown>>({ schema, title, importIdentifier, publishableKey, debug, preload, theme, colorMode, customCSS, fonts, stepDisplay, previewSchemaBeforeUpload, templateDownload, saveSession, locale, disableStatusStep, }: UseExpressCSVOptions<TSchema>): {
3724
3731
  open: (options: OpenOptions<Infer<TSchema>>) => void;
3725
3732
  widgetState: WidgetState;
3726
3733
  isInitialising: boolean;
@@ -3743,6 +3750,7 @@ export declare interface UseExpressCSVOptions<TSchema extends ExType<unknown, Ex
3743
3750
  templateDownload?: TemplateDownloadConfig;
3744
3751
  saveSession?: boolean;
3745
3752
  locale?: DeepPartial<ExpressCSVLocaleInput>;
3753
+ disableStatusStep?: boolean;
3746
3754
  }
3747
3755
 
3748
3756
  declare type UUIDVersion = 'v1' | 'v4' | 'v5' | 'all';