@oliasoft-open-source/react-ui-library 4.0.0-beta-33 → 4.0.0-beta-35
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 +8 -8
- package/dist/index.js.map +1 -1
- 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
|
@@ -5632,7 +5632,7 @@ HelpIcon.propTypes = {
|
|
|
5632
5632
|
maxWidth: propTypes$1.exports.oneOfType([propTypes$1.exports.string, propTypes$1.exports.number]),
|
|
5633
5633
|
onClick: propTypes$1.exports.func,
|
|
5634
5634
|
testId: propTypes$1.exports.string,
|
|
5635
|
-
text: propTypes$1.exports.string
|
|
5635
|
+
text: propTypes$1.exports.oneOfType([propTypes$1.exports.node, propTypes$1.exports.string])
|
|
5636
5636
|
};
|
|
5637
5637
|
const CheckBox = ({
|
|
5638
5638
|
noMargin: noMargin2,
|
|
@@ -12048,7 +12048,7 @@ const Trigger$1 = React__default.forwardRef(
|
|
|
12048
12048
|
}
|
|
12049
12049
|
);
|
|
12050
12050
|
const actionShape = propTypes$1.exports.shape({
|
|
12051
|
-
label: propTypes$1.exports.string.isRequired,
|
|
12051
|
+
label: propTypes$1.exports.oneOfType([propTypes$1.exports.node, propTypes$1.exports.string]).isRequired,
|
|
12052
12052
|
icon: propTypes$1.exports.oneOfType([propTypes$1.exports.node, propTypes$1.exports.string]),
|
|
12053
12053
|
onClick: propTypes$1.exports.func.isRequired,
|
|
12054
12054
|
disabled: propTypes$1.exports.bool,
|
|
@@ -14224,13 +14224,13 @@ const styles$C = {
|
|
|
14224
14224
|
};
|
|
14225
14225
|
const convertStringToJsx = (children) => {
|
|
14226
14226
|
if (lodash.exports.isArray(children)) {
|
|
14227
|
-
return children.map((text2) => /* @__PURE__ */ jsxRuntime.exports.jsxs(
|
|
14227
|
+
return children.map((text2, i) => /* @__PURE__ */ jsxRuntime.exports.jsxs(Fragment$1, {
|
|
14228
14228
|
children: [
|
|
14229
14229
|
text2,
|
|
14230
14230
|
" ",
|
|
14231
14231
|
/* @__PURE__ */ jsxRuntime.exports.jsx("br", {})
|
|
14232
14232
|
]
|
|
14233
|
-
}));
|
|
14233
|
+
}, i));
|
|
14234
14234
|
}
|
|
14235
14235
|
return children;
|
|
14236
14236
|
};
|
|
@@ -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,
|