@xyo-network/react-webapp 2.25.27 → 2.25.30

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,7 +1,7 @@
1
1
  import { FlexBoxProps } from '@xylabs/sdk-react';
2
2
  import { ReactNode } from 'react';
3
3
  export interface WebAppChromeProps extends FlexBoxProps {
4
- appName?: string;
4
+ appName: string;
5
5
  footer?: ReactNode;
6
6
  appbar?: ReactNode;
7
7
  errorPage?: ReactNode;
package/dist/docs.json CHANGED
@@ -410,9 +410,7 @@
410
410
  "name": "appName",
411
411
  "kind": 1024,
412
412
  "kindString": "Property",
413
- "flags": {
414
- "isOptional": true
415
- },
413
+ "flags": {},
416
414
  "sources": [
417
415
  {
418
416
  "fileName": "packages/webapp/src/components/WebAppChrome.tsx",
@@ -1,7 +1,7 @@
1
1
  import { FlexBoxProps } from '@xylabs/sdk-react';
2
2
  import { ReactNode } from 'react';
3
3
  export interface WebAppChromeProps extends FlexBoxProps {
4
- appName?: string;
4
+ appName: string;
5
5
  footer?: ReactNode;
6
6
  appbar?: ReactNode;
7
7
  errorPage?: ReactNode;
package/package.json CHANGED
@@ -22,9 +22,9 @@
22
22
  "@xyo-network/api": "^2.20.38",
23
23
  "@xyo-network/core": "^2.20.38",
24
24
  "@xyo-network/network": "^2.20.38",
25
- "@xyo-network/react-appbar": "^2.25.27",
26
- "@xyo-network/react-shared": "^2.25.27",
27
- "@xyo-network/react-theme": "^2.25.27",
25
+ "@xyo-network/react-appbar": "^2.25.30",
26
+ "@xyo-network/react-shared": "^2.25.30",
27
+ "@xyo-network/react-theme": "^2.25.30",
28
28
  "lodash": "^4.17.21",
29
29
  "luxon": "^2.4.0",
30
30
  "react": "^18.1.0",
@@ -115,6 +115,6 @@
115
115
  },
116
116
  "sideEffects": false,
117
117
  "types": "dist/esm/index.d.ts",
118
- "version": "2.25.27",
118
+ "version": "2.25.30",
119
119
  "packageManager": "yarn@3.1.1"
120
120
  }
@@ -7,7 +7,7 @@ import { ReactNode } from 'react'
7
7
  import { Helmet } from 'react-helmet'
8
8
 
9
9
  export interface WebAppChromeProps extends FlexBoxProps {
10
- appName?: string
10
+ appName: string
11
11
  footer?: ReactNode
12
12
  appbar?: ReactNode
13
13
  errorPage?: ReactNode