@oliasoft-open-source/react-ui-library 4.18.2-beta-1 → 4.18.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/dist/global.css CHANGED
@@ -10940,3 +10940,9 @@ tbody ._staticCell_ie6ng_123 ._staticCellContent_ie6ng_126 {
10940
10940
  ._inputWrapper_ye9w9_4 {
10941
10941
  flex: 1;
10942
10942
  }
10943
+ ._settingField_1x02n_1 {
10944
+ padding: var(--padding-sm);
10945
+ }
10946
+ ._settingField_1x02n_1:not(:last-child) {
10947
+ border-bottom: 1px solid var(--color-border);
10948
+ }
package/dist/index.d.ts CHANGED
@@ -1200,7 +1200,7 @@ declare interface ISelectSelectedOption {
1200
1200
  export declare interface ISettingFieldProps {
1201
1201
  helpText: string;
1202
1202
  children: ReactNode;
1203
- active?: boolean;
1203
+ disabled?: boolean;
1204
1204
  noPermission?: boolean;
1205
1205
  selectedOption?: 'all_users' | 'superusers_admin';
1206
1206
  handleSelectChange?: (value: 'all_users' | 'superusers_admin') => void;
@@ -1713,7 +1713,7 @@ export declare const Row: ({ alignItems, justifyContent, children, flex, height,
1713
1713
 
1714
1714
  export declare const Select: (props: ISelectProps) => JSX_2.Element;
1715
1715
 
1716
- export declare const SettingField: ({ helpText, active, children, noPermission, selectedOption, handleSelectChange, }: ISettingFieldProps) => JSX_2.Element;
1716
+ export declare const SettingField: ({ helpText, disabled, children, noPermission, selectedOption, handleSelectChange, }: ISettingFieldProps) => JSX_2.Element;
1717
1717
 
1718
1718
  export declare const SideBar: default_2.MemoExoticComponent<({ options, startOpen, onShiftClickToggleOpen, top, }: ISideBarProps) => JSX_2.Element>;
1719
1719