@useblu/ocean-core 1.68.0 → 1.69.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 +18 -0
- package/ocean.css +26 -7
- 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,24 @@
|
|
|
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.69.1](https://github.com/ocean-ds/ocean-web/compare/v1.69.0...v1.69.1) (2024-11-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- checkbox border radius ([#1120](https://github.com/ocean-ds/ocean-web/issues/1120)) ([821429d](https://github.com/ocean-ds/ocean-web/commit/821429d660f275319657518cf77c1c828d3344bf))
|
|
11
|
+
|
|
12
|
+
# [1.69.0](https://github.com/ocean-ds/ocean-web/compare/v1.68.1...v1.69.0) (2024-08-21)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add optionally tag on card list item ([#1119](https://github.com/ocean-ds/ocean-web/issues/1119)) ([d300d12](https://github.com/ocean-ds/ocean-web/commit/d300d1282d6910555304f358bfd4dfe9d4991da3))
|
|
17
|
+
|
|
18
|
+
## [1.68.1](https://github.com/ocean-ds/ocean-web/compare/v1.68.0...v1.68.1) (2024-08-19)
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- web notification style ([#1118](https://github.com/ocean-ds/ocean-web/issues/1118)) ([7e6ad5a](https://github.com/ocean-ds/ocean-web/commit/7e6ad5a32ad64cb0349a69e129bcfabe9bb5d73a))
|
|
23
|
+
|
|
6
24
|
# [1.68.0](https://github.com/ocean-ds/ocean-web/compare/v1.67.0...v1.68.0) (2024-08-15)
|
|
7
25
|
|
|
8
26
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1512,6 +1512,19 @@
|
|
|
1512
1512
|
position: absolute;
|
|
1513
1513
|
width: 0;
|
|
1514
1514
|
}
|
|
1515
|
+
.ods-checkbox__root-container {
|
|
1516
|
+
display: flex;
|
|
1517
|
+
flex-direction: column;
|
|
1518
|
+
}
|
|
1519
|
+
.ods-checkbox__root-container__error-message {
|
|
1520
|
+
color: #f5456e;
|
|
1521
|
+
font-family: "Nunito Sans";
|
|
1522
|
+
font-size: 12px;
|
|
1523
|
+
font-weight: 600;
|
|
1524
|
+
line-height: 1.5;
|
|
1525
|
+
padding-top: 8px;
|
|
1526
|
+
word-break: break-word;
|
|
1527
|
+
}
|
|
1515
1528
|
.ods-checkbox__root {
|
|
1516
1529
|
display: inline-flex;
|
|
1517
1530
|
-webkit-user-select: none;
|
|
@@ -1530,7 +1543,7 @@
|
|
|
1530
1543
|
.ods-checkbox__checkmark {
|
|
1531
1544
|
background-color: white;
|
|
1532
1545
|
border: solid 1px #aaadc0;
|
|
1533
|
-
border-radius:
|
|
1546
|
+
border-radius: 4px;
|
|
1534
1547
|
box-sizing: border-box;
|
|
1535
1548
|
cursor: pointer;
|
|
1536
1549
|
height: 20px;
|
|
@@ -1560,12 +1573,13 @@
|
|
|
1560
1573
|
}
|
|
1561
1574
|
.ods-checkbox__checkmark--indeterminate::after {
|
|
1562
1575
|
border: 0;
|
|
1576
|
+
border-radius: 1px;
|
|
1563
1577
|
border-top: 2px solid #fff;
|
|
1564
1578
|
height: 0;
|
|
1565
1579
|
margin: 0;
|
|
1566
1580
|
position: absolute;
|
|
1567
1581
|
transform: none;
|
|
1568
|
-
width:
|
|
1582
|
+
width: 12px;
|
|
1569
1583
|
}
|
|
1570
1584
|
.ods-checkbox:checked ~ .ods-checkbox__checkmark::after {
|
|
1571
1585
|
display: block;
|
|
@@ -4632,6 +4646,12 @@
|
|
|
4632
4646
|
height: 24px;
|
|
4633
4647
|
width: 24px;
|
|
4634
4648
|
}
|
|
4649
|
+
.ods-card-list-item__wrapper {
|
|
4650
|
+
align-items: center;
|
|
4651
|
+
display: flex;
|
|
4652
|
+
flex-direction: row;
|
|
4653
|
+
gap: 8px;
|
|
4654
|
+
}
|
|
4635
4655
|
.ods-card-list-item__content {
|
|
4636
4656
|
display: flex;
|
|
4637
4657
|
flex-direction: column;
|
|
@@ -5101,9 +5121,8 @@
|
|
|
5101
5121
|
.ods-web-notification__content {
|
|
5102
5122
|
display: flex;
|
|
5103
5123
|
gap: 12px;
|
|
5104
|
-
max-width: 328px;
|
|
5105
5124
|
padding: 12px 8px 12px 16px;
|
|
5106
|
-
width:
|
|
5125
|
+
width: 100%;
|
|
5107
5126
|
z-index: 1;
|
|
5108
5127
|
}
|
|
5109
5128
|
.ods-web-notification__wrapper {
|
|
@@ -5129,6 +5148,9 @@
|
|
|
5129
5148
|
flex-direction: column;
|
|
5130
5149
|
width: 100%;
|
|
5131
5150
|
}
|
|
5151
|
+
.ods-web-notification__body .ods-typography__caption {
|
|
5152
|
+
color: #e0e2ee;
|
|
5153
|
+
}
|
|
5132
5154
|
.ods-web-notification__body p {
|
|
5133
5155
|
word-break: break-word;
|
|
5134
5156
|
}
|
|
@@ -5229,7 +5251,4 @@
|
|
|
5229
5251
|
width: 100%;
|
|
5230
5252
|
}
|
|
5231
5253
|
}
|
|
5232
|
-
.ods-typography__caption {
|
|
5233
|
-
color: #e0e2ee;
|
|
5234
|
-
}
|
|
5235
5254
|
/*# sourceMappingURL=ocean.css.map */
|