@scenid/react-formulator 0.4.3 → 0.4.4
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.cjs.js
CHANGED
|
@@ -31951,7 +31951,7 @@ var FormAutocomplete = function FormAutocomplete(_ref) {
|
|
|
31951
31951
|
renderOption: function renderOption(option) {
|
|
31952
31952
|
return /*#__PURE__*/React__default["default"].createElement(_Box__default["default"], null, /*#__PURE__*/React__default["default"].createElement(_Typography__default["default"], {
|
|
31953
31953
|
variant: "body1"
|
|
31954
|
-
}, option.entry), option.count !== undefined && /*#__PURE__*/React__default["default"].createElement(_Typography__default["default"], {
|
|
31954
|
+
}, option.entry), option.count !== undefined && option.count !== null && /*#__PURE__*/React__default["default"].createElement(_Typography__default["default"], {
|
|
31955
31955
|
variant: "caption"
|
|
31956
31956
|
}, "".concat(option.count, " Eintr\xE4ge")));
|
|
31957
31957
|
},
|
package/dist/index.esm.js
CHANGED
|
@@ -31882,7 +31882,7 @@ var FormAutocomplete = function FormAutocomplete(_ref) {
|
|
|
31882
31882
|
renderOption: function renderOption(option) {
|
|
31883
31883
|
return /*#__PURE__*/React__default.createElement(_Box, null, /*#__PURE__*/React__default.createElement(_Typography, {
|
|
31884
31884
|
variant: "body1"
|
|
31885
|
-
}, option.entry), option.count !== undefined && /*#__PURE__*/React__default.createElement(_Typography, {
|
|
31885
|
+
}, option.entry), option.count !== undefined && option.count !== null && /*#__PURE__*/React__default.createElement(_Typography, {
|
|
31886
31886
|
variant: "caption"
|
|
31887
31887
|
}, "".concat(option.count, " Eintr\xE4ge")));
|
|
31888
31888
|
},
|
package/package.json
CHANGED