flowchart-sequence-designer 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +250 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -4
- package/dist/index.d.ts +20 -4
- package/dist/index.js +248 -43
- package/dist/index.js.map +1 -1
- package/dist/ui/index.cjs +2840 -1177
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +2853 -1190
- package/dist/ui/index.js.map +1 -1
- package/package.json +7 -2
- package/dist/.metafile-core.json +0 -251
- package/dist/.metafile-ui.json +0 -797
package/dist/ui/index.d.cts
CHANGED
|
@@ -319,7 +319,7 @@ interface StepEditorProps {
|
|
|
319
319
|
t?: ThemeColors;
|
|
320
320
|
acc?: VariantAccent;
|
|
321
321
|
}
|
|
322
|
-
declare function StepEditor({ nodeId, model, onModelChange, variant, isDark, t, acc }: StepEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
322
|
+
declare function StepEditor({ nodeId, model, onModelChange, variant, isDark, t, acc, }: StepEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
323
323
|
|
|
324
324
|
/**
|
|
325
325
|
* Built-in sample diagrams shown when a consumer mounts the editor without
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -319,7 +319,7 @@ interface StepEditorProps {
|
|
|
319
319
|
t?: ThemeColors;
|
|
320
320
|
acc?: VariantAccent;
|
|
321
321
|
}
|
|
322
|
-
declare function StepEditor({ nodeId, model, onModelChange, variant, isDark, t, acc }: StepEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
322
|
+
declare function StepEditor({ nodeId, model, onModelChange, variant, isDark, t, acc, }: StepEditorProps): react_jsx_runtime.JSX.Element | null;
|
|
323
323
|
|
|
324
324
|
/**
|
|
325
325
|
* Built-in sample diagrams shown when a consumer mounts the editor without
|