@oliasoft-open-source/react-ui-library 4.18.4-beta-2 → 4.18.4-beta-3
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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1198,8 +1198,8 @@ declare interface ISelectSelectedOption {
|
|
|
1198
1198
|
}
|
|
1199
1199
|
|
|
1200
1200
|
export declare interface ISettingFieldProps {
|
|
1201
|
-
helpText: string;
|
|
1202
1201
|
children: ReactNode;
|
|
1202
|
+
helpText?: string;
|
|
1203
1203
|
disabled?: boolean;
|
|
1204
1204
|
noPermission?: boolean;
|
|
1205
1205
|
selectedOption?: 'all_users' | 'superusers_admin';
|
package/dist/index.js
CHANGED
|
@@ -66588,7 +66588,7 @@ const SettingField = ({
|
|
|
66588
66588
|
}
|
|
66589
66589
|
)
|
|
66590
66590
|
] }),
|
|
66591
|
-
/* @__PURE__ */ jsx(Text, { muted: true, children: renderHelpText(helpText) })
|
|
66591
|
+
helpText && /* @__PURE__ */ jsx(Text, { muted: true, children: renderHelpText(helpText) })
|
|
66592
66592
|
] });
|
|
66593
66593
|
};
|
|
66594
66594
|
export {
|