revdev-components 0.109.0 → 0.110.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.
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { AutoCompleteProps } from "antd";
3
+ import { FormLineProps } from "../line";
4
+ interface Props extends FormLineProps, Omit<AutoCompleteProps, "name"> {
5
+ }
6
+ export declare const AutoCompleteField: React.FC<Props>;
7
+ export {};
@@ -9,3 +9,4 @@ export * from "./select";
9
9
  export * from "./text-area";
10
10
  export * from "./checkbox";
11
11
  export * from "./switch";
12
+ export * from "./autocomplete";
package/build/index.js CHANGED
@@ -4933,6 +4933,12 @@ var SwitchField = function (props) {
4933
4933
  React.createElement(SwitchFieldControl, __assign({}, controlProps))));
4934
4934
  };
4935
4935
 
4936
+ var AutoCompleteField = function (props) {
4937
+ var _a = useLineProps(props), lineProps = _a[0], _b = _a[1], controlProps = __rest(_b, []);
4938
+ return (React.createElement(FormLine, __assign({}, lineProps, { valuePropName: "checked" }),
4939
+ React.createElement(antd.AutoComplete, __assign({}, controlProps))));
4940
+ };
4941
+
4936
4942
  var s$n = {"root":"index-module_root__9GQDU"};
4937
4943
 
4938
4944
  var FormButton = function (_a) {
@@ -5470,6 +5476,7 @@ exports.AppForm = AppForm;
5470
5476
  exports.AppLink = AppLink;
5471
5477
  exports.AppLinkButton = AppLinkButton;
5472
5478
  exports.AppTooltip = AppTooltip;
5479
+ exports.AutoCompleteField = AutoCompleteField;
5473
5480
  exports.BackLayout = BackLayout;
5474
5481
  exports.BackSidebar = BackSidebar;
5475
5482
  exports.Button = Button;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.109.0",
3
+ "version": "0.110.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {