odaptos_design_system 1.4.39 → 1.4.40

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.39",
2
+ "version": "1.4.40",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  .date_picker {
2
2
  width: 100%;
3
- min-width: 16rem;
3
+ min-width: 13rem;
4
4
 
5
5
  span {
6
6
  font-family: OpenSans;
@@ -42,8 +42,8 @@
42
42
  }
43
43
 
44
44
  svg {
45
- height: 0.75rem;
46
- width: 0.75rem;
45
+ height: 1rem;
46
+ width: 1rem;
47
47
  }
48
48
  }
49
49
 
@@ -156,7 +156,7 @@ export const MultiSelect = ({
156
156
  setValue(defaultValue === undefined ? [] : defaultValue);
157
157
  }, [defaultValue]);
158
158
  return (
159
- <div className={`${className}`}>
159
+ <div className={`${className}`} style={{ width: '100%' }}>
160
160
  {topLabel && (
161
161
  <Text
162
162
  text={`${topLabel ? topLabel : ''} ${required ? '*' : ''}`}
@@ -1,6 +1,6 @@
1
1
  .time_picker {
2
2
  width: 100%;
3
- min-width: 16rem;
3
+ min-width: 13rem;
4
4
 
5
5
  span {
6
6
  font-family: OpenSans;
@@ -41,8 +41,8 @@
41
41
  }
42
42
 
43
43
  svg {
44
- height: 0.75rem;
45
- width: 0.75rem;
44
+ height: 1rem;
45
+ width: 1rem;
46
46
  }
47
47
  }
48
48