@xyo-network/react-embed 4.1.7 → 4.1.9

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.
Files changed (45) hide show
  1. package/dist/browser/components/EmbedPlugin.d.ts +2 -2
  2. package/dist/browser/components/EmbedPlugin.d.ts.map +1 -1
  3. package/dist/browser/components/EmbedResolver.d.ts +2 -2
  4. package/dist/browser/components/EmbedResolver.d.ts.map +1 -1
  5. package/dist/browser/components/controls/EmbedFormControl.d.ts +2 -2
  6. package/dist/browser/components/controls/EmbedFormControl.d.ts.map +1 -1
  7. package/dist/browser/components/embed-card/EmbedCardResolver.d.ts +2 -2
  8. package/dist/browser/components/embed-card/EmbedCardResolver.d.ts.map +1 -1
  9. package/dist/browser/components/embed-card/EmbedPluginCard.d.ts +2 -2
  10. package/dist/browser/components/embed-card/EmbedPluginCard.d.ts.map +1 -1
  11. package/dist/browser/components/embed-card/card/BusyCard.d.ts +3 -2
  12. package/dist/browser/components/embed-card/card/BusyCard.d.ts.map +1 -1
  13. package/dist/browser/components/embed-card/error-handling/EmbedCardApiErrorRenderer.d.ts +2 -2
  14. package/dist/browser/components/embed-card/error-handling/EmbedCardApiErrorRenderer.d.ts.map +1 -1
  15. package/dist/browser/components/embed-card/error-handling/EmbedErrorCard.d.ts +2 -2
  16. package/dist/browser/components/embed-card/error-handling/EmbedErrorCard.d.ts.map +1 -1
  17. package/dist/browser/components/validation-alerts/ValidatePayload.d.ts +2 -2
  18. package/dist/browser/components/validation-alerts/ValidatePayload.d.ts.map +1 -1
  19. package/dist/browser/components/validation-alerts/ValidatePlugins.d.ts +2 -2
  20. package/dist/browser/components/validation-alerts/ValidatePlugins.d.ts.map +1 -1
  21. package/dist/browser/contexts/EmbedPluginContext/Provider.d.ts +2 -2
  22. package/dist/browser/contexts/EmbedPluginContext/Provider.d.ts.map +1 -1
  23. package/dist/browser/contexts/RefreshPayloadContext/Provider.d.ts +2 -2
  24. package/dist/browser/contexts/RefreshPayloadContext/Provider.d.ts.map +1 -1
  25. package/dist/browser/contexts/ResolvePayloadContext/Provider.d.ts +2 -2
  26. package/dist/browser/contexts/ResolvePayloadContext/Provider.d.ts.map +1 -1
  27. package/dist/browser/contexts/ValidatePayloadContext/Provider.d.ts +2 -2
  28. package/dist/browser/contexts/ValidatePayloadContext/Provider.d.ts.map +1 -1
  29. package/dist/browser/index.mjs +2 -2
  30. package/dist/browser/index.mjs.map +1 -1
  31. package/package.json +15 -15
  32. package/src/components/EmbedPlugin.tsx +5 -5
  33. package/src/components/EmbedResolver.tsx +2 -2
  34. package/src/components/controls/EmbedFormControl.tsx +2 -2
  35. package/src/components/embed-card/EmbedCardResolver.tsx +2 -2
  36. package/src/components/embed-card/EmbedPluginCard.tsx +2 -2
  37. package/src/components/embed-card/card/BusyCard.tsx +2 -2
  38. package/src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx +3 -3
  39. package/src/components/embed-card/error-handling/EmbedErrorCard.tsx +2 -2
  40. package/src/components/validation-alerts/ValidatePayload.tsx +2 -2
  41. package/src/components/validation-alerts/ValidatePlugins.tsx +2 -2
  42. package/src/contexts/EmbedPluginContext/Provider.tsx +2 -2
  43. package/src/contexts/RefreshPayloadContext/Provider.tsx +2 -2
  44. package/src/contexts/ResolvePayloadContext/Provider.tsx +2 -2
  45. package/src/contexts/ValidatePayloadContext/Provider.tsx +2 -2
@@ -1,5 +1,5 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  import type { EmbedPluginProps } from '../types/index.ts';
4
- export declare const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>>;
4
+ export declare const EmbedPluginInner: React.FC<PropsWithChildren<EmbedPluginProps>>;
5
5
  //# sourceMappingURL=EmbedPlugin.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedPlugin.d.ts","sourceRoot":"","sources":["../../../src/components/EmbedPlugin.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAIzD,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,gBAAgB,CAAC,CA4BrE,CAAA"}
1
+ {"version":3,"file":"EmbedPlugin.d.ts","sourceRoot":"","sources":["../../../src/components/EmbedPlugin.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AAIzD,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CA4B1E,CAAA"}
@@ -1,4 +1,4 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
- export declare const EmbedResolver: React.FC<WithChildren>;
3
+ export declare const EmbedResolver: React.FC<PropsWithChildren>;
4
4
  //# sourceMappingURL=EmbedResolver.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedResolver.d.ts","sourceRoot":"","sources":["../../../src/components/EmbedResolver.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAExD,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAUhD,CAAA"}
1
+ {"version":3,"file":"EmbedResolver.d.ts","sourceRoot":"","sources":["../../../src/components/EmbedResolver.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAUrD,CAAA"}
@@ -1,10 +1,10 @@
1
1
  import type { FormControlProps } from '@mui/material';
2
- import type { WithChildren } from '@xylabs/react-shared';
2
+ import type { PropsWithChildren } from 'react';
3
3
  import React from 'react';
4
4
  interface EmbedFormControlProps extends FormControlProps {
5
5
  formId?: string;
6
6
  formLabel?: string;
7
7
  }
8
- export declare const EmbedFormControl: React.FC<WithChildren<EmbedFormControlProps>>;
8
+ export declare const EmbedFormControl: React.FC<PropsWithChildren<EmbedFormControlProps>>;
9
9
  export {};
10
10
  //# sourceMappingURL=EmbedFormControl.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedFormControl.d.ts","sourceRoot":"","sources":["../../../../src/components/controls/EmbedFormControl.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAErD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,UAAU,qBAAsB,SAAQ,gBAAgB;IACtD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,qBAAqB,CAAC,CAS1E,CAAA"}
1
+ {"version":3,"file":"EmbedFormControl.d.ts","sourceRoot":"","sources":["../../../../src/components/controls/EmbedFormControl.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAErD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,UAAU,qBAAsB,SAAQ,gBAAgB;IACtD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,qBAAqB,CAAC,CAS/E,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import type { FlexBoxProps } from '@xylabs/react-flexbox';
2
- import type { WithChildren } from '@xylabs/react-shared';
2
+ import type { PropsWithChildren } from 'react';
3
3
  import React from 'react';
4
- export declare const EmbedCardResolverFlexBox: React.FC<WithChildren<FlexBoxProps>>;
4
+ export declare const EmbedCardResolverFlexBox: React.FC<PropsWithChildren<FlexBoxProps>>;
5
5
  //# sourceMappingURL=EmbedCardResolver.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedCardResolver.d.ts","sourceRoot":"","sources":["../../../../src/components/embed-card/EmbedCardResolver.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAExD,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,YAAY,CAAC,CA2BzE,CAAA"}
1
+ {"version":3,"file":"EmbedCardResolver.d.ts","sourceRoot":"","sources":["../../../../src/components/embed-card/EmbedCardResolver.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,YAAY,CAAC,CA2B9E,CAAA"}
@@ -1,8 +1,8 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  import type { EmbedPluginProps } from '../../types/index.ts';
4
4
  import type { BusyCardProps } from './card/index.ts';
5
- export interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {
5
+ export interface EmbedPluginCardProps extends PropsWithChildren, EmbedPluginProps, BusyCardProps {
6
6
  }
7
7
  export declare const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps>;
8
8
  export declare const EmbedPluginCardInner: React.FC<BusyCardProps>;
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedPluginCard.d.ts","sourceRoot":"","sources":["../../../../src/components/embed-card/EmbedPluginCard.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,MAAM,WAAW,oBAAqB,SAAQ,YAAY,EAAE,gBAAgB,EAAE,aAAa;CAAG;AAE9F,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA8B7D,CAAA;AAED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAqBxD,CAAA;AAED,kFAAkF;AAElF,OAAO,EAAE,eAAe,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAA"}
1
+ {"version":3,"file":"EmbedPluginCard.d.ts","sourceRoot":"","sources":["../../../../src/components/embed-card/EmbedPluginCard.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,MAAM,WAAW,oBAAqB,SAAQ,iBAAiB,EAAE,gBAAgB,EAAE,aAAa;CAAG;AAEnG,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CA8B7D,CAAA;AAED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAqBxD,CAAA;AAED,kFAAkF;AAElF,OAAO,EAAE,eAAe,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAA"}
@@ -1,5 +1,6 @@
1
1
  import type { CardProps } from '@mui/material';
2
- import type { BusyCircularProgressProps, BusyLinearProgressProps, BusyVariant, WithChildren } from '@xylabs/react-shared';
2
+ import type { BusyCircularProgressProps, BusyLinearProgressProps, BusyVariant } from '@xylabs/react-shared';
3
+ import type { PropsWithChildren } from 'react';
3
4
  import React from 'react';
4
5
  export interface BusyCardProps extends CardProps {
5
6
  busy?: boolean;
@@ -7,5 +8,5 @@ export interface BusyCardProps extends CardProps {
7
8
  busyVariant?: BusyVariant;
8
9
  busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps;
9
10
  }
10
- export declare const BusyCard: React.FC<WithChildren<BusyCardProps>>;
11
+ export declare const BusyCard: React.FC<PropsWithChildren<BusyCardProps>>;
11
12
  //# sourceMappingURL=BusyCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BusyCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/card/BusyCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAG9C,OAAO,KAAK,EACV,yBAAyB,EACzB,uBAAuB,EACvB,WAAW,EACX,YAAY,EACb,MAAM,sBAAsB,CAAA;AAK7B,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,WAAW,aAAc,SAAQ,SAAS;IAC9C,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB,gBAAgB,CAAC,EAAE,yBAAyB,GAAG,uBAAuB,CAAA;CACvE;AAED,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,aAAa,CAAC,CAoB1D,CAAA"}
1
+ {"version":3,"file":"BusyCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/card/BusyCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAG9C,OAAO,KAAK,EACV,yBAAyB,EACzB,uBAAuB,EACvB,WAAW,EACZ,MAAM,sBAAsB,CAAA;AAK7B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,WAAW,aAAc,SAAQ,SAAS;IAC9C,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB,gBAAgB,CAAC,EAAE,yBAAyB,GAAG,uBAAuB,CAAA;CACvE;AAED,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,aAAa,CAAC,CAoB/D,CAAA"}
@@ -1,10 +1,10 @@
1
1
  import type { CardProps } from '@mui/material';
2
- import type { WithChildren } from '@xylabs/react-shared';
3
2
  import type { ModuleError } from '@xyo-network/payload-model';
3
+ import type { PropsWithChildren } from 'react';
4
4
  import React from 'react';
5
5
  interface EmbedCardApiErrorRendererProps extends CardProps {
6
6
  xyoError?: ModuleError;
7
7
  }
8
- export declare const EmbedCardApiErrorRenderer: React.FC<WithChildren<EmbedCardApiErrorRendererProps>>;
8
+ export declare const EmbedCardApiErrorRenderer: React.FC<PropsWithChildren<EmbedCardApiErrorRendererProps>>;
9
9
  export {};
10
10
  //# sourceMappingURL=EmbedCardApiErrorRenderer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedCardApiErrorRenderer.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAC9C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAE7D,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,UAAU,8BAA+B,SAAQ,SAAS;IACxD,QAAQ,CAAC,EAAE,WAAW,CAAA;CACvB;AAED,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,8BAA8B,CAAC,CAQ5F,CAAA"}
1
+ {"version":3,"file":"EmbedCardApiErrorRenderer.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAE9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,UAAU,8BAA+B,SAAQ,SAAS;IACxD,QAAQ,CAAC,EAAE,WAAW,CAAA;CACvB;AAED,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,8BAA8B,CAAC,CAQjG,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import type { AlertProps, CardProps } from '@mui/material';
2
- import type { WithChildren } from '@xylabs/react-shared';
2
+ import type { PropsWithChildren } from 'react';
3
3
  import React from 'react';
4
4
  interface EmbedErrorCardBaseProps {
5
5
  alertProps?: AlertProps;
@@ -9,6 +9,6 @@ interface EmbedErrorCardBaseProps {
9
9
  }
10
10
  interface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {
11
11
  }
12
- export declare const EmbedErrorCard: React.FC<WithChildren<EmbedErrorCardProps>>;
12
+ export declare const EmbedErrorCard: React.FC<PropsWithChildren<EmbedErrorCardProps>>;
13
13
  export {};
14
14
  //# sourceMappingURL=EmbedErrorCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EmbedErrorCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAI1D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,UAAU,uBAAuB;IAC/B,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,UAAU,mBAAoB,SAAQ,uBAAuB,EAAE,SAAS;CAAG;AAE3E,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,mBAAmB,CAAC,CAYtE,CAAA"}
1
+ {"version":3,"file":"EmbedErrorCard.d.ts","sourceRoot":"","sources":["../../../../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAI1D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,UAAU,uBAAuB;IAC/B,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,UAAU,mBAAoB,SAAQ,uBAAuB,EAAE,SAAS;CAAG;AAE3E,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,CAY3E,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import type { AlertProps } from '@mui/material';
2
- import type { WithChildren } from '@xylabs/react-shared';
2
+ import type { PropsWithChildren } from 'react';
3
3
  import React from 'react';
4
- export declare const ValidatePayloadAlert: React.FC<WithChildren<AlertProps>>;
4
+ export declare const ValidatePayloadAlert: React.FC<PropsWithChildren<AlertProps>>;
5
5
  //# sourceMappingURL=ValidatePayload.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ValidatePayload.d.ts","sourceRoot":"","sources":["../../../../src/components/validation-alerts/ValidatePayload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,UAAU,CAAC,CAkBnE,CAAA"}
1
+ {"version":3,"file":"ValidatePayload.d.ts","sourceRoot":"","sources":["../../../../src/components/validation-alerts/ValidatePayload.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAkBxE,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import type { AlertProps } from '@mui/material';
2
- import type { WithChildren } from '@xylabs/react-shared';
2
+ import type { PropsWithChildren } from 'react';
3
3
  import React from 'react';
4
- export declare const ValidatePluginsAlert: React.FC<WithChildren<AlertProps>>;
4
+ export declare const ValidatePluginsAlert: React.FC<PropsWithChildren<AlertProps>>;
5
5
  //# sourceMappingURL=ValidatePlugins.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ValidatePlugins.d.ts","sourceRoot":"","sources":["../../../../src/components/validation-alerts/ValidatePlugins.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,UAAU,CAAC,CAcnE,CAAA"}
1
+ {"version":3,"file":"ValidatePlugins.d.ts","sourceRoot":"","sources":["../../../../src/components/validation-alerts/ValidatePlugins.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAcxE,CAAA"}
@@ -1,7 +1,7 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  import type { EmbedPluginBase } from './State.ts';
4
4
  export type EmbedPluginProviderProps = EmbedPluginBase;
5
5
  /** Expose passed embed plugin props via context */
6
- export declare const EmbedPluginProvider: React.FC<WithChildren<EmbedPluginProviderProps>>;
6
+ export declare const EmbedPluginProvider: React.FC<PropsWithChildren<EmbedPluginProviderProps>>;
7
7
  //# sourceMappingURL=Provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/EmbedPluginContext/Provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEjD,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAA;AAEtD,mDAAmD;AACnD,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,wBAAwB,CAAC,CA0BhF,CAAA"}
1
+ {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/EmbedPluginContext/Provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEjD,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAA;AAEtD,mDAAmD;AACnD,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,wBAAwB,CAAC,CA0BrF,CAAA"}
@@ -1,8 +1,8 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  export interface RefreshPayloadProps {
4
4
  onRefresh?: () => void;
5
5
  refreshPayload?: boolean;
6
6
  }
7
- export declare const RefreshPayloadProvider: React.FC<WithChildren<RefreshPayloadProps>>;
7
+ export declare const RefreshPayloadProvider: React.FC<PropsWithChildren<RefreshPayloadProps>>;
8
8
  //# sourceMappingURL=Provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/RefreshPayloadContext/Provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACxD,OAAO,KAAmB,MAAM,OAAO,CAAA;AAIvC,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;IACtB,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,mBAAmB,CAAC,CAc9E,CAAA"}
1
+ {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/RefreshPayloadContext/Provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAmB,MAAM,OAAO,CAAA;AAIvC,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,MAAM,IAAI,CAAA;IACtB,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,CAcnF,CAAA"}
@@ -1,6 +1,6 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  import type { ResolvePayloadState } from './State.ts';
4
4
  export type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>;
5
- export declare const ResolvePayloadProvider: React.FC<WithChildren<ResolvePayloadProviderProps>>;
5
+ export declare const ResolvePayloadProvider: React.FC<PropsWithChildren<ResolvePayloadProviderProps>>;
6
6
  //# sourceMappingURL=Provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/ResolvePayloadContext/Provider.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAIxD,OAAO,KAA8B,MAAM,OAAO,CAAA;AAIlD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAErD,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAAC,mBAAmB,EAAE,UAAU,CAAC,CAAA;AAE/E,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,2BAA2B,CAAC,CA4DtF,CAAA"}
1
+ {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/ResolvePayloadContext/Provider.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAA8B,MAAM,OAAO,CAAA;AAIlD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAErD,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAAC,mBAAmB,EAAE,UAAU,CAAC,CAAA;AAE/E,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,2BAA2B,CAAC,CA4D3F,CAAA"}
@@ -1,7 +1,7 @@
1
- import type { WithChildren } from '@xylabs/react-shared';
1
+ import type { PropsWithChildren } from 'react';
2
2
  import React from 'react';
3
3
  export interface ValidatePayloadProviderProps {
4
4
  enabled?: boolean;
5
5
  }
6
- export declare const ValidatePayloadProvider: React.FC<WithChildren<ValidatePayloadProviderProps>>;
6
+ export declare const ValidatePayloadProvider: React.FC<PropsWithChildren<ValidatePayloadProviderProps>>;
7
7
  //# sourceMappingURL=Provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/ValidatePayloadContext/Provider.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAmB,MAAM,OAAO,CAAA;AAKvC,MAAM,WAAW,4BAA4B;IAE3C,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,4BAA4B,CAAC,CAiCxF,CAAA"}
1
+ {"version":3,"file":"Provider.d.ts","sourceRoot":"","sources":["../../../../src/contexts/ValidatePayloadContext/Provider.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAmB,MAAM,OAAO,CAAA;AAKvC,MAAM,WAAW,4BAA4B;IAE3C,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,4BAA4B,CAAC,CAiC7F,CAAA"}
@@ -384,7 +384,7 @@ import { useTheme } from "@mui/material";
384
384
  import React19 from "react";
385
385
 
386
386
  // src/components/EmbedPlugin.tsx
387
- import { ErrorBoundary } from "@xyo-network/react-error";
387
+ import { ErrorBoundary } from "@xylabs/react-error";
388
388
  import { ListModeProvider } from "@xyo-network/react-shared";
389
389
  import React16 from "react";
390
390
 
@@ -461,7 +461,7 @@ var WithValidators = /* @__PURE__ */ __name(({ children, validateSchema }) => {
461
461
  }, "WithValidators");
462
462
 
463
463
  // src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx
464
- import { ErrorAlert, ErrorRender } from "@xyo-network/react-error";
464
+ import { ErrorAlert, ErrorRender } from "@xylabs/react-error";
465
465
  import React18 from "react";
466
466
 
467
467
  // src/components/embed-card/error-handling/EmbedErrorCard.tsx
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/components/embed-card/card/BusyCard.tsx","../../src/components/embed-card/card/EmbedCardHeader.tsx","../../src/contexts/EmbedPluginContext/Context.ts","../../src/contexts/EmbedPluginContext/Provider.tsx","../../src/contexts/EmbedPluginContext/use.ts","../../src/contexts/RefreshPayloadContext/Provider.tsx","../../src/contexts/RefreshPayloadContext/Context.ts","../../src/contexts/RefreshPayloadContext/use.ts","../../src/contexts/ResolvePayloadContext/Context.ts","../../src/contexts/ResolvePayloadContext/Provider.tsx","../../src/contexts/ResolvePayloadContext/use.ts","../../src/contexts/ValidatePayloadContext/Provider.tsx","../../src/contexts/ValidatePayloadContext/Context.ts","../../src/contexts/ValidatePayloadContext/use.ts","../../src/components/embed-card/menu/EmbedMenu.tsx","../../src/components/embed-card/menu/JsonMenuItem.tsx","../../src/components/embed-card/card/EmbedPluginCard.tsx","../../src/components/controls/EmbedFormControl.tsx","../../src/components/controls/ListModeSelect.tsx","../../src/components/controls/RenderSelect.tsx","../../src/components/embed-card/EmbedPluginCard.tsx","../../src/components/EmbedPlugin.tsx","../../src/components/EmbedResolver.tsx","../../src/components/validation-alerts/ValidatePayload.tsx","../../src/components/validation-alerts/ValidatePlugins.tsx","../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx","../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"sourcesContent":["import type { CardProps } from '@mui/material'\nimport { Card } from '@mui/material'\nimport { useBusyTiming } from '@xylabs/react-flexbox'\nimport type {\n BusyCircularProgressProps,\n BusyLinearProgressProps,\n BusyVariant,\n WithChildren,\n} from '@xylabs/react-shared'\nimport {\n BusyCircularProgress,\n BusyLinearProgress,\n} from '@xylabs/react-shared'\nimport React from 'react'\n\nexport interface BusyCardProps extends CardProps {\n busy?: boolean\n busyMinimum?: number\n busyVariant?: BusyVariant\n busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps\n}\n\nexport const BusyCard: React.FC<WithChildren<BusyCardProps>> = ({\n busy,\n busyMinimum = 500,\n busyVariant = 'circular',\n busyVariantProps,\n children,\n ...props\n}) => {\n const internalBusy = useBusyTiming(busy, busyMinimum)\n return (\n <Card {...props}>\n {children}\n {busyVariant === 'circular' && internalBusy\n ? <BusyCircularProgress {...(busyVariantProps as BusyCircularProgressProps)} />\n : null}\n {busyVariant === 'linear' && internalBusy\n ? <BusyLinearProgress {...(busyVariantProps as BusyLinearProgressProps)} />\n : null}\n </Card>\n )\n}\n","import { Refresh as RefreshIcon } from '@mui/icons-material'\nimport type { CardHeaderProps, Theme } from '@mui/material'\nimport {\n Avatar, CardHeader, Chip,\n} from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedMenu } from '../menu/index.ts'\n\nexport const EmbedCardHeader: React.FC<CardHeaderProps> = () => {\n const { refreshHuri, huri } = useResolvePayload()\n const {\n activePlugin, timestampLabel, hideElementsConfig,\n } = useEmbedPluginState()\n const {\n hideAvatar, hideTitle, hideRefreshButton, hideTimestamp, hideCardActions,\n } = hideElementsConfig ?? {}\n // this is temporary so that we can add the ability to get a timestamp via diviner later\n const timestamp = Date.now()\n return (\n <CardHeader\n sx={{ flexWrap: 'wrap', rowGap: 1 }}\n avatar={\n hideAvatar\n ? <></>\n : (\n <Avatar sx={{ bgcolor: (theme: Theme) => theme.palette.primary.main }} aria-label={activePlugin?.name}>\n {activePlugin?.name?.charAt(0)}\n </Avatar>\n )\n }\n action={(\n <FlexRow flexWrap=\"wrap\" columnGap={0.5}>\n {timestamp\n ? hideTimestamp && hideRefreshButton\n ? ''\n : (\n <Chip\n avatar={hideRefreshButton ? <></> : <RefreshIcon />}\n clickable={hideRefreshButton ? false : true}\n onClick={refreshHuri}\n label={hideTimestamp ? '' : `${timestampLabel} ${new Date(timestamp).toLocaleString()}`}\n />\n )\n\n : null}\n {/* Huri case is valid as long as the only menu item is JSON */}\n {hideCardActions || huri === undefined ? null : <EmbedMenu />}\n </FlexRow>\n )}\n title={hideTitle ? '' : activePlugin?.name}\n />\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { EmbedPluginState } from './State.ts'\n\nexport const EmbedPluginContext = createContextEx<EmbedPluginState>()\n","import { useResetState } from '@xylabs/react-hooks'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { EmbedPluginContext } from './Context.ts'\nimport type { EmbedPluginBase } from './State.ts'\n\nexport type EmbedPluginProviderProps = EmbedPluginBase\n\n/** Expose passed embed plugin props via context */\nexport const EmbedPluginProvider: React.FC<WithChildren<EmbedPluginProviderProps>> = ({\n children,\n refreshTitle,\n timestampLabel,\n hideElementsConfig,\n plugins,\n embedPluginConfig,\n}) => {\n const [activePlugin, setActivePlugin] = useResetState(plugins ? plugins[0] : undefined)\n\n return (\n <EmbedPluginContext.Provider\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n value={{\n activePlugin,\n embedPluginConfig,\n hideElementsConfig,\n provided: true,\n refreshTitle,\n setActivePlugin,\n timestampLabel,\n }}\n >\n {children}\n </EmbedPluginContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { EmbedPluginContext } from './Context.ts'\n\nexport const useEmbedPluginState = () => useContextEx(EmbedPluginContext, 'EmbedPlugin', true)\n","import type { WithChildren } from '@xylabs/react-shared'\nimport React, { useState } from 'react'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport interface RefreshPayloadProps {\n onRefresh?: () => void\n refreshPayload?: boolean\n}\n\nexport const RefreshPayloadProvider: React.FC<WithChildren<RefreshPayloadProps>> = ({\n children, onRefresh, refreshPayload,\n}) => {\n const [localRefreshPayload, setRefreshPayload] = useState(refreshPayload)\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <RefreshPayloadContext.Provider value={{\n onRefresh, provided: true, refreshPayload: localRefreshPayload, setRefreshPayload,\n }}\n >\n {children}\n </RefreshPayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { RefreshPayloadState } from './State.ts'\n\nexport const RefreshPayloadContext = createContextEx<RefreshPayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport const useRefreshPayload = () => useContextEx(RefreshPayloadContext, 'RefreshPayload', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ResolvePayloadState } from './State.ts'\n\nexport const ResolvePayloadContext = createContextEx<ResolvePayloadState>()\n","/* eslint-disable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */\nimport { delay } from '@xylabs/delay'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport { Huri } from '@xyo-network/huri'\nimport type { ModuleError, Payload } from '@xyo-network/payload-model'\nimport { ModuleErrorSchema } from '@xyo-network/payload-model'\nimport React, { useEffect, useState } from 'react'\n\nimport { useRefreshPayload } from '../RefreshPayloadContext/index.ts'\nimport { ResolvePayloadContext } from './Context.ts'\nimport type { ResolvePayloadState } from './State.ts'\n\nexport type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>\n\nexport const ResolvePayloadProvider: React.FC<WithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {\n const [payload, setPayload] = useState<Payload>()\n const [huri, setHuri] = useState<string>()\n const {\n refreshPayload, setRefreshPayload, onRefresh,\n } = useRefreshPayload()\n\n useEffect(() => {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n typeof huriPayload === 'string' ? setHuri(huriPayload) : undefined\n if (typeof huriPayload === 'object') {\n setPayload(huriPayload)\n setRefreshPayload?.(true)\n }\n }, [huriPayload, setRefreshPayload])\n\n const [notFound, setNotFound] = useState<boolean>()\n const [huriError, setHuriError] = useState<ModuleError>()\n\n useAsyncEffect(\n async (mounted) => {\n if (huri && !refreshPayload) {\n try {\n const huriInstance = new Huri(huri)\n const result = await huriInstance.fetch()\n // ensure the busy state can stay for a moment to avoid flashing too quickly\n await delay(500)\n\n if (mounted()) {\n setNotFound(result === null)\n setPayload(result)\n setRefreshPayload?.(true)\n }\n } catch (e) {\n const error = e as Error\n setHuriError({\n message: error.message, schema: ModuleErrorSchema, sources: [],\n })\n }\n }\n },\n [huri, payload, refreshPayload, setRefreshPayload],\n )\n\n const refreshHuri = () => {\n onRefresh?.()\n if (huri) {\n setRefreshPayload?.(false)\n }\n }\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ResolvePayloadContext.Provider value={{\n huri, huriError, notFound, payload, provided: true, refreshHuri, setPayload,\n }}\n >\n {children}\n </ResolvePayloadContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ResolvePayloadContext } from './Context.ts'\n\nexport const useResolvePayload = () => useContextEx(ResolvePayloadContext, 'ResolvePayload', true)\n","import { Chip } from '@mui/material'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport type { SchemaNameToValidatorMap } from '@xyo-network/schema-cache'\nimport { SchemaCache } from '@xyo-network/schema-cache'\nimport React, { useState } from 'react'\n\nimport { useResolvePayload } from '../ResolvePayloadContext/index.ts'\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport interface ValidatePayloadProviderProps {\n // Opt-in flag to validate payloads for the plugin(s)\n enabled?: boolean\n}\n\nexport const ValidatePayloadProvider: React.FC<WithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {\n const { payload } = useResolvePayload()\n const [initialized, setInitialized] = useState(false)\n const [valid, setValid] = useState<boolean>()\n\n useAsyncEffect(\n async () => {\n if (payload && enabled) {\n await SchemaCache.instance.get(payload.schema)\n\n const possibleKnownSchema = payload.schema as keyof SchemaNameToValidatorMap\n\n if (SchemaCache.instance.validators[possibleKnownSchema]) {\n const validator = SchemaCache.instance.validators[possibleKnownSchema]\n setValid(validator?.(payload))\n }\n setInitialized(true)\n }\n },\n [payload, enabled],\n )\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ValidatePayloadContext.Provider value={{\n enabled, provided: true, schema: payload?.schema, validPayload: valid,\n }}\n >\n {enabled\n ? <>{initialized ? children : <Chip label=\"Validating Payload...\" />}</>\n : children}\n </ValidatePayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ValidatePayloadState } from './State.ts'\n\nexport const ValidatePayloadContext = createContextEx<ValidatePayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport const useValidatePayload = () => useContextEx(ValidatePayloadContext, 'ValidateSchema', true)\n","import { MoreVert as MoreVertIcon } from '@mui/icons-material'\nimport type { IconButtonProps } from '@mui/material'\nimport { IconButton, Menu } from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { JsonMenuItem } from './JsonMenuItem.tsx'\n\nexport const EmbedMenu: React.FC<IconButtonProps> = (props) => {\n // TODO - link to explore website\n const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null)\n const open = Boolean(anchorEl)\n\n const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {\n setAnchorEl(event.currentTarget)\n }\n const handleClose = () => {\n setAnchorEl(null)\n }\n\n return (\n <>\n <IconButton onClick={handleClick} {...props}>\n <MoreVertIcon />\n </IconButton>\n <Menu anchorEl={anchorEl} open={open} onClose={handleClose} PaperProps={{ variant: 'elevation' }} MenuListProps={{ dense: true }}>\n <JsonMenuItem />\n </Menu>\n </>\n )\n}\n","import { OpenInNew as OpenInNewIcon } from '@mui/icons-material'\nimport type { MenuItemProps } from '@mui/material'\nimport {\n ListItemIcon, ListItemText, MenuItem,\n} from '@mui/material'\nimport React from 'react'\n\nimport { useResolvePayload } from '../../../contexts/index.ts'\n\nexport const JsonMenuItem: React.FC<MenuItemProps> = (props) => {\n const { huri } = useResolvePayload()\n\n return (\n <>\n {huri\n ? (\n <MenuItem title=\"Source Payload JSON\" onClick={() => window.open(huri, '_blank')} {...props}>\n <ListItemText sx={{ mr: 1 }}>JSON</ListItemText>\n <ListItemIcon sx={{ justifyContent: 'end' }}>\n <OpenInNewIcon fontSize=\"small\" />\n </ListItemIcon>\n </MenuItem>\n )\n : null}\n </>\n )\n}\n","import { CardContent } from '@mui/material'\nimport { FlexGrowRow } from '@xylabs/react-flexbox'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedRenderSelect, ListModeSelectFormControl } from '../../controls/index.ts'\nimport type { BusyCardProps } from './BusyCard.tsx'\nimport { BusyCard } from './BusyCard.tsx'\nimport { EmbedCardHeader } from './EmbedCardHeader.tsx'\n\nexport const EmbedPluginCard: React.FC<BusyCardProps> = ({ ...props }) => {\n const { payload } = useResolvePayload()\n const {\n activePlugin: ActivePlugin, plugins, hideElementsConfig,\n } = useEmbedPluginState()\n const { listMode } = useListMode()\n const supportsListMode = ActivePlugin?.components?.box?.listModes?.length ?? 0 > 1\n\n return (\n <BusyCard {...props}>\n {hideElementsConfig?.hideCardHeader ? null : <EmbedCardHeader />}\n {/* Only show the row if the children are present */}\n {(plugins && plugins.length > 0) || supportsListMode\n ? (\n <FlexGrowRow columnGap={2} rowGap={2} flexWrap=\"wrap\" pb={1}>\n {plugins && plugins.length > 1\n ? <EmbedRenderSelect />\n : null}\n {supportsListMode\n ? <ListModeSelectFormControl />\n : null}\n </FlexGrowRow>\n )\n : null}\n <CardContent sx={{ height: '100%' }}>\n {ActivePlugin\n ? <ActivePlugin.components.box.detailsBox payload={payload} {...(supportsListMode && { listMode })} />\n : null}\n </CardContent>\n </BusyCard>\n )\n}\n","import type { FormControlProps } from '@mui/material'\nimport { FormControl, InputLabel } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedFormControlProps extends FormControlProps {\n formId?: string\n formLabel?: string\n}\n\nexport const EmbedFormControl: React.FC<WithChildren<EmbedFormControlProps>> = ({\n formId, formLabel, children, ...props\n}) => {\n return (\n <FormControl {...props}>\n <InputLabel id={formId}>{formLabel}</InputLabel>\n {children}\n </FormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport type { ListMode } from '@xyo-network/react-shared'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst listModeSelectId = 'listmode-select-id'\nconst listModeSelectLabel = 'List Mode'\n\nexport const ListModeSelect: React.FC<SelectExProps<ListMode>> = (props) => {\n const { listMode, setListMode } = useListMode()\n\n return (\n <SelectEx<ListMode>\n value={(listMode ?? 'default') as ListMode}\n onChange={(event) => {\n setListMode?.(event.target.value as ListMode)\n }}\n {...props}\n >\n <MenuItem key=\"default\" value=\"default\">\n Default\n </MenuItem>\n <MenuItem key=\"table\" value=\"table\">\n Table\n </MenuItem>\n <MenuItem key=\"grid\" value=\"grid\">\n Grid\n </MenuItem>\n </SelectEx>\n )\n}\n\nexport const ListModeSelectFormControl: React.FC<SelectExProps<ListMode>> = (props) => {\n return (\n <EmbedFormControl formId={listModeSelectId} formLabel={listModeSelectLabel}>\n <ListModeSelect size=\"small\" label={listModeSelectLabel} labelId={listModeSelectId} {...props} />\n </EmbedFormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport React from 'react'\n\nimport { useEmbedPluginState } from '../../contexts/index.ts'\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst renderSelectId = 'render-select-id'\nconst renderSelectLabel = 'Renderer'\n\nexport const EmbedRenderSelect: React.FC<SelectExProps<string>> = (props) => {\n const {\n activePlugin, setActivePlugin, plugins,\n } = useEmbedPluginState()\n return (\n <EmbedFormControl formId={renderSelectId} formLabel={renderSelectLabel}>\n <SelectEx size=\"small\" value={activePlugin?.name} {...props}>\n {plugins?.map(plugin => (\n <MenuItem value={plugin.name} key={plugin.name} onClick={() => setActivePlugin?.(plugin)}>\n {plugin.name}\n </MenuItem>\n ))}\n </SelectEx>\n </EmbedFormControl>\n )\n}\n","import { useTheme } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'\nimport type { EmbedPluginProps } from '../../types/index.ts'\nimport { EmbedPluginInner } from '../EmbedPlugin.tsx'\nimport type { BusyCardProps } from './card/index.ts'\nimport { EmbedPluginCard } from './card/index.ts'\nimport { EmbedCardApiErrorRenderer } from './error-handling/index.ts'\n\nexport interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {}\n\nexport const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps> = ({ children, ...props }) => {\n const {\n validateSchema,\n plugins = [],\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n ...busyCardProps\n } = props\n\n return (\n <EmbedPluginInner\n {...{\n embedPluginConfig,\n hideElementsConfig,\n huriPayload,\n onRefresh,\n plugins,\n refreshTitle,\n timestampLabel,\n validateSchema,\n }}\n >\n <EmbedPluginCardInner {...busyCardProps} />\n {children}\n </EmbedPluginInner>\n )\n}\n\nexport const EmbedPluginCardInner: React.FC<BusyCardProps> = (props) => {\n const { payload, huriError } = useResolvePayload()\n const { refreshPayload } = useRefreshPayload()\n const theme = useTheme()\n\n return (\n <EmbedCardApiErrorRenderer xyoError={huriError}>\n <EmbedPluginCard\n elevation={3}\n variant=\"elevation\"\n busy={Boolean(!refreshPayload && payload)}\n busyVariantProps={{\n style: {\n alignItems: 'start', paddingTop: theme.spacing(2), zIndex: 2,\n },\n }}\n sx={{ position: 'relative' }}\n {...props}\n />\n </EmbedCardApiErrorRenderer>\n )\n}\n\n/** @deprecated - use EmbedPluginCard and use CardProps instead of FlexBoxProps */\n\nexport { EmbedPluginCard as EmbedPlugin } from './card/index.ts'\n","import type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport { ErrorBoundary } from '@xyo-network/react-error'\nimport { ListModeProvider } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport {\n EmbedPluginProvider, RefreshPayloadProvider, ResolvePayloadProvider, ValidatePayloadProvider,\n} from '../contexts/index.ts'\nimport type { EmbedPluginProps } from '../types/index.ts'\nimport { EmbedResolver } from './EmbedResolver.tsx'\nimport { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'\n\nexport const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>> = ({\n validateSchema,\n plugins,\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n children,\n}) => {\n return (\n <ErrorBoundary>\n <EmbedPluginProvider\n refreshTitle={refreshTitle}\n timestampLabel={timestampLabel}\n hideElementsConfig={hideElementsConfig}\n plugins={plugins}\n embedPluginConfig={embedPluginConfig}\n >\n <WithResolvers onRefresh={onRefresh} huriPayload={huriPayload}>\n <WithValidators validateSchema={validateSchema}>\n <ListModeProvider defaultListMode={embedPluginConfig?.listMode}>{children}</ListModeProvider>\n </WithValidators>\n </WithResolvers>\n </EmbedPluginProvider>\n </ErrorBoundary>\n )\n}\n\ninterface WithResolversProps extends Pick<EmbedPluginProps, 'onRefresh' | 'huriPayload'>, FlexBoxProps {}\n\nconst WithResolvers: React.FC<WithChildren<WithResolversProps>> = ({\n children, onRefresh, huriPayload,\n}) => {\n return (\n <RefreshPayloadProvider onRefresh={onRefresh}>\n <ResolvePayloadProvider huriPayload={huriPayload}>\n <EmbedResolver>{children}</EmbedResolver>\n </ResolvePayloadProvider>\n </RefreshPayloadProvider>\n )\n}\n\nconst WithValidators: React.FC<WithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {\n return (\n <ValidatePayloadProvider enabled={validateSchema}>\n <ValidatePluginsAlert>\n <ValidatePayloadAlert>{children}</ValidatePayloadAlert>\n </ValidatePluginsAlert>\n </ValidatePayloadProvider>\n )\n}\n","import type { WithChildren } from '@xylabs/react-shared'\nimport { LoadResult } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useResolvePayload } from '../contexts/index.ts'\n\nexport const EmbedResolver: React.FC<WithChildren> = ({ children }) => {\n const {\n payload, notFound, huriError,\n } = useResolvePayload()\n\n return (\n <LoadResult searchResult={payload} notFound={!!notFound} error={!!huriError}>\n {children}\n </LoadResult>\n )\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useValidatePayload } from '../../contexts/index.ts'\n\nexport const ValidatePayloadAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const {\n validPayload, enabled, schema,\n } = useValidatePayload()\n\n if (enabled && validPayload === false) {\n return (\n <Alert severity=\"error\" title=\"Invalid Payload!\" {...props}>\n Payload schema claimed to be\n {' '}\n {schema}\n {' '}\n but failed to validate.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert, AlertTitle } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'\n\nexport const ValidatePluginsAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const { payload } = useResolvePayload()\n const { plugins } = useEmbedPluginState()\n\n if (payload && plugins?.length === 0) {\n return (\n <Alert severity=\"warning\" {...props}>\n <AlertTitle>Missing plugins!</AlertTitle>\n Payload found but no plugins were present.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { CardProps } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport type { ModuleError } from '@xyo-network/payload-model'\nimport { ErrorAlert, ErrorRender } from '@xyo-network/react-error'\nimport React from 'react'\n\nimport { EmbedErrorCard } from './EmbedErrorCard.tsx'\n\ninterface EmbedCardApiErrorRendererProps extends CardProps {\n xyoError?: ModuleError\n}\n\nexport const EmbedCardApiErrorRenderer: React.FC<WithChildren<EmbedCardApiErrorRendererProps>> = ({\n xyoError, children, ...props\n}) => {\n return (\n <ErrorRender error={xyoError} noReAuth noErrorDisplay customError={<CustomApiErrorCard xyoError={xyoError} {...props} />}>\n {children}\n </ErrorRender>\n )\n}\n\nconst CustomApiErrorCard: React.FC<EmbedCardApiErrorRendererProps> = ({ xyoError, ...props }) => {\n return (\n <EmbedErrorCard {...props}>\n <ErrorAlert error={xyoError} />\n </EmbedErrorCard>\n )\n}\n","import type { AlertProps, CardProps } from '@mui/material'\nimport {\n Alert, AlertTitle, Card, CardContent, Typography,\n} from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedErrorCardBaseProps {\n alertProps?: AlertProps\n error?: Error\n hideErrorDetails?: boolean\n scope?: string\n}\n\ninterface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {}\n\nexport const EmbedErrorCard: React.FC<WithChildren<EmbedErrorCardProps>> = (props) => {\n const {\n alertProps, error, scope, hideErrorDetails = true, children, ...cardProps\n } = props\n const errorProps = {\n alertProps, error, hideErrorDetails, scope,\n }\n return (\n <Card {...cardProps}>\n <CardContent>{children ?? <DefaultErrorAlert {...errorProps} />}</CardContent>\n </Card>\n )\n}\n\nconst DefaultErrorAlert: React.FC<EmbedErrorCardBaseProps> = ({\n alertProps, scope, hideErrorDetails, error,\n}) => {\n return (\n <Alert severity=\"error\" {...alertProps}>\n <AlertTitle>Whoops! Something went wrong</AlertTitle>\n {scope\n ? (\n <Typography variant=\"caption\">\n Scope:\n {scope}\n </Typography>\n )\n : null}\n {!hideErrorDetails && error\n ? (\n <>\n <Typography variant=\"caption\">Error: </Typography>\n <Typography variant=\"caption\">{error?.message}</Typography>\n </>\n )\n : (\n <Typography variant=\"caption\" fontSize=\"small\">\n Error Loading Plugin\n </Typography>\n )}\n </Alert>\n )\n}\n"],"mappings":"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","names":["Card","useBusyTiming","BusyCircularProgress","BusyLinearProgress","React","BusyCard","busy","busyMinimum","busyVariant","busyVariantProps","children","props","internalBusy","useBusyTiming","Card","BusyCircularProgress","BusyLinearProgress","Refresh","RefreshIcon","Avatar","CardHeader","Chip","FlexRow","React","createContextEx","EmbedPluginContext","useResetState","React","EmbedPluginProvider","children","refreshTitle","timestampLabel","hideElementsConfig","plugins","embedPluginConfig","activePlugin","setActivePlugin","useResetState","undefined","React","EmbedPluginContext","Provider","value","provided","useContextEx","useEmbedPluginState","useContextEx","EmbedPluginContext","React","useState","createContextEx","RefreshPayloadContext","RefreshPayloadProvider","children","onRefresh","refreshPayload","localRefreshPayload","setRefreshPayload","useState","React","RefreshPayloadContext","Provider","value","provided","useContextEx","useRefreshPayload","useContextEx","RefreshPayloadContext","createContextEx","ResolvePayloadContext","delay","useAsyncEffect","Huri","ModuleErrorSchema","React","useEffect","useState","ResolvePayloadProvider","children","huriPayload","payload","setPayload","useState","huri","setHuri","refreshPayload","setRefreshPayload","onRefresh","useRefreshPayload","useEffect","undefined","notFound","setNotFound","huriError","setHuriError","useAsyncEffect","mounted","huriInstance","Huri","result","fetch","delay","e","error","message","schema","ModuleErrorSchema","sources","refreshHuri","React","ResolvePayloadContext","Provider","value","provided","useContextEx","useResolvePayload","useContextEx","ResolvePayloadContext","Chip","useAsyncEffect","SchemaCache","React","useState","createContextEx","ValidatePayloadContext","ValidatePayloadProvider","children","enabled","payload","useResolvePayload","initialized","setInitialized","useState","valid","setValid","useAsyncEffect","SchemaCache","instance","get","schema","possibleKnownSchema","validators","validator","React","ValidatePayloadContext","Provider","value","provided","validPayload","Chip","label","useContextEx","useValidatePayload","useContextEx","ValidatePayloadContext","MoreVert","MoreVertIcon","IconButton","Menu","React","useState","OpenInNew","OpenInNewIcon","ListItemIcon","ListItemText","MenuItem","React","JsonMenuItem","props","huri","useResolvePayload","React","MenuItem","title","onClick","window","open","ListItemText","sx","mr","ListItemIcon","justifyContent","OpenInNewIcon","fontSize","EmbedMenu","props","anchorEl","setAnchorEl","useState","open","Boolean","handleClick","event","currentTarget","handleClose","React","IconButton","onClick","MoreVertIcon","Menu","onClose","PaperProps","variant","MenuListProps","dense","JsonMenuItem","EmbedCardHeader","refreshHuri","huri","useResolvePayload","activePlugin","timestampLabel","hideElementsConfig","useEmbedPluginState","hideAvatar","hideTitle","hideRefreshButton","hideTimestamp","hideCardActions","timestamp","Date","now","React","CardHeader","sx","flexWrap","rowGap","avatar","Avatar","bgcolor","theme","palette","primary","main","aria-label","name","charAt","action","FlexRow","columnGap","Chip","RefreshIcon","clickable","onClick","label","toLocaleString","undefined","EmbedMenu","title","CardContent","FlexGrowRow","useListMode","React","FormControl","InputLabel","React","EmbedFormControl","formId","formLabel","children","props","React","FormControl","InputLabel","id","MenuItem","SelectEx","useListMode","React","listModeSelectId","listModeSelectLabel","ListModeSelect","props","listMode","setListMode","useListMode","React","SelectEx","value","onChange","event","target","MenuItem","key","ListModeSelectFormControl","EmbedFormControl","formId","formLabel","size","label","labelId","MenuItem","SelectEx","React","renderSelectId","renderSelectLabel","EmbedRenderSelect","props","activePlugin","setActivePlugin","plugins","useEmbedPluginState","React","EmbedFormControl","formId","formLabel","SelectEx","size","value","name","map","plugin","MenuItem","key","onClick","EmbedPluginCard","props","payload","useResolvePayload","activePlugin","ActivePlugin","plugins","hideElementsConfig","useEmbedPluginState","listMode","useListMode","supportsListMode","components","box","listModes","length","React","BusyCard","hideCardHeader","EmbedCardHeader","FlexGrowRow","columnGap","rowGap","flexWrap","pb","EmbedRenderSelect","ListModeSelectFormControl","CardContent","sx","height","detailsBox","useTheme","React","ErrorBoundary","ListModeProvider","React","LoadResult","React","EmbedResolver","children","payload","notFound","huriError","useResolvePayload","React","LoadResult","searchResult","error","Alert","React","ValidatePayloadAlert","children","props","validPayload","enabled","schema","useValidatePayload","React","Alert","severity","title","Alert","AlertTitle","React","ValidatePluginsAlert","children","props","payload","useResolvePayload","plugins","useEmbedPluginState","length","React","Alert","severity","AlertTitle","EmbedPluginInner","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","children","React","ErrorBoundary","EmbedPluginProvider","WithResolvers","WithValidators","ListModeProvider","defaultListMode","listMode","RefreshPayloadProvider","ResolvePayloadProvider","EmbedResolver","ValidatePayloadProvider","enabled","ValidatePluginsAlert","ValidatePayloadAlert","ErrorAlert","ErrorRender","React","Alert","AlertTitle","Card","CardContent","Typography","React","EmbedErrorCard","props","alertProps","error","scope","hideErrorDetails","children","cardProps","errorProps","React","Card","CardContent","DefaultErrorAlert","Alert","severity","AlertTitle","Typography","variant","message","fontSize","EmbedCardApiErrorRenderer","xyoError","children","props","React","ErrorRender","error","noReAuth","noErrorDisplay","customError","CustomApiErrorCard","EmbedErrorCard","ErrorAlert","ApiEmbedPluginCard","children","props","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","busyCardProps","React","EmbedPluginInner","EmbedPluginCardInner","payload","huriError","useResolvePayload","refreshPayload","useRefreshPayload","theme","useTheme","EmbedCardApiErrorRenderer","xyoError","EmbedPluginCard","elevation","variant","busy","Boolean","busyVariantProps","style","alignItems","paddingTop","spacing","zIndex","sx","position"]}
1
+ {"version":3,"sources":["../../src/components/embed-card/card/BusyCard.tsx","../../src/components/embed-card/card/EmbedCardHeader.tsx","../../src/contexts/EmbedPluginContext/Context.ts","../../src/contexts/EmbedPluginContext/Provider.tsx","../../src/contexts/EmbedPluginContext/use.ts","../../src/contexts/RefreshPayloadContext/Provider.tsx","../../src/contexts/RefreshPayloadContext/Context.ts","../../src/contexts/RefreshPayloadContext/use.ts","../../src/contexts/ResolvePayloadContext/Context.ts","../../src/contexts/ResolvePayloadContext/Provider.tsx","../../src/contexts/ResolvePayloadContext/use.ts","../../src/contexts/ValidatePayloadContext/Provider.tsx","../../src/contexts/ValidatePayloadContext/Context.ts","../../src/contexts/ValidatePayloadContext/use.ts","../../src/components/embed-card/menu/EmbedMenu.tsx","../../src/components/embed-card/menu/JsonMenuItem.tsx","../../src/components/embed-card/card/EmbedPluginCard.tsx","../../src/components/controls/EmbedFormControl.tsx","../../src/components/controls/ListModeSelect.tsx","../../src/components/controls/RenderSelect.tsx","../../src/components/embed-card/EmbedPluginCard.tsx","../../src/components/EmbedPlugin.tsx","../../src/components/EmbedResolver.tsx","../../src/components/validation-alerts/ValidatePayload.tsx","../../src/components/validation-alerts/ValidatePlugins.tsx","../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx","../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"sourcesContent":["import type { CardProps } from '@mui/material'\nimport { Card } from '@mui/material'\nimport { useBusyTiming } from '@xylabs/react-flexbox'\nimport type {\n BusyCircularProgressProps,\n BusyLinearProgressProps,\n BusyVariant,\n} from '@xylabs/react-shared'\nimport {\n BusyCircularProgress,\n BusyLinearProgress,\n} from '@xylabs/react-shared'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nexport interface BusyCardProps extends CardProps {\n busy?: boolean\n busyMinimum?: number\n busyVariant?: BusyVariant\n busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps\n}\n\nexport const BusyCard: React.FC<PropsWithChildren<BusyCardProps>> = ({\n busy,\n busyMinimum = 500,\n busyVariant = 'circular',\n busyVariantProps,\n children,\n ...props\n}) => {\n const internalBusy = useBusyTiming(busy, busyMinimum)\n return (\n <Card {...props}>\n {children}\n {busyVariant === 'circular' && internalBusy\n ? <BusyCircularProgress {...(busyVariantProps as BusyCircularProgressProps)} />\n : null}\n {busyVariant === 'linear' && internalBusy\n ? <BusyLinearProgress {...(busyVariantProps as BusyLinearProgressProps)} />\n : null}\n </Card>\n )\n}\n","import { Refresh as RefreshIcon } from '@mui/icons-material'\nimport type { CardHeaderProps, Theme } from '@mui/material'\nimport {\n Avatar, CardHeader, Chip,\n} from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedMenu } from '../menu/index.ts'\n\nexport const EmbedCardHeader: React.FC<CardHeaderProps> = () => {\n const { refreshHuri, huri } = useResolvePayload()\n const {\n activePlugin, timestampLabel, hideElementsConfig,\n } = useEmbedPluginState()\n const {\n hideAvatar, hideTitle, hideRefreshButton, hideTimestamp, hideCardActions,\n } = hideElementsConfig ?? {}\n // this is temporary so that we can add the ability to get a timestamp via diviner later\n const timestamp = Date.now()\n return (\n <CardHeader\n sx={{ flexWrap: 'wrap', rowGap: 1 }}\n avatar={\n hideAvatar\n ? <></>\n : (\n <Avatar sx={{ bgcolor: (theme: Theme) => theme.palette.primary.main }} aria-label={activePlugin?.name}>\n {activePlugin?.name?.charAt(0)}\n </Avatar>\n )\n }\n action={(\n <FlexRow flexWrap=\"wrap\" columnGap={0.5}>\n {timestamp\n ? hideTimestamp && hideRefreshButton\n ? ''\n : (\n <Chip\n avatar={hideRefreshButton ? <></> : <RefreshIcon />}\n clickable={hideRefreshButton ? false : true}\n onClick={refreshHuri}\n label={hideTimestamp ? '' : `${timestampLabel} ${new Date(timestamp).toLocaleString()}`}\n />\n )\n\n : null}\n {/* Huri case is valid as long as the only menu item is JSON */}\n {hideCardActions || huri === undefined ? null : <EmbedMenu />}\n </FlexRow>\n )}\n title={hideTitle ? '' : activePlugin?.name}\n />\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { EmbedPluginState } from './State.ts'\n\nexport const EmbedPluginContext = createContextEx<EmbedPluginState>()\n","import { useResetState } from '@xylabs/react-hooks'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { EmbedPluginContext } from './Context.ts'\nimport type { EmbedPluginBase } from './State.ts'\n\nexport type EmbedPluginProviderProps = EmbedPluginBase\n\n/** Expose passed embed plugin props via context */\nexport const EmbedPluginProvider: React.FC<PropsWithChildren<EmbedPluginProviderProps>> = ({\n children,\n refreshTitle,\n timestampLabel,\n hideElementsConfig,\n plugins,\n embedPluginConfig,\n}) => {\n const [activePlugin, setActivePlugin] = useResetState(plugins ? plugins[0] : undefined)\n\n return (\n <EmbedPluginContext.Provider\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n value={{\n activePlugin,\n embedPluginConfig,\n hideElementsConfig,\n provided: true,\n refreshTitle,\n setActivePlugin,\n timestampLabel,\n }}\n >\n {children}\n </EmbedPluginContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { EmbedPluginContext } from './Context.ts'\n\nexport const useEmbedPluginState = () => useContextEx(EmbedPluginContext, 'EmbedPlugin', true)\n","import type { PropsWithChildren } from 'react'\nimport React, { useState } from 'react'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport interface RefreshPayloadProps {\n onRefresh?: () => void\n refreshPayload?: boolean\n}\n\nexport const RefreshPayloadProvider: React.FC<PropsWithChildren<RefreshPayloadProps>> = ({\n children, onRefresh, refreshPayload,\n}) => {\n const [localRefreshPayload, setRefreshPayload] = useState(refreshPayload)\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <RefreshPayloadContext.Provider value={{\n onRefresh, provided: true, refreshPayload: localRefreshPayload, setRefreshPayload,\n }}\n >\n {children}\n </RefreshPayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { RefreshPayloadState } from './State.ts'\n\nexport const RefreshPayloadContext = createContextEx<RefreshPayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport const useRefreshPayload = () => useContextEx(RefreshPayloadContext, 'RefreshPayload', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ResolvePayloadState } from './State.ts'\n\nexport const ResolvePayloadContext = createContextEx<ResolvePayloadState>()\n","/* eslint-disable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */\nimport { delay } from '@xylabs/delay'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport { Huri } from '@xyo-network/huri'\nimport type { ModuleError, Payload } from '@xyo-network/payload-model'\nimport { ModuleErrorSchema } from '@xyo-network/payload-model'\nimport type { PropsWithChildren } from 'react'\nimport React, { useEffect, useState } from 'react'\n\nimport { useRefreshPayload } from '../RefreshPayloadContext/index.ts'\nimport { ResolvePayloadContext } from './Context.ts'\nimport type { ResolvePayloadState } from './State.ts'\n\nexport type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>\n\nexport const ResolvePayloadProvider: React.FC<PropsWithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {\n const [payload, setPayload] = useState<Payload>()\n const [huri, setHuri] = useState<string>()\n const {\n refreshPayload, setRefreshPayload, onRefresh,\n } = useRefreshPayload()\n\n useEffect(() => {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n typeof huriPayload === 'string' ? setHuri(huriPayload) : undefined\n if (typeof huriPayload === 'object') {\n setPayload(huriPayload)\n setRefreshPayload?.(true)\n }\n }, [huriPayload, setRefreshPayload])\n\n const [notFound, setNotFound] = useState<boolean>()\n const [huriError, setHuriError] = useState<ModuleError>()\n\n useAsyncEffect(\n async (mounted) => {\n if (huri && !refreshPayload) {\n try {\n const huriInstance = new Huri(huri)\n const result = await huriInstance.fetch()\n // ensure the busy state can stay for a moment to avoid flashing too quickly\n await delay(500)\n\n if (mounted()) {\n setNotFound(result === null)\n setPayload(result)\n setRefreshPayload?.(true)\n }\n } catch (e) {\n const error = e as Error\n setHuriError({\n message: error.message, schema: ModuleErrorSchema, sources: [],\n })\n }\n }\n },\n [huri, payload, refreshPayload, setRefreshPayload],\n )\n\n const refreshHuri = () => {\n onRefresh?.()\n if (huri) {\n setRefreshPayload?.(false)\n }\n }\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ResolvePayloadContext.Provider value={{\n huri, huriError, notFound, payload, provided: true, refreshHuri, setPayload,\n }}\n >\n {children}\n </ResolvePayloadContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ResolvePayloadContext } from './Context.ts'\n\nexport const useResolvePayload = () => useContextEx(ResolvePayloadContext, 'ResolvePayload', true)\n","import { Chip } from '@mui/material'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport type { SchemaNameToValidatorMap } from '@xyo-network/schema-cache'\nimport { SchemaCache } from '@xyo-network/schema-cache'\nimport type { PropsWithChildren } from 'react'\nimport React, { useState } from 'react'\n\nimport { useResolvePayload } from '../ResolvePayloadContext/index.ts'\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport interface ValidatePayloadProviderProps {\n // Opt-in flag to validate payloads for the plugin(s)\n enabled?: boolean\n}\n\nexport const ValidatePayloadProvider: React.FC<PropsWithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {\n const { payload } = useResolvePayload()\n const [initialized, setInitialized] = useState(false)\n const [valid, setValid] = useState<boolean>()\n\n useAsyncEffect(\n async () => {\n if (payload && enabled) {\n await SchemaCache.instance.get(payload.schema)\n\n const possibleKnownSchema = payload.schema as keyof SchemaNameToValidatorMap\n\n if (SchemaCache.instance.validators[possibleKnownSchema]) {\n const validator = SchemaCache.instance.validators[possibleKnownSchema]\n setValid(validator?.(payload))\n }\n setInitialized(true)\n }\n },\n [payload, enabled],\n )\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ValidatePayloadContext.Provider value={{\n enabled, provided: true, schema: payload?.schema, validPayload: valid,\n }}\n >\n {enabled\n ? <>{initialized ? children : <Chip label=\"Validating Payload...\" />}</>\n : children}\n </ValidatePayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ValidatePayloadState } from './State.ts'\n\nexport const ValidatePayloadContext = createContextEx<ValidatePayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport const useValidatePayload = () => useContextEx(ValidatePayloadContext, 'ValidateSchema', true)\n","import { MoreVert as MoreVertIcon } from '@mui/icons-material'\nimport type { IconButtonProps } from '@mui/material'\nimport { IconButton, Menu } from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { JsonMenuItem } from './JsonMenuItem.tsx'\n\nexport const EmbedMenu: React.FC<IconButtonProps> = (props) => {\n // TODO - link to explore website\n const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null)\n const open = Boolean(anchorEl)\n\n const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {\n setAnchorEl(event.currentTarget)\n }\n const handleClose = () => {\n setAnchorEl(null)\n }\n\n return (\n <>\n <IconButton onClick={handleClick} {...props}>\n <MoreVertIcon />\n </IconButton>\n <Menu anchorEl={anchorEl} open={open} onClose={handleClose} PaperProps={{ variant: 'elevation' }} MenuListProps={{ dense: true }}>\n <JsonMenuItem />\n </Menu>\n </>\n )\n}\n","import { OpenInNew as OpenInNewIcon } from '@mui/icons-material'\nimport type { MenuItemProps } from '@mui/material'\nimport {\n ListItemIcon, ListItemText, MenuItem,\n} from '@mui/material'\nimport React from 'react'\n\nimport { useResolvePayload } from '../../../contexts/index.ts'\n\nexport const JsonMenuItem: React.FC<MenuItemProps> = (props) => {\n const { huri } = useResolvePayload()\n\n return (\n <>\n {huri\n ? (\n <MenuItem title=\"Source Payload JSON\" onClick={() => window.open(huri, '_blank')} {...props}>\n <ListItemText sx={{ mr: 1 }}>JSON</ListItemText>\n <ListItemIcon sx={{ justifyContent: 'end' }}>\n <OpenInNewIcon fontSize=\"small\" />\n </ListItemIcon>\n </MenuItem>\n )\n : null}\n </>\n )\n}\n","import { CardContent } from '@mui/material'\nimport { FlexGrowRow } from '@xylabs/react-flexbox'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedRenderSelect, ListModeSelectFormControl } from '../../controls/index.ts'\nimport type { BusyCardProps } from './BusyCard.tsx'\nimport { BusyCard } from './BusyCard.tsx'\nimport { EmbedCardHeader } from './EmbedCardHeader.tsx'\n\nexport const EmbedPluginCard: React.FC<BusyCardProps> = ({ ...props }) => {\n const { payload } = useResolvePayload()\n const {\n activePlugin: ActivePlugin, plugins, hideElementsConfig,\n } = useEmbedPluginState()\n const { listMode } = useListMode()\n const supportsListMode = ActivePlugin?.components?.box?.listModes?.length ?? 0 > 1\n\n return (\n <BusyCard {...props}>\n {hideElementsConfig?.hideCardHeader ? null : <EmbedCardHeader />}\n {/* Only show the row if the children are present */}\n {(plugins && plugins.length > 0) || supportsListMode\n ? (\n <FlexGrowRow columnGap={2} rowGap={2} flexWrap=\"wrap\" pb={1}>\n {plugins && plugins.length > 1\n ? <EmbedRenderSelect />\n : null}\n {supportsListMode\n ? <ListModeSelectFormControl />\n : null}\n </FlexGrowRow>\n )\n : null}\n <CardContent sx={{ height: '100%' }}>\n {ActivePlugin\n ? <ActivePlugin.components.box.detailsBox payload={payload} {...(supportsListMode && { listMode })} />\n : null}\n </CardContent>\n </BusyCard>\n )\n}\n","import type { FormControlProps } from '@mui/material'\nimport { FormControl, InputLabel } from '@mui/material'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\ninterface EmbedFormControlProps extends FormControlProps {\n formId?: string\n formLabel?: string\n}\n\nexport const EmbedFormControl: React.FC<PropsWithChildren<EmbedFormControlProps>> = ({\n formId, formLabel, children, ...props\n}) => {\n return (\n <FormControl {...props}>\n <InputLabel id={formId}>{formLabel}</InputLabel>\n {children}\n </FormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport type { ListMode } from '@xyo-network/react-shared'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst listModeSelectId = 'listmode-select-id'\nconst listModeSelectLabel = 'List Mode'\n\nexport const ListModeSelect: React.FC<SelectExProps<ListMode>> = (props) => {\n const { listMode, setListMode } = useListMode()\n\n return (\n <SelectEx<ListMode>\n value={(listMode ?? 'default') as ListMode}\n onChange={(event) => {\n setListMode?.(event.target.value as ListMode)\n }}\n {...props}\n >\n <MenuItem key=\"default\" value=\"default\">\n Default\n </MenuItem>\n <MenuItem key=\"table\" value=\"table\">\n Table\n </MenuItem>\n <MenuItem key=\"grid\" value=\"grid\">\n Grid\n </MenuItem>\n </SelectEx>\n )\n}\n\nexport const ListModeSelectFormControl: React.FC<SelectExProps<ListMode>> = (props) => {\n return (\n <EmbedFormControl formId={listModeSelectId} formLabel={listModeSelectLabel}>\n <ListModeSelect size=\"small\" label={listModeSelectLabel} labelId={listModeSelectId} {...props} />\n </EmbedFormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport React from 'react'\n\nimport { useEmbedPluginState } from '../../contexts/index.ts'\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst renderSelectId = 'render-select-id'\nconst renderSelectLabel = 'Renderer'\n\nexport const EmbedRenderSelect: React.FC<SelectExProps<string>> = (props) => {\n const {\n activePlugin, setActivePlugin, plugins,\n } = useEmbedPluginState()\n return (\n <EmbedFormControl formId={renderSelectId} formLabel={renderSelectLabel}>\n <SelectEx size=\"small\" value={activePlugin?.name} {...props}>\n {plugins?.map(plugin => (\n <MenuItem value={plugin.name} key={plugin.name} onClick={() => setActivePlugin?.(plugin)}>\n {plugin.name}\n </MenuItem>\n ))}\n </SelectEx>\n </EmbedFormControl>\n )\n}\n","import { useTheme } from '@mui/material'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'\nimport type { EmbedPluginProps } from '../../types/index.ts'\nimport { EmbedPluginInner } from '../EmbedPlugin.tsx'\nimport type { BusyCardProps } from './card/index.ts'\nimport { EmbedPluginCard } from './card/index.ts'\nimport { EmbedCardApiErrorRenderer } from './error-handling/index.ts'\n\nexport interface EmbedPluginCardProps extends PropsWithChildren, EmbedPluginProps, BusyCardProps {}\n\nexport const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps> = ({ children, ...props }) => {\n const {\n validateSchema,\n plugins = [],\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n ...busyCardProps\n } = props\n\n return (\n <EmbedPluginInner\n {...{\n embedPluginConfig,\n hideElementsConfig,\n huriPayload,\n onRefresh,\n plugins,\n refreshTitle,\n timestampLabel,\n validateSchema,\n }}\n >\n <EmbedPluginCardInner {...busyCardProps} />\n {children}\n </EmbedPluginInner>\n )\n}\n\nexport const EmbedPluginCardInner: React.FC<BusyCardProps> = (props) => {\n const { payload, huriError } = useResolvePayload()\n const { refreshPayload } = useRefreshPayload()\n const theme = useTheme()\n\n return (\n <EmbedCardApiErrorRenderer xyoError={huriError}>\n <EmbedPluginCard\n elevation={3}\n variant=\"elevation\"\n busy={Boolean(!refreshPayload && payload)}\n busyVariantProps={{\n style: {\n alignItems: 'start', paddingTop: theme.spacing(2), zIndex: 2,\n },\n }}\n sx={{ position: 'relative' }}\n {...props}\n />\n </EmbedCardApiErrorRenderer>\n )\n}\n\n/** @deprecated - use EmbedPluginCard and use CardProps instead of FlexBoxProps */\n\nexport { EmbedPluginCard as EmbedPlugin } from './card/index.ts'\n","import { ErrorBoundary } from '@xylabs/react-error'\nimport type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { ListModeProvider } from '@xyo-network/react-shared'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport {\n EmbedPluginProvider, RefreshPayloadProvider, ResolvePayloadProvider, ValidatePayloadProvider,\n} from '../contexts/index.ts'\nimport type { EmbedPluginProps } from '../types/index.ts'\nimport { EmbedResolver } from './EmbedResolver.tsx'\nimport { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'\n\nexport const EmbedPluginInner: React.FC<PropsWithChildren<EmbedPluginProps>> = ({\n validateSchema,\n plugins,\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n children,\n}) => {\n return (\n <ErrorBoundary>\n <EmbedPluginProvider\n refreshTitle={refreshTitle}\n timestampLabel={timestampLabel}\n hideElementsConfig={hideElementsConfig}\n plugins={plugins}\n embedPluginConfig={embedPluginConfig}\n >\n <WithResolvers onRefresh={onRefresh} huriPayload={huriPayload}>\n <WithValidators validateSchema={validateSchema}>\n <ListModeProvider defaultListMode={embedPluginConfig?.listMode}>{children}</ListModeProvider>\n </WithValidators>\n </WithResolvers>\n </EmbedPluginProvider>\n </ErrorBoundary>\n )\n}\n\ninterface WithResolversProps extends Pick<EmbedPluginProps, 'onRefresh' | 'huriPayload'>, FlexBoxProps {}\n\nconst WithResolvers: React.FC<PropsWithChildren<WithResolversProps>> = ({\n children, onRefresh, huriPayload,\n}) => {\n return (\n <RefreshPayloadProvider onRefresh={onRefresh}>\n <ResolvePayloadProvider huriPayload={huriPayload}>\n <EmbedResolver>{children}</EmbedResolver>\n </ResolvePayloadProvider>\n </RefreshPayloadProvider>\n )\n}\n\nconst WithValidators: React.FC<PropsWithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {\n return (\n <ValidatePayloadProvider enabled={validateSchema}>\n <ValidatePluginsAlert>\n <ValidatePayloadAlert>{children}</ValidatePayloadAlert>\n </ValidatePluginsAlert>\n </ValidatePayloadProvider>\n )\n}\n","import { LoadResult } from '@xyo-network/react-shared'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { useResolvePayload } from '../contexts/index.ts'\n\nexport const EmbedResolver: React.FC<PropsWithChildren> = ({ children }) => {\n const {\n payload, notFound, huriError,\n } = useResolvePayload()\n\n return (\n <LoadResult searchResult={payload} notFound={!!notFound} error={!!huriError}>\n {children}\n </LoadResult>\n )\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert } from '@mui/material'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { useValidatePayload } from '../../contexts/index.ts'\n\nexport const ValidatePayloadAlert: React.FC<PropsWithChildren<AlertProps>> = ({ children, ...props }) => {\n const {\n validPayload, enabled, schema,\n } = useValidatePayload()\n\n if (enabled && validPayload === false) {\n return (\n <Alert severity=\"error\" title=\"Invalid Payload!\" {...props}>\n Payload schema claimed to be\n {' '}\n {schema}\n {' '}\n but failed to validate.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert, AlertTitle } from '@mui/material'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'\n\nexport const ValidatePluginsAlert: React.FC<PropsWithChildren<AlertProps>> = ({ children, ...props }) => {\n const { payload } = useResolvePayload()\n const { plugins } = useEmbedPluginState()\n\n if (payload && plugins?.length === 0) {\n return (\n <Alert severity=\"warning\" {...props}>\n <AlertTitle>Missing plugins!</AlertTitle>\n Payload found but no plugins were present.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { CardProps } from '@mui/material'\nimport { ErrorAlert, ErrorRender } from '@xylabs/react-error'\nimport type { ModuleError } from '@xyo-network/payload-model'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\nimport { EmbedErrorCard } from './EmbedErrorCard.tsx'\n\ninterface EmbedCardApiErrorRendererProps extends CardProps {\n xyoError?: ModuleError\n}\n\nexport const EmbedCardApiErrorRenderer: React.FC<PropsWithChildren<EmbedCardApiErrorRendererProps>> = ({\n xyoError, children, ...props\n}) => {\n return (\n <ErrorRender error={xyoError} noReAuth noErrorDisplay customError={<CustomApiErrorCard xyoError={xyoError} {...props} />}>\n {children}\n </ErrorRender>\n )\n}\n\nconst CustomApiErrorCard: React.FC<EmbedCardApiErrorRendererProps> = ({ xyoError, ...props }) => {\n return (\n <EmbedErrorCard {...props}>\n <ErrorAlert error={xyoError} />\n </EmbedErrorCard>\n )\n}\n","import type { AlertProps, CardProps } from '@mui/material'\nimport {\n Alert, AlertTitle, Card, CardContent, Typography,\n} from '@mui/material'\nimport type { PropsWithChildren } from 'react'\nimport React from 'react'\n\ninterface EmbedErrorCardBaseProps {\n alertProps?: AlertProps\n error?: Error\n hideErrorDetails?: boolean\n scope?: string\n}\n\ninterface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {}\n\nexport const EmbedErrorCard: React.FC<PropsWithChildren<EmbedErrorCardProps>> = (props) => {\n const {\n alertProps, error, scope, hideErrorDetails = true, children, ...cardProps\n } = props\n const errorProps = {\n alertProps, error, hideErrorDetails, scope,\n }\n return (\n <Card {...cardProps}>\n <CardContent>{children ?? <DefaultErrorAlert {...errorProps} />}</CardContent>\n </Card>\n )\n}\n\nconst DefaultErrorAlert: React.FC<EmbedErrorCardBaseProps> = ({\n alertProps, scope, hideErrorDetails, error,\n}) => {\n return (\n <Alert severity=\"error\" {...alertProps}>\n <AlertTitle>Whoops! Something went wrong</AlertTitle>\n {scope\n ? (\n <Typography variant=\"caption\">\n Scope:\n {scope}\n </Typography>\n )\n : null}\n {!hideErrorDetails && error\n ? (\n <>\n <Typography variant=\"caption\">Error: </Typography>\n <Typography variant=\"caption\">{error?.message}</Typography>\n </>\n )\n : (\n <Typography variant=\"caption\" fontSize=\"small\">\n Error Loading Plugin\n </Typography>\n )}\n </Alert>\n )\n}\n"],"mappings":";;;;AACA,SAASA,YAAY;AACrB,SAASC,qBAAqB;AAM9B,SACEC,sBACAC,0BACK;AAEP,OAAOC,WAAW;AASX,IAAMC,WAAuD,wBAAC,EACnEC,MACAC,cAAc,KACdC,cAAc,YACdC,kBACAC,UACA,GAAGC,MAAAA,MACJ;AACC,QAAMC,eAAeC,cAAcP,MAAMC,WAAAA;AACzC,SACE,sBAAA,cAACO,MAASH,OACPD,UACAF,gBAAgB,cAAcI,eAC3B,sBAAA,cAACG,sBAA0BN,gBAAAA,IAC3B,MACHD,gBAAgB,YAAYI,eACzB,sBAAA,cAACI,oBAAwBP,gBAAAA,IACzB,IAAA;AAGV,GApBoE;;;ACtBpE,SAASQ,WAAWC,mBAAmB;AAEvC,SACEC,QAAQC,YAAYC,QAAAA,aACf;AACP,SAASC,eAAe;AACxB,OAAOC,YAAW;;;ACNlB,SAASC,uBAAuB;AAIzB,IAAMC,qBAAqBD,gBAAAA;;;ACJlC,SAASE,qBAAqB;AAE9B,OAAOC,YAAW;AAQX,IAAMC,sBAA6E,wBAAC,EACzFC,UACAC,cACAC,gBACAC,oBACAC,SACAC,kBAAiB,MAClB;AACC,QAAM,CAACC,cAAcC,eAAAA,IAAmBC,cAAcJ,UAAUA,QAAQ,CAAA,IAAKK,MAAAA;AAE7E,SACE,gBAAAC,OAAA,cAACC,mBAAmBC,UAAQ;;IAE1BC,OAAO;MACLP;MACAD;MACAF;MACAW,UAAU;MACVb;MACAM;MACAL;IACF;KAECF,QAAAA;AAGP,GA1B0F;;;ACV1F,SAASe,oBAAoB;AAItB,IAAMC,sBAAsB,6BAAMC,aAAaC,oBAAoB,eAAe,IAAA,GAAtD;;;ACHnC,OAAOC,UAASC,gBAAgB;;;ACDhC,SAASC,mBAAAA,wBAAuB;AAIzB,IAAMC,wBAAwBD,iBAAAA;;;ADM9B,IAAME,yBAA2E,wBAAC,EACvFC,UAAUC,WAAWC,eAAc,MACpC;AACC,QAAM,CAACC,qBAAqBC,iBAAAA,IAAqBC,SAASH,cAAAA;AAE1D;;IAEE,gBAAAI,OAAA,cAACC,sBAAsBC,UAAQ;MAACC,OAAO;QACrCR;QAAWS,UAAU;QAAMR,gBAAgBC;QAAqBC;MAClE;OAEGJ,QAAAA;;AAGP,GAdwF;;;AEVxF,SAASW,gBAAAA,qBAAoB;AAItB,IAAMC,oBAAoB,6BAAMC,cAAaC,uBAAuB,kBAAkB,IAAA,GAA5D;;;ACJjC,SAASC,mBAAAA,wBAAuB;AAIzB,IAAMC,wBAAwBD,iBAAAA;;;ACHrC,SAASE,aAAa;AACtB,SAASC,sBAAsB;AAC/B,SAASC,YAAY;AAErB,SAASC,yBAAyB;AAElC,OAAOC,UAASC,WAAWC,YAAAA,iBAAgB;AAQpC,IAAMC,yBAAmF,wBAAC,EAAEC,UAAUC,YAAW,MAAE;AACxH,QAAM,CAACC,SAASC,UAAAA,IAAcC,UAAAA;AAC9B,QAAM,CAACC,MAAMC,OAAAA,IAAWF,UAAAA;AACxB,QAAM,EACJG,gBAAgBC,mBAAmBC,UAAS,IAC1CC,kBAAAA;AAEJC,YAAU,MAAA;AAER,WAAOV,gBAAgB,WAAWK,QAAQL,WAAAA,IAAeW;AACzD,QAAI,OAAOX,gBAAgB,UAAU;AACnCE,iBAAWF,WAAAA;AACXO,0BAAoB,IAAA;IACtB;EACF,GAAG;IAACP;IAAaO;GAAkB;AAEnC,QAAM,CAACK,UAAUC,WAAAA,IAAeV,UAAAA;AAChC,QAAM,CAACW,WAAWC,YAAAA,IAAgBZ,UAAAA;AAElCa,iBACE,OAAOC,YAAAA;AACL,QAAIb,QAAQ,CAACE,gBAAgB;AAC3B,UAAI;AACF,cAAMY,eAAe,IAAIC,KAAKf,IAAAA;AAC9B,cAAMgB,SAAS,MAAMF,aAAaG,MAAK;AAEvC,cAAMC,MAAM,GAAA;AAEZ,YAAIL,QAAAA,GAAW;AACbJ,sBAAYO,WAAW,IAAA;AACvBlB,qBAAWkB,MAAAA;AACXb,8BAAoB,IAAA;QACtB;MACF,SAASgB,GAAG;AACV,cAAMC,QAAQD;AACdR,qBAAa;UACXU,SAASD,MAAMC;UAASC,QAAQC;UAAmBC,SAAS,CAAA;QAC9D,CAAA;MACF;IACF;EACF,GACA;IAACxB;IAAMH;IAASK;IAAgBC;GAAkB;AAGpD,QAAMsB,cAAc,6BAAA;AAClBrB,gBAAAA;AACA,QAAIJ,MAAM;AACRG,0BAAoB,KAAA;IACtB;EACF,GALoB;AAOpB;;IAEE,gBAAAuB,OAAA,cAACC,sBAAsBC,UAAQ;MAACC,OAAO;QACrC7B;QAAMU;QAAWF;QAAUX;QAASiC,UAAU;QAAML;QAAa3B;MACnE;OAEGH,QAAAA;;AAGP,GA5DgG;;;ACfhG,SAASoC,gBAAAA,qBAAoB;AAItB,IAAMC,oBAAoB,6BAAMC,cAAaC,uBAAuB,kBAAkB,IAAA,GAA5D;;;ACJjC,SAASC,YAAY;AACrB,SAASC,kBAAAA,uBAAsB;AAE/B,SAASC,mBAAmB;AAE5B,OAAOC,UAASC,YAAAA,iBAAgB;;;ACLhC,SAASC,mBAAAA,wBAAuB;AAIzB,IAAMC,yBAAyBD,iBAAAA;;;ADW/B,IAAME,0BAAqF,wBAAC,EAAEC,UAAUC,UAAU,MAAK,MAAE;AAC9H,QAAM,EAAEC,QAAO,IAAKC,kBAAAA;AACpB,QAAM,CAACC,aAAaC,cAAAA,IAAkBC,UAAS,KAAA;AAC/C,QAAM,CAACC,OAAOC,QAAAA,IAAYF,UAAAA;AAE1BG,EAAAA,gBACE,YAAA;AACE,QAAIP,WAAWD,SAAS;AACtB,YAAMS,YAAYC,SAASC,IAAIV,QAAQW,MAAM;AAE7C,YAAMC,sBAAsBZ,QAAQW;AAEpC,UAAIH,YAAYC,SAASI,WAAWD,mBAAAA,GAAsB;AACxD,cAAME,YAAYN,YAAYC,SAASI,WAAWD,mBAAAA;AAClDN,iBAASQ,YAAYd,OAAAA,CAAAA;MACvB;AACAG,qBAAe,IAAA;IACjB;EACF,GACA;IAACH;IAASD;GAAQ;AAGpB;;IAEE,gBAAAgB,OAAA,cAACC,uBAAuBC,UAAQ;MAACC,OAAO;QACtCnB;QAASoB,UAAU;QAAMR,QAAQX,SAASW;QAAQS,cAAcf;MAClE;OAEGN,UACG,gBAAAgB,OAAA,cAAAA,OAAA,UAAA,MAAGb,cAAcJ,WAAW,gBAAAiB,OAAA,cAACM,MAAAA;MAAKC,OAAM;UACxCxB,QAAAA;;AAGV,GAjCkG;;;AEflG,SAASyB,gBAAAA,qBAAoB;AAItB,IAAMC,qBAAqB,6BAAMC,cAAaC,wBAAwB,kBAAkB,IAAA,GAA7D;;;ACJlC,SAASC,YAAYC,oBAAoB;AAEzC,SAASC,YAAYC,YAAY;AACjC,OAAOC,UAASC,YAAAA,iBAAgB;;;ACHhC,SAASC,aAAaC,qBAAqB;AAE3C,SACEC,cAAcC,cAAcC,gBACvB;AACP,OAAOC,YAAW;AAIX,IAAMC,eAAwC,wBAACC,UAAAA;AACpD,QAAM,EAAEC,KAAI,IAAKC,kBAAAA;AAEjB,SACE,gBAAAC,OAAA,cAAAA,OAAA,UAAA,MACGF,OAEK,gBAAAE,OAAA,cAACC,UAAAA;IAASC,OAAM;IAAsBC,SAAS,6BAAMC,OAAOC,KAAKP,MAAM,QAAA,GAAxB;IAAoC,GAAGD;KACpF,gBAAAG,OAAA,cAACM,cAAAA;IAAaC,IAAI;MAAEC,IAAI;IAAE;KAAG,MAAA,GAC7B,gBAAAR,OAAA,cAACS,cAAAA;IAAaF,IAAI;MAAEG,gBAAgB;IAAM;KACxC,gBAAAV,OAAA,cAACW,eAAAA;IAAcC,UAAS;SAI9B,IAAA;AAGV,GAjBqD;;;ADF9C,IAAMC,YAAuC,wBAACC,UAAAA;AAEnD,QAAM,CAACC,UAAUC,WAAAA,IAAeC,UAA6B,IAAA;AAC7D,QAAMC,OAAOC,QAAQJ,QAAAA;AAErB,QAAMK,cAAc,wBAACC,UAAAA;AACnBL,gBAAYK,MAAMC,aAAa;EACjC,GAFoB;AAGpB,QAAMC,cAAc,6BAAA;AAClBP,gBAAY,IAAA;EACd,GAFoB;AAIpB,SACE,gBAAAQ,OAAA,cAAAA,OAAA,UAAA,MACE,gBAAAA,OAAA,cAACC,YAAAA;IAAWC,SAASN;IAAc,GAAGN;KACpC,gBAAAU,OAAA,cAACG,cAAAA,IAAAA,CAAAA,GAEH,gBAAAH,OAAA,cAACI,MAAAA;IAAKb;IAAoBG;IAAYW,SAASN;IAAaO,YAAY;MAAEC,SAAS;IAAY;IAAGC,eAAe;MAAEC,OAAO;IAAK;KAC7H,gBAAAT,OAAA,cAACU,cAAAA,IAAAA,CAAAA,CAAAA;AAIT,GAtBoD;;;AbI7C,IAAMC,kBAA6C,6BAAA;AACxD,QAAM,EAAEC,aAAaC,KAAI,IAAKC,kBAAAA;AAC9B,QAAM,EACJC,cAAcC,gBAAgBC,mBAAkB,IAC9CC,oBAAAA;AACJ,QAAM,EACJC,YAAYC,WAAWC,mBAAmBC,eAAeC,gBAAe,IACtEN,sBAAsB,CAAC;AAE3B,QAAMO,YAAYC,KAAKC,IAAG;AAC1B,SACE,gBAAAC,OAAA,cAACC,YAAAA;IACCC,IAAI;MAAEC,UAAU;MAAQC,QAAQ;IAAE;IAClCC,QACEb,aACI,gBAAAQ,OAAA,cAAAA,OAAA,UAAA,IAAA,IAEE,gBAAAA,OAAA,cAACM,QAAAA;MAAOJ,IAAI;QAAEK,SAAS,wBAACC,UAAiBA,MAAMC,QAAQC,QAAQC,MAAxC;MAA6C;MAAGC,cAAYxB,cAAcyB;OAC9FzB,cAAcyB,MAAMC,OAAO,CAAA,CAAA;IAItCC,QACE,gBAAAf,OAAA,cAACgB,SAAAA;MAAQb,UAAS;MAAOc,WAAW;OACjCpB,YACGF,iBAAiBD,oBACf,KAEE,gBAAAM,OAAA,cAACkB,OAAAA;MACCb,QAAQX,oBAAoB,gBAAAM,OAAA,cAAAA,OAAA,UAAA,IAAA,IAAQ,gBAAAA,OAAA,cAACmB,aAAAA,IAAAA;MACrCC,WAAW1B,oBAAoB,QAAQ;MACvC2B,SAASpC;MACTqC,OAAO3B,gBAAgB,KAAK,GAAGN,cAAAA,IAAkB,IAAIS,KAAKD,SAAAA,EAAW0B,eAAc,CAAA;SAIzF,MAEH3B,mBAAmBV,SAASsC,SAAY,OAAO,gBAAAxB,OAAA,cAACyB,WAAAA,IAAAA,CAAAA;IAGrDC,OAAOjC,YAAY,KAAKL,cAAcyB;;AAG5C,GA5C0D;;;AeX1D,SAASc,mBAAmB;AAC5B,SAASC,mBAAmB;AAC5B,SAASC,eAAAA,oBAAmB;AAC5B,OAAOC,aAAW;;;ACFlB,SAASC,aAAaC,kBAAkB;AAExC,OAAOC,YAAW;AAOX,IAAMC,mBAAuE,wBAAC,EACnFC,QAAQC,WAAWC,UAAU,GAAGC,MAAAA,MACjC;AACC,SACE,gBAAAC,OAAA,cAACC,aAAgBF,OACf,gBAAAC,OAAA,cAACE,YAAAA;IAAWC,IAAIP;KAASC,SAAAA,GACxBC,QAAAA;AAGP,GAToF;;;ACVpF,SAASM,YAAAA,iBAAgB;AAEzB,SAASC,gBAAgB;AAEzB,SAASC,mBAAmB;AAC5B,OAAOC,aAAW;AAIlB,IAAMC,mBAAmB;AACzB,IAAMC,sBAAsB;AAErB,IAAMC,iBAAoD,wBAACC,UAAAA;AAChE,QAAM,EAAEC,UAAUC,YAAW,IAAKC,YAAAA;AAElC,SACE,gBAAAC,QAAA,cAACC,UAAAA;IACCC,OAAQL,YAAY;IACpBM,UAAU,wBAACC,UAAAA;AACTN,oBAAcM,MAAMC,OAAOH,KAAK;IAClC,GAFU;IAGT,GAAGN;KAEJ,gBAAAI,QAAA,cAACM,WAAAA;IAASC,KAAI;IAAUL,OAAM;KAAU,SAAA,GAGxC,gBAAAF,QAAA,cAACM,WAAAA;IAASC,KAAI;IAAQL,OAAM;KAAQ,OAAA,GAGpC,gBAAAF,QAAA,cAACM,WAAAA;IAASC,KAAI;IAAOL,OAAM;KAAO,MAAA,CAAA;AAKxC,GAtBiE;AAwB1D,IAAMM,4BAA+D,wBAACZ,UAAAA;AAC3E,SACE,gBAAAI,QAAA,cAACS,kBAAAA;IAAiBC,QAAQjB;IAAkBkB,WAAWjB;KACrD,gBAAAM,QAAA,cAACL,gBAAAA;IAAeiB,MAAK;IAAQC,OAAOnB;IAAqBoB,SAASrB;IAAmB,GAAGG;;AAG9F,GAN4E;;;ACpC5E,SAASmB,YAAAA,iBAAgB;AAEzB,SAASC,YAAAA,iBAAgB;AACzB,OAAOC,aAAW;AAKlB,IAAMC,iBAAiB;AACvB,IAAMC,oBAAoB;AAEnB,IAAMC,oBAAqD,wBAACC,UAAAA;AACjE,QAAM,EACJC,cAAcC,iBAAiBC,QAAO,IACpCC,oBAAAA;AACJ,SACE,gBAAAC,QAAA,cAACC,kBAAAA;IAAiBC,QAAQV;IAAgBW,WAAWV;KACnD,gBAAAO,QAAA,cAACI,WAAAA;IAASC,MAAK;IAAQC,OAAOV,cAAcW;IAAO,GAAGZ;KACnDG,SAASU,IAAIC,CAAAA,WACZ,gBAAAT,QAAA,cAACU,WAAAA;IAASJ,OAAOG,OAAOF;IAAMI,KAAKF,OAAOF;IAAMK,SAAS,6BAAMf,kBAAkBY,MAAAA,GAAxB;KACtDA,OAAOF,IAAI,CAAA,CAAA,CAAA;AAMxB,GAfkE;;;AHA3D,IAAMM,kBAA2C,wBAAC,EAAE,GAAGC,MAAAA,MAAO;AACnE,QAAM,EAAEC,QAAO,IAAKC,kBAAAA;AACpB,QAAM,EACJC,cAAcC,cAAcC,SAASC,mBAAkB,IACrDC,oBAAAA;AACJ,QAAM,EAAEC,SAAQ,IAAKC,aAAAA;AACrB,QAAMC,mBAAmBN,cAAcO,YAAYC,KAAKC,WAAWC,UAAU,IAAI;AAEjF,SACE,gBAAAC,QAAA,cAACC,UAAahB,OACXM,oBAAoBW,iBAAiB,OAAO,gBAAAF,QAAA,cAACG,iBAAAA,IAAAA,GAE5Cb,WAAWA,QAAQS,SAAS,KAAMJ,mBAE9B,gBAAAK,QAAA,cAACI,aAAAA;IAAYC,WAAW;IAAGC,QAAQ;IAAGC,UAAS;IAAOC,IAAI;KACvDlB,WAAWA,QAAQS,SAAS,IACzB,gBAAAC,QAAA,cAACS,mBAAAA,IAAAA,IACD,MACHd,mBACG,gBAAAK,QAAA,cAACU,2BAAAA,IAAAA,IACD,IAAA,IAGR,MACJ,gBAAAV,QAAA,cAACW,aAAAA;IAAYC,IAAI;MAAEC,QAAQ;IAAO;KAC/BxB,eACG,gBAAAW,QAAA,cAACX,aAAaO,WAAWC,IAAIiB,YAAU;IAAC5B;IAAmB,GAAIS,oBAAoB;MAAEF;IAAS;OAC9F,IAAA,CAAA;AAIZ,GA/BwD;;;AIXxD,SAASsB,gBAAgB;AAEzB,OAAOC,aAAW;;;ACFlB,SAASC,qBAAqB;AAE9B,SAASC,wBAAwB;AAEjC,OAAOC,aAAW;;;ACJlB,SAASC,kBAAkB;AAE3B,OAAOC,aAAW;AAIX,IAAMC,gBAA6C,wBAAC,EAAEC,SAAQ,MAAE;AACrE,QAAM,EACJC,SAASC,UAAUC,UAAS,IAC1BC,kBAAAA;AAEJ,SACE,gBAAAC,QAAA,cAACC,YAAAA;IAAWC,cAAcN;IAASC,UAAU,CAAC,CAACA;IAAUM,OAAO,CAAC,CAACL;KAC/DH,QAAAA;AAGP,GAV0D;;;ACL1D,SAASS,aAAa;AAEtB,OAAOC,aAAW;AAIX,IAAMC,uBAAgE,wBAAC,EAAEC,UAAU,GAAGC,MAAAA,MAAO;AAClG,QAAM,EACJC,cAAcC,SAASC,OAAM,IAC3BC,mBAAAA;AAEJ,MAAIF,WAAWD,iBAAiB,OAAO;AACrC,WACE,gBAAAI,QAAA,cAACC,OAAAA;MAAMC,UAAS;MAAQC,OAAM;MAAoB,GAAGR;OAAO,gCAEzD,KACAG,QACA,KAAI,yBAAA;EAIX;AAEA,SAAO,gBAAAE,QAAA,cAAAA,QAAA,UAAA,MAAGN,QAAAA;AACZ,GAlB6E;;;ACN7E,SAASU,SAAAA,QAAOC,kBAAkB;AAElC,OAAOC,aAAW;AAIX,IAAMC,uBAAgE,wBAAC,EAAEC,UAAU,GAAGC,MAAAA,MAAO;AAClG,QAAM,EAAEC,QAAO,IAAKC,kBAAAA;AACpB,QAAM,EAAEC,QAAO,IAAKC,oBAAAA;AAEpB,MAAIH,WAAWE,SAASE,WAAW,GAAG;AACpC,WACE,gBAAAC,QAAA,cAACC,QAAAA;MAAMC,UAAS;MAAW,GAAGR;OAC5B,gBAAAM,QAAA,cAACG,YAAAA,MAAW,kBAAA,GAA6B,4CAAA;EAI/C;AAEA,SAAO,gBAAAH,QAAA,cAAAA,QAAA,UAAA,MAAGP,QAAAA;AACZ,GAd6E;;;AHMtE,IAAMW,mBAAkE,wBAAC,EAC9EC,gBACAC,SACAC,aACAC,eAAe,IACfC,iBAAiB,aACjBC,oBACAC,mBACAC,WACAC,SAAQ,MACT;AACC,SACE,gBAAAC,QAAA,cAACC,eAAAA,MACC,gBAAAD,QAAA,cAACE,qBAAAA;IACCR;IACAC;IACAC;IACAJ;IACAK;KAEA,gBAAAG,QAAA,cAACG,eAAAA;IAAcL;IAAsBL;KACnC,gBAAAO,QAAA,cAACI,gBAAAA;IAAeb;KACd,gBAAAS,QAAA,cAACK,kBAAAA;IAAiBC,iBAAiBT,mBAAmBU;KAAWR,QAAAA,CAAAA,CAAAA,CAAAA,CAAAA;AAM7E,GA5B+E;AAgC/E,IAAMI,gBAAiE,wBAAC,EACtEJ,UAAUD,WAAWL,YAAW,MACjC;AACC,SACE,gBAAAO,QAAA,cAACQ,wBAAAA;IAAuBV;KACtB,gBAAAE,QAAA,cAACS,wBAAAA;IAAuBhB;KACtB,gBAAAO,QAAA,cAACU,eAAAA,MAAeX,QAAAA,CAAAA,CAAAA;AAIxB,GAVuE;AAYvE,IAAMK,iBAA4E,wBAAC,EAAEL,UAAUR,eAAc,MAAE;AAC7G,SACE,gBAAAS,QAAA,cAACW,yBAAAA;IAAwBC,SAASrB;KAChC,gBAAAS,QAAA,cAACa,sBAAAA,MACC,gBAAAb,QAAA,cAACc,sBAAAA,MAAsBf,QAAAA,CAAAA,CAAAA;AAI/B,GARkF;;;AIxDlF,SAASgB,YAAYC,mBAAmB;AAGxC,OAAOC,aAAW;;;ACHlB,SACEC,SAAAA,QAAOC,cAAAA,aAAYC,QAAAA,OAAMC,eAAAA,cAAaC,kBACjC;AAEP,OAAOC,aAAW;AAWX,IAAMC,iBAAmE,wBAACC,UAAAA;AAC/E,QAAM,EACJC,YAAYC,OAAOC,OAAOC,mBAAmB,MAAMC,UAAU,GAAGC,UAAAA,IAC9DN;AACJ,QAAMO,aAAa;IACjBN;IAAYC;IAAOE;IAAkBD;EACvC;AACA,SACE,gBAAAK,QAAA,cAACC,OAASH,WACR,gBAAAE,QAAA,cAACE,cAAAA,MAAaL,YAAY,gBAAAG,QAAA,cAACG,mBAAsBJ,UAAAA,CAAAA,CAAAA;AAGvD,GAZgF;AAchF,IAAMI,oBAAuD,wBAAC,EAC5DV,YAAYE,OAAOC,kBAAkBF,MAAK,MAC3C;AACC,SACE,gBAAAM,QAAA,cAACI,QAAAA;IAAMC,UAAS;IAAS,GAAGZ;KAC1B,gBAAAO,QAAA,cAACM,aAAAA,MAAW,8BAAA,GACXX,QAEK,gBAAAK,QAAA,cAACO,YAAAA;IAAWC,SAAQ;KAAU,UAE3Bb,KAAAA,IAGL,MACH,CAACC,oBAAoBF,QAEhB,gBAAAM,QAAA,cAAAA,QAAA,UAAA,MACE,gBAAAA,QAAA,cAACO,YAAAA;IAAWC,SAAQ;KAAU,SAAA,GAC9B,gBAAAR,QAAA,cAACO,YAAAA;IAAWC,SAAQ;KAAWd,OAAOe,OAAAA,CAAAA,IAIxC,gBAAAT,QAAA,cAACO,YAAAA;IAAWC,SAAQ;IAAUE,UAAS;KAAQ,sBAAA,CAAA;AAM3D,GA5B6D;;;ADlBtD,IAAMC,4BAAyF,wBAAC,EACrGC,UAAUC,UAAU,GAAGC,MAAAA,MACxB;AACC,SACE,gBAAAC,QAAA,cAACC,aAAAA;IAAYC,OAAOL;IAAUM,UAAAA;IAASC,gBAAAA;IAAeC,aAAa,gBAAAL,QAAA,cAACM,oBAAAA;MAAmBT;MAAqB,GAAGE;;KAC5GD,QAAAA;AAGP,GARsG;AAUtG,IAAMQ,qBAA+D,wBAAC,EAAET,UAAU,GAAGE,MAAAA,MAAO;AAC1F,SACE,gBAAAC,QAAA,cAACO,gBAAmBR,OAClB,gBAAAC,QAAA,cAACQ,YAAAA;IAAWN,OAAOL;;AAGzB,GANqE;;;ALT9D,IAAMY,qBAAqD,wBAAC,EAAEC,UAAU,GAAGC,MAAAA,MAAO;AACvF,QAAM,EACJC,gBACAC,UAAU,CAAA,GACVC,aACAC,eAAe,IACfC,iBAAiB,aACjBC,oBACAC,mBACAC,WACA,GAAGC,cAAAA,IACDT;AAEJ,SACE,gBAAAU,QAAA,cAACC,kBACK;IACFJ;IACAD;IACAH;IACAK;IACAN;IACAE;IACAC;IACAJ;EACF,GAEA,gBAAAS,QAAA,cAACE,sBAAyBH,aAAAA,GACzBV,QAAAA;AAGP,GA9BkE;AAgC3D,IAAMa,uBAAgD,wBAACZ,UAAAA;AAC5D,QAAM,EAAEa,SAASC,UAAS,IAAKC,kBAAAA;AAC/B,QAAM,EAAEC,eAAc,IAAKC,kBAAAA;AAC3B,QAAMC,QAAQC,SAAAA;AAEd,SACE,gBAAAT,QAAA,cAACU,2BAAAA;IAA0BC,UAAUP;KACnC,gBAAAJ,QAAA,cAACY,iBAAAA;IACCC,WAAW;IACXC,SAAQ;IACRC,MAAMC,QAAQ,CAACV,kBAAkBH,OAAAA;IACjCc,kBAAkB;MAChBC,OAAO;QACLC,YAAY;QAASC,YAAYZ,MAAMa,QAAQ,CAAA;QAAIC,QAAQ;MAC7D;IACF;IACAC,IAAI;MAAEC,UAAU;IAAW;IAC1B,GAAGlC;;AAIZ,GArB6D;","names":["Card","useBusyTiming","BusyCircularProgress","BusyLinearProgress","React","BusyCard","busy","busyMinimum","busyVariant","busyVariantProps","children","props","internalBusy","useBusyTiming","Card","BusyCircularProgress","BusyLinearProgress","Refresh","RefreshIcon","Avatar","CardHeader","Chip","FlexRow","React","createContextEx","EmbedPluginContext","useResetState","React","EmbedPluginProvider","children","refreshTitle","timestampLabel","hideElementsConfig","plugins","embedPluginConfig","activePlugin","setActivePlugin","useResetState","undefined","React","EmbedPluginContext","Provider","value","provided","useContextEx","useEmbedPluginState","useContextEx","EmbedPluginContext","React","useState","createContextEx","RefreshPayloadContext","RefreshPayloadProvider","children","onRefresh","refreshPayload","localRefreshPayload","setRefreshPayload","useState","React","RefreshPayloadContext","Provider","value","provided","useContextEx","useRefreshPayload","useContextEx","RefreshPayloadContext","createContextEx","ResolvePayloadContext","delay","useAsyncEffect","Huri","ModuleErrorSchema","React","useEffect","useState","ResolvePayloadProvider","children","huriPayload","payload","setPayload","useState","huri","setHuri","refreshPayload","setRefreshPayload","onRefresh","useRefreshPayload","useEffect","undefined","notFound","setNotFound","huriError","setHuriError","useAsyncEffect","mounted","huriInstance","Huri","result","fetch","delay","e","error","message","schema","ModuleErrorSchema","sources","refreshHuri","React","ResolvePayloadContext","Provider","value","provided","useContextEx","useResolvePayload","useContextEx","ResolvePayloadContext","Chip","useAsyncEffect","SchemaCache","React","useState","createContextEx","ValidatePayloadContext","ValidatePayloadProvider","children","enabled","payload","useResolvePayload","initialized","setInitialized","useState","valid","setValid","useAsyncEffect","SchemaCache","instance","get","schema","possibleKnownSchema","validators","validator","React","ValidatePayloadContext","Provider","value","provided","validPayload","Chip","label","useContextEx","useValidatePayload","useContextEx","ValidatePayloadContext","MoreVert","MoreVertIcon","IconButton","Menu","React","useState","OpenInNew","OpenInNewIcon","ListItemIcon","ListItemText","MenuItem","React","JsonMenuItem","props","huri","useResolvePayload","React","MenuItem","title","onClick","window","open","ListItemText","sx","mr","ListItemIcon","justifyContent","OpenInNewIcon","fontSize","EmbedMenu","props","anchorEl","setAnchorEl","useState","open","Boolean","handleClick","event","currentTarget","handleClose","React","IconButton","onClick","MoreVertIcon","Menu","onClose","PaperProps","variant","MenuListProps","dense","JsonMenuItem","EmbedCardHeader","refreshHuri","huri","useResolvePayload","activePlugin","timestampLabel","hideElementsConfig","useEmbedPluginState","hideAvatar","hideTitle","hideRefreshButton","hideTimestamp","hideCardActions","timestamp","Date","now","React","CardHeader","sx","flexWrap","rowGap","avatar","Avatar","bgcolor","theme","palette","primary","main","aria-label","name","charAt","action","FlexRow","columnGap","Chip","RefreshIcon","clickable","onClick","label","toLocaleString","undefined","EmbedMenu","title","CardContent","FlexGrowRow","useListMode","React","FormControl","InputLabel","React","EmbedFormControl","formId","formLabel","children","props","React","FormControl","InputLabel","id","MenuItem","SelectEx","useListMode","React","listModeSelectId","listModeSelectLabel","ListModeSelect","props","listMode","setListMode","useListMode","React","SelectEx","value","onChange","event","target","MenuItem","key","ListModeSelectFormControl","EmbedFormControl","formId","formLabel","size","label","labelId","MenuItem","SelectEx","React","renderSelectId","renderSelectLabel","EmbedRenderSelect","props","activePlugin","setActivePlugin","plugins","useEmbedPluginState","React","EmbedFormControl","formId","formLabel","SelectEx","size","value","name","map","plugin","MenuItem","key","onClick","EmbedPluginCard","props","payload","useResolvePayload","activePlugin","ActivePlugin","plugins","hideElementsConfig","useEmbedPluginState","listMode","useListMode","supportsListMode","components","box","listModes","length","React","BusyCard","hideCardHeader","EmbedCardHeader","FlexGrowRow","columnGap","rowGap","flexWrap","pb","EmbedRenderSelect","ListModeSelectFormControl","CardContent","sx","height","detailsBox","useTheme","React","ErrorBoundary","ListModeProvider","React","LoadResult","React","EmbedResolver","children","payload","notFound","huriError","useResolvePayload","React","LoadResult","searchResult","error","Alert","React","ValidatePayloadAlert","children","props","validPayload","enabled","schema","useValidatePayload","React","Alert","severity","title","Alert","AlertTitle","React","ValidatePluginsAlert","children","props","payload","useResolvePayload","plugins","useEmbedPluginState","length","React","Alert","severity","AlertTitle","EmbedPluginInner","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","children","React","ErrorBoundary","EmbedPluginProvider","WithResolvers","WithValidators","ListModeProvider","defaultListMode","listMode","RefreshPayloadProvider","ResolvePayloadProvider","EmbedResolver","ValidatePayloadProvider","enabled","ValidatePluginsAlert","ValidatePayloadAlert","ErrorAlert","ErrorRender","React","Alert","AlertTitle","Card","CardContent","Typography","React","EmbedErrorCard","props","alertProps","error","scope","hideErrorDetails","children","cardProps","errorProps","React","Card","CardContent","DefaultErrorAlert","Alert","severity","AlertTitle","Typography","variant","message","fontSize","EmbedCardApiErrorRenderer","xyoError","children","props","React","ErrorRender","error","noReAuth","noErrorDisplay","customError","CustomApiErrorCard","EmbedErrorCard","ErrorAlert","ApiEmbedPluginCard","children","props","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","busyCardProps","React","EmbedPluginInner","EmbedPluginCardInner","payload","huriError","useResolvePayload","refreshPayload","useRefreshPayload","theme","useTheme","EmbedCardApiErrorRenderer","xyoError","EmbedPluginCard","elevation","variant","busy","Boolean","busyVariantProps","style","alignItems","paddingTop","spacing","zIndex","sx","position"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-embed",
3
- "version": "4.1.7",
3
+ "version": "4.1.9",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -46,18 +46,18 @@
46
46
  "@mui/icons-material": "^6.1.5",
47
47
  "@mui/material": "^6.1.5",
48
48
  "@mui/styles": "^6.1.5",
49
- "@xylabs/delay": "^4.3.2",
50
- "@xylabs/react-async-effect": "^5.2.2",
51
- "@xylabs/react-flexbox": "^5.2.2",
52
- "@xylabs/react-hooks": "^5.2.2",
53
- "@xylabs/react-select": "^5.2.2",
54
- "@xylabs/react-shared": "^5.2.2",
55
- "@xyo-network/huri": "^3.3.0",
56
- "@xyo-network/payload-model": "^3.3.0",
57
- "@xyo-network/react-error": "^4.1.7",
58
- "@xyo-network/react-payload-plugin": "^4.1.7",
59
- "@xyo-network/react-shared": "^4.1.7",
60
- "@xyo-network/schema-cache": "^3.3.0",
49
+ "@xylabs/delay": "^4.3.3",
50
+ "@xylabs/react-async-effect": "^5.2.7",
51
+ "@xylabs/react-error": "^5.2.7",
52
+ "@xylabs/react-flexbox": "^5.2.7",
53
+ "@xylabs/react-hooks": "^5.2.7",
54
+ "@xylabs/react-select": "^5.2.7",
55
+ "@xylabs/react-shared": "^5.2.7",
56
+ "@xyo-network/huri": "^3.3.2",
57
+ "@xyo-network/payload-model": "^3.3.2",
58
+ "@xyo-network/react-payload-plugin": "^4.1.9",
59
+ "@xyo-network/react-shared": "^4.1.9",
60
+ "@xyo-network/schema-cache": "^3.3.2",
61
61
  "react": "^18.3.1",
62
62
  "react-dom": "^18.3.1"
63
63
  },
@@ -67,8 +67,8 @@
67
67
  "@storybook/react": "^8.3.6",
68
68
  "@xylabs/ts-scripts-yarn3": "^4.2.3",
69
69
  "@xylabs/tsconfig-react": "^4.2.3",
70
- "@xyo-network/react-aggregate-price-plugin": "^4.1.7",
71
- "@xyo-network/react-crypto-market-uniswap-plugin": "^4.1.7",
70
+ "@xyo-network/react-aggregate-price-plugin": "^4.1.9",
71
+ "@xyo-network/react-crypto-market-uniswap-plugin": "^4.1.9",
72
72
  "react-router-dom": "^6.27.0",
73
73
  "storybook": "^8.3.6",
74
74
  "typescript": "^5.6.3"
@@ -1,7 +1,7 @@
1
+ import { ErrorBoundary } from '@xylabs/react-error'
1
2
  import type { FlexBoxProps } from '@xylabs/react-flexbox'
2
- import type { WithChildren } from '@xylabs/react-shared'
3
- import { ErrorBoundary } from '@xyo-network/react-error'
4
3
  import { ListModeProvider } from '@xyo-network/react-shared'
4
+ import type { PropsWithChildren } from 'react'
5
5
  import React from 'react'
6
6
 
7
7
  import {
@@ -11,7 +11,7 @@ import type { EmbedPluginProps } from '../types/index.ts'
11
11
  import { EmbedResolver } from './EmbedResolver.tsx'
12
12
  import { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'
13
13
 
14
- export const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>> = ({
14
+ export const EmbedPluginInner: React.FC<PropsWithChildren<EmbedPluginProps>> = ({
15
15
  validateSchema,
16
16
  plugins,
17
17
  huriPayload,
@@ -43,7 +43,7 @@ export const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>> = ({
43
43
 
44
44
  interface WithResolversProps extends Pick<EmbedPluginProps, 'onRefresh' | 'huriPayload'>, FlexBoxProps {}
45
45
 
46
- const WithResolvers: React.FC<WithChildren<WithResolversProps>> = ({
46
+ const WithResolvers: React.FC<PropsWithChildren<WithResolversProps>> = ({
47
47
  children, onRefresh, huriPayload,
48
48
  }) => {
49
49
  return (
@@ -55,7 +55,7 @@ const WithResolvers: React.FC<WithChildren<WithResolversProps>> = ({
55
55
  )
56
56
  }
57
57
 
58
- const WithValidators: React.FC<WithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {
58
+ const WithValidators: React.FC<PropsWithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {
59
59
  return (
60
60
  <ValidatePayloadProvider enabled={validateSchema}>
61
61
  <ValidatePluginsAlert>
@@ -1,10 +1,10 @@
1
- import type { WithChildren } from '@xylabs/react-shared'
2
1
  import { LoadResult } from '@xyo-network/react-shared'
2
+ import type { PropsWithChildren } from 'react'
3
3
  import React from 'react'
4
4
 
5
5
  import { useResolvePayload } from '../contexts/index.ts'
6
6
 
7
- export const EmbedResolver: React.FC<WithChildren> = ({ children }) => {
7
+ export const EmbedResolver: React.FC<PropsWithChildren> = ({ children }) => {
8
8
  const {
9
9
  payload, notFound, huriError,
10
10
  } = useResolvePayload()
@@ -1,6 +1,6 @@
1
1
  import type { FormControlProps } from '@mui/material'
2
2
  import { FormControl, InputLabel } from '@mui/material'
3
- import type { WithChildren } from '@xylabs/react-shared'
3
+ import type { PropsWithChildren } from 'react'
4
4
  import React from 'react'
5
5
 
6
6
  interface EmbedFormControlProps extends FormControlProps {
@@ -8,7 +8,7 @@ interface EmbedFormControlProps extends FormControlProps {
8
8
  formLabel?: string
9
9
  }
10
10
 
11
- export const EmbedFormControl: React.FC<WithChildren<EmbedFormControlProps>> = ({
11
+ export const EmbedFormControl: React.FC<PropsWithChildren<EmbedFormControlProps>> = ({
12
12
  formId, formLabel, children, ...props
13
13
  }) => {
14
14
  return (
@@ -1,14 +1,14 @@
1
1
  import { useTheme } from '@mui/material'
2
2
  import type { FlexBoxProps } from '@xylabs/react-flexbox'
3
3
  import { FlexCol } from '@xylabs/react-flexbox'
4
- import type { WithChildren } from '@xylabs/react-shared'
5
4
  import { LoadResult } from '@xyo-network/react-shared'
5
+ import type { PropsWithChildren } from 'react'
6
6
  import React from 'react'
7
7
 
8
8
  import { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'
9
9
  import { EmbedCardApiErrorRenderer } from './error-handling/index.ts'
10
10
 
11
- export const EmbedCardResolverFlexBox: React.FC<WithChildren<FlexBoxProps>> = ({ children, ...props }) => {
11
+ export const EmbedCardResolverFlexBox: React.FC<PropsWithChildren<FlexBoxProps>> = ({ children, ...props }) => {
12
12
  const {
13
13
  payload, notFound, huriError,
14
14
  } = useResolvePayload()
@@ -1,5 +1,5 @@
1
1
  import { useTheme } from '@mui/material'
2
- import type { WithChildren } from '@xylabs/react-shared'
2
+ import type { PropsWithChildren } from 'react'
3
3
  import React from 'react'
4
4
 
5
5
  import { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'
@@ -9,7 +9,7 @@ import type { BusyCardProps } from './card/index.ts'
9
9
  import { EmbedPluginCard } from './card/index.ts'
10
10
  import { EmbedCardApiErrorRenderer } from './error-handling/index.ts'
11
11
 
12
- export interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {}
12
+ export interface EmbedPluginCardProps extends PropsWithChildren, EmbedPluginProps, BusyCardProps {}
13
13
 
14
14
  export const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps> = ({ children, ...props }) => {
15
15
  const {
@@ -5,12 +5,12 @@ import type {
5
5
  BusyCircularProgressProps,
6
6
  BusyLinearProgressProps,
7
7
  BusyVariant,
8
- WithChildren,
9
8
  } from '@xylabs/react-shared'
10
9
  import {
11
10
  BusyCircularProgress,
12
11
  BusyLinearProgress,
13
12
  } from '@xylabs/react-shared'
13
+ import type { PropsWithChildren } from 'react'
14
14
  import React from 'react'
15
15
 
16
16
  export interface BusyCardProps extends CardProps {
@@ -20,7 +20,7 @@ export interface BusyCardProps extends CardProps {
20
20
  busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps
21
21
  }
22
22
 
23
- export const BusyCard: React.FC<WithChildren<BusyCardProps>> = ({
23
+ export const BusyCard: React.FC<PropsWithChildren<BusyCardProps>> = ({
24
24
  busy,
25
25
  busyMinimum = 500,
26
26
  busyVariant = 'circular',
@@ -1,7 +1,7 @@
1
1
  import type { CardProps } from '@mui/material'
2
- import type { WithChildren } from '@xylabs/react-shared'
2
+ import { ErrorAlert, ErrorRender } from '@xylabs/react-error'
3
3
  import type { ModuleError } from '@xyo-network/payload-model'
4
- import { ErrorAlert, ErrorRender } from '@xyo-network/react-error'
4
+ import type { PropsWithChildren } from 'react'
5
5
  import React from 'react'
6
6
 
7
7
  import { EmbedErrorCard } from './EmbedErrorCard.tsx'
@@ -10,7 +10,7 @@ interface EmbedCardApiErrorRendererProps extends CardProps {
10
10
  xyoError?: ModuleError
11
11
  }
12
12
 
13
- export const EmbedCardApiErrorRenderer: React.FC<WithChildren<EmbedCardApiErrorRendererProps>> = ({
13
+ export const EmbedCardApiErrorRenderer: React.FC<PropsWithChildren<EmbedCardApiErrorRendererProps>> = ({
14
14
  xyoError, children, ...props
15
15
  }) => {
16
16
  return (
@@ -2,7 +2,7 @@ import type { AlertProps, CardProps } from '@mui/material'
2
2
  import {
3
3
  Alert, AlertTitle, Card, CardContent, Typography,
4
4
  } from '@mui/material'
5
- import type { WithChildren } from '@xylabs/react-shared'
5
+ import type { PropsWithChildren } from 'react'
6
6
  import React from 'react'
7
7
 
8
8
  interface EmbedErrorCardBaseProps {
@@ -14,7 +14,7 @@ interface EmbedErrorCardBaseProps {
14
14
 
15
15
  interface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {}
16
16
 
17
- export const EmbedErrorCard: React.FC<WithChildren<EmbedErrorCardProps>> = (props) => {
17
+ export const EmbedErrorCard: React.FC<PropsWithChildren<EmbedErrorCardProps>> = (props) => {
18
18
  const {
19
19
  alertProps, error, scope, hideErrorDetails = true, children, ...cardProps
20
20
  } = props
@@ -1,11 +1,11 @@
1
1
  import type { AlertProps } from '@mui/material'
2
2
  import { Alert } from '@mui/material'
3
- import type { WithChildren } from '@xylabs/react-shared'
3
+ import type { PropsWithChildren } from 'react'
4
4
  import React from 'react'
5
5
 
6
6
  import { useValidatePayload } from '../../contexts/index.ts'
7
7
 
8
- export const ValidatePayloadAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {
8
+ export const ValidatePayloadAlert: React.FC<PropsWithChildren<AlertProps>> = ({ children, ...props }) => {
9
9
  const {
10
10
  validPayload, enabled, schema,
11
11
  } = useValidatePayload()
@@ -1,11 +1,11 @@
1
1
  import type { AlertProps } from '@mui/material'
2
2
  import { Alert, AlertTitle } from '@mui/material'
3
- import type { WithChildren } from '@xylabs/react-shared'
3
+ import type { PropsWithChildren } from 'react'
4
4
  import React from 'react'
5
5
 
6
6
  import { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'
7
7
 
8
- export const ValidatePluginsAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {
8
+ export const ValidatePluginsAlert: React.FC<PropsWithChildren<AlertProps>> = ({ children, ...props }) => {
9
9
  const { payload } = useResolvePayload()
10
10
  const { plugins } = useEmbedPluginState()
11
11
 
@@ -1,5 +1,5 @@
1
1
  import { useResetState } from '@xylabs/react-hooks'
2
- import type { WithChildren } from '@xylabs/react-shared'
2
+ import type { PropsWithChildren } from 'react'
3
3
  import React from 'react'
4
4
 
5
5
  import { EmbedPluginContext } from './Context.ts'
@@ -8,7 +8,7 @@ import type { EmbedPluginBase } from './State.ts'
8
8
  export type EmbedPluginProviderProps = EmbedPluginBase
9
9
 
10
10
  /** Expose passed embed plugin props via context */
11
- export const EmbedPluginProvider: React.FC<WithChildren<EmbedPluginProviderProps>> = ({
11
+ export const EmbedPluginProvider: React.FC<PropsWithChildren<EmbedPluginProviderProps>> = ({
12
12
  children,
13
13
  refreshTitle,
14
14
  timestampLabel,
@@ -1,4 +1,4 @@
1
- import type { WithChildren } from '@xylabs/react-shared'
1
+ import type { PropsWithChildren } from 'react'
2
2
  import React, { useState } from 'react'
3
3
 
4
4
  import { RefreshPayloadContext } from './Context.ts'
@@ -8,7 +8,7 @@ export interface RefreshPayloadProps {
8
8
  refreshPayload?: boolean
9
9
  }
10
10
 
11
- export const RefreshPayloadProvider: React.FC<WithChildren<RefreshPayloadProps>> = ({
11
+ export const RefreshPayloadProvider: React.FC<PropsWithChildren<RefreshPayloadProps>> = ({
12
12
  children, onRefresh, refreshPayload,
13
13
  }) => {
14
14
  const [localRefreshPayload, setRefreshPayload] = useState(refreshPayload)
@@ -1,10 +1,10 @@
1
1
  /* eslint-disable @eslint-react/hooks-extra/no-direct-set-state-in-use-effect */
2
2
  import { delay } from '@xylabs/delay'
3
3
  import { useAsyncEffect } from '@xylabs/react-async-effect'
4
- import type { WithChildren } from '@xylabs/react-shared'
5
4
  import { Huri } from '@xyo-network/huri'
6
5
  import type { ModuleError, Payload } from '@xyo-network/payload-model'
7
6
  import { ModuleErrorSchema } from '@xyo-network/payload-model'
7
+ import type { PropsWithChildren } from 'react'
8
8
  import React, { useEffect, useState } from 'react'
9
9
 
10
10
  import { useRefreshPayload } from '../RefreshPayloadContext/index.ts'
@@ -13,7 +13,7 @@ import type { ResolvePayloadState } from './State.ts'
13
13
 
14
14
  export type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>
15
15
 
16
- export const ResolvePayloadProvider: React.FC<WithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {
16
+ export const ResolvePayloadProvider: React.FC<PropsWithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {
17
17
  const [payload, setPayload] = useState<Payload>()
18
18
  const [huri, setHuri] = useState<string>()
19
19
  const {
@@ -1,8 +1,8 @@
1
1
  import { Chip } from '@mui/material'
2
2
  import { useAsyncEffect } from '@xylabs/react-async-effect'
3
- import type { WithChildren } from '@xylabs/react-shared'
4
3
  import type { SchemaNameToValidatorMap } from '@xyo-network/schema-cache'
5
4
  import { SchemaCache } from '@xyo-network/schema-cache'
5
+ import type { PropsWithChildren } from 'react'
6
6
  import React, { useState } from 'react'
7
7
 
8
8
  import { useResolvePayload } from '../ResolvePayloadContext/index.ts'
@@ -13,7 +13,7 @@ export interface ValidatePayloadProviderProps {
13
13
  enabled?: boolean
14
14
  }
15
15
 
16
- export const ValidatePayloadProvider: React.FC<WithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {
16
+ export const ValidatePayloadProvider: React.FC<PropsWithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {
17
17
  const { payload } = useResolvePayload()
18
18
  const [initialized, setInitialized] = useState(false)
19
19
  const [valid, setValid] = useState<boolean>()