@oliasoft-open-source/react-ui-library 4.19.0-beta-3 → 4.19.0-beta-5
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 +6 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +436 -444
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
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
|
-
|
|
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,
|
|
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
|
|