@prefecthq/prefect-ui-library 2.8.14 → 2.8.16
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/{FlowRunsPageWithDefaultFilter-BG1151bl.mjs → FlowRunsPageWithDefaultFilter-BlKHQh1G.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-BG1151bl.mjs.map → FlowRunsPageWithDefaultFilter-BlKHQh1G.mjs.map} +1 -1
- package/dist/{index-Bftz9m1S.mjs → index-BCrxmDrX.mjs} +13505 -13479
- package/dist/index-BCrxmDrX.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +38 -38
- package/dist/prefect-ui-library.umd.js +82 -82
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/automations/components/AutomationActionDescriptionPauseResumeAutomation.vue.d.ts +2 -2
- package/dist/types/src/automations/components/AutomationActionDescriptionPauseResumeDeployment.vue.d.ts +2 -2
- package/dist/types/src/automations/components/AutomationActionDescriptionPauseResumeWorkPool.vue.d.ts +2 -2
- package/dist/types/src/automations/components/AutomationActionDescriptionPauseResumeWorkQueue.vue.d.ts +2 -2
- package/dist/types/src/automations/components/AutomationActionDescriptionSuspendCancelFlowRun.vue.d.ts +2 -2
- package/dist/types/src/components/ActivityChart.vue.d.ts +1 -0
- package/dist/types/src/components/ColorModeSelectOption.vue.d.ts +2 -3
- package/dist/types/src/components/DeploymentStatusIcon.vue.d.ts +2 -3
- package/dist/types/src/components/FlowRunJobVariableOverridesLabeledInput.vue.d.ts +15 -6
- package/dist/types/src/components/FlowRunResumeModal.vue.d.ts +19 -14
- package/dist/types/src/components/FlowRunStateTypeCount.vue.d.ts +2 -3
- package/dist/types/src/components/FlowRunStateTypeEmpty.vue.d.ts +2 -3
- package/dist/types/src/components/FlowRunStateTypeTabDescription.vue.d.ts +2 -3
- package/dist/types/src/components/FlowRunsAccordion.vue.d.ts +2 -3
- package/dist/types/src/components/FlowRunsSort.vue.d.ts +2 -3
- package/dist/types/src/components/JobVariableOverridesInput.vue.d.ts +15 -6
- package/dist/types/src/components/LogLevelLabel.vue.d.ts +2 -3
- package/dist/types/src/components/LogLevelSelect.vue.d.ts +2 -3
- package/dist/types/src/components/LogoImage.vue.d.ts +1 -1
- package/dist/types/src/components/LogsSort.vue.d.ts +2 -3
- package/dist/types/src/components/NotificationDetails.vue.d.ts +2 -2
- package/dist/types/src/components/NotificationStatusSelect.vue.d.ts +2 -3
- package/dist/types/src/components/SchemaPropertyKeyValue.vue.d.ts +3 -3
- package/dist/types/src/components/SeparatedList.vue.d.ts +3 -0
- package/dist/types/src/components/StateIcon.vue.d.ts +2 -3
- package/dist/types/src/models/index.d.ts +0 -1
- package/dist/types/src/schemas/components/SchemaForm.vue.d.ts +3 -3
- package/dist/types/src/schemas/components/SchemaFormProperty.vue.d.ts +3 -1
- package/dist/types/src/schemas/components/SchemaFormPropertyAllOf.vue.d.ts +4 -5
- package/dist/types/src/schemas/components/SchemaFormPropertyAnyOf.vue.d.ts +4 -5
- package/dist/types/src/schemas/components/SchemaFormPropertyArray.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyArrayItem.vue.d.ts +2 -3
- package/dist/types/src/schemas/components/SchemaFormPropertyArrayList.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyBlockDocument.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyBoolean.vue.d.ts +23 -24
- package/dist/types/src/schemas/components/SchemaFormPropertyInput.vue.d.ts +2 -3
- package/dist/types/src/schemas/components/SchemaFormPropertyInteger.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyMenu.vue.d.ts +8 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyNull.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyObject.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaFormPropertyString.vue.d.ts +2 -2
- package/dist/types/src/schemas/components/SchemaInput.vue.d.ts +3 -3
- package/dist/types/src/utilities/errors.d.ts +7 -0
- package/package.json +5 -5
- package/dist/index-Bftz9m1S.mjs.map +0 -1
- package/dist/types/src/models/ExistingHandleError.d.ts +0 -6
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { AxiosError } from 'axios';
|
|
2
|
-
import { Require } from '../types/utilities';
|
|
3
|
-
export type ExistingHandleError = {
|
|
4
|
-
detail: string;
|
|
5
|
-
};
|
|
6
|
-
export declare function isExistingHandleError(error: unknown): error is Require<AxiosError<ExistingHandleError>, 'response'>;
|