imbric-theme 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,7 +22,8 @@ export const DynamicSelect = ({
22
22
  onFocus,
23
23
  onBlur,
24
24
  closeMenuOnSelect,
25
- maxMenuHeight
25
+ maxMenuHeight,
26
+ instanceId,
26
27
  }) => {
27
28
 
28
29
 
@@ -137,6 +138,7 @@ export const DynamicSelect = ({
137
138
  closeMenuOnSelect={closeMenuOnSelect}
138
139
  maxMenuHeight={maxMenuHeight}
139
140
  autosize={true}
141
+ instanceId={instanceId}
140
142
  />
141
143
  </div>
142
144
 
@@ -159,7 +161,8 @@ DynamicSelect.propTypes = {
159
161
  onFocus: PropTypes.func,
160
162
  onBlur: PropTypes.func,
161
163
  closeMenuOnSelect: PropTypes.bool,
162
- maxMenuHeight: PropTypes.number
164
+ maxMenuHeight: PropTypes.number,
165
+ instanceId: PropTypes.string,
163
166
  }
164
167
 
165
168
  DynamicSelect.defaultProps = {
@@ -176,7 +179,8 @@ DynamicSelect.defaultProps = {
176
179
  onFocus: () => { },
177
180
  onBlur: () => { },
178
181
  closeMenuOnSelect: true,
179
- maxMenuHeight: 300
182
+ maxMenuHeight: 300,
183
+ instanceId: ''
180
184
  }
181
185
 
182
186
  export default withStyles(styles)(DynamicSelect)
@@ -47,6 +47,8 @@ export const FooterTable = ({ getStyles, range, setPage, setDataPage, page, slic
47
47
  placeholder={placeholderDinamicSelect}
48
48
  isClearable={false}
49
49
  defaultValue={defaultValueSelect}
50
+ closeMenuOnSelect={false}
51
+ instanceId={'idResultsForPage'}
50
52
  />
51
53
 
52
54
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imbric-theme",
3
- "version": "0.7.6",
3
+ "version": "0.7.7",
4
4
  "description": "Components library IMBRIC",
5
5
  "private": false,
6
6
  "main": "index.js",