@bigbinary/neeto-commons-frontend 2.0.39 → 2.0.41
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/README.md +1 -0
- package/configs/babel.js +14 -9
- package/cypress-commands.d.ts +2 -0
- package/cypress-utils.cjs.js +46 -5
- package/cypress-utils.d.ts +2 -0
- package/cypress-utils.js +46 -5
- package/initializers.cjs.js +18 -166
- package/initializers.js +11 -159
- package/package.json +15 -2
- package/react-utils.cjs.js +841 -2993
- package/react-utils.d.ts +3 -2
- package/react-utils.js +805 -2956
- package/utils.cjs.js +3 -84
- package/utils.d.ts +2 -0
- package/utils.js +3 -83
package/react-utils.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ export const DateFormat: {
|
|
|
115
115
|
|
|
116
116
|
export const TimeFormat: typeof DateFormat;
|
|
117
117
|
|
|
118
|
-
export
|
|
118
|
+
export const Columns: React.FC<{
|
|
119
119
|
actionBlock?: React.ReactNode;
|
|
120
120
|
checkboxProps?: CheckboxProps;
|
|
121
121
|
columnData: {
|
|
@@ -131,7 +131,7 @@ export interface ColumnsProps {
|
|
|
131
131
|
noColumnMessage?: string;
|
|
132
132
|
onChange: (columns: any[]) => any[];
|
|
133
133
|
searchProps?: InputProps;
|
|
134
|
-
}
|
|
134
|
+
}>
|
|
135
135
|
|
|
136
136
|
type ZustandConfigType = (
|
|
137
137
|
set: (data: any) => void,
|
|
@@ -197,6 +197,7 @@ export const ShareViaLink: React.FC<{
|
|
|
197
197
|
};
|
|
198
198
|
entityName: string;
|
|
199
199
|
handleRegenerate?: Function;
|
|
200
|
+
previewUrl?: string;
|
|
200
201
|
socialMediaPostTitle: string;
|
|
201
202
|
url: string;
|
|
202
203
|
}>;
|