@useblu/ocean-core 1.59.3 → 1.61.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 +12 -0
- package/ocean.css +43 -6
- 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.61.0](https://github.com/ocean-ds/ocean-web/compare/v1.60.0...v1.61.0) (2024-06-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- drawer ([#1105](https://github.com/ocean-ds/ocean-web/issues/1105)) ([1c749e0](https://github.com/ocean-ds/ocean-web/commit/1c749e011aa19acf67f1deb0cc15e47618f40e3f))
|
|
11
|
+
|
|
12
|
+
# [1.60.0](https://github.com/ocean-ds/ocean-web/compare/v1.59.3...v1.60.0) (2024-06-13)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add tag size variant ([#1104](https://github.com/ocean-ds/ocean-web/issues/1104)) ([90e4a71](https://github.com/ocean-ds/ocean-web/commit/90e4a716c21902069d4260c0e6e71bf62f8f48c7))
|
|
17
|
+
|
|
6
18
|
## [1.59.3](https://github.com/ocean-ds/ocean-web/compare/v1.59.2...v1.59.3) (2024-06-06)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2891,15 +2891,43 @@
|
|
|
2891
2891
|
color: #67697a;
|
|
2892
2892
|
display: flex;
|
|
2893
2893
|
font-family: "Nunito Sans";
|
|
2894
|
-
|
|
2895
|
-
font-weight: 600;
|
|
2894
|
+
gap: 4px;
|
|
2896
2895
|
justify-content: left;
|
|
2897
|
-
line-height: 1.5;
|
|
2898
|
-
padding: 2px 4px;
|
|
2899
2896
|
width: -webkit-fit-content;
|
|
2900
2897
|
width: -moz-fit-content;
|
|
2901
2898
|
width: fit-content;
|
|
2902
2899
|
}
|
|
2900
|
+
.ods-tag--medium {
|
|
2901
|
+
font-size: 12px;
|
|
2902
|
+
font-weight: 600;
|
|
2903
|
+
line-height: 12px;
|
|
2904
|
+
padding: 4px 8px;
|
|
2905
|
+
}
|
|
2906
|
+
.ods-tag--medium__with-icon {
|
|
2907
|
+
padding: 2px 8px 2px 6px;
|
|
2908
|
+
}
|
|
2909
|
+
.ods-tag--small {
|
|
2910
|
+
font-size: 8px;
|
|
2911
|
+
font-weight: 700;
|
|
2912
|
+
line-height: 8px;
|
|
2913
|
+
padding: 4px 4px;
|
|
2914
|
+
}
|
|
2915
|
+
.ods-tag--highlight__important {
|
|
2916
|
+
color: white;
|
|
2917
|
+
font-size: 10px;
|
|
2918
|
+
font-weight: 800;
|
|
2919
|
+
line-height: 10px;
|
|
2920
|
+
padding: 4px 8px;
|
|
2921
|
+
background-color: #ff726e;
|
|
2922
|
+
}
|
|
2923
|
+
.ods-tag--highlight__neutral {
|
|
2924
|
+
color: white;
|
|
2925
|
+
font-size: 10px;
|
|
2926
|
+
font-weight: 800;
|
|
2927
|
+
line-height: 10px;
|
|
2928
|
+
padding: 4px 8px;
|
|
2929
|
+
background-color: #5872f5;
|
|
2930
|
+
}
|
|
2903
2931
|
.ods-tag--negative {
|
|
2904
2932
|
background-color: #fff1f4;
|
|
2905
2933
|
}
|
|
@@ -2959,7 +2987,6 @@
|
|
|
2959
2987
|
min-width: 16px;
|
|
2960
2988
|
}
|
|
2961
2989
|
.ods-tag__content {
|
|
2962
|
-
margin: 0 4px;
|
|
2963
2990
|
white-space: nowrap;
|
|
2964
2991
|
}
|
|
2965
2992
|
|
|
@@ -3907,8 +3934,13 @@
|
|
|
3907
3934
|
top: 0;
|
|
3908
3935
|
transition: all 335ms ease-out 0ms;
|
|
3909
3936
|
visibility: hidden;
|
|
3937
|
+
}
|
|
3938
|
+
.ods-drawer--small {
|
|
3910
3939
|
width: 378px;
|
|
3911
3940
|
}
|
|
3941
|
+
.ods-drawer--large {
|
|
3942
|
+
width: 476px;
|
|
3943
|
+
}
|
|
3912
3944
|
.ods-drawer--right {
|
|
3913
3945
|
left: auto;
|
|
3914
3946
|
right: 0;
|
|
@@ -3937,7 +3969,7 @@
|
|
|
3937
3969
|
|
|
3938
3970
|
.ods-drawer__content--header {
|
|
3939
3971
|
display: flex;
|
|
3940
|
-
height: 48px;
|
|
3972
|
+
min-height: 48px;
|
|
3941
3973
|
padding: 0 24px;
|
|
3942
3974
|
}
|
|
3943
3975
|
.ods-drawer__content--header--left {
|
|
@@ -3963,6 +3995,11 @@
|
|
|
3963
3995
|
.ods-drawer__content--header .ods-btn--primary:hover {
|
|
3964
3996
|
background-color: white;
|
|
3965
3997
|
}
|
|
3998
|
+
@media (max-width: 767px) {
|
|
3999
|
+
.ods-drawer__content--header {
|
|
4000
|
+
padding: 0 16px;
|
|
4001
|
+
}
|
|
4002
|
+
}
|
|
3966
4003
|
|
|
3967
4004
|
.ods-snackbar {
|
|
3968
4005
|
align-items: center;
|