iglooform 2.3.9 → 2.3.13

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.
@@ -339,18 +339,30 @@ var IglooSelect = function IglooSelect(_ref) {
339
339
  children: displayOptions.map(function (_ref10) {
340
340
  var label = _ref10.label,
341
341
  value = _ref10.value;
342
- return (0, _jsxRuntime.jsx)(Option, Object.assign({
342
+ return (0, _jsxRuntime.jsxs)(Option, Object.assign({
343
343
  value: value,
344
- label: label
344
+ label: label,
345
+ style: {
346
+ position: 'relative'
347
+ }
345
348
  }, {
346
- children: multiple ? (0, _jsxRuntime.jsxs)("div", {
349
+ children: [multiple ? (0, _jsxRuntime.jsxs)("div", {
347
350
  children: [(0, _jsxRuntime.jsx)(_checkbox.default, {
348
351
  checked: Array.isArray(selected) && selected.includes(value),
349
352
  style: {
350
353
  marginRight: 8
351
354
  }
352
355
  }, void 0), label]
353
- }, void 0) : label
356
+ }, void 0) : label, (0, _jsxRuntime.jsx)("div", {
357
+ style: {
358
+ position: 'absolute',
359
+ width: '100%',
360
+ height: '100%',
361
+ zIndex: 2,
362
+ top: 0,
363
+ left: 0
364
+ }
365
+ }, void 0)]
354
366
  }), value);
355
367
  })
356
368
  }), void 0)
@@ -20,6 +20,10 @@
20
20
 
21
21
  .ant-table-wrapper {
22
22
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
23
+
24
+ .ant-table {
25
+ overflow-x: scroll;
26
+ }
23
27
  }
24
28
 
25
29
  & table > thead > tr:first-child {
@@ -284,6 +288,7 @@
284
288
  color: @primary-color;
285
289
  }
286
290
  }
291
+
287
292
  .ant-dropdown-arrow {
288
293
  right: 11px;
289
294
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iglooform",
3
- "version": "2.3.9",
3
+ "version": "2.3.13",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "build-dev": "dumi build",