@useblu/ocean-core 1.112.1 → 1.113.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 +37 -5
- 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.113.2](https://github.com/ocean-ds/ocean-web/compare/v1.113.1...v1.113.2) (2025-12-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- chip multi select ([#1203](https://github.com/ocean-ds/ocean-web/issues/1203)) ([9943a81](https://github.com/ocean-ds/ocean-web/commit/9943a8160f8ab40eb8d325475c080d3ad7e32ffb))
|
|
11
|
+
|
|
12
|
+
# [1.113.0](https://github.com/ocean-ds/ocean-web/compare/v1.112.1...v1.113.0) (2025-10-22)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- updates modals ([#1193](https://github.com/ocean-ds/ocean-web/issues/1193)) ([ea8c934](https://github.com/ocean-ds/ocean-web/commit/ea8c934ec926dddb7f99d350019d977867e28566))
|
|
17
|
+
|
|
6
18
|
## [1.112.1](https://github.com/ocean-ds/ocean-web/compare/v1.112.0...v1.112.1) (2025-10-07)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2869,7 +2869,12 @@
|
|
|
2869
2869
|
opacity: 0;
|
|
2870
2870
|
}
|
|
2871
2871
|
.ods-modal__header {
|
|
2872
|
-
padding:
|
|
2872
|
+
padding: 18px 18px 10px;
|
|
2873
|
+
}
|
|
2874
|
+
@media (max-width: 767.98px) {
|
|
2875
|
+
.ods-modal__header {
|
|
2876
|
+
padding: 14px 14px 10px;
|
|
2877
|
+
}
|
|
2873
2878
|
}
|
|
2874
2879
|
.ods-modal__header-close {
|
|
2875
2880
|
background: transparent;
|
|
@@ -2882,7 +2887,12 @@
|
|
|
2882
2887
|
position: relative;
|
|
2883
2888
|
}
|
|
2884
2889
|
.ods-modal__body {
|
|
2885
|
-
padding: 0
|
|
2890
|
+
padding: 0 32px 32px;
|
|
2891
|
+
}
|
|
2892
|
+
@media (max-width: 767.98px) {
|
|
2893
|
+
.ods-modal__body {
|
|
2894
|
+
padding: 0 16px 16px;
|
|
2895
|
+
}
|
|
2886
2896
|
}
|
|
2887
2897
|
|
|
2888
2898
|
.ods-modal__content {
|
|
@@ -2936,7 +2946,7 @@
|
|
|
2936
2946
|
}
|
|
2937
2947
|
|
|
2938
2948
|
.ods-modal__content--sm {
|
|
2939
|
-
max-width:
|
|
2949
|
+
max-width: 420px;
|
|
2940
2950
|
}
|
|
2941
2951
|
@media (max-width: 767.98px) {
|
|
2942
2952
|
.ods-modal__content--sm {
|
|
@@ -2945,7 +2955,7 @@
|
|
|
2945
2955
|
}
|
|
2946
2956
|
|
|
2947
2957
|
.ods-modal__content--md {
|
|
2948
|
-
max-width:
|
|
2958
|
+
max-width: 540px;
|
|
2949
2959
|
}
|
|
2950
2960
|
@media (max-width: 767.98px) {
|
|
2951
2961
|
.ods-modal__content--md {
|
|
@@ -2954,7 +2964,7 @@
|
|
|
2954
2964
|
}
|
|
2955
2965
|
|
|
2956
2966
|
.ods-modal__content--lg {
|
|
2957
|
-
max-width:
|
|
2967
|
+
max-width: 660px;
|
|
2958
2968
|
}
|
|
2959
2969
|
@media (max-width: 767.98px) {
|
|
2960
2970
|
.ods-modal__content--lg {
|
|
@@ -2962,6 +2972,15 @@
|
|
|
2962
2972
|
}
|
|
2963
2973
|
}
|
|
2964
2974
|
|
|
2975
|
+
.ods-modal__content--xl {
|
|
2976
|
+
max-width: 780px;
|
|
2977
|
+
}
|
|
2978
|
+
@media (max-width: 767.98px) {
|
|
2979
|
+
.ods-modal__content--xl {
|
|
2980
|
+
max-width: none;
|
|
2981
|
+
}
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2965
2984
|
.ods-progress svg {
|
|
2966
2985
|
-webkit-animation: ods-loading-animation 0.8s linear infinite;
|
|
2967
2986
|
animation: ods-loading-animation 0.8s linear infinite;
|
|
@@ -5055,6 +5074,19 @@
|
|
|
5055
5074
|
padding: 16px 16px 16px 8px;
|
|
5056
5075
|
}
|
|
5057
5076
|
|
|
5077
|
+
.ods-chips__options--option-container {
|
|
5078
|
+
min-height: 0;
|
|
5079
|
+
padding: 0;
|
|
5080
|
+
width: 100%;
|
|
5081
|
+
}
|
|
5082
|
+
.ods-chips__options--option-container .ods-checkbox__root-container {
|
|
5083
|
+
width: 100%;
|
|
5084
|
+
}
|
|
5085
|
+
.ods-chips__options--option-container .ods-checkbox__root {
|
|
5086
|
+
padding: 16px;
|
|
5087
|
+
width: 100%;
|
|
5088
|
+
}
|
|
5089
|
+
|
|
5058
5090
|
.ods-unordered-list-item {
|
|
5059
5091
|
align-items: flex-start;
|
|
5060
5092
|
display: flex;
|