gantri-components 3.0.0-beta.39 → 3.0.0-beta.40
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/search-field/search-field.styles.d.ts +1 -0
- package/dist/components/search-field/search-field.types.d.ts +3 -0
- package/dist/components/table/components/custom-columns-toggle/helpers/get-custom-column-initial-visibility/get-custom-column-initial-visibility.d.ts +1 -6
- package/dist/components/table/index.d.ts +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export declare const StyledSelect: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const StyledLoadingContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -34,6 +34,9 @@ export interface SearchFieldProps<T = Record<string, unknown>> extends Omit<Drop
|
|
|
34
34
|
placeholderTxValues?: {
|
|
35
35
|
[key: string]: string;
|
|
36
36
|
};
|
|
37
|
+
processing?: boolean;
|
|
38
|
+
processingText?: string;
|
|
39
|
+
processingTx?: string;
|
|
37
40
|
resetSelectionOnDisabled?: boolean;
|
|
38
41
|
/**
|
|
39
42
|
* If internal, the component will search over the provided list of items,
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { RowData } from '@tanstack/react-table';
|
|
2
1
|
/**
|
|
3
2
|
* Used to mark the starting hidden columns when using custom columns.
|
|
4
3
|
*
|
|
@@ -28,8 +27,4 @@ import { RowData } from '@tanstack/react-table';
|
|
|
28
27
|
* />
|
|
29
28
|
* )
|
|
30
29
|
*/
|
|
31
|
-
export declare const getCustomColumnInitialVisibility:
|
|
32
|
-
[key: string]: unknown;
|
|
33
|
-
id?: string | number | undefined;
|
|
34
|
-
subRows?: any[] | undefined;
|
|
35
|
-
}>>(hiddenColumns: (string | keyof TData)[] | undefined) => {};
|
|
30
|
+
export declare const getCustomColumnInitialVisibility: (hiddenColumns: string[]) => {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './table';
|
|
2
2
|
export * from './table.types';
|
|
3
3
|
export * from './components/table-row/table-row.constants';
|
|
4
|
+
export * from './components/custom-columns-toggle/helpers/get-custom-column-initial-visibility';
|
|
4
5
|
export * from './helpers';
|
|
5
6
|
export * from './components/table-actions-wrapper/table-actions-wrapper.types';
|