@oliasoft-open-source/react-ui-library 4.18.2 → 4.18.3-beta-1

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 CHANGED
@@ -10940,9 +10940,16 @@ tbody ._staticCell_ie6ng_123 ._staticCellContent_ie6ng_126 {
10940
10940
  ._inputWrapper_ye9w9_4 {
10941
10941
  flex: 1;
10942
10942
  }
10943
- ._settingField_1x02n_1 {
10943
+ ._settingField_cguvy_1 {
10944
10944
  padding: var(--padding-sm);
10945
+ padding-bottom: 0;
10945
10946
  }
10946
- ._settingField_1x02n_1:not(:last-child) {
10947
+ ._settingField_cguvy_1:not(:last-child) {
10947
10948
  border-bottom: 1px solid var(--color-border);
10948
10949
  }
10950
+ ._settingFieldContent_cguvy_8 {
10951
+ min-width: 0;
10952
+ }
10953
+ ._settingFieldHelpText_cguvy_11 {
10954
+ margin-bottom: var(--padding-sm);
10955
+ }
package/dist/index.js CHANGED
@@ -66545,9 +66545,13 @@ const SmartUploadModal = ({
66545
66545
  }
66546
66546
  ) });
66547
66547
  };
66548
- const settingField = "_settingField_1x02n_1";
66548
+ const settingField = "_settingField_cguvy_1";
66549
+ const settingFieldContent = "_settingFieldContent_cguvy_8";
66550
+ const settingFieldHelpText = "_settingFieldHelpText_cguvy_11";
66549
66551
  const styles = {
66550
- settingField
66552
+ settingField,
66553
+ settingFieldContent,
66554
+ settingFieldHelpText
66551
66555
  };
66552
66556
  const SettingField = ({
66553
66557
  helpText,
@@ -66563,7 +66567,7 @@ const SettingField = ({
66563
66567
  ];
66564
66568
  return /* @__PURE__ */ jsxs("div", { className: styles.settingField, children: [
66565
66569
  /* @__PURE__ */ jsxs(Flex, { justifyContent: "space-between", wrap: false, children: [
66566
- children,
66570
+ /* @__PURE__ */ jsx("div", { className: styles.settingFieldContent, children }),
66567
66571
  !noPermission && /* @__PURE__ */ jsx(
66568
66572
  Select,
66569
66573
  {
@@ -66581,7 +66585,7 @@ const SettingField = ({
66581
66585
  }
66582
66586
  )
66583
66587
  ] }),
66584
- /* @__PURE__ */ jsx(Text, { muted: true, children: helpText })
66588
+ !!helpText && /* @__PURE__ */ jsx("div", { className: styles.settingFieldHelpText, children: /* @__PURE__ */ jsx(Text, { muted: true, children: helpText }) })
66585
66589
  ] });
66586
66590
  };
66587
66591
  export {