@prefecthq/prefect-ui-library 1.6.47 → 1.6.48

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.
@@ -8,7 +8,7 @@ export declare class MockWorkspaceConcurrencyV2LimitsApi extends MockApi impleme
8
8
  getConcurrencyV2Limits(filter?: ConcurrencyLimitsFilter): Promise<ConcurrencyV2Limit[]>;
9
9
  getConcurrencyV2Limit(id: string): Promise<ConcurrencyV2Limit>;
10
10
  createConcurrencyV2Limit(limit: ConcurrencyV2Create): Promise<ConcurrencyV2Limit>;
11
- updateConcurrencyV2Limit(limit: ConcurrencyV2Create): Promise<ConcurrencyV2Limit>;
11
+ updateConcurrencyV2Limit(id: string, limit: ConcurrencyV2Create): Promise<ConcurrencyV2Limit>;
12
12
  deleteConcurrencyV2Limit(id: string): Promise<void>;
13
13
  bulkIncrementActiveSlots(names: string[], slots: number, mode: string): Promise<ConcurrencyV2ActiveSlots>;
14
14
  bulkDecrementActiveSlots(names: string[], slots: number, mode: string): Promise<ConcurrencyV2ActiveSlots>;
@@ -0,0 +1,17 @@
1
+ import { ConcurrencyV2Limit } from '../models';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ concurrencyLimit: {
4
+ type: import("vue").PropType<ConcurrencyV2Limit>;
5
+ required: true;
6
+ };
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ delete: (value: string) => void;
9
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
10
+ concurrencyLimit: {
11
+ type: import("vue").PropType<ConcurrencyV2Limit>;
12
+ required: true;
13
+ };
14
+ }>> & {
15
+ onDelete?: ((value: string) => any) | undefined;
16
+ }, {}, {}>;
17
+ export default _default;
@@ -0,0 +1,32 @@
1
+ import { ConcurrencyV2Limit } from '../models/ConcurrencyV2Limit';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ showModal: {
4
+ type: import("vue").PropType<boolean>;
5
+ required: true;
6
+ };
7
+ concurrencyLimit: {
8
+ type: import("vue").PropType<ConcurrencyV2Limit>;
9
+ required: true;
10
+ };
11
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ "update:showModal": (value: boolean) => void;
13
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ showModal: {
15
+ type: import("vue").PropType<boolean>;
16
+ required: true;
17
+ };
18
+ concurrencyLimit: {
19
+ type: import("vue").PropType<ConcurrencyV2Limit>;
20
+ required: true;
21
+ };
22
+ }>> & {
23
+ "onUpdate:showModal"?: ((value: boolean) => any) | undefined;
24
+ }, {}, {}>, {
25
+ actions?(_: {}): any;
26
+ }>;
27
+ export default _default;
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -46,8 +46,10 @@ export { default as ConcurrencyLimitMenu } from './ConcurrencyLimitMenu.vue';
46
46
  export { default as ConcurrencyLimitsCreateModal } from './ConcurrencyLimitsCreateModal.vue';
47
47
  export { default as ConcurrencyLimitsPageEmptyState } from './ConcurrencyLimitsPageEmptyState.vue';
48
48
  export { default as ConcurrencyLimitsTable } from './ConcurrencyLimitsTable.vue';
49
+ export { default as ConcurrencyLimitV2Menu } from '../components/ConcurrencyLimitV2Menu.vue';
49
50
  export { default as ConcurrencyLimitsV2Table } from './ConcurrencyLimitsV2Table.vue';
50
51
  export { default as ConcurrencyLimitsV2CreateModal } from './ConcurrencyLimitsV2CreateModal.vue';
52
+ export { default as ConcurrencyLimitsV2UpdateModal } from './ConcurrencyLimitsV2UpdateModal.vue';
51
53
  export { default as ConcurrencyTableActiveSlots } from './ConcurrencyTableActiveSlots.vue';
52
54
  export { default as ConfirmDeleteModal } from './ConfirmDeleteModal.vue';
53
55
  export { default as ConfirmDeleteModalWithSlot } from './ConfirmDeleteModalWithSlot.vue';
@@ -54,6 +54,7 @@ export declare const localization: {
54
54
  mustBeSnakeCase: (property: string) => string;
55
55
  submitNotification: string;
56
56
  updateBlock: string;
57
+ updateConcurrencyLimit: string;
57
58
  updateNotification: string;
58
59
  updateSchedule: string;
59
60
  updateWorkPool: string;
@@ -94,6 +95,7 @@ export declare const localization: {
94
95
  scheduleFlowRun: string;
95
96
  updateBlock: string;
96
97
  updateNotification: string;
98
+ updateConcurrencyLimit: string;
97
99
  updateSchedule: string;
98
100
  updateWorkPool: string;
99
101
  updateWorkPoolQueue: string;
@@ -54,6 +54,7 @@ export declare const en: {
54
54
  mustBeSnakeCase: (property: string) => string;
55
55
  submitNotification: string;
56
56
  updateBlock: string;
57
+ updateConcurrencyLimit: string;
57
58
  updateNotification: string;
58
59
  updateSchedule: string;
59
60
  updateWorkPool: string;
@@ -94,6 +95,7 @@ export declare const en: {
94
95
  scheduleFlowRun: string;
95
96
  updateBlock: string;
96
97
  updateNotification: string;
98
+ updateConcurrencyLimit: string;
97
99
  updateSchedule: string;
98
100
  updateWorkPool: string;
99
101
  updateWorkPoolQueue: string;
@@ -8,7 +8,7 @@ export interface IWorkspaceConcurrencyV2LimitsApi {
8
8
  getConcurrencyV2Limit: (concurrencyV2LimitId: string) => Promise<ConcurrencyV2Limit>;
9
9
  getConcurrencyV2Limits: (filter: ConcurrencyLimitsFilter) => Promise<ConcurrencyV2Limit[]>;
10
10
  createConcurrencyV2Limit: (concurrencyV2Limit: ConcurrencyV2Create) => Promise<ConcurrencyV2Limit>;
11
- updateConcurrencyV2Limit: (concurrencyV2Limit: ConcurrencyV2Update) => Promise<ConcurrencyV2Limit>;
11
+ updateConcurrencyV2Limit: (id: string, concurrencyV2Limit: ConcurrencyV2Update) => Promise<ConcurrencyV2Limit>;
12
12
  deleteConcurrencyV2Limit: (concurrencyV2LimitId: string) => Promise<void>;
13
13
  bulkIncrementActiveSlots: (names: string[], slots: number, mode: string) => Promise<ConcurrencyV2ActiveSlots>;
14
14
  bulkDecrementActiveSlots: (names: string[], slots: number, mode: string) => Promise<ConcurrencyV2ActiveSlots>;
@@ -18,7 +18,7 @@ export declare class WorkspaceConcurrencyV2LimitsApi extends WorkspaceApi {
18
18
  getConcurrencyV2Limits(filter?: ConcurrencyLimitsFilter): Promise<ConcurrencyV2Limit[]>;
19
19
  getConcurrencyV2Limit(id: string): Promise<ConcurrencyV2Limit>;
20
20
  createConcurrencyV2Limit(limit: ConcurrencyV2Create): Promise<ConcurrencyV2Limit>;
21
- updateConcurrencyV2Limit(limit: ConcurrencyV2Update): Promise<ConcurrencyV2Limit>;
21
+ updateConcurrencyV2Limit(id: string, limit: ConcurrencyV2Update): Promise<ConcurrencyV2Limit>;
22
22
  deleteConcurrencyV2Limit(id: string): Promise<void>;
23
23
  bulkIncrementActiveSlots(names: string[], slots: number, mode: string): Promise<ConcurrencyV2ActiveSlots>;
24
24
  bulkDecrementActiveSlots(names: string[], slots: number, mode: string): Promise<ConcurrencyV2ActiveSlots>;
@@ -1,4 +1,4 @@
1
- import { k as O, f as k, $ as b, l as c } from "./index-e00a6af7.mjs";
1
+ import { k as O, f as k, $ as b, l as c } from "./index-a0d15dfc.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-c67ff66c.mjs.map
1538
+ //# sourceMappingURL=viewport.es-ae91b8e8-96b1fc79.mjs.map