imbric-theme 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -139,6 +139,8 @@ export const DynamicSelect = ({
139
139
  maxMenuHeight={maxMenuHeight}
140
140
  autosize={true}
141
141
  instanceId={instanceId}
142
+ menuPlacement='auto'
143
+ menuPosition='fixed'
142
144
  />
143
145
  </div>
144
146
 
@@ -894,18 +894,28 @@ export const RowTable = ({
894
894
  itemTd.typeFilterSub === 'date_only' ?
895
895
 
896
896
  <td className={getStyles('td')} key={[itemTd.accessor] + (indexTd + index)}>
897
- <Moment format="DD/MM/YYYY">
898
- {item[itemTd.accessor]}
899
- </Moment>
897
+
898
+ {item[itemTd.accessor] ? (
899
+
900
+ <Moment format="DD/MM/YYYY">
901
+ {item[itemTd.accessor]}
902
+ </Moment>
903
+
904
+ ) : null}
905
+
900
906
  </td>
901
907
 
902
908
  :
903
909
 
904
910
  <td className={getStyles('td')} key={[itemTd.accessor] + (indexTd + index)}>
905
911
  {/* <Moment format="DD/MM/YYYY hh:mm:ss"> */}
906
- <Moment format="DD/MM/YYYY HH:mm">
907
- {item[itemTd.accessor]}
908
- </Moment>
912
+ {item[itemTd.accessor] ? (
913
+
914
+ <Moment format="DD/MM/YYYY HH:mm">
915
+ {item[itemTd.accessor]}
916
+ </Moment>
917
+
918
+ ) : null}
909
919
  </td>
910
920
  :
911
921
 
@@ -984,8 +994,9 @@ export const RowTable = ({
984
994
  ))}
985
995
  </tr>
986
996
 
987
- ))}
988
- </tbody>
997
+ ))
998
+ }
999
+ </tbody >
989
1000
  // </table>
990
1001
 
991
1002
  // </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imbric-theme",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Components library IMBRIC",
5
5
  "private": false,
6
6
  "main": "index.js",