@useblu/ocean-core 1.34.2 → 1.35.2

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,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.35.2](https://github.com/ocean-ds/ocean-web/compare/v1.35.1...v1.35.2) (2022-10-06)
7
+
8
+ ### Bug Fixes
9
+
10
+ - link component error ([#1021](https://github.com/ocean-ds/ocean-web/issues/1021)) ([471b21f](https://github.com/ocean-ds/ocean-web/commit/471b21facdce758e6e201965aa471c6be3a8f70c))
11
+
12
+ # [1.35.0](https://github.com/ocean-ds/ocean-web/compare/v1.34.2...v1.35.0) (2022-10-03)
13
+
14
+ ### Features
15
+
16
+ - components adjustments ([#1013](https://github.com/ocean-ds/ocean-web/issues/1013)) ([f6a1aa8](https://github.com/ocean-ds/ocean-web/commit/f6a1aa8d0b5210f048fd4b9c9a17d92971f4a9ad))
17
+
6
18
  ## [1.34.2](https://github.com/ocean-ds/ocean-web/compare/v1.34.1...v1.34.2) (2022-08-15)
7
19
 
8
20
  **Note:** Version bump only for package @useblu/ocean-core
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,47 @@
2283
2291
  color: #b6b9cc;
2284
2292
  }
2285
2293
 
2286
- .ods-lnk {
2287
- color: #0025e0;
2294
+ .ods-link {
2288
2295
  cursor: pointer;
2289
2296
  font-family: "Nunito Sans";
2290
2297
  font-weight: 600;
2291
2298
  line-height: 1;
2292
2299
  }
2293
- .ods-lnk:hover {
2300
+ .ods-link--sm {
2301
+ font-size: 14px;
2302
+ }
2303
+ .ods-link--md {
2304
+ font-size: 16px;
2305
+ }
2306
+ .ods-link--primary {
2307
+ color: #0025e0;
2308
+ }
2309
+ .ods-link--primary:hover {
2294
2310
  color: #5872f5;
2295
2311
  text-decoration: underline;
2296
2312
  }
2297
- .ods-lnk--inverse {
2313
+ .ods-link--inverse {
2298
2314
  color: #6ae5e5;
2299
2315
  }
2300
- .ods-lnk--inverse:hover {
2316
+ .ods-link--inverse:hover {
2301
2317
  color: #b0f5f5;
2318
+ text-decoration: underline;
2302
2319
  }
2303
- .ods-lnk--sm {
2304
- font-size: 14px;
2320
+ .ods-link--neutral {
2321
+ color: #67697a;
2305
2322
  }
2306
- .ods-lnk--md {
2307
- font-size: 16px;
2323
+ .ods-link--neutral:hover {
2324
+ color: #5872f5;
2325
+ text-decoration: underline;
2326
+ }
2327
+ .ods-link--with-icon {
2328
+ align-items: center;
2329
+ display: flex;
2330
+ flex-direction: row;
2331
+ justify-content: center;
2332
+ }
2333
+ .ods-link svg {
2334
+ margin-left: 4px;
2308
2335
  }
2309
2336
 
2310
2337
  .ods-list {
@@ -2842,6 +2869,15 @@
2842
2869
  font-weight: 700;
2843
2870
  line-height: 1.1;
2844
2871
  }
2872
+ .ods-typography__heading5 {
2873
+ color: #0c0d14;
2874
+ font-family: "Avenir";
2875
+ font-weight: 800;
2876
+ line-height: 1.1;
2877
+ font-size: 14px;
2878
+ font-weight: 700;
2879
+ line-height: 1.1;
2880
+ }
2845
2881
  .ods-typography__subtitle1 {
2846
2882
  color: #67697a;
2847
2883
  font-family: "Nunito Sans";
@@ -2879,9 +2915,9 @@
2879
2915
  .ods-typography__caption {
2880
2916
  color: #67697a;
2881
2917
  font-family: "Nunito Sans";
2882
- font-weight: 400;
2883
- line-height: 1.5;
2884
2918
  font-size: 12px;
2919
+ font-weight: 600;
2920
+ line-height: 1.5;
2885
2921
  }
2886
2922
  .ods-typography--inverse {
2887
2923
  color: white;