@useblu/ocean-core 1.34.0 → 1.35.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 +10 -0
- package/ocean.css +57 -24
- 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,16 @@
|
|
|
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.35.0](https://github.com/ocean-ds/ocean-web/compare/v1.34.2...v1.35.0) (2022-10-03)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- components adjustments ([#1013](https://github.com/ocean-ds/ocean-web/issues/1013)) ([f6a1aa8](https://github.com/ocean-ds/ocean-web/commit/f6a1aa8d0b5210f048fd4b9c9a17d92971f4a9ad))
|
|
11
|
+
|
|
12
|
+
## [1.34.2](https://github.com/ocean-ds/ocean-web/compare/v1.34.1...v1.34.2) (2022-08-15)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @useblu/ocean-core
|
|
15
|
+
|
|
6
16
|
# [1.34.0](https://github.com/ocean-ds/ocean-web/compare/v1.33.1...v1.34.0) (2022-08-03)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1048,6 +1048,27 @@
|
|
|
1048
1048
|
font-family: "Nunito Sans";
|
|
1049
1049
|
width: 100%;
|
|
1050
1050
|
}
|
|
1051
|
+
.ods-form-control__header {
|
|
1052
|
+
align-items: center;
|
|
1053
|
+
display: flex;
|
|
1054
|
+
flex-direction: row;
|
|
1055
|
+
text-align: center;
|
|
1056
|
+
}
|
|
1057
|
+
.ods-form-control__label {
|
|
1058
|
+
margin-right: 4px;
|
|
1059
|
+
}
|
|
1060
|
+
.ods-form-control__icon {
|
|
1061
|
+
align-items: start;
|
|
1062
|
+
display: flex;
|
|
1063
|
+
flex-direction: column;
|
|
1064
|
+
justify-content: center;
|
|
1065
|
+
}
|
|
1066
|
+
.ods-form-control.ods-tooltip[data-tooltip-pos*=-left]::after {
|
|
1067
|
+
left: -5px;
|
|
1068
|
+
}
|
|
1069
|
+
.ods-form-control.ods-tooltip[data-tooltip-pos*=-left]::before {
|
|
1070
|
+
left: 3px;
|
|
1071
|
+
}
|
|
1051
1072
|
.ods-form-control__helper-text {
|
|
1052
1073
|
color: #b6b9cc;
|
|
1053
1074
|
font-size: 12px;
|
|
@@ -1861,7 +1882,6 @@
|
|
|
1861
1882
|
}
|
|
1862
1883
|
.ods-badge--small .ods-badge__text {
|
|
1863
1884
|
border-radius: 40px;
|
|
1864
|
-
box-shadow: 0 4px 10px #ff726e3d;
|
|
1865
1885
|
padding: 0 4px;
|
|
1866
1886
|
width: auto;
|
|
1867
1887
|
}
|
|
@@ -1876,27 +1896,15 @@
|
|
|
1876
1896
|
.ods-badge--brand .ods-badge__content {
|
|
1877
1897
|
background-color: #0025e0;
|
|
1878
1898
|
}
|
|
1879
|
-
.ods-badge--brand .ods-badge__text.ods-badge__content {
|
|
1880
|
-
box-shadow: 0 4px 10px #0025e03d;
|
|
1881
|
-
}
|
|
1882
1899
|
.ods-badge--complementary .ods-badge__content {
|
|
1883
1900
|
background-color: #13bdbd;
|
|
1884
1901
|
}
|
|
1885
|
-
.ods-badge--complementary .ods-badge__text.ods-badge__content {
|
|
1886
|
-
box-shadow: 0 4px 10px #13bdbd3d;
|
|
1887
|
-
}
|
|
1888
1902
|
.ods-badge--alert .ods-badge__content {
|
|
1889
1903
|
background-color: #ff8a14;
|
|
1890
1904
|
}
|
|
1891
|
-
.ods-badge--alert .ods-badge__text.ods-badge__content {
|
|
1892
|
-
box-shadow: 0 4px 10px #ff8a143d;
|
|
1893
|
-
}
|
|
1894
1905
|
.ods-badge--neutral .ods-badge__content {
|
|
1895
1906
|
background-color: #b6b9cc;
|
|
1896
1907
|
}
|
|
1897
|
-
.ods-badge--neutral .ods-badge__text.ods-badge__content {
|
|
1898
|
-
box-shadow: 0 4px 10px #b6b9cc3d;
|
|
1899
|
-
}
|
|
1900
1908
|
|
|
1901
1909
|
.ods-btn {
|
|
1902
1910
|
border: 0;
|
|
@@ -2283,28 +2291,44 @@
|
|
|
2283
2291
|
color: #b6b9cc;
|
|
2284
2292
|
}
|
|
2285
2293
|
|
|
2286
|
-
.ods-
|
|
2287
|
-
|
|
2294
|
+
.ods-link {
|
|
2295
|
+
align-items: center;
|
|
2288
2296
|
cursor: pointer;
|
|
2297
|
+
display: flex;
|
|
2289
2298
|
font-family: "Nunito Sans";
|
|
2290
2299
|
font-weight: 600;
|
|
2300
|
+
justify-content: center;
|
|
2291
2301
|
line-height: 1;
|
|
2292
2302
|
}
|
|
2293
|
-
.ods-
|
|
2303
|
+
.ods-link--sm {
|
|
2304
|
+
font-size: 14px;
|
|
2305
|
+
}
|
|
2306
|
+
.ods-link--md {
|
|
2307
|
+
font-size: 16px;
|
|
2308
|
+
}
|
|
2309
|
+
.ods-link--primary {
|
|
2310
|
+
color: #0025e0;
|
|
2311
|
+
}
|
|
2312
|
+
.ods-link--primary:hover {
|
|
2294
2313
|
color: #5872f5;
|
|
2295
2314
|
text-decoration: underline;
|
|
2296
2315
|
}
|
|
2297
|
-
.ods-
|
|
2316
|
+
.ods-link--inverse {
|
|
2298
2317
|
color: #6ae5e5;
|
|
2299
2318
|
}
|
|
2300
|
-
.ods-
|
|
2319
|
+
.ods-link--inverse:hover {
|
|
2301
2320
|
color: #b0f5f5;
|
|
2321
|
+
text-decoration: underline;
|
|
2302
2322
|
}
|
|
2303
|
-
.ods-
|
|
2304
|
-
|
|
2323
|
+
.ods-link--neutral {
|
|
2324
|
+
color: #67697a;
|
|
2305
2325
|
}
|
|
2306
|
-
.ods-
|
|
2307
|
-
|
|
2326
|
+
.ods-link--neutral:hover {
|
|
2327
|
+
color: #5872f5;
|
|
2328
|
+
text-decoration: underline;
|
|
2329
|
+
}
|
|
2330
|
+
.ods-link__content {
|
|
2331
|
+
margin-right: 4px;
|
|
2308
2332
|
}
|
|
2309
2333
|
|
|
2310
2334
|
.ods-list {
|
|
@@ -2842,6 +2866,15 @@
|
|
|
2842
2866
|
font-weight: 700;
|
|
2843
2867
|
line-height: 1.1;
|
|
2844
2868
|
}
|
|
2869
|
+
.ods-typography__heading5 {
|
|
2870
|
+
color: #0c0d14;
|
|
2871
|
+
font-family: "Avenir";
|
|
2872
|
+
font-weight: 800;
|
|
2873
|
+
line-height: 1.1;
|
|
2874
|
+
font-size: 14px;
|
|
2875
|
+
font-weight: 700;
|
|
2876
|
+
line-height: 1.1;
|
|
2877
|
+
}
|
|
2845
2878
|
.ods-typography__subtitle1 {
|
|
2846
2879
|
color: #67697a;
|
|
2847
2880
|
font-family: "Nunito Sans";
|
|
@@ -2879,9 +2912,9 @@
|
|
|
2879
2912
|
.ods-typography__caption {
|
|
2880
2913
|
color: #67697a;
|
|
2881
2914
|
font-family: "Nunito Sans";
|
|
2882
|
-
font-weight: 400;
|
|
2883
|
-
line-height: 1.5;
|
|
2884
2915
|
font-size: 12px;
|
|
2916
|
+
font-weight: 600;
|
|
2917
|
+
line-height: 1.5;
|
|
2885
2918
|
}
|
|
2886
2919
|
.ods-typography--inverse {
|
|
2887
2920
|
color: white;
|