@charlesgomes/leafcode-shared-lib-react 1.0.81 → 1.0.82

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.js CHANGED
@@ -1960,23 +1960,9 @@ var getDefaultFilterMatchOptionsNumber = (isLanguagePtBr = true, isNullable = tr
1960
1960
  {
1961
1961
  label: isLanguagePtBr ? "Maior ou igual a" : "Greater than or equal to",
1962
1962
  value: import_api3.FilterMatchMode.GREATER_THAN_OR_EQUAL_TO
1963
- },
1964
- {
1965
- label: isLanguagePtBr ? "Entre" : "Between",
1966
- value: import_api3.FilterMatchMode.BETWEEN
1967
1963
  }
1968
1964
  ];
1969
- return isNullable ? [
1970
- ...baseOptions,
1971
- {
1972
- label: isLanguagePtBr ? "\xC9 nulo" : "Is null",
1973
- value: "isNull"
1974
- },
1975
- {
1976
- label: isLanguagePtBr ? "N\xE3o \xE9 nulo" : "Is not null",
1977
- value: "isNotNull"
1978
- }
1979
- ] : baseOptions;
1965
+ return isNullable ? [...baseOptions, ...getNullable(isLanguagePtBr)] : baseOptions;
1980
1966
  };
1981
1967
  var getDefaultFilterMatchOptionsStringArray = (isLanguagePtBr = true) => [
1982
1968
  {
package/dist/index.mjs CHANGED
@@ -1910,23 +1910,9 @@ var getDefaultFilterMatchOptionsNumber = (isLanguagePtBr = true, isNullable = tr
1910
1910
  {
1911
1911
  label: isLanguagePtBr ? "Maior ou igual a" : "Greater than or equal to",
1912
1912
  value: FilterMatchMode3.GREATER_THAN_OR_EQUAL_TO
1913
- },
1914
- {
1915
- label: isLanguagePtBr ? "Entre" : "Between",
1916
- value: FilterMatchMode3.BETWEEN
1917
1913
  }
1918
1914
  ];
1919
- return isNullable ? [
1920
- ...baseOptions,
1921
- {
1922
- label: isLanguagePtBr ? "\xC9 nulo" : "Is null",
1923
- value: "isNull"
1924
- },
1925
- {
1926
- label: isLanguagePtBr ? "N\xE3o \xE9 nulo" : "Is not null",
1927
- value: "isNotNull"
1928
- }
1929
- ] : baseOptions;
1915
+ return isNullable ? [...baseOptions, ...getNullable(isLanguagePtBr)] : baseOptions;
1930
1916
  };
1931
1917
  var getDefaultFilterMatchOptionsStringArray = (isLanguagePtBr = true) => [
1932
1918
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@charlesgomes/leafcode-shared-lib-react",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "Lib de componentes react",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",