@useblu/ocean-core 1.37.0 → 1.37.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 +12 -0
- package/ocean.css +36 -41
- 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.37.2](https://github.com/ocean-ds/ocean-web/compare/v1.37.1...v1.37.2) (2022-11-09)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- components bugs ([#1034](https://github.com/ocean-ds/ocean-web/issues/1034)) ([d3e4397](https://github.com/ocean-ds/ocean-web/commit/d3e4397f301f631643c7b46023b8c80d93055ab9)), closes [#1023](https://github.com/ocean-ds/ocean-web/issues/1023) [#1018](https://github.com/ocean-ds/ocean-web/issues/1018)
|
|
11
|
+
|
|
12
|
+
## [1.37.1](https://github.com/ocean-ds/ocean-web/compare/v1.37.0...v1.37.1) (2022-10-24)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- component link with icons ([#1032](https://github.com/ocean-ds/ocean-web/issues/1032)) ([5ea2bbb](https://github.com/ocean-ds/ocean-web/commit/5ea2bbbc32482a0e0c8224bbdcd2decb30aa6517))
|
|
17
|
+
|
|
6
18
|
# [1.37.0](https://github.com/ocean-ds/ocean-web/compare/v1.36.3...v1.37.0) (2022-10-20)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1057,18 +1057,21 @@
|
|
|
1057
1057
|
.ods-form-control__label {
|
|
1058
1058
|
margin-right: 4px;
|
|
1059
1059
|
}
|
|
1060
|
+
.ods-form-control__element {
|
|
1061
|
+
max-height: 69.19px;
|
|
1062
|
+
}
|
|
1060
1063
|
.ods-form-control__icon {
|
|
1061
1064
|
align-items: start;
|
|
1062
1065
|
display: flex;
|
|
1063
1066
|
flex-direction: column;
|
|
1064
1067
|
justify-content: center;
|
|
1065
1068
|
}
|
|
1066
|
-
.ods-form-
|
|
1067
|
-
left: -5px;
|
|
1068
|
-
}
|
|
1069
|
-
.ods-form-control.ods-tooltip[data-tooltip-pos*=-left]::before {
|
|
1069
|
+
.ods-form-control__icon.ods-tooltip[data-tooltip-pos*=-left]::before {
|
|
1070
1070
|
left: 3px;
|
|
1071
1071
|
}
|
|
1072
|
+
.ods-form-control__icon.ods-tooltip[data-tooltip-pos*=-left]::after {
|
|
1073
|
+
left: -5px;
|
|
1074
|
+
}
|
|
1072
1075
|
.ods-form-control__helper-text {
|
|
1073
1076
|
color: #b6b9cc;
|
|
1074
1077
|
font-size: 12px;
|
|
@@ -1323,7 +1326,6 @@
|
|
|
1323
1326
|
border-radius: 4px;
|
|
1324
1327
|
display: flex;
|
|
1325
1328
|
height: 46px;
|
|
1326
|
-
margin: 1px;
|
|
1327
1329
|
}
|
|
1328
1330
|
.ods-input input {
|
|
1329
1331
|
border: 0;
|
|
@@ -1354,23 +1356,16 @@
|
|
|
1354
1356
|
.ods-input__number-controls {
|
|
1355
1357
|
cursor: pointer;
|
|
1356
1358
|
}
|
|
1357
|
-
.ods-input:hover, .ods-input:focus, .ods-input:active {
|
|
1359
|
+
.ods-input:hover, .ods-input:focus, .ods-input:active, .ods-input:focus-within {
|
|
1358
1360
|
border-color: #5872f5;
|
|
1359
1361
|
border-width: 2px;
|
|
1360
|
-
margin:
|
|
1362
|
+
margin: -1px;
|
|
1361
1363
|
}
|
|
1362
|
-
.ods-input--
|
|
1363
|
-
|
|
1364
|
-
}
|
|
1365
|
-
.ods-input--left input {
|
|
1366
|
-
padding: 0 16px;
|
|
1367
|
-
}
|
|
1368
|
-
.ods-input--left .ods-input__adornment {
|
|
1369
|
-
margin-right: -12px;
|
|
1370
|
-
padding: 0 0 0 16px;
|
|
1364
|
+
.ods-input--filled {
|
|
1365
|
+
border: 1px solid #b8c3ff;
|
|
1371
1366
|
}
|
|
1372
|
-
.ods-input--
|
|
1373
|
-
|
|
1367
|
+
.ods-input--error {
|
|
1368
|
+
border-color: #f5456e;
|
|
1374
1369
|
}
|
|
1375
1370
|
.ods-input--disabled {
|
|
1376
1371
|
background-color: #ebecf5;
|
|
@@ -1382,13 +1377,7 @@
|
|
|
1382
1377
|
cursor: not-allowed;
|
|
1383
1378
|
}
|
|
1384
1379
|
.ods-input--disabled:hover, .ods-input--disabled:focus, .ods-input--disabled:active {
|
|
1385
|
-
border-color: #
|
|
1386
|
-
}
|
|
1387
|
-
.ods-input--filled {
|
|
1388
|
-
border-color: #b8c3ff;
|
|
1389
|
-
}
|
|
1390
|
-
.ods-input--error {
|
|
1391
|
-
border-color: #f5456e;
|
|
1380
|
+
border-color: #5872f5;
|
|
1392
1381
|
}
|
|
1393
1382
|
.ods-input__adornment {
|
|
1394
1383
|
align-items: center;
|
|
@@ -1403,6 +1392,19 @@
|
|
|
1403
1392
|
.ods-input__adornment input {
|
|
1404
1393
|
padding: 0 4px;
|
|
1405
1394
|
}
|
|
1395
|
+
.ods-input--left {
|
|
1396
|
+
flex-direction: row-reverse;
|
|
1397
|
+
}
|
|
1398
|
+
.ods-input--left input {
|
|
1399
|
+
padding: 0 16px;
|
|
1400
|
+
}
|
|
1401
|
+
.ods-input--left .ods-input__adornment {
|
|
1402
|
+
margin-right: -12px;
|
|
1403
|
+
padding: 0 0 0 16px;
|
|
1404
|
+
}
|
|
1405
|
+
.ods-input--right .ods-input__adornment {
|
|
1406
|
+
margin-left: -12px;
|
|
1407
|
+
}
|
|
1406
1408
|
|
|
1407
1409
|
.ods-input--amount .ods-input--root {
|
|
1408
1410
|
align-items: center;
|
|
@@ -1454,10 +1456,9 @@
|
|
|
1454
1456
|
.ods-textarea::placeholder {
|
|
1455
1457
|
color: #d8dae8;
|
|
1456
1458
|
}
|
|
1457
|
-
.ods-textarea:hover, .ods-textarea:focus, .ods-textarea:active {
|
|
1458
|
-
border
|
|
1459
|
-
|
|
1460
|
-
padding: 15px;
|
|
1459
|
+
.ods-textarea:hover, .ods-textarea:focus, .ods-textarea:active, .ods-textarea:focus-within {
|
|
1460
|
+
border: 2px solid #5872f5;
|
|
1461
|
+
margin: -1px;
|
|
1461
1462
|
}
|
|
1462
1463
|
.ods-textarea:disabled {
|
|
1463
1464
|
background-color: #ebecf5;
|
|
@@ -1469,7 +1470,7 @@
|
|
|
1469
1470
|
border-color: #ebecf5;
|
|
1470
1471
|
}
|
|
1471
1472
|
.ods-textarea--filled {
|
|
1472
|
-
border
|
|
1473
|
+
border: 1px solid #b8c3ff;
|
|
1473
1474
|
}
|
|
1474
1475
|
.ods-textarea--error {
|
|
1475
1476
|
border-color: #f5456e;
|
|
@@ -2328,7 +2329,6 @@
|
|
|
2328
2329
|
align-items: center;
|
|
2329
2330
|
display: flex;
|
|
2330
2331
|
flex-direction: row;
|
|
2331
|
-
justify-content: center;
|
|
2332
2332
|
}
|
|
2333
2333
|
.ods-link svg {
|
|
2334
2334
|
margin-left: 4px;
|
|
@@ -2691,7 +2691,6 @@
|
|
|
2691
2691
|
border-radius: 4px;
|
|
2692
2692
|
display: flex;
|
|
2693
2693
|
height: 46px;
|
|
2694
|
-
margin: 1px;
|
|
2695
2694
|
width: 100%;
|
|
2696
2695
|
}
|
|
2697
2696
|
.ods-search input {
|
|
@@ -2719,13 +2718,12 @@
|
|
|
2719
2718
|
color: #d8dae8;
|
|
2720
2719
|
font-weight: 400;
|
|
2721
2720
|
}
|
|
2722
|
-
.ods-search:hover, .ods-search:focus, .ods-search:active {
|
|
2723
|
-
border
|
|
2724
|
-
|
|
2725
|
-
margin: 0;
|
|
2721
|
+
.ods-search:hover, .ods-search:focus, .ods-search:active, .ods-search:focus-within {
|
|
2722
|
+
border: 2px solid #5872f5;
|
|
2723
|
+
margin: -1px;
|
|
2726
2724
|
}
|
|
2727
2725
|
.ods-search--filled {
|
|
2728
|
-
border
|
|
2726
|
+
border: 1px solid #b8c3ff;
|
|
2729
2727
|
}
|
|
2730
2728
|
.ods-search--disabled {
|
|
2731
2729
|
background-color: #ebecf5;
|
|
@@ -2737,7 +2735,7 @@
|
|
|
2737
2735
|
cursor: not-allowed;
|
|
2738
2736
|
}
|
|
2739
2737
|
.ods-search--disabled:hover, .ods-search--disabled:focus, .ods-search--disabled:active {
|
|
2740
|
-
border
|
|
2738
|
+
border: #ebecf5;
|
|
2741
2739
|
}
|
|
2742
2740
|
.ods-search__adornment {
|
|
2743
2741
|
line-height: 0;
|
|
@@ -2746,9 +2744,6 @@
|
|
|
2746
2744
|
.ods-search__adornment svg {
|
|
2747
2745
|
color: #d8dae8;
|
|
2748
2746
|
}
|
|
2749
|
-
.ods-search--filled .ods-search__adornment svg {
|
|
2750
|
-
color: #0025e0;
|
|
2751
|
-
}
|
|
2752
2747
|
.ods-search__clean {
|
|
2753
2748
|
color: #b6b9cc;
|
|
2754
2749
|
margin-right: 4px;
|