@bigbinary/neeto-commons-frontend 2.1.8 → 2.1.10
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/package.json +1 -1
- package/react-utils.cjs.js +2061 -13
- package/react-utils.cjs.js.map +1 -1
- package/react-utils.d.ts +20 -1
- package/react-utils.js +2059 -13
- package/react-utils.js.map +1 -1
- package/utils.d.ts +2 -2
package/utils.d.ts
CHANGED
|
@@ -237,7 +237,7 @@ export const dateFormat: typeof timeFormat;
|
|
|
237
237
|
* @endexample
|
|
238
238
|
*/
|
|
239
239
|
export function toLocale(number: string | number, options?: Intl.NumberFormatOptions): string;
|
|
240
|
-
type qsOptionsType = {
|
|
240
|
+
export type qsOptionsType = {
|
|
241
241
|
comma?: boolean | undefined;
|
|
242
242
|
delimiter?: string | RegExp | undefined;
|
|
243
243
|
depth?: number | false | undefined;
|
|
@@ -254,7 +254,7 @@ type qsOptionsType = {
|
|
|
254
254
|
charsetSentinel?: boolean | undefined;
|
|
255
255
|
interpretNumericEntities?: boolean | undefined;
|
|
256
256
|
};
|
|
257
|
-
type QueryParamsType = {
|
|
257
|
+
export type QueryParamsType = {
|
|
258
258
|
[key: string]: any;
|
|
259
259
|
};
|
|
260
260
|
/**
|