x-ui-design 0.3.21 → 0.3.23

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.
@@ -59,4 +59,8 @@
59
59
 
60
60
  .xUi-form-item .xUi-datepicker-container {
61
61
  margin-bottom: 10px;
62
+ }
63
+
64
+ .xUi-form-item .xUi-select {
65
+ margin-bottom: 15px;
62
66
  }
@@ -464,7 +464,7 @@ const SelectComponent = forwardRef<HTMLDivElement, SelectProps>(
464
464
  )?.[0] as HTMLDivElement;
465
465
 
466
466
  if (searchContent) {
467
- setSearchInputWidth(searchContent.clientWidth - PADDING_TAG_INPUT);
467
+ setSearchInputWidth(searchContent.clientWidth - (hasMode ? PADDING_TAG_INPUT : 0));
468
468
  }
469
469
 
470
470
  const timeout = setTimeout(() => {
@@ -19,7 +19,6 @@
19
19
  border: 1px solid var(--xui-border-color);
20
20
  box-sizing: border-box;
21
21
  padding: 2px 8px;
22
- margin-bottom: 15px;
23
22
  }
24
23
 
25
24
  .xUi-select-disabled {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x-ui-design",
3
- "version": "0.3.21",
3
+ "version": "0.3.23",
4
4
  "license": "ISC",
5
5
  "author": "Gabriel Boyajyan",
6
6
  "main": "dist/index.js",