@wix/forms 1.0.132 → 1.0.134

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.
@@ -1872,6 +1872,8 @@ interface DropdownCustomOption$1 {
1872
1872
  interface DateTimeInput$1 extends DateTimeInputDateTimeInputTypeOptionsOneOf$1 {
1873
1873
  /** Options specific to the combined Date and Time input type. */
1874
1874
  dateTimeOptions?: DateTimeOptions$1;
1875
+ /** Options specific to the combined Date input type. */
1876
+ dateOptions?: DateOptions$1;
1875
1877
  /** Options specific to the Time-only input type. */
1876
1878
  timeOptions?: TimeOptions$1;
1877
1879
  /** Options specific to date picker type. */
@@ -1902,6 +1904,8 @@ interface DateTimeInput$1 extends DateTimeInputDateTimeInputTypeOptionsOneOf$1 {
1902
1904
  interface DateTimeInputDateTimeInputTypeOptionsOneOf$1 {
1903
1905
  /** Options specific to the combined Date and Time input type. */
1904
1906
  dateTimeOptions?: DateTimeOptions$1;
1907
+ /** Options specific to the combined Date input type. */
1908
+ dateOptions?: DateOptions$1;
1905
1909
  /** Options specific to the Time-only input type. */
1906
1910
  timeOptions?: TimeOptions$1;
1907
1911
  /** Options specific to date picker type. */
@@ -1929,6 +1933,8 @@ interface DateTimeOptions$1 {
1929
1933
  */
1930
1934
  use24HourFormat?: boolean;
1931
1935
  }
1936
+ interface DateOptions$1 {
1937
+ }
1932
1938
  interface TimeOptions$1 {
1933
1939
  /**
1934
1940
  * Flag indicating whether to use the 24-hour time format.
@@ -5862,6 +5868,8 @@ interface DropdownCustomOption {
5862
5868
  interface DateTimeInput extends DateTimeInputDateTimeInputTypeOptionsOneOf {
5863
5869
  /** Options specific to the combined Date and Time input type. */
5864
5870
  dateTimeOptions?: DateTimeOptions;
5871
+ /** Options specific to the combined Date input type. */
5872
+ dateOptions?: DateOptions;
5865
5873
  /** Options specific to the Time-only input type. */
5866
5874
  timeOptions?: TimeOptions;
5867
5875
  /** Options specific to date picker type. */
@@ -5892,6 +5900,8 @@ interface DateTimeInput extends DateTimeInputDateTimeInputTypeOptionsOneOf {
5892
5900
  interface DateTimeInputDateTimeInputTypeOptionsOneOf {
5893
5901
  /** Options specific to the combined Date and Time input type. */
5894
5902
  dateTimeOptions?: DateTimeOptions;
5903
+ /** Options specific to the combined Date input type. */
5904
+ dateOptions?: DateOptions;
5895
5905
  /** Options specific to the Time-only input type. */
5896
5906
  timeOptions?: TimeOptions;
5897
5907
  /** Options specific to date picker type. */
@@ -5919,6 +5929,8 @@ interface DateTimeOptions {
5919
5929
  */
5920
5930
  use24HourFormat?: boolean;
5921
5931
  }
5932
+ interface DateOptions {
5933
+ }
5922
5934
  interface TimeOptions {
5923
5935
  /**
5924
5936
  * Flag indicating whether to use the 24-hour time format.