react-magma-dom 4.9.1 → 4.9.2-next.1

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.
@@ -1,8 +1,13 @@
1
- declare const useDeviceDetect: () => {
1
+ export declare const useDeviceDetect: () => {
2
2
  isSafari: boolean;
3
3
  isChrome: boolean;
4
4
  isFirefox: boolean;
5
5
  isEdge: boolean;
6
6
  isMobile: boolean;
7
+ isWindows: boolean;
8
+ isMacOS: boolean;
9
+ isLinux: boolean;
10
+ isAndroid: boolean;
11
+ isIOS: boolean;
7
12
  };
8
13
  export default useDeviceDetect;
package/dist/index.d.ts CHANGED
@@ -96,6 +96,7 @@ export { I18nContext } from './i18n';
96
96
  export { defaultI18n } from './i18n/default';
97
97
  export { I18nInterface } from './i18n/interface';
98
98
  export { useMediaQuery } from './hooks/useMediaQuery';
99
+ export { useDeviceDetect } from './hooks/useDeviceDetect';
99
100
  export { useDataPagination } from './hooks/useDataPagination';
100
101
  export { useDescendants } from './hooks/useDescendants';
101
102
  export { useGenerateId } from './utils';