@bigbinary/neeto-commons-frontend 2.0.23 → 2.0.25
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 -1
- package/initializers.cjs.js +106 -3
- package/initializers.js +106 -3
- package/package.json +5 -3
- package/react-utils.cjs.js +5498 -3150
- package/react-utils.d.ts +6 -0
- package/react-utils.js +5501 -3156
- package/utils.cjs.js +8 -0
- package/utils.js +8 -1
package/react-utils.d.ts
CHANGED
|
@@ -139,6 +139,8 @@ export declare type ZustandStoreHook = {
|
|
|
139
139
|
|
|
140
140
|
export const CustomDomain: React.FC<{}>;
|
|
141
141
|
|
|
142
|
+
export const IpRestriction: React.FC<{}>;
|
|
143
|
+
|
|
142
144
|
export function useFieldSubmit(onSubmit: () => any): {
|
|
143
145
|
current: HTMLInputElement & HTMLTextAreaElement;
|
|
144
146
|
};
|
|
@@ -177,3 +179,7 @@ export function withTitle(
|
|
|
177
179
|
Component: () => JSX.Element,
|
|
178
180
|
title?: string
|
|
179
181
|
): (props) => JSX.Element;
|
|
182
|
+
|
|
183
|
+
export async function registerBrowserNotifications(): Promise<void>;
|
|
184
|
+
|
|
185
|
+
export async function destroyBrowserSubscription(): Promise<void>;
|