@useblu/ocean-core 1.135.2 → 1.137.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 +13 -0
- package/ocean.css +120 -1
- 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,19 @@
|
|
|
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.137.0](https://github.com/ocean-ds/ocean-web/compare/v1.136.0...v1.137.0) (2026-07-27)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add Banner component ([#1251](https://github.com/ocean-ds/ocean-web/issues/1251)) ([a4dfe36](https://github.com/ocean-ds/ocean-web/commit/a4dfe36148b75521725c2b837943f7d9b607c390))
|
|
11
|
+
- **list:** adiciona indicatorPosition nos componentes de lista ([#1253](https://github.com/ocean-ds/ocean-web/issues/1253)) ([e98be1d](https://github.com/ocean-ds/ocean-web/commit/e98be1d8b99faa3c1f3fe7d6d970e914bc8d979a))
|
|
12
|
+
|
|
13
|
+
# [1.136.0](https://github.com/ocean-ds/ocean-web/compare/v1.135.3...v1.136.0) (2026-05-11)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- **list-selectable:** add cornerTag prop with Highlight Corner Tag (MR-490) ([#1244](https://github.com/ocean-ds/ocean-web/issues/1244)) ([d30ed92](https://github.com/ocean-ds/ocean-web/commit/d30ed92d41b2837a42749ca0056314b6cda9243f)), closes [/github.com/Pagnet/pagnet/issues/16178#issuecomment-4343595459](https://github.com//github.com/Pagnet/pagnet/issues/16178/issues/issuecomment-4343595459)
|
|
18
|
+
|
|
6
19
|
## [1.135.2](https://github.com/ocean-ds/ocean-web/compare/v1.135.1...v1.135.2) (2026-04-30)
|
|
7
20
|
|
|
8
21
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2115,6 +2115,90 @@
|
|
|
2115
2115
|
padding-top: 0;
|
|
2116
2116
|
}
|
|
2117
2117
|
|
|
2118
|
+
.ods-banner {
|
|
2119
|
+
border-radius: 8px;
|
|
2120
|
+
font-family: "Nunito Sans";
|
|
2121
|
+
overflow: hidden;
|
|
2122
|
+
width: 100%;
|
|
2123
|
+
}
|
|
2124
|
+
.ods-banner--default {
|
|
2125
|
+
background-color: #f3f5fe;
|
|
2126
|
+
}
|
|
2127
|
+
.ods-banner--warning {
|
|
2128
|
+
background-color: #fff7f0;
|
|
2129
|
+
}
|
|
2130
|
+
.ods-banner--negative {
|
|
2131
|
+
background-color: #fff1f4;
|
|
2132
|
+
}
|
|
2133
|
+
.ods-banner--emphasys {
|
|
2134
|
+
background-color: #0025e0;
|
|
2135
|
+
}
|
|
2136
|
+
.ods-banner--emphasys .ods-banner__actions .ods-btn--tertiary {
|
|
2137
|
+
color: white;
|
|
2138
|
+
}
|
|
2139
|
+
.ods-banner--emphasys .ods-typography__description {
|
|
2140
|
+
color: #f3f5fe;
|
|
2141
|
+
}
|
|
2142
|
+
.ods-banner__image-wrapper--top {
|
|
2143
|
+
line-height: 0;
|
|
2144
|
+
width: 100%;
|
|
2145
|
+
}
|
|
2146
|
+
.ods-banner__image-wrapper--top .ods-banner__image {
|
|
2147
|
+
display: block;
|
|
2148
|
+
height: auto;
|
|
2149
|
+
-o-object-fit: cover;
|
|
2150
|
+
object-fit: cover;
|
|
2151
|
+
width: 100%;
|
|
2152
|
+
}
|
|
2153
|
+
.ods-banner__image-wrapper--side {
|
|
2154
|
+
flex-shrink: 0;
|
|
2155
|
+
width: 82px;
|
|
2156
|
+
}
|
|
2157
|
+
.ods-banner__image-wrapper--side .ods-banner__image {
|
|
2158
|
+
display: block;
|
|
2159
|
+
height: 100%;
|
|
2160
|
+
-o-object-fit: cover;
|
|
2161
|
+
object-fit: cover;
|
|
2162
|
+
width: 100%;
|
|
2163
|
+
}
|
|
2164
|
+
.ods-banner__body {
|
|
2165
|
+
align-items: stretch;
|
|
2166
|
+
display: flex;
|
|
2167
|
+
}
|
|
2168
|
+
.ods-banner__content {
|
|
2169
|
+
display: flex;
|
|
2170
|
+
flex: 1;
|
|
2171
|
+
flex-direction: column;
|
|
2172
|
+
padding: 16px;
|
|
2173
|
+
}
|
|
2174
|
+
.ods-banner .ods-typography__heading4 {
|
|
2175
|
+
font-weight: 700;
|
|
2176
|
+
line-height: 1.24;
|
|
2177
|
+
}
|
|
2178
|
+
.ods-banner .ods-typography__description {
|
|
2179
|
+
font-weight: 600;
|
|
2180
|
+
margin-top: 4px;
|
|
2181
|
+
}
|
|
2182
|
+
.ods-banner .ods-btn--sm {
|
|
2183
|
+
min-width: unset;
|
|
2184
|
+
}
|
|
2185
|
+
.ods-banner__actions {
|
|
2186
|
+
display: flex;
|
|
2187
|
+
flex-wrap: wrap;
|
|
2188
|
+
gap: 16px;
|
|
2189
|
+
margin-top: 12px;
|
|
2190
|
+
}
|
|
2191
|
+
.ods-banner--large .ods-banner__body {
|
|
2192
|
+
flex-direction: column;
|
|
2193
|
+
}
|
|
2194
|
+
.ods-banner--large .ods-banner__actions {
|
|
2195
|
+
margin-top: 24px;
|
|
2196
|
+
}
|
|
2197
|
+
.ods-banner--small .ods-banner__body {
|
|
2198
|
+
flex-direction: row;
|
|
2199
|
+
flex-wrap: nowrap;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2118
2202
|
.ods-badge {
|
|
2119
2203
|
display: flex;
|
|
2120
2204
|
font-family: "Nunito Sans";
|
|
@@ -6152,6 +6236,16 @@
|
|
|
6152
6236
|
flex-direction: column;
|
|
6153
6237
|
min-width: 0;
|
|
6154
6238
|
}
|
|
6239
|
+
.ods-content-list__indicator {
|
|
6240
|
+
align-self: flex-start;
|
|
6241
|
+
display: flex;
|
|
6242
|
+
}
|
|
6243
|
+
.ods-content-list__indicator--above {
|
|
6244
|
+
margin-bottom: 8px;
|
|
6245
|
+
}
|
|
6246
|
+
.ods-content-list__indicator--below {
|
|
6247
|
+
margin-top: 8px;
|
|
6248
|
+
}
|
|
6155
6249
|
.ods-content-list .ods-typography__paragraph {
|
|
6156
6250
|
color: #393b47;
|
|
6157
6251
|
}
|
|
@@ -6544,7 +6638,7 @@
|
|
|
6544
6638
|
border: 0;
|
|
6545
6639
|
cursor: pointer;
|
|
6546
6640
|
display: flex;
|
|
6547
|
-
gap:
|
|
6641
|
+
gap: 8px;
|
|
6548
6642
|
min-width: 0;
|
|
6549
6643
|
padding: 16px 8px 16px 16px;
|
|
6550
6644
|
text-align: left;
|
|
@@ -6689,6 +6783,31 @@
|
|
|
6689
6783
|
cursor: not-allowed;
|
|
6690
6784
|
}
|
|
6691
6785
|
|
|
6786
|
+
.ods-corner-tag {
|
|
6787
|
+
align-items: center;
|
|
6788
|
+
border-radius: 0 0 0 8px;
|
|
6789
|
+
color: white;
|
|
6790
|
+
display: inline-flex;
|
|
6791
|
+
font-family: "Nunito Sans";
|
|
6792
|
+
font-size: 10px;
|
|
6793
|
+
font-weight: 800;
|
|
6794
|
+
height: 20px;
|
|
6795
|
+
justify-content: flex-end;
|
|
6796
|
+
line-height: 100%;
|
|
6797
|
+
padding: 0 8px;
|
|
6798
|
+
position: absolute;
|
|
6799
|
+
right: 0;
|
|
6800
|
+
text-align: right;
|
|
6801
|
+
top: 0;
|
|
6802
|
+
z-index: 2;
|
|
6803
|
+
}
|
|
6804
|
+
.ods-corner-tag--primaryDown {
|
|
6805
|
+
background-color: #5872f5;
|
|
6806
|
+
}
|
|
6807
|
+
.ods-corner-tag--complementaryPure {
|
|
6808
|
+
background-color: #13bdbd;
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6692
6811
|
.ods-internal-contextual-hero {
|
|
6693
6812
|
border-radius: 8px;
|
|
6694
6813
|
display: grid;
|