@esvndev/es-react-table-interface 1.2.2 → 1.2.4

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.
@@ -7,6 +7,7 @@ declare const ModalComponentSetView: (props: {
7
7
  windowSize: any;
8
8
  viewId: string;
9
9
  setLoadView: any;
10
+ initAbility?: any;
10
11
  }) => React.JSX.Element;
11
12
  export declare const renderColumns: () => ColumnTable<RowI>[];
12
13
  interface RowI {
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface IProps {
3
+ dataItem: any;
4
+ openModal: boolean;
5
+ handleModal: any;
6
+ windowSize: any;
7
+ }
8
+ declare const ModalAddIdentity: (props: IProps) => React.JSX.Element;
9
+ export default ModalAddIdentity;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ interface IProps {
3
+ viewId: string;
4
+ openModal: boolean;
5
+ handleModal: any;
6
+ windowSize: any;
7
+ }
8
+ declare const ModalPermissionView: (props: IProps) => React.JSX.Element;
9
+ export default ModalPermissionView;
package/dist/func.d.ts CHANGED
@@ -32,3 +32,4 @@ export declare const flattenArray: (arr: any) => any;
32
32
  export declare const renderLink: (userSubject: any) => any;
33
33
  export declare const lowercaseFirstLetter: (str: any) => any;
34
34
  export declare const connectString: (t: any, props: string[]) => any;
35
+ export declare const PermissionResolveTree: (data: any) => any[];