revdev-components 0.22.0 → 0.24.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.
@@ -12,6 +12,6 @@ export interface AppFormProps<T = any> {
12
12
  onFieldsChange?: (changedFields: FieldData[], allFields: FieldData[]) => void;
13
13
  form?: FormInstance;
14
14
  onValid?: (valid: boolean) => void;
15
- initialValues?: T;
15
+ initialValues?: Partial<T>;
16
16
  }
17
17
  export declare function AppForm<T = any>({ form: propForm, children, className, onFinish, onValuesChange, onFieldsChange, onValid, initialValues, }: AppFormProps<T>): React.ReactElement<AppFormProps<T>>;
package/build/index.js CHANGED
@@ -4855,7 +4855,7 @@ var FlatButton = function (_a) {
4855
4855
 
4856
4856
  var s$6 = {"root":"index-module_root__r-dVh"};
4857
4857
 
4858
- var AppLink = function (_a) {
4858
+ function AppLink(_a) {
4859
4859
  var _b;
4860
4860
  var propHref = _a.href, as = _a.as, className = _a.className, children = _a.children, shallow = _a.shallow, title = _a.title, route = _a.route, params = _a.params, noneDecoration = _a.noneDecoration, showUnderline = _a.showUnderline, aRef = _a.aRef, rest = __rest(_a, ["href", "as", "className", "children", "shallow", "title", "route", "params", "noneDecoration", "showUnderline", "aRef"]);
4861
4861
  var href = propHref;
@@ -4868,7 +4868,7 @@ var AppLink = function (_a) {
4868
4868
  _b[s$6.none__decoration] = noneDecoration,
4869
4869
  _b[s$6.show__underline] = showUnderline,
4870
4870
  _b)), ref: aRef }, rest), children));
4871
- };
4871
+ }
4872
4872
 
4873
4873
  var s$5 = {"root":"index-module_root__gpEkZ"};
4874
4874
 
@@ -12,5 +12,5 @@ interface Props<TQuery = any> extends React.AnchorHTMLAttributes<HTMLAnchorEleme
12
12
  params?: TQuery;
13
13
  aRef?: React.RefObject<any>;
14
14
  }
15
- export declare const AppLink: React.FC<Props>;
15
+ export declare function AppLink<T = any>({ href: propHref, as, className, children, shallow, title, route, params, noneDecoration, showUnderline, aRef, ...rest }: Props<T>): React.JSX.Element;
16
16
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.22.0",
3
+ "version": "0.24.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {