rez-table-listing-mui 1.3.24 → 1.3.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez-table-listing-mui",
3
- "version": "1.3.24",
3
+ "version": "1.3.26",
4
4
  "type": "module",
5
5
  "description": "A rez table listing component built on TanStack Table",
6
6
  "main": "dist/index.js",
@@ -921,21 +921,11 @@ const FilterForm = ({
921
921
  );
922
922
  }
923
923
 
924
- // ⬇️ NEW DATE LOGIC
925
- if (showDatePicker) {
926
- console.log("Inside Date", showDatePicker);
927
- return (
928
- <FormDatePicker
929
- filter={filter}
930
- control={control}
931
- onValueChange={updateFiltersFromForm}
932
- />
933
- );
934
- }
924
+ // DATE LOGIC
935
925
 
936
926
  if (showTextInsteadOfDate) {
937
927
  console.log(
938
- "Inside Show text",
928
+ "Inside showtext",
939
929
  showTextInsteadOfDate
940
930
  );
941
931
 
@@ -947,6 +937,40 @@ const FilterForm = ({
947
937
  />
948
938
  );
949
939
  }
940
+ // if (showDatePicker) {
941
+ // console.log("Inside Date", showDatePicker);
942
+ // return (
943
+ // <FormDatePicker
944
+ // filter={filter}
945
+ // control={control}
946
+ // onValueChange={updateFiltersFromForm}
947
+ // />
948
+ // );
949
+ // } else {
950
+ // console.log("Inside Text", FormTextfield);
951
+ // return (
952
+ // <FormTextfield
953
+ // filter={filter}
954
+ // control={control}
955
+ // onValueChange={updateFiltersFromForm}
956
+ // />
957
+ // );
958
+ // }
959
+
960
+ // if (showTextInsteadOfDate) {
961
+ // console.log(
962
+ // "Inside Show text",
963
+ // showTextInsteadOfDate
964
+ // );
965
+
966
+ // return (
967
+ // <FormTextfield
968
+ // filter={filter}
969
+ // control={control}
970
+ // onValueChange={updateFiltersFromForm}
971
+ // />
972
+ // );
973
+ // }
950
974
 
951
975
  if (
952
976
  filter?.filter_attribute_data_type === "select"