@leadal/flowstream-ui-plus 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -511,6 +511,44 @@ export declare interface FlowDefinitionListGetArgs {
511
511
  [key: string]: unknown;
512
512
  }
513
513
 
514
+ export declare const FlowDefinitionPreview: ComponentWithInstall<DefineComponent< {
515
+ processDefinitionId?: string;
516
+ bpmnXml?: string;
517
+ fitViewport?: boolean;
518
+ }, {
519
+ refresh: () => Promise<void>;
520
+ fitViewport: () => void;
521
+ viewer: ShallowRef< {
522
+ importXML(xml: string): Promise<{
523
+ warnings: unknown[];
524
+ }>;
525
+ get(name: string): any;
526
+ destroy(): void;
527
+ } | undefined, {
528
+ importXML(xml: string): Promise<{
529
+ warnings: unknown[];
530
+ }>;
531
+ get(name: string): any;
532
+ destroy(): void;
533
+ } | undefined>;
534
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
535
+ error: (error: unknown) => any;
536
+ loaded: () => any;
537
+ }, string, PublicProps, Readonly<{
538
+ processDefinitionId?: string;
539
+ bpmnXml?: string;
540
+ fitViewport?: boolean;
541
+ }> & Readonly<{
542
+ onError?: ((error: unknown) => any) | undefined;
543
+ onLoaded?: (() => any) | undefined;
544
+ }>, {
545
+ bpmnXml: string;
546
+ processDefinitionId: string;
547
+ fitViewport: boolean;
548
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
549
+ canvasRef: HTMLDivElement;
550
+ }, HTMLDivElement>>;
551
+
514
552
  export declare const FlowDiagram: ComponentWithInstall<DefineComponent< {
515
553
  processDefinitionId: string;
516
554
  processInstanceId: string;