@dartech/arsenal-ui 1.4.88 → 1.4.89

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartech/arsenal-ui",
3
- "version": "1.4.88",
3
+ "version": "1.4.89",
4
4
  "author": "DAR",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -51,11 +51,17 @@ export interface UiSettings {
51
51
  description?: string;
52
52
  photoUploader?: boolean;
53
53
  };
54
+ styleProps?: Record<string, any>;
54
55
  };
55
56
  behaviorJson: {
56
57
  showDependOn?: string;
57
58
  hideDependOn?: string;
58
59
  dynamicEntity?: boolean;
60
+ filterByEntity?: string;
61
+ filterField?: string;
62
+ findEntityByField?: string;
63
+ findEntityByValue?: string;
64
+ getEntityField?: string;
59
65
  };
60
66
  }
61
67
  export interface Property {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Control } from 'react-hook-form';
2
3
  type Props = {
3
4
  control: Control<any>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type Props = {
2
3
  name: string;
3
4
  label?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type Props = {
2
3
  name: string;
3
4
  format: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type Props = {
2
3
  name: string;
3
4
  label?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type Props = {
2
3
  name: string;
3
4
  label?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { PropertyUnion } from '../../../interfaces';
2
3
  type PropertyItemProps = {
3
4
  property: PropertyUnion;