odaptos_design_system 2.0.138 → 2.0.139

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.
@@ -248,7 +248,6 @@ const Title = ({
248
248
  const getTextWeight = () => {
249
249
  if (weight === 'semi-bold') return styles$4.title_semi_bold;else if (weight === 'bold') return styles$4.title_bold;else if (weight === 'regular') return styles$4.title_regular;else return styles$4.title_regular;
250
250
  };
251
- console.log(`${styles$4.title} ${italic ? styles$4.title_italic : styles$4.title_normal} ${getTextWeight()} ${className ?? ''} ${getTextSize()} ${required && styles$4.title_required}`);
252
251
  switch (type) {
253
252
  case 'h1':
254
253
  return /*#__PURE__*/React__default.createElement("h1", Object.assign({}, props, {
@@ -17404,7 +17403,6 @@ const TextInput = props => {
17404
17403
  const end = target.selectionEnd;
17405
17404
  const value = target.value;
17406
17405
  const newValue = value.substring(0, start) + '\n' + value.substring(end);
17407
- console.log('newValue', newValue);
17408
17406
  e.preventDefault();
17409
17407
  onChange({
17410
17408
  target: {