@oliasoft-open-source/react-ui-library 4.18.2-beta-1 → 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 +13 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +402 -394
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/global.css
CHANGED
|
@@ -10940,3 +10940,16 @@ tbody ._staticCell_ie6ng_123 ._staticCellContent_ie6ng_126 {
|
|
|
10940
10940
|
._inputWrapper_ye9w9_4 {
|
|
10941
10941
|
flex: 1;
|
|
10942
10942
|
}
|
|
10943
|
+
._settingField_cguvy_1 {
|
|
10944
|
+
padding: var(--padding-sm);
|
|
10945
|
+
padding-bottom: 0;
|
|
10946
|
+
}
|
|
10947
|
+
._settingField_cguvy_1:not(:last-child) {
|
|
10948
|
+
border-bottom: 1px solid var(--color-border);
|
|
10949
|
+
}
|
|
10950
|
+
._settingFieldContent_cguvy_8 {
|
|
10951
|
+
min-width: 0;
|
|
10952
|
+
}
|
|
10953
|
+
._settingFieldHelpText_cguvy_11 {
|
|
10954
|
+
margin-bottom: var(--padding-sm);
|
|
10955
|
+
}
|
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
|
-
|
|
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,
|
|
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
|
|