@prefecthq/prefect-ui-library 1.6.3 → 1.6.5
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-5a4e60e6.mjs → index-53217aa7.mjs} +15282 -15058
- package/dist/index-53217aa7.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +553 -552
- package/dist/prefect-ui-library.umd.js +84 -84
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/FlowRunCreateForm.vue.d.ts +2 -2
- package/dist/types/src/components/FlowsFilterGroup.vue.d.ts +2 -0
- package/dist/types/src/components/WorkPoolCombobox.vue.d.ts +2 -2
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/types/src/localization/index.d.ts +14 -1
- package/dist/types/src/localization/locale/en.d.ts +14 -1
- package/dist/types/src/models/Deployment.d.ts +2 -0
- package/dist/{viewport.es-ae91b8e8-cbc36762.mjs → viewport.es-ae91b8e8-a198d0bf.mjs} +2 -2
- package/dist/{viewport.es-ae91b8e8-cbc36762.mjs.map → viewport.es-ae91b8e8-a198d0bf.mjs.map} +1 -1
- package/package.json +2 -1
- package/dist/index-5a4e60e6.mjs.map +0 -1
|
@@ -99,15 +99,27 @@ export declare const localization: {
|
|
|
99
99
|
updateWorkQueue: string;
|
|
100
100
|
};
|
|
101
101
|
info: {
|
|
102
|
+
filtersActive: string;
|
|
103
|
+
resetFilters: string;
|
|
104
|
+
deploymentName: string;
|
|
105
|
+
searchByDeploymentName: string;
|
|
106
|
+
workPools: string;
|
|
107
|
+
all: string;
|
|
108
|
+
active: string;
|
|
109
|
+
inactive: string;
|
|
110
|
+
lastFlowRunState: string;
|
|
111
|
+
lastFlowRunStart: string;
|
|
112
|
+
schedule: string;
|
|
102
113
|
with: string;
|
|
103
114
|
artifact: string;
|
|
104
115
|
artifacts: string;
|
|
116
|
+
parameters: string;
|
|
105
117
|
addTagPlaceholder: string;
|
|
106
118
|
descriptionPlaceholder: string;
|
|
107
119
|
parentFlowRun: string;
|
|
108
120
|
flow: string;
|
|
109
121
|
searchByFlowName: string;
|
|
110
|
-
|
|
122
|
+
deploymentTags: string;
|
|
111
123
|
artifactSearch: string;
|
|
112
124
|
variablesSearch: string;
|
|
113
125
|
artifactCreated: (key: string) => string;
|
|
@@ -126,6 +138,7 @@ export declare const localization: {
|
|
|
126
138
|
noData: string;
|
|
127
139
|
noVariables: string;
|
|
128
140
|
noDeployments: string;
|
|
141
|
+
noFlowsOrDeploymentsMatchFilter: string;
|
|
129
142
|
deploymentsEmptyStateDescription: (flowName?: string) => string;
|
|
130
143
|
copyId: string;
|
|
131
144
|
copyName: string;
|
|
@@ -99,15 +99,27 @@ export declare const en: {
|
|
|
99
99
|
updateWorkQueue: string;
|
|
100
100
|
};
|
|
101
101
|
info: {
|
|
102
|
+
filtersActive: string;
|
|
103
|
+
resetFilters: string;
|
|
104
|
+
deploymentName: string;
|
|
105
|
+
searchByDeploymentName: string;
|
|
106
|
+
workPools: string;
|
|
107
|
+
all: string;
|
|
108
|
+
active: string;
|
|
109
|
+
inactive: string;
|
|
110
|
+
lastFlowRunState: string;
|
|
111
|
+
lastFlowRunStart: string;
|
|
112
|
+
schedule: string;
|
|
102
113
|
with: string;
|
|
103
114
|
artifact: string;
|
|
104
115
|
artifacts: string;
|
|
116
|
+
parameters: string;
|
|
105
117
|
addTagPlaceholder: string;
|
|
106
118
|
descriptionPlaceholder: string;
|
|
107
119
|
parentFlowRun: string;
|
|
108
120
|
flow: string;
|
|
109
121
|
searchByFlowName: string;
|
|
110
|
-
|
|
122
|
+
deploymentTags: string;
|
|
111
123
|
artifactSearch: string;
|
|
112
124
|
variablesSearch: string;
|
|
113
125
|
artifactCreated: (key: string) => string;
|
|
@@ -126,6 +138,7 @@ export declare const en: {
|
|
|
126
138
|
noData: string;
|
|
127
139
|
noVariables: string;
|
|
128
140
|
noDeployments: string;
|
|
141
|
+
noFlowsOrDeploymentsMatchFilter: string;
|
|
129
142
|
deploymentsEmptyStateDescription: (flowName?: string) => string;
|
|
130
143
|
copyId: string;
|
|
131
144
|
copyName: string;
|
|
@@ -19,6 +19,7 @@ export interface IDeployment {
|
|
|
19
19
|
tags: string[] | null;
|
|
20
20
|
manifestPath: string | null;
|
|
21
21
|
path: string | null;
|
|
22
|
+
rawParameters: SchemaValues;
|
|
22
23
|
rawSchema: SchemaResponse | null;
|
|
23
24
|
entrypoint: string | null;
|
|
24
25
|
storageDocumentId: string | null;
|
|
@@ -41,6 +42,7 @@ export declare class Deployment implements IDeployment {
|
|
|
41
42
|
isScheduleActive: boolean;
|
|
42
43
|
parameters: SchemaValues;
|
|
43
44
|
parameterOpenApiSchema: Schema;
|
|
45
|
+
readonly rawParameters: SchemaValues;
|
|
44
46
|
readonly rawSchema: SchemaResponse | null;
|
|
45
47
|
tags: string[] | null;
|
|
46
48
|
manifestPath: string | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { k as O, f as k, $ as b, l as c } from "./index-
|
|
1
|
+
import { k as O, f as k, $ as b, l as c } from "./index-53217aa7.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
|
N as Wheel
|
|
1537
1537
|
};
|
|
1538
|
-
//# sourceMappingURL=viewport.es-ae91b8e8-
|
|
1538
|
+
//# sourceMappingURL=viewport.es-ae91b8e8-a198d0bf.mjs.map
|