@xyo-network/react-webapp 6.1.4 → 7.0.0
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/browser/index.d.ts +2 -43
- package/package.json +24 -20
- package/typedoc.json +0 -5
- package/xy.config.ts +0 -10
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,43 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import React, { ReactNode, PropsWithChildren } from 'react';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import { WebAppChromeProps } from '@xylabs/react-webapp';
|
|
6
|
-
|
|
7
|
-
interface WebAppBodyProps extends FlexBoxProps {
|
|
8
|
-
breadcrumbs?: ReactNode;
|
|
9
|
-
disableBreadcrumbGutter?: boolean;
|
|
10
|
-
mobileScrollingBreakpoint?: Breakpoint;
|
|
11
|
-
spacing?: string | number;
|
|
12
|
-
variant?: 'scrollable' | 'fixed';
|
|
13
|
-
}
|
|
14
|
-
declare const WebAppBody: React.FC<WebAppBodyProps>;
|
|
15
|
-
|
|
16
|
-
interface XyoWebAppChromeProps extends WebAppChromeProps {
|
|
17
|
-
}
|
|
18
|
-
declare const XyoWebAppChrome: {
|
|
19
|
-
({ ref, appbar, footer, footerElevation, navigationType, ...props }: XyoWebAppChromeProps): react_jsx_runtime.JSX.Element;
|
|
20
|
-
displayName: string;
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
interface WebAppPageProps extends WebAppBodyProps, FlexBoxProps {
|
|
24
|
-
container?: ContainerProps['maxWidth'] | 'none';
|
|
25
|
-
disableGutters?: boolean;
|
|
26
|
-
}
|
|
27
|
-
declare const WebAppPage: React.FC<PropsWithChildren<WebAppPageProps>>;
|
|
28
|
-
/** @deprecated use WebAppPagePage instead */
|
|
29
|
-
declare const FlexPage: React.FC<PropsWithChildren<WebAppPageProps>>;
|
|
30
|
-
|
|
31
|
-
interface WebAppErrorPageProps extends WebAppPageProps {
|
|
32
|
-
error?: Error;
|
|
33
|
-
}
|
|
34
|
-
declare const WebAppErrorPage: React.FC<WebAppErrorPageProps>;
|
|
35
|
-
/** @deprecated use WebAppErrorPage instead */
|
|
36
|
-
declare const ErrorPage: React.FC<WebAppErrorPageProps>;
|
|
37
|
-
|
|
38
|
-
declare const WebAppNotFoundPage: React.FC<WebAppPageProps>;
|
|
39
|
-
/** @deprecated use WebAppNotFoundPage instead */
|
|
40
|
-
declare const NotFoundPage: React.FC<WebAppPageProps>;
|
|
41
|
-
|
|
42
|
-
export { ErrorPage, FlexPage, NotFoundPage, WebAppBody, WebAppErrorPage, WebAppNotFoundPage, WebAppPage, XyoWebAppChrome };
|
|
43
|
-
export type { WebAppBodyProps, WebAppErrorPageProps, WebAppPageProps, XyoWebAppChromeProps };
|
|
1
|
+
export * from './components/index.ts';
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-webapp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -38,33 +38,37 @@
|
|
|
38
38
|
},
|
|
39
39
|
"module": "dist/browser/index.mjs",
|
|
40
40
|
"types": "dist/browser/index.d.ts",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"src"
|
|
44
|
+
],
|
|
41
45
|
"dependencies": {
|
|
42
46
|
"@mui/material": "^7.2.0",
|
|
43
|
-
"@xylabs/react-async-effect": "^
|
|
44
|
-
"@xylabs/react-button": "^
|
|
45
|
-
"@xylabs/react-flexbox": "^
|
|
46
|
-
"@xylabs/react-pixel": "^
|
|
47
|
-
"@xylabs/react-webapp": "^
|
|
48
|
-
"@xyo-network/react-appbar": "^
|
|
49
|
-
"@xyo-network/react-footer": "^
|
|
50
|
-
"@xyo-network/react-shared": "^
|
|
51
|
-
"react": "^19.1.
|
|
47
|
+
"@xylabs/react-async-effect": "^7.0.0",
|
|
48
|
+
"@xylabs/react-button": "^7.0.0",
|
|
49
|
+
"@xylabs/react-flexbox": "^7.0.0",
|
|
50
|
+
"@xylabs/react-pixel": "^7.0.0",
|
|
51
|
+
"@xylabs/react-webapp": "^7.0.0",
|
|
52
|
+
"@xyo-network/react-appbar": "^7.0.0",
|
|
53
|
+
"@xyo-network/react-footer": "^7.0.0",
|
|
54
|
+
"@xyo-network/react-shared": "^7.0.0",
|
|
55
|
+
"react": "^19.1.1",
|
|
52
56
|
"react-helmet": "^6.1.0",
|
|
53
|
-
"react-router-dom": "^7.7.
|
|
57
|
+
"react-router-dom": "^7.7.1"
|
|
54
58
|
},
|
|
55
59
|
"devDependencies": {
|
|
56
60
|
"@mui/icons-material": "^7.2.0",
|
|
57
61
|
"@storybook/react-vite": "^9.0.18",
|
|
58
|
-
"@types/react": "^19.1.
|
|
62
|
+
"@types/react": "^19.1.9",
|
|
59
63
|
"@types/react-helmet": "^6.1.11",
|
|
60
|
-
"@xylabs/react-appbar": "^
|
|
61
|
-
"@xylabs/react-button": "^
|
|
62
|
-
"@xylabs/react-flexbox": "^
|
|
63
|
-
"@xylabs/react-link": "^
|
|
64
|
-
"@xylabs/react-pixel": "^
|
|
65
|
-
"@xylabs/ts-scripts-yarn3": "
|
|
66
|
-
"@xylabs/tsconfig-react": "
|
|
67
|
-
"react-dom": "^19.1.
|
|
64
|
+
"@xylabs/react-appbar": "^7.0.0",
|
|
65
|
+
"@xylabs/react-button": "^7.0.0",
|
|
66
|
+
"@xylabs/react-flexbox": "^7.0.0",
|
|
67
|
+
"@xylabs/react-link": "^7.0.0",
|
|
68
|
+
"@xylabs/react-pixel": "^7.0.0",
|
|
69
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.2",
|
|
70
|
+
"@xylabs/tsconfig-react": "^7.0.2",
|
|
71
|
+
"react-dom": "^19.1.1",
|
|
68
72
|
"storybook": "^9.0.18",
|
|
69
73
|
"typescript": "^5.8.3"
|
|
70
74
|
},
|
package/typedoc.json
DELETED