@ahmadmubarak98/namozaj 1.6.37 → 1.6.39

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/main.d.ts CHANGED
@@ -26,7 +26,6 @@ export declare type BaseFieldConfig = {
26
26
  fullRow?: boolean;
27
27
  className?: string;
28
28
  disabled?: boolean;
29
- dir?: "ltr" | "rtl";
30
29
  visibilityRules?: VisibilityRule[];
31
30
  dependencies?: FieldDependency[];
32
31
  onValueChange?: (value: FieldValueType, formMethods: any) => void;
@@ -358,6 +357,13 @@ export declare type PhoneFieldConfig = BaseFieldConfig & {
358
357
  defaultCountry?: NamozajPhoneFieldCountry;
359
358
  hideDropdown?: boolean;
360
359
  seperateCountryCode?: boolean;
360
+ sx?: {
361
+ input: SxProps<Theme> | undefined;
362
+ inputAdornment: SxProps<Theme> | undefined;
363
+ select: SxProps<Theme> | undefined;
364
+ menu: SxProps<Theme> | undefined;
365
+ countryName: SxProps<Theme> | undefined;
366
+ };
361
367
  };
362
368
  };
363
369