@useblu/ocean-core 1.54.0 → 1.55.0
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 +12 -0
- package/ocean.css +14 -2
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.55.0](https://github.com/ocean-ds/ocean-web/compare/v1.54.1...v1.55.0) (2024-03-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- selected value at chips ([#1094](https://github.com/ocean-ds/ocean-web/issues/1094)) ([07c6c58](https://github.com/ocean-ds/ocean-web/commit/07c6c58a1492489c1b83e357d96139a68cb24d05))
|
|
11
|
+
|
|
12
|
+
## [1.54.1](https://github.com/ocean-ds/ocean-web/compare/v1.54.0...v1.54.1) (2024-03-26)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- adjust optins columns ([#1093](https://github.com/ocean-ds/ocean-web/issues/1093)) ([b49ed7c](https://github.com/ocean-ds/ocean-web/commit/b49ed7cc28408a1cce4a2f6366b7c8799bff563e))
|
|
17
|
+
|
|
6
18
|
# [1.54.0](https://github.com/ocean-ds/ocean-web/compare/v1.53.0...v1.54.0) (2024-03-25)
|
|
7
19
|
|
|
8
20
|
### 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,8 +4484,15 @@
|
|
|
4479
4484
|
gap: 8px;
|
|
4480
4485
|
min-height: 40px;
|
|
4481
4486
|
padding: 8px 12px;
|
|
4487
|
+
text-wrap: nowrap;
|
|
4482
4488
|
width: 100%;
|
|
4483
4489
|
}
|
|
4490
|
+
.ods-chips__options--option--selected {
|
|
4491
|
+
background-color: #f7f9ff;
|
|
4492
|
+
border-radius: 4px;
|
|
4493
|
+
color: #0025e0;
|
|
4494
|
+
font-weight: 700;
|
|
4495
|
+
}
|
|
4484
4496
|
.ods-chips__options--option:hover {
|
|
4485
4497
|
background-color: #f7f9ff;
|
|
4486
4498
|
border-radius: 4px;
|