@prefecthq/prefect-ui-library 1.4.2 → 1.4.4
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-60275489.mjs → index-33a139a7.mjs} +11756 -11605
- package/dist/index-33a139a7.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +533 -533
- package/dist/prefect-ui-library.umd.js +77 -77
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/demo/compositions/useSeeds.d.ts +2 -1
- package/dist/types/demo/services/MockApi.d.ts +1 -0
- package/dist/types/demo/services/mockWorkspaceArtifactsApi.d.ts +4 -1
- package/dist/types/demo/services/mockWorkspaceFlowRunsApi.d.ts +3 -2
- package/dist/types/demo/utilities/api.d.ts +2 -1
- package/dist/types/demo/utilities/data.d.ts +3 -1
- package/dist/types/src/components/ArtifactCard.vue.d.ts +2 -0
- package/dist/types/src/components/FlowRunArtifacts.vue.d.ts +23 -0
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/compositions/useWorkspaceRoutes.d.ts +2 -2
- package/dist/types/src/localization/index.d.ts +3 -0
- package/dist/types/src/localization/locale/en.d.ts +3 -0
- package/dist/types/src/maps/artifact.d.ts +3 -0
- package/dist/types/src/maps/flowRunTimeline.d.ts +2 -2
- package/dist/types/src/maps/index.d.ts +4 -1
- package/dist/types/src/models/ArtifactCollection.d.ts +19 -0
- package/dist/types/src/models/Filters.d.ts +0 -1
- package/dist/types/src/models/api/ArtifactCollectionResponse.d.ts +5 -0
- package/dist/types/src/models/api/Filters.d.ts +0 -1
- package/dist/types/src/models/index.d.ts +1 -1
- package/dist/types/src/router/routes.d.ts +2 -2
- package/dist/types/src/services/Mapper.d.ts +4 -1
- package/dist/types/src/services/WorkspaceArtifactsApi.d.ts +8 -0
- package/dist/types/src/services/WorkspaceFlowRunsApi.d.ts +4 -3
- package/dist/types/src/utilities/arrays.d.ts +1 -0
- package/dist/{viewport.es-ff98659c-69ca68ac.mjs → viewport.es-84fb8076-30f1ddc4.mjs} +2 -2
- package/dist/{viewport.es-ff98659c-69ca68ac.mjs.map → viewport.es-84fb8076-30f1ddc4.mjs.map} +1 -1
- package/package.json +9 -8
- package/dist/index-60275489.mjs.map +0 -1
- package/dist/types/src/models/TimelineNode.d.ts +0 -19
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { GraphTimelineNode } from '@prefecthq/graphs';
|
|
1
2
|
import { MockApi } from '../../src/../demo/services/MockApi';
|
|
2
|
-
import { FlowRun, GraphNode, RunHistory, StateUpdate
|
|
3
|
+
import { FlowRun, GraphNode, RunHistory, StateUpdate } from '../../src/models';
|
|
3
4
|
import { FlowRunsFilter, FlowRunsHistoryFilter } from '../../src/models/Filters';
|
|
4
5
|
import { IWorkspaceFlowRunsApi } from '../../src/services';
|
|
5
6
|
export declare class MockWorkspaceFlowRunsApi extends MockApi implements IWorkspaceFlowRunsApi {
|
|
@@ -8,7 +9,7 @@ export declare class MockWorkspaceFlowRunsApi extends MockApi implements IWorksp
|
|
|
8
9
|
getFlowRunsCount(filter: FlowRunsFilter): Promise<number>;
|
|
9
10
|
getFlowRunsHistory(filter: FlowRunsHistoryFilter): Promise<RunHistory[]>;
|
|
10
11
|
getFlowRunsGraph(graphId: string): Promise<GraphNode[]>;
|
|
11
|
-
getFlowRunsTimeline(): Promise<
|
|
12
|
+
getFlowRunsTimeline(): Promise<GraphTimelineNode[]>;
|
|
12
13
|
retryFlowRun(): Promise<void>;
|
|
13
14
|
setFlowRunState(flowRunId: string, body: StateUpdate): Promise<void>;
|
|
14
15
|
resumeFlowRun(flowRunId: string): Promise<void>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { FlowRunGraphMock } from '../types/flowRunGraphMock';
|
|
2
|
-
import { Artifact, BlockDocument, BlockSchema, BlockType, Deployment, Flow, FlowRun, TaskRun, WorkPool, WorkPoolQueue, WorkQueue, WorkPoolWorker } from '../../src/models';
|
|
2
|
+
import { Artifact, BlockDocument, BlockSchema, BlockType, Deployment, Flow, FlowRun, TaskRun, WorkPool, WorkPoolQueue, WorkQueue, WorkPoolWorker, ArtifactCollection } from '../../src/models';
|
|
3
3
|
import { ConcurrencyLimit } from '../../src/models/ConcurrencyLimit';
|
|
4
4
|
import { CreateApi } from '../../src/utilities';
|
|
5
5
|
export type ApiMockSeeds = {
|
|
6
6
|
artifacts?: Artifact[];
|
|
7
|
+
artifactCollections?: ArtifactCollection[];
|
|
7
8
|
flows?: Flow[];
|
|
8
9
|
flowRuns?: FlowRun[];
|
|
9
10
|
flowRunGraphs?: FlowRunGraphMock[];
|
|
@@ -2,9 +2,10 @@ import { KeyedDataStore } from '../services/KeyedDataStore';
|
|
|
2
2
|
import { SimpleDataStore } from '../services/SimpleDataStore';
|
|
3
3
|
import { ApiMockSeeds } from './api';
|
|
4
4
|
import { FlowRunGraphMock } from '../types/flowRunGraphMock';
|
|
5
|
-
import { Flow, FlowRun, BlockDocument, BlockSchema, TaskRun, Deployment, WorkQueue, BlockType, WorkPool, WorkPoolQueue, WorkPoolWorker, Artifact } from '../../src/models';
|
|
5
|
+
import { Flow, FlowRun, BlockDocument, BlockSchema, TaskRun, Deployment, WorkQueue, BlockType, WorkPool, WorkPoolQueue, WorkPoolWorker, Artifact, ArtifactCollection } from '../../src/models';
|
|
6
6
|
export declare function createDataStores(seeds?: ApiMockSeeds): {
|
|
7
7
|
artifacts: KeyedDataStore<Artifact, string>;
|
|
8
|
+
artifactCollections: KeyedDataStore<ArtifactCollection, string>;
|
|
8
9
|
flows: KeyedDataStore<Flow, string>;
|
|
9
10
|
flowRuns: KeyedDataStore<FlowRun, string>;
|
|
10
11
|
flowRunGraphs: KeyedDataStore<FlowRunGraphMock, string>;
|
|
@@ -23,6 +24,7 @@ export declare function createDataStores(seeds?: ApiMockSeeds): {
|
|
|
23
24
|
export type CreateDataStores = ReturnType<typeof createDataStores>;
|
|
24
25
|
export declare const data: {
|
|
25
26
|
artifacts: KeyedDataStore<Artifact, string>;
|
|
27
|
+
artifactCollections: KeyedDataStore<ArtifactCollection, string>;
|
|
26
28
|
flows: KeyedDataStore<Flow, string>;
|
|
27
29
|
flowRuns: KeyedDataStore<FlowRun, string>;
|
|
28
30
|
flowRunGraphs: KeyedDataStore<FlowRunGraphMock, string>;
|
|
@@ -7,6 +7,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
condense?: boolean | undefined;
|
|
8
8
|
}>>>, {}>, {
|
|
9
9
|
default: (_: {}) => any;
|
|
10
|
+
'summary-label': (_: {}) => any;
|
|
11
|
+
'summary-value': (_: {}) => any;
|
|
10
12
|
}>;
|
|
11
13
|
export default _default;
|
|
12
14
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { FlowRun } from '../models';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
flowRun: FlowRun;
|
|
4
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
flowRun: FlowRun;
|
|
6
|
+
}>>>, {}>, {
|
|
7
|
+
actions: (_: {}) => any;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -81,6 +81,7 @@ export { default as FlowDetails } from './FlowDetails.vue';
|
|
|
81
81
|
export { default as FlowIconText } from './FlowIconText.vue';
|
|
82
82
|
export { default as FlowMenu } from './FlowMenu.vue';
|
|
83
83
|
export { default as FlowRouterLink } from './FlowRouterLink.vue';
|
|
84
|
+
export { default as FlowRunArtifacts } from './FlowRunArtifacts.vue';
|
|
84
85
|
export { default as FlowRunCancelButton } from './FlowRunCancelButton.vue';
|
|
85
86
|
export { default as FlowRunCancelModal } from './FlowRunCancelModal.vue';
|
|
86
87
|
export { default as FlowRunCreateForm } from './FlowRunCreateForm.vue';
|
|
@@ -7,12 +7,12 @@ export declare function useWorkspaceRoutes(): {
|
|
|
7
7
|
readonly artifactId: string;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
artifactKey: (
|
|
10
|
+
artifactKey: (artifactKey: string) => {
|
|
11
11
|
readonly name: "workspace.artifacts.artifact.key";
|
|
12
12
|
readonly params: {
|
|
13
13
|
readonly accountId?: string | undefined;
|
|
14
14
|
readonly workspaceId?: string | undefined;
|
|
15
|
-
readonly
|
|
15
|
+
readonly artifactKey: string;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
artifacts: () => {
|
|
@@ -124,6 +124,9 @@ export declare const localization: {
|
|
|
124
124
|
filterByTags: string;
|
|
125
125
|
invalidData: (docsUrl: string) => string;
|
|
126
126
|
noResults: string;
|
|
127
|
+
none: string;
|
|
128
|
+
terminalFlowRunNoArtifacts: string;
|
|
129
|
+
nonTerminalFlowRunNoArtifacts: string;
|
|
127
130
|
flowRun: string;
|
|
128
131
|
taskRun: string;
|
|
129
132
|
taskRuns: string;
|
|
@@ -124,6 +124,9 @@ export declare const en: {
|
|
|
124
124
|
filterByTags: string;
|
|
125
125
|
invalidData: (docsUrl: string) => string;
|
|
126
126
|
noResults: string;
|
|
127
|
+
none: string;
|
|
128
|
+
terminalFlowRunNoArtifacts: string;
|
|
129
|
+
nonTerminalFlowRunNoArtifacts: string;
|
|
127
130
|
flowRun: string;
|
|
128
131
|
taskRun: string;
|
|
129
132
|
taskRuns: string;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import { ArtifactCollectionResponse } from '../models/api/ArtifactCollectionResponse';
|
|
1
2
|
import { ArtifactResponse } from '../models/api/ArtifactResponse';
|
|
2
3
|
import { Artifact } from '../models/Artifact';
|
|
4
|
+
import { ArtifactCollection } from '../models/ArtifactCollection';
|
|
3
5
|
import { MapFunction } from '../services/Mapper';
|
|
4
6
|
export declare const mapArtifactResponseToArtifact: MapFunction<ArtifactResponse, Artifact>;
|
|
7
|
+
export declare const mapArtifactCollectionResponseToArtifactCollection: MapFunction<ArtifactCollectionResponse, ArtifactCollection>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
import { GraphTimelineNode } from '@prefecthq/graphs';
|
|
1
2
|
import { FlowRunGraphResponse } from '../models/api/FlowRunGraphResponse';
|
|
2
|
-
import { TimelineNode } from '../models/TimelineNode';
|
|
3
3
|
import { MapFunction } from '../services/Mapper';
|
|
4
|
-
export declare const mapFlowRunGraphResponseToTimelineNode: MapFunction<FlowRunGraphResponse,
|
|
4
|
+
export declare const mapFlowRunGraphResponseToTimelineNode: MapFunction<FlowRunGraphResponse, GraphTimelineNode>;
|
|
@@ -5,6 +5,9 @@ export declare const maps: {
|
|
|
5
5
|
ArtifactResponse: {
|
|
6
6
|
Artifact: import("..").MapFunction<import("..").ArtifactResponse, import("..").Artifact>;
|
|
7
7
|
};
|
|
8
|
+
ArtifactCollectionResponse: {
|
|
9
|
+
ArtifactCollection: import("..").MapFunction<import("../models/api/ArtifactCollectionResponse").ArtifactCollectionResponse, import("..").ArtifactCollection>;
|
|
10
|
+
};
|
|
8
11
|
ArtifactsFilter: {
|
|
9
12
|
ArtifactsFilterRequest: import("..").MapFunction<import("..").ArtifactsFilter, import("../models/api/Filters").ArtifactsFilterRequest>;
|
|
10
13
|
};
|
|
@@ -126,7 +129,7 @@ export declare const maps: {
|
|
|
126
129
|
};
|
|
127
130
|
FlowRunGraphResponse: {
|
|
128
131
|
GraphNode: import("..").MapFunction<import("..").FlowRunGraphResponse, import("..").GraphNode>;
|
|
129
|
-
TimelineNode: import("..").MapFunction<import("..").FlowRunGraphResponse, import("
|
|
132
|
+
TimelineNode: import("..").MapFunction<import("..").FlowRunGraphResponse, import("@prefecthq/graphs").GraphTimelineNode>;
|
|
130
133
|
};
|
|
131
134
|
FlowRunHistoryResponse: {
|
|
132
135
|
RunHistory: import("..").MapFunction<import("..").FlowRunHistoryResponse, import("..").RunHistory>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ArtifactData, ArtifactMetadata, ArtifactType, IArtifact } from '../models/Artifact';
|
|
2
|
+
export interface IArtifactCollection extends IArtifact {
|
|
3
|
+
latestId: string;
|
|
4
|
+
key: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class ArtifactCollection implements IArtifactCollection {
|
|
7
|
+
readonly id: string;
|
|
8
|
+
readonly latestId: string;
|
|
9
|
+
readonly key: string;
|
|
10
|
+
readonly flowRunId: string | null;
|
|
11
|
+
readonly taskRunId: string | null;
|
|
12
|
+
readonly created: Date;
|
|
13
|
+
readonly updated: Date;
|
|
14
|
+
type: ArtifactType;
|
|
15
|
+
description: string | null;
|
|
16
|
+
data: ArtifactData;
|
|
17
|
+
metadata: ArtifactMetadata;
|
|
18
|
+
constructor(artifact: IArtifactCollection);
|
|
19
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './api';
|
|
2
2
|
export * from './Artifact';
|
|
3
|
+
export * from './ArtifactCollection';
|
|
3
4
|
export * from './BatchLookupError';
|
|
4
5
|
export * from './BlockDocument';
|
|
5
6
|
export * from './BlockDocumentCreate';
|
|
@@ -45,7 +46,6 @@ export * from './StateType';
|
|
|
45
46
|
export * from './StateUpdate';
|
|
46
47
|
export * from './TaskInput';
|
|
47
48
|
export * from './TaskRun';
|
|
48
|
-
export * from './TimelineNode';
|
|
49
49
|
export * from './UiFlowRunHistory';
|
|
50
50
|
export * from './Variable';
|
|
51
51
|
export * from './VariableCreate';
|
|
@@ -11,12 +11,12 @@ export declare function createWorkspaceRoutes(config?: CreateWorkspaceRoutesConf
|
|
|
11
11
|
readonly artifactId: string;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
artifactKey: (
|
|
14
|
+
artifactKey: (artifactKey: string) => {
|
|
15
15
|
readonly name: "workspace.artifacts.artifact.key";
|
|
16
16
|
readonly params: {
|
|
17
17
|
readonly accountId?: string | undefined;
|
|
18
18
|
readonly workspaceId?: string | undefined;
|
|
19
|
-
readonly
|
|
19
|
+
readonly artifactKey: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
artifacts: () => {
|
|
@@ -29,6 +29,9 @@ export declare const mapper: Mapper<{
|
|
|
29
29
|
ArtifactResponse: {
|
|
30
30
|
Artifact: MapFunction<import("..").ArtifactResponse, import("..").Artifact>;
|
|
31
31
|
};
|
|
32
|
+
ArtifactCollectionResponse: {
|
|
33
|
+
ArtifactCollection: MapFunction<import("../models/api/ArtifactCollectionResponse").ArtifactCollectionResponse, import("..").ArtifactCollection>;
|
|
34
|
+
};
|
|
32
35
|
ArtifactsFilter: {
|
|
33
36
|
ArtifactsFilterRequest: MapFunction<import("..").ArtifactsFilter, import("../models/api/Filters").ArtifactsFilterRequest>;
|
|
34
37
|
};
|
|
@@ -150,7 +153,7 @@ export declare const mapper: Mapper<{
|
|
|
150
153
|
};
|
|
151
154
|
FlowRunGraphResponse: {
|
|
152
155
|
GraphNode: MapFunction<import("..").FlowRunGraphResponse, import("..").GraphNode>;
|
|
153
|
-
TimelineNode: MapFunction<import("..").FlowRunGraphResponse, import("
|
|
156
|
+
TimelineNode: MapFunction<import("..").FlowRunGraphResponse, import("@prefecthq/graphs").GraphTimelineNode>;
|
|
154
157
|
};
|
|
155
158
|
FlowRunHistoryResponse: {
|
|
156
159
|
RunHistory: MapFunction<import("..").FlowRunHistoryResponse, import("..").RunHistory>;
|
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
import { Artifact } from '../models';
|
|
2
|
+
import { ArtifactCollection } from '../models/ArtifactCollection';
|
|
2
3
|
import { ArtifactsFilter } from '../models/Filters';
|
|
3
4
|
import { WorkspaceApi } from '../services/WorkspaceApi';
|
|
4
5
|
export interface IWorkspaceArtifactsApi {
|
|
5
6
|
getArtifact: (id: string) => Promise<Artifact>;
|
|
6
7
|
getArtifacts: (filter: ArtifactsFilter) => Promise<Artifact[]>;
|
|
8
|
+
getArtifactCollection: (key: string) => Promise<ArtifactCollection>;
|
|
9
|
+
getArtifactCollections: (filter: ArtifactsFilter) => Promise<ArtifactCollection[]>;
|
|
7
10
|
getArtifactsCount: (filter: ArtifactsFilter) => Promise<number>;
|
|
11
|
+
getArtifactCollectionsCount: (filter: ArtifactsFilter) => Promise<number>;
|
|
8
12
|
deleteArtifact: (id: string) => Promise<void>;
|
|
9
13
|
}
|
|
10
14
|
export declare class WorkspaceArtifactsApi extends WorkspaceApi implements IWorkspaceArtifactsApi {
|
|
11
15
|
protected routePrefix: string;
|
|
12
16
|
private readonly batcher;
|
|
17
|
+
private readonly keyBatcher;
|
|
13
18
|
getArtifact(id: string): Promise<Artifact>;
|
|
19
|
+
getArtifactCollection(key: string): Promise<ArtifactCollection>;
|
|
14
20
|
getArtifacts(filter?: ArtifactsFilter): Promise<Artifact[]>;
|
|
15
21
|
getArtifactsCount(filter?: ArtifactsFilter): Promise<number>;
|
|
22
|
+
getArtifactCollections(filter?: ArtifactsFilter): Promise<ArtifactCollection[]>;
|
|
23
|
+
getArtifactCollectionsCount(filter?: ArtifactsFilter): Promise<number>;
|
|
16
24
|
deleteArtifact(id: string): Promise<void>;
|
|
17
25
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GraphTimelineNode } from '@prefecthq/graphs';
|
|
2
|
+
import { StateUpdate } from '../models';
|
|
2
3
|
import { FlowRunsFilter, FlowRunsHistoryFilter } from '../models/Filters';
|
|
3
4
|
import { FlowRun } from '../models/FlowRun';
|
|
4
5
|
import { GraphNode } from '../models/GraphNode';
|
|
@@ -10,7 +11,7 @@ export interface IWorkspaceFlowRunsApi {
|
|
|
10
11
|
getFlowRunsCount: (filter: FlowRunsFilter) => Promise<number>;
|
|
11
12
|
getFlowRunsHistory: (filter: FlowRunsHistoryFilter) => Promise<RunHistory[]>;
|
|
12
13
|
getFlowRunsGraph: (flowRunId: string) => Promise<GraphNode[]>;
|
|
13
|
-
getFlowRunsTimeline: (flowRunId: string) => Promise<
|
|
14
|
+
getFlowRunsTimeline: (flowRunId: string) => Promise<GraphTimelineNode[]>;
|
|
14
15
|
retryFlowRun: (flowRunId: string) => Promise<void>;
|
|
15
16
|
setFlowRunState: (flowRunId: string, body: StateUpdate) => Promise<void>;
|
|
16
17
|
resumeFlowRun: (flowRunId: string) => Promise<void>;
|
|
@@ -24,7 +25,7 @@ export declare class WorkspaceFlowRunsApi extends WorkspaceApi implements IWorks
|
|
|
24
25
|
getFlowRunsCount(filter?: FlowRunsFilter): Promise<number>;
|
|
25
26
|
getFlowRunsHistory(filter: FlowRunsHistoryFilter): Promise<RunHistory[]>;
|
|
26
27
|
getFlowRunsGraph(flowRunId: string): Promise<GraphNode[]>;
|
|
27
|
-
getFlowRunsTimeline(id: string): Promise<
|
|
28
|
+
getFlowRunsTimeline(id: string): Promise<GraphTimelineNode[]>;
|
|
28
29
|
retryFlowRun(id: string): Promise<void>;
|
|
29
30
|
setFlowRunState(id: string, body: StateUpdate): Promise<void>;
|
|
30
31
|
resumeFlowRun(id: string): Promise<void>;
|
|
@@ -18,3 +18,4 @@ export declare function some<T>(source: T[], min?: number, max?: number): T[];
|
|
|
18
18
|
export declare function intersects(first: unknown[], ...rest: unknown[][]): boolean;
|
|
19
19
|
export declare function groupBy<T, K extends keyof T>(source: T[], key: K): Map<T[K], T[]>;
|
|
20
20
|
export declare function separate<T>(source: T[], filter: (value: T) => boolean): [found: T[], notFound: T[]];
|
|
21
|
+
export declare function toggle<T>(source: T[], value: T, force?: boolean): T[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { u as c, Q as b, X as O, l as k } from "./index-
|
|
1
|
+
import { u as c, Q as b, X as O, l as k } from "./index-33a139a7.mjs";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "@prefecthq/vue-charts";
|
|
4
4
|
import "@prefecthq/prefect-design";
|
|
@@ -1535,4 +1535,4 @@ export {
|
|
|
1535
1535
|
C as Viewport,
|
|
1536
1536
|
$ as Wheel
|
|
1537
1537
|
};
|
|
1538
|
-
//# sourceMappingURL=viewport.es-
|
|
1538
|
+
//# sourceMappingURL=viewport.es-84fb8076-30f1ddc4.mjs.map
|