@prefecthq/prefect-ui-library 1.6.5 → 1.6.6
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-53217aa7.mjs → index-e8290a43.mjs} +10115 -10086
- package/dist/index-e8290a43.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +624 -623
- package/dist/prefect-ui-library.umd.js +76 -76
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/types/src/components/DeploymentParameters.vue.d.ts +21 -0
- package/dist/types/src/components/FlowRunCreateForm.vue.d.ts +3 -2
- package/dist/types/src/components/index.d.ts +1 -0
- package/dist/{viewport.es-ae91b8e8-a198d0bf.mjs → viewport.es-ae91b8e8-6fbd0256.mjs} +2 -2
- package/dist/{viewport.es-ae91b8e8-a198d0bf.mjs.map → viewport.es-ae91b8e8-6fbd0256.mjs.map} +1 -1
- package/package.json +1 -1
- package/dist/index-53217aa7.mjs.map +0 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Deployment } from '../models';
|
|
2
|
+
import { SchemaValues } from '../types/schemas';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
deployment: Deployment;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:modelValue": (value: SchemaValues) => void;
|
|
7
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
deployment: Deployment;
|
|
9
|
+
}>>> & {
|
|
10
|
+
"onUpdate:modelValue"?: ((value: SchemaValues) => any) | undefined;
|
|
11
|
+
}, {}>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
15
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
+
} : {
|
|
18
|
+
type: import('vue').PropType<T[K]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { Deployment, DeploymentFlowRunCreate } from '../models';
|
|
2
|
+
import { SchemaValues } from '../types/schemas';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
4
|
deployment: Deployment;
|
|
4
|
-
parameters?:
|
|
5
|
+
parameters?: SchemaValues | undefined;
|
|
5
6
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
7
|
submit: (value: DeploymentFlowRunCreate) => void;
|
|
7
8
|
} & {
|
|
8
9
|
cancel: () => void;
|
|
9
10
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
11
|
deployment: Deployment;
|
|
11
|
-
parameters?:
|
|
12
|
+
parameters?: SchemaValues | undefined;
|
|
12
13
|
}>>> & {
|
|
13
14
|
onSubmit?: ((value: DeploymentFlowRunCreate) => any) | undefined;
|
|
14
15
|
onCancel?: (() => any) | undefined;
|
|
@@ -68,6 +68,7 @@ export { default as DeploymentIconText } from './DeploymentIconText.vue';
|
|
|
68
68
|
export { default as DeploymentList } from './DeploymentList.vue';
|
|
69
69
|
export { default as DeploymentListItem } from './DeploymentListItem.vue';
|
|
70
70
|
export { default as DeploymentMenu } from './DeploymentMenu.vue';
|
|
71
|
+
export { default as DeploymentParameters } from './DeploymentParameters.vue';
|
|
71
72
|
export { default as DeploymentQuickRunOverflowMenuItem } from './DeploymentQuickRunOverflowMenuItem.vue';
|
|
72
73
|
export { default as DeploymentsCount } from './DeploymentsCount.vue';
|
|
73
74
|
export { default as DeploymentsDeleteButton } from './DeploymentsDeleteButton.vue';
|
|
@@ -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-e8290a43.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-6fbd0256.mjs.map
|