revdev-components 0.40.0 → 0.42.0
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/build/fields/index.d.ts +1 -0
- package/build/index.js +7 -0
- package/package.json +1 -1
package/build/fields/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -4708,6 +4708,12 @@ var TextAreaField = function (props) {
|
|
|
4708
4708
|
React.createElement(TextArea, __assign({}, controlProps))));
|
|
4709
4709
|
};
|
|
4710
4710
|
|
|
4711
|
+
var CheckboxField = function (props) {
|
|
4712
|
+
var _a = useLineProps(props), lineProps = _a[0], _b = _a[1], controlProps = __rest(_b, []);
|
|
4713
|
+
return (React.createElement(FormLine, __assign({}, lineProps),
|
|
4714
|
+
React.createElement(antd.Checkbox, __assign({}, controlProps))));
|
|
4715
|
+
};
|
|
4716
|
+
|
|
4711
4717
|
// export function useDebounceCallback<T extends (...args: any[]) => any>(delay: number, callback: T, deps: DependencyList = []): DebouncedFunc<T> {
|
|
4712
4718
|
// return useCallback(debounce(callback, delay), deps);
|
|
4713
4719
|
// }
|
|
@@ -5063,6 +5069,7 @@ exports.AppLink = AppLink;
|
|
|
5063
5069
|
exports.AppLinkButton = AppLinkButton;
|
|
5064
5070
|
exports.BackLayout = BackLayout;
|
|
5065
5071
|
exports.BackSidebar = BackSidebar;
|
|
5072
|
+
exports.CheckboxField = CheckboxField;
|
|
5066
5073
|
exports.DatePickerField = DatePickerField;
|
|
5067
5074
|
exports.DivisionRow = DivisionRow;
|
|
5068
5075
|
exports.FlagIcon = FlagIcon;
|