@prefecthq/graphs 2.3.0 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- export declare const artifactTypes: readonly ["result", "markdown", "table", "progress", "unknown"];
1
+ export declare const artifactTypes: readonly ["result", "markdown", "table", "progress", "image", "unknown"];
2
2
  export type ArtifactType = typeof artifactTypes[number];
3
3
  export type RunGraphArtifactTypeAndData = {
4
4
  type: Exclude<ArtifactType, 'progress'>;
@@ -15,6 +15,7 @@ export declare const artifactTypeIconMap: {
15
15
  readonly markdown: "ArtifactMarkdown";
16
16
  readonly table: "ArtifactTable";
17
17
  readonly result: "ArtifactResult";
18
- readonly progress: "Artifact";
18
+ readonly image: "ArtifactImage";
19
+ readonly progress: "ArtifactProgress";
19
20
  readonly unknown: "Artifact";
20
21
  };
@@ -2,3 +2,5 @@ export { default as Artifact } from './artifact.svg?url';
2
2
  export { default as ArtifactMarkdown } from './artifact-markdown.svg?url';
3
3
  export { default as ArtifactResult } from './artifact-result.svg?url';
4
4
  export { default as ArtifactTable } from './artifact-table.svg?url';
5
+ export { default as ArtifactImage } from './artifact-image.svg?url';
6
+ export { default as ArtifactProgress } from './artifact-progress.svg?url';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prefecthq/graphs",
3
3
  "private": false,
4
- "version": "2.3.0",
4
+ "version": "2.3.2",
5
5
  "description": "Large scale graphs designed for Prefect",
6
6
  "scripts": {
7
7
  "serve": "vite --host --mode=demo",
@@ -47,13 +47,13 @@
47
47
  "@types/node": "^20.1.7",
48
48
  "@vitejs/plugin-vue": "5.0.4",
49
49
  "auto-changelog": "^2.4.0",
50
- "autoprefixer": "10.4.18",
50
+ "autoprefixer": "10.4.19",
51
51
  "eslint": "8.57.0",
52
52
  "postcss": "8.4.38",
53
53
  "tailwindcss": "3.4.1",
54
54
  "tsc-alias": "1.8.8",
55
55
  "typescript": "5.4.5",
56
- "vite": "5.2.6",
56
+ "vite": "5.2.12",
57
57
  "vite-svg-loader": "^5.1.0",
58
58
  "vue-tsc": "2.0.19"
59
59
  },