@oliasoft-open-source/react-ui-library 4.19.0-beta-2 → 4.19.0-beta-4

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/README.md CHANGED
@@ -1094,8 +1094,10 @@ The `List` component renders a list of data items with various customization opt
1094
1094
 
1095
1095
  | Prop | Description | Default Value |
1096
1096
  |-----------------------------|-----------------------------------------------------------------------------------------------------------------|--------------------------|
1097
+ | `scrollable` | Determines whether the list is scrollable. | `false` |
1097
1098
  | `hideScrollbar` | Determines whether to hide the scrollbar when scrolling. | `false` |
1098
1099
  | `triggerScrollToActiveItem` | Specifies whether scrolling should be triggered to display the active item. | `false` |
1100
+ | `infiniteScroll` | Specifies whether to enable infinite scroll functionality. | `false` |
1099
1101
 
1100
1102
  ### Usage Example
1101
1103
 
package/dist/global.css CHANGED
@@ -10956,3 +10956,9 @@ tbody ._staticCell_ie6ng_123 ._staticCellContent_ie6ng_126 {
10956
10956
  ._inputWrapper_ye9w9_4 {
10957
10957
  flex: 1;
10958
10958
  }
10959
+ ._settingField_1x02n_1 {
10960
+ padding: var(--padding-sm);
10961
+ }
10962
+ ._settingField_1x02n_1:not(:last-child) {
10963
+ border-bottom: 1px solid var(--color-border);
10964
+ }
package/dist/index.d.ts CHANGED
@@ -1198,9 +1198,9 @@ declare interface ISelectSelectedOption {
1198
1198
  }
1199
1199
 
1200
1200
  export declare interface ISettingFieldProps {
1201
- helpText: string;
1202
1201
  children: ReactNode;
1203
- active?: boolean;
1202
+ helpText?: string;
1203
+ disabled?: boolean;
1204
1204
  noPermission?: boolean;
1205
1205
  selectedOption?: 'all_users' | 'superusers_admin';
1206
1206
  handleSelectChange?: (value: 'all_users' | 'superusers_admin') => void;
@@ -1715,7 +1715,7 @@ export declare const Row: ({ alignItems, justifyContent, children, flex, height,
1715
1715
 
1716
1716
  export declare const Select: (props: ISelectProps) => JSX_2.Element;
1717
1717
 
1718
- export declare const SettingField: ({ helpText, active, children, noPermission, selectedOption, handleSelectChange, }: ISettingFieldProps) => JSX_2.Element;
1718
+ export declare const SettingField: ({ helpText, disabled, children, noPermission, selectedOption, handleSelectChange, }: ISettingFieldProps) => JSX_2.Element;
1719
1719
 
1720
1720
  export declare const SideBar: default_2.MemoExoticComponent<({ options, startOpen, onShiftClickToggleOpen, top, }: ISideBarProps) => JSX_2.Element>;
1721
1721