@useblu/ocean-core 1.54.0 → 1.54.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.54.1](https://github.com/ocean-ds/ocean-web/compare/v1.54.0...v1.54.1) (2024-03-26)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adjust optins columns ([#1093](https://github.com/ocean-ds/ocean-web/issues/1093)) ([b49ed7c](https://github.com/ocean-ds/ocean-web/commit/b49ed7cc28408a1cce4a2f6366b7c8799bff563e))
11
+
6
12
  # [1.54.0](https://github.com/ocean-ds/ocean-web/compare/v1.53.0...v1.54.0) (2024-03-25)
7
13
 
8
14
  ### Features
package/ocean.css CHANGED
@@ -4444,6 +4444,7 @@
4444
4444
  padding: 4px 0;
4445
4445
  position: absolute;
4446
4446
  top: 38px;
4447
+ width: auto;
4447
4448
  }
4448
4449
  .ods-chips__options--content {
4449
4450
  align-items: flex-start;
@@ -4457,13 +4458,17 @@
4457
4458
  }
4458
4459
  .ods-chips__options--content--columns-2 {
4459
4460
  display: grid;
4461
+ grid-column-gap: 20px;
4460
4462
  grid-template-columns: repeat(2, 1fr);
4461
- width: 296px;
4463
+ min-width: 296px;
4464
+ width: auto;
4462
4465
  }
4463
4466
  .ods-chips__options--content--columns-3 {
4464
4467
  display: grid;
4468
+ grid-column-gap: 20px;
4465
4469
  grid-template-columns: repeat(3, 1fr);
4466
- width: 436px;
4470
+ min-width: 436px;
4471
+ width: auto;
4467
4472
  }
4468
4473
  .ods-chips__options::-webkit-scrollbar {
4469
4474
  display: none;
@@ -4479,6 +4484,7 @@
4479
4484
  gap: 8px;
4480
4485
  min-height: 40px;
4481
4486
  padding: 8px 12px;
4487
+ text-wrap: nowrap;
4482
4488
  width: 100%;
4483
4489
  }
4484
4490
  .ods-chips__options--option:hover {