gantri-components 2.108.0-beta.4 → 2.108.0-beta.6
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/dist/components/table/components/table-actions-wrapper/table-actions-wrapper.types.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export type FiltersProps = {
|
|
|
11
11
|
numActive: number;
|
|
12
12
|
onApply: () => void;
|
|
13
13
|
onClose: () => void;
|
|
14
|
-
onOpen: () => void;
|
|
15
14
|
onReset: () => void;
|
|
16
15
|
};
|
|
17
16
|
export interface CustomActionComponentProps<TData extends RowData> {
|
|
@@ -20,7 +19,7 @@ export interface CustomActionComponentProps<TData extends RowData> {
|
|
|
20
19
|
}
|
|
21
20
|
export interface CustomActionProps<TData extends RowData> {
|
|
22
21
|
Component: JSXElementConstructor<CustomActionComponentProps<TData>>;
|
|
23
|
-
position:
|
|
22
|
+
position: typeof customActionPositions[keyof typeof customActionPositions];
|
|
24
23
|
}
|
|
25
24
|
export interface TableActionsWrapperProps<TData extends RowData> {
|
|
26
25
|
className: string | undefined;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export declare const cloudinaryImagePrefix = "https://res.cloudinary.com/gantri/image/upload";
|
|
2
2
|
export declare const cloudinaryVideoPrefix = "https://res.cloudinary.com/gantri/video/upload";
|
|
3
|
+
export declare const cloudinaryRawPrefix = "https://res.cloudinary.com/gantri/raw/upload";
|