@oliasoft-open-source/react-ui-library 4.0.0-beta-33 → 4.0.0-beta-34
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/dist/global.css +7 -7
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -2936,7 +2936,7 @@ html[data-theme='dark'] {
|
|
|
2936
2936
|
gap: var(--margin);
|
|
2937
2937
|
margin-top: var(--margin-xs);
|
|
2938
2938
|
}
|
|
2939
|
-
.
|
|
2939
|
+
._wrapper_1haxe_1 {
|
|
2940
2940
|
z-index: var(--zindex-modal);
|
|
2941
2941
|
position: fixed;
|
|
2942
2942
|
top: 0;
|
|
@@ -2944,13 +2944,13 @@ html[data-theme='dark'] {
|
|
|
2944
2944
|
height: 100%;
|
|
2945
2945
|
width: 100%;
|
|
2946
2946
|
background: rgba(0, 0, 0, 0.8);
|
|
2947
|
-
padding:
|
|
2947
|
+
padding: var(--padding);
|
|
2948
2948
|
overflow-x: hidden;
|
|
2949
2949
|
overflow-y: auto;
|
|
2950
2950
|
display: flex;
|
|
2951
2951
|
flex-direction: column;
|
|
2952
2952
|
}
|
|
2953
|
-
.
|
|
2953
|
+
._contentContainer_1haxe_15 {
|
|
2954
2954
|
color: var(--color-background-raised);
|
|
2955
2955
|
max-height: 100%;
|
|
2956
2956
|
flex-grow: 1;
|
|
@@ -2959,14 +2959,14 @@ html[data-theme='dark'] {
|
|
|
2959
2959
|
align-items: center;
|
|
2960
2960
|
justify-content: flex-start;
|
|
2961
2961
|
}
|
|
2962
|
-
.
|
|
2963
|
-
margin-right:
|
|
2962
|
+
._contentContainer_1haxe_15 button:not(:last-child) {
|
|
2963
|
+
margin-right: var(--margin);
|
|
2964
2964
|
}
|
|
2965
|
-
.
|
|
2965
|
+
._centered_1haxe_27 > * {
|
|
2966
2966
|
margin-top: auto;
|
|
2967
2967
|
margin-bottom: auto;
|
|
2968
2968
|
}
|
|
2969
|
-
.
|
|
2969
|
+
._newLine_1haxe_31 {
|
|
2970
2970
|
white-space: 'pre-wrap';
|
|
2971
2971
|
}
|
|
2972
2972
|
._menu_vqsn8_1 {
|
package/dist/index.js
CHANGED
|
@@ -27238,10 +27238,10 @@ const Portal = ({ id: id2, children }) => {
|
|
|
27238
27238
|
Portal.propTypes = {
|
|
27239
27239
|
id: propTypes$1.exports.string.isRequired
|
|
27240
27240
|
};
|
|
27241
|
-
const wrapper$2 = "
|
|
27242
|
-
const contentContainer = "
|
|
27243
|
-
const centered = "
|
|
27244
|
-
const newLine = "
|
|
27241
|
+
const wrapper$2 = "_wrapper_1haxe_1";
|
|
27242
|
+
const contentContainer = "_contentContainer_1haxe_15";
|
|
27243
|
+
const centered = "_centered_1haxe_27";
|
|
27244
|
+
const newLine = "_newLine_1haxe_31";
|
|
27245
27245
|
const styles$q = {
|
|
27246
27246
|
wrapper: wrapper$2,
|
|
27247
27247
|
contentContainer,
|
package/package.json
CHANGED