@prefecthq/prefect-ui-library 2.4.36 → 2.5.0
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-70vMgGCO.mjs → FlowRunsPageWithDefaultFilter-yNSEReol.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-70vMgGCO.mjs.map → FlowRunsPageWithDefaultFilter-yNSEReol.mjs.map} +1 -1
- package/dist/{index-fKmiuPrT.mjs → index-Y__ePSjb.mjs} +18008 -17321
- package/dist/{index-fKmiuPrT.mjs.map → index-Y__ePSjb.mjs.map} +1 -1
- package/dist/prefect-ui-library.mjs +421 -420
- package/dist/prefect-ui-library.umd.js +85 -85
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/WorkQueueCombobox.vue.d.ts +6 -0
- package/dist/types/src/components/WorkspaceVariableCombobox.vue.d.ts +21 -0
- package/dist/types/src/components/index.d.ts +2 -1
- package/dist/types/src/compositions/useVariables.d.ts +4 -4
- package/dist/types/src/schemas/components/SchemaForm.vue.d.ts +26 -4
- package/dist/types/src/schemas/components/SchemaFormKindInput.vue.d.ts +6 -0
- package/dist/types/src/schemas/components/SchemaFormProperties.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormProperty.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyAllOf.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyAnyOf.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyArray.vue.d.ts +6 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyArrayItem.vue.d.ts +40 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyBlockDocument.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyDate.vue.d.ts +19 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyDateTime.vue.d.ts +19 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyInput.vue.d.ts +6 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyKindJinja.vue.d.ts +20 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyKindJson.vue.d.ts +26 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyKindWorkspaceVariable.vue.d.ts +20 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyMenu.vue.d.ts +28 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyObject.vue.d.ts +3 -0
- package/dist/types/src/schemas/components/SchemaFormPropertyString.vue.d.ts +29 -0
- package/dist/types/src/schemas/compositions/usePrefectKind.d.ts +6 -0
- package/dist/types/src/schemas/compositions/useSchemaFormKinds.d.ts +4 -0
- package/dist/types/src/schemas/compositions/useSchemaProperty.d.ts +8 -1
- package/dist/types/src/schemas/compositions/useSchemaPropertyInput.d.ts +343 -0
- package/dist/types/src/schemas/mapper.d.ts +34 -1
- package/dist/types/src/schemas/maps/index.d.ts +9 -0
- package/dist/types/src/schemas/maps/schema.d.ts +3 -0
- package/dist/types/src/schemas/types/schema.d.ts +1 -1
- package/dist/types/src/schemas/types/schemaResponse.d.ts +1 -1
- package/dist/types/src/schemas/types/schemaValues.d.ts +4 -5
- package/dist/types/src/schemas/types/schemaValuesValidationResponse.d.ts +15 -0
- package/dist/types/src/schemas/utilities/errors.d.ts +8 -0
- package/dist/types/src/services/WorkspaceSchemasWorkspaceApi.d.ts +8 -0
- package/dist/types/src/services/schemas/properties/SchemaPropertyService.d.ts +3 -3
- package/dist/types/src/services/schemas/utilities.d.ts +3 -3
- package/dist/types/src/utilities/api.d.ts +2 -0
- package/dist/types/src/utilities/components.d.ts +3 -3
- package/package.json +4 -4
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
import { MaybeRefOrGetter, Ref } from 'vue';
|
|
2
|
+
import { SchemaProperty } from '../../schemas/types/schema';
|
|
3
|
+
import { SchemaValueError } from '../../schemas/types/schemaValuesValidationResponse';
|
|
4
|
+
import { SchemaValue } from '../../types';
|
|
5
|
+
export declare function useSchemaPropertyInput(schemaProperty: MaybeRefOrGetter<SchemaProperty>, propertyValue: Ref<SchemaValue>, propertyErrors: MaybeRefOrGetter<SchemaValueError[]>): {
|
|
6
|
+
input: import("vue").ComputedRef<{
|
|
7
|
+
component: {
|
|
8
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
property: {
|
|
10
|
+
type: import("vue").PropType<SchemaProperty>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
value: {
|
|
14
|
+
type: import("vue").PropType<unknown>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
errors: {
|
|
18
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
state: {
|
|
22
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
}>> & {
|
|
26
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
27
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
+
"update:value": (args_0: unknown) => void;
|
|
29
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
property: {
|
|
31
|
+
type: import("vue").PropType<SchemaProperty>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
value: {
|
|
35
|
+
type: import("vue").PropType<unknown>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
errors: {
|
|
39
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
state: {
|
|
43
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
44
|
+
required: true;
|
|
45
|
+
};
|
|
46
|
+
}>> & {
|
|
47
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
48
|
+
}, {}, true, {}, {}, {
|
|
49
|
+
P: {};
|
|
50
|
+
B: {};
|
|
51
|
+
D: {};
|
|
52
|
+
C: {};
|
|
53
|
+
M: {};
|
|
54
|
+
Defaults: {};
|
|
55
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
56
|
+
property: {
|
|
57
|
+
type: import("vue").PropType<SchemaProperty>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
value: {
|
|
61
|
+
type: import("vue").PropType<unknown>;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
errors: {
|
|
65
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
state: {
|
|
69
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
70
|
+
required: true;
|
|
71
|
+
};
|
|
72
|
+
}>> & {
|
|
73
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
74
|
+
}, {}, {}, {}, {}, {}>;
|
|
75
|
+
__isFragment?: undefined;
|
|
76
|
+
__isTeleport?: undefined;
|
|
77
|
+
__isSuspense?: undefined;
|
|
78
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
79
|
+
property: {
|
|
80
|
+
type: import("vue").PropType<SchemaProperty>;
|
|
81
|
+
required: true;
|
|
82
|
+
};
|
|
83
|
+
value: {
|
|
84
|
+
type: import("vue").PropType<unknown>;
|
|
85
|
+
required: true;
|
|
86
|
+
};
|
|
87
|
+
errors: {
|
|
88
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
89
|
+
required: true;
|
|
90
|
+
};
|
|
91
|
+
state: {
|
|
92
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
93
|
+
required: true;
|
|
94
|
+
};
|
|
95
|
+
}>> & {
|
|
96
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
97
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
98
|
+
"update:value": (args_0: unknown) => void;
|
|
99
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
100
|
+
props: Omit<Partial<{}> & Omit<{
|
|
101
|
+
readonly value: unknown;
|
|
102
|
+
readonly state: import("@prefecthq/prefect-design").State;
|
|
103
|
+
readonly errors: SchemaValueError[];
|
|
104
|
+
readonly property: SchemaProperty;
|
|
105
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
106
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
107
|
+
property: {
|
|
108
|
+
type: import("vue").PropType<SchemaProperty>;
|
|
109
|
+
required: true;
|
|
110
|
+
};
|
|
111
|
+
value: {
|
|
112
|
+
type: import("vue").PropType<unknown>;
|
|
113
|
+
required: true;
|
|
114
|
+
};
|
|
115
|
+
errors: {
|
|
116
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
117
|
+
required: true;
|
|
118
|
+
};
|
|
119
|
+
state: {
|
|
120
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
121
|
+
required: true;
|
|
122
|
+
};
|
|
123
|
+
}>> & {
|
|
124
|
+
"onUpdate:value"?: ((args_0: unknown) => any) | undefined;
|
|
125
|
+
}, never>, ""> & Record<string, unknown>;
|
|
126
|
+
} | {
|
|
127
|
+
component: {
|
|
128
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
129
|
+
value: {
|
|
130
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJson>;
|
|
131
|
+
required: true;
|
|
132
|
+
};
|
|
133
|
+
errors: {
|
|
134
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
135
|
+
required: true;
|
|
136
|
+
};
|
|
137
|
+
state: {
|
|
138
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
139
|
+
required: true;
|
|
140
|
+
};
|
|
141
|
+
}>> & {
|
|
142
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
143
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
144
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => void;
|
|
145
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
146
|
+
value: {
|
|
147
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJson>;
|
|
148
|
+
required: true;
|
|
149
|
+
};
|
|
150
|
+
errors: {
|
|
151
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
152
|
+
required: true;
|
|
153
|
+
};
|
|
154
|
+
state: {
|
|
155
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
156
|
+
required: true;
|
|
157
|
+
};
|
|
158
|
+
}>> & {
|
|
159
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
160
|
+
}, {}, true, {}, {}, {
|
|
161
|
+
P: {};
|
|
162
|
+
B: {};
|
|
163
|
+
D: {};
|
|
164
|
+
C: {};
|
|
165
|
+
M: {};
|
|
166
|
+
Defaults: {};
|
|
167
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
168
|
+
value: {
|
|
169
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJson>;
|
|
170
|
+
required: true;
|
|
171
|
+
};
|
|
172
|
+
errors: {
|
|
173
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
174
|
+
required: true;
|
|
175
|
+
};
|
|
176
|
+
state: {
|
|
177
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
178
|
+
required: true;
|
|
179
|
+
};
|
|
180
|
+
}>> & {
|
|
181
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
182
|
+
}, {}, {}, {}, {}, {}>;
|
|
183
|
+
__isFragment?: undefined;
|
|
184
|
+
__isTeleport?: undefined;
|
|
185
|
+
__isSuspense?: undefined;
|
|
186
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
187
|
+
value: {
|
|
188
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJson>;
|
|
189
|
+
required: true;
|
|
190
|
+
};
|
|
191
|
+
errors: {
|
|
192
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
193
|
+
required: true;
|
|
194
|
+
};
|
|
195
|
+
state: {
|
|
196
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
197
|
+
required: true;
|
|
198
|
+
};
|
|
199
|
+
}>> & {
|
|
200
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
201
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
202
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => void;
|
|
203
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
204
|
+
props: Omit<Partial<{}> & Omit<{
|
|
205
|
+
readonly value: import("../../schemas/types/schemaValues").PrefectKindJson;
|
|
206
|
+
readonly state: import("@prefecthq/prefect-design").State;
|
|
207
|
+
readonly errors: SchemaValueError[];
|
|
208
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
209
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
210
|
+
value: {
|
|
211
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJson>;
|
|
212
|
+
required: true;
|
|
213
|
+
};
|
|
214
|
+
errors: {
|
|
215
|
+
type: import("vue").PropType<SchemaValueError[]>;
|
|
216
|
+
required: true;
|
|
217
|
+
};
|
|
218
|
+
state: {
|
|
219
|
+
type: import("vue").PropType<import("@prefecthq/prefect-design").State>;
|
|
220
|
+
required: true;
|
|
221
|
+
};
|
|
222
|
+
}>> & {
|
|
223
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJson) => any) | undefined;
|
|
224
|
+
}, never>, ""> & Record<string, unknown>;
|
|
225
|
+
} | {
|
|
226
|
+
component: {
|
|
227
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
228
|
+
value: {
|
|
229
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJinja>;
|
|
230
|
+
required: true;
|
|
231
|
+
};
|
|
232
|
+
}>> & {
|
|
233
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
234
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
235
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => void;
|
|
236
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
237
|
+
value: {
|
|
238
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJinja>;
|
|
239
|
+
required: true;
|
|
240
|
+
};
|
|
241
|
+
}>> & {
|
|
242
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
243
|
+
}, {}, true, {}, {}, {
|
|
244
|
+
P: {};
|
|
245
|
+
B: {};
|
|
246
|
+
D: {};
|
|
247
|
+
C: {};
|
|
248
|
+
M: {};
|
|
249
|
+
Defaults: {};
|
|
250
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
251
|
+
value: {
|
|
252
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJinja>;
|
|
253
|
+
required: true;
|
|
254
|
+
};
|
|
255
|
+
}>> & {
|
|
256
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
257
|
+
}, {}, {}, {}, {}, {}>;
|
|
258
|
+
__isFragment?: undefined;
|
|
259
|
+
__isTeleport?: undefined;
|
|
260
|
+
__isSuspense?: undefined;
|
|
261
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
262
|
+
value: {
|
|
263
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJinja>;
|
|
264
|
+
required: true;
|
|
265
|
+
};
|
|
266
|
+
}>> & {
|
|
267
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
268
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
269
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => void;
|
|
270
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
271
|
+
props: Omit<Partial<{}> & Omit<{
|
|
272
|
+
readonly value: import("../../schemas/types/schemaValues").PrefectKindJinja;
|
|
273
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
274
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
275
|
+
value: {
|
|
276
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindJinja>;
|
|
277
|
+
required: true;
|
|
278
|
+
};
|
|
279
|
+
}>> & {
|
|
280
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindJinja) => any) | undefined;
|
|
281
|
+
}, never>, ""> & Record<string, unknown>;
|
|
282
|
+
} | {
|
|
283
|
+
component: {
|
|
284
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
285
|
+
value: {
|
|
286
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable>;
|
|
287
|
+
required: true;
|
|
288
|
+
};
|
|
289
|
+
}>> & {
|
|
290
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
291
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
292
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => void;
|
|
293
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
294
|
+
value: {
|
|
295
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable>;
|
|
296
|
+
required: true;
|
|
297
|
+
};
|
|
298
|
+
}>> & {
|
|
299
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
300
|
+
}, {}, true, {}, {}, {
|
|
301
|
+
P: {};
|
|
302
|
+
B: {};
|
|
303
|
+
D: {};
|
|
304
|
+
C: {};
|
|
305
|
+
M: {};
|
|
306
|
+
Defaults: {};
|
|
307
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
308
|
+
value: {
|
|
309
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable>;
|
|
310
|
+
required: true;
|
|
311
|
+
};
|
|
312
|
+
}>> & {
|
|
313
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
314
|
+
}, {}, {}, {}, {}, {}>;
|
|
315
|
+
__isFragment?: undefined;
|
|
316
|
+
__isTeleport?: undefined;
|
|
317
|
+
__isSuspense?: undefined;
|
|
318
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
319
|
+
value: {
|
|
320
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable>;
|
|
321
|
+
required: true;
|
|
322
|
+
};
|
|
323
|
+
}>> & {
|
|
324
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
325
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
326
|
+
"update:value": (args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => void;
|
|
327
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
328
|
+
props: Omit<Partial<{}> & Omit<{
|
|
329
|
+
readonly value: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable;
|
|
330
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
331
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
332
|
+
value: {
|
|
333
|
+
type: import("vue").PropType<import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable>;
|
|
334
|
+
required: true;
|
|
335
|
+
};
|
|
336
|
+
}>> & {
|
|
337
|
+
"onUpdate:value"?: ((args_0: import("../../schemas/types/schemaValues").PrefectKindWorkspaceVariable) => any) | undefined;
|
|
338
|
+
}, never>, ""> & Record<string, unknown>;
|
|
339
|
+
} | {
|
|
340
|
+
component: null;
|
|
341
|
+
props: {};
|
|
342
|
+
}>;
|
|
343
|
+
};
|
|
@@ -1,4 +1,27 @@
|
|
|
1
|
-
|
|
1
|
+
type Map = (...args: any) => any;
|
|
2
|
+
type Maps = Record<string, Record<string, Map>>;
|
|
3
|
+
type MapsMember<T extends Maps, S extends keyof T> = T[S][keyof T[S]];
|
|
4
|
+
type Mappers<T extends Maps, S extends keyof T> = Extract<MapsMember<T, S>, Map>;
|
|
5
|
+
type MapperSourceType<T extends Maps, S extends keyof T> = Parameters<Mappers<T, S>>[0];
|
|
6
|
+
type MapperDestinationType<T extends Maps, S extends keyof T, D extends keyof T[S]> = ReturnType<T[S][D]>;
|
|
7
|
+
export declare class Mapper<T extends Maps> {
|
|
8
|
+
private readonly mapperFunctions;
|
|
9
|
+
constructor(mapperFunctions: T);
|
|
10
|
+
map<S extends keyof T, D extends keyof T[S]>(source: S, value: MapperSourceType<T, S>, destination: D): MapperDestinationType<T, S, D>;
|
|
11
|
+
map<S extends keyof T, D extends keyof T[S]>(source: S, value: MapperSourceType<T, S> | null, destination: D): MapperDestinationType<T, S, D> | null;
|
|
12
|
+
map<S extends keyof T, D extends keyof T[S]>(source: S, value: MapperSourceType<T, S> | undefined, destination: D): MapperDestinationType<T, S, D> | undefined;
|
|
13
|
+
map<S extends keyof T, D extends keyof T[S]>(source: S, value: MapperSourceType<T, S> | null | undefined, destination: D): MapperDestinationType<T, S, D> | null | undefined;
|
|
14
|
+
map<S extends keyof T, D extends keyof T[S]>(source: S, value: MapperSourceType<T, S>[], destination: D): MapperDestinationType<T, S, D>[];
|
|
15
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>>, destination: D): Record<string, MapperDestinationType<T, S, D>>;
|
|
16
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>> | null, destination: D): Record<string, MapperDestinationType<T, S, D>> | null;
|
|
17
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>> | undefined, destination: D): Record<string, MapperDestinationType<T, S, D>> | undefined;
|
|
18
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>> | null | undefined, destination: D): Record<string, MapperDestinationType<T, S, D>> | null | undefined;
|
|
19
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>[]>, destination: D): Record<string, MapperDestinationType<T, S, D>[]>;
|
|
20
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>[]> | null, destination: D): Record<string, MapperDestinationType<T, S, D>[]> | null;
|
|
21
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>[]> | undefined, destination: D): Record<string, MapperDestinationType<T, S, D>[]> | undefined;
|
|
22
|
+
mapEntries<S extends keyof T, D extends keyof T[S]>(source: S, value: Record<string, MapperSourceType<T, S>[]> | null | undefined, destination: D): Record<string, MapperDestinationType<T, S, D>[]> | null | undefined;
|
|
23
|
+
private bindMapper;
|
|
24
|
+
}
|
|
2
25
|
export declare const mapper: Mapper<{
|
|
3
26
|
SchemaResponse: {
|
|
4
27
|
Schema: MapFunction<import("./types/schemaResponse").SchemaResponse, import("./types/schema").Schema>;
|
|
@@ -9,5 +32,15 @@ export declare const mapper: Mapper<{
|
|
|
9
32
|
SchemaPropertiesResponse: {
|
|
10
33
|
SchemaProperties: MapFunction<import("./types/schemaResponse").SchemaPropertiesResponse, import("./types/schema").SchemaProperties>;
|
|
11
34
|
};
|
|
35
|
+
Schema: {
|
|
36
|
+
SchemaResponse: MapFunction<import("./types/schema").Schema, import("./types/schemaResponse").SchemaResponse>;
|
|
37
|
+
};
|
|
38
|
+
SchemaProperty: {
|
|
39
|
+
SchemaPropertyResponse: MapFunction<import("./types/schema").SchemaProperty, import("./types/schemaResponse").SchemaPropertyResponse>;
|
|
40
|
+
};
|
|
41
|
+
SchemaProperties: {
|
|
42
|
+
SchemaPropertiesResponse: MapFunction<import("./types/schema").SchemaProperties, import("./types/schemaResponse").SchemaPropertiesResponse>;
|
|
43
|
+
};
|
|
12
44
|
}>;
|
|
13
45
|
export type MapFunction<S, D> = (this: typeof mapper, source: S) => D;
|
|
46
|
+
export {};
|
|
@@ -8,4 +8,13 @@ export declare const maps: {
|
|
|
8
8
|
SchemaPropertiesResponse: {
|
|
9
9
|
SchemaProperties: import("../mapper").MapFunction<import("../types/schemaResponse").SchemaPropertiesResponse, import("../types/schema").SchemaProperties>;
|
|
10
10
|
};
|
|
11
|
+
Schema: {
|
|
12
|
+
SchemaResponse: import("../mapper").MapFunction<import("../types/schema").Schema, import("../types/schemaResponse").SchemaResponse>;
|
|
13
|
+
};
|
|
14
|
+
SchemaProperty: {
|
|
15
|
+
SchemaPropertyResponse: import("../mapper").MapFunction<import("../types/schema").SchemaProperty, import("../types/schemaResponse").SchemaPropertyResponse>;
|
|
16
|
+
};
|
|
17
|
+
SchemaProperties: {
|
|
18
|
+
SchemaPropertiesResponse: import("../mapper").MapFunction<import("../types/schema").SchemaProperties, import("../types/schemaResponse").SchemaPropertiesResponse>;
|
|
19
|
+
};
|
|
11
20
|
};
|
|
@@ -4,3 +4,6 @@ import { SchemaPropertiesResponse, SchemaPropertyResponse, SchemaResponse } from
|
|
|
4
4
|
export declare const mapSchemaResponseToSchema: MapFunction<SchemaResponse, Schema>;
|
|
5
5
|
export declare const mapSchemaPropertiesResponseToSchemaProperties: MapFunction<SchemaPropertiesResponse, SchemaProperties>;
|
|
6
6
|
export declare const mapSchemaPropertyResponseToSchemaProperty: MapFunction<SchemaPropertyResponse, SchemaProperty>;
|
|
7
|
+
export declare const mapSchemaToSchemaResponse: MapFunction<Schema, SchemaResponse>;
|
|
8
|
+
export declare const mapSchemaPropertiesToSchemaPropertiesResponse: MapFunction<SchemaProperties, SchemaPropertiesResponse>;
|
|
9
|
+
export declare const mapSchemaPropertyToSchemaPropertyResponse: MapFunction<SchemaProperty, SchemaPropertyResponse>;
|
|
@@ -2,7 +2,7 @@ import { Simplify } from '../../types/utilities';
|
|
|
2
2
|
export declare const schemaTypes: readonly ["null", "string", "boolean", "integer", "number", "array", "object"], isSchemaType: (value: unknown) => value is "string" | "number" | "boolean" | "object" | "null" | "integer" | "array";
|
|
3
3
|
export type SchemaPropertyType = typeof schemaTypes[number];
|
|
4
4
|
export declare function isSchemaPropertyType<T extends SchemaPropertyType | undefined>(value: unknown, type: T): value is T;
|
|
5
|
-
export declare const schemaStringFormat: readonly ["date", "date-time", "
|
|
5
|
+
export declare const schemaStringFormat: readonly ["date", "date-time", "password"], isSchemaStringFormat: (value: unknown) => value is "date" | "date-time" | "password";
|
|
6
6
|
export type SchemaStringFormat = typeof schemaStringFormat[number];
|
|
7
7
|
export type SchemaDefinition = `#/definitions/${string}`;
|
|
8
8
|
export type SchemaProperties = Record<string, SchemaProperty>;
|
|
@@ -13,7 +13,7 @@ export type SchemaPropertyResponse = {
|
|
|
13
13
|
description?: string;
|
|
14
14
|
enum?: unknown[];
|
|
15
15
|
format?: SchemaStringFormat;
|
|
16
|
-
items?: SchemaPropertyResponse;
|
|
16
|
+
items?: SchemaPropertyResponse | SchemaPropertyResponse[];
|
|
17
17
|
properties?: SchemaPropertiesResponse;
|
|
18
18
|
required?: string[];
|
|
19
19
|
title?: string;
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { Simplify } from '../../types/utilities';
|
|
2
1
|
export type SchemaValue = unknown;
|
|
3
2
|
export type SchemaValues = Record<string, SchemaValue>;
|
|
4
|
-
export declare const prefectKinds: readonly [
|
|
3
|
+
export declare const prefectKinds: readonly ["none", "json", "jinja", "workspace_variable"], isPrefectKind: (value: unknown) => value is "json" | "none" | "jinja" | "workspace_variable";
|
|
5
4
|
export type PrefectKind = typeof prefectKinds[number];
|
|
6
5
|
type BasePrefectKindValue<TKind extends PrefectKind = PrefectKind, TRest extends Record<string, unknown> = Record<string, unknown>> = {
|
|
7
6
|
__prefect_kind: TKind;
|
|
8
7
|
} & TRest;
|
|
9
8
|
export type PrefectKindValue = PrefectKindNull | PrefectKindJinja | PrefectKindJson | PrefectKindWorkspaceVariable;
|
|
10
|
-
export declare function isPrefectKindValue<T extends PrefectKind = PrefectKind>(value: unknown, kind?: T): value is
|
|
9
|
+
export declare function isPrefectKindValue<T extends PrefectKind = PrefectKind>(value: unknown, kind?: T): value is PrefectKindValue & {
|
|
11
10
|
__prefect_kind: T;
|
|
12
|
-
}
|
|
13
|
-
export type PrefectKindNull = BasePrefectKindValue<
|
|
11
|
+
};
|
|
12
|
+
export type PrefectKindNull = BasePrefectKindValue<'none', {
|
|
14
13
|
value: unknown;
|
|
15
14
|
}>;
|
|
16
15
|
export declare function isPrefectKindNull(value: unknown): value is PrefectKindNull;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type SchemaValueError = string | SchemaValuePropertyError | SchemaValueIndexError;
|
|
2
|
+
export type SchemaValuePropertyError = {
|
|
3
|
+
property: string;
|
|
4
|
+
errors: SchemaValueError[];
|
|
5
|
+
};
|
|
6
|
+
export declare function isSchemaValuePropertyError(value: SchemaValueError): value is SchemaValuePropertyError;
|
|
7
|
+
export type SchemaValueIndexError = {
|
|
8
|
+
index: number;
|
|
9
|
+
errors: SchemaValueError[];
|
|
10
|
+
};
|
|
11
|
+
export declare function isSchemaValueIndexError(value: SchemaValueError): value is SchemaValueIndexError;
|
|
12
|
+
export type SchemaValuesValidationResponse = {
|
|
13
|
+
errors: SchemaValueError[];
|
|
14
|
+
valid: boolean;
|
|
15
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { State } from '@prefecthq/prefect-design';
|
|
2
|
+
import { SchemaValueError } from '../../schemas/types/schemaValuesValidationResponse';
|
|
3
|
+
export declare function getSchemaPropertyErrors(propertyKeyOrIndex: string | number, errors: SchemaValueError[]): SchemaValueError[];
|
|
4
|
+
export type SchemaPropertyError = {
|
|
5
|
+
state: State;
|
|
6
|
+
message: string | undefined;
|
|
7
|
+
};
|
|
8
|
+
export declare function getSchemaPropertyError(errors: SchemaValueError[]): SchemaPropertyError;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Schema } from '../schemas/types/schema';
|
|
2
|
+
import { SchemaValues } from '../schemas/types/schemaValues';
|
|
3
|
+
import { SchemaValuesValidationResponse } from '../schemas/types/schemaValuesValidationResponse';
|
|
4
|
+
import { WorkspaceApi } from '../services';
|
|
5
|
+
export declare class WorkspaceSchemasWorkspaceApi extends WorkspaceApi {
|
|
6
|
+
protected routePrefix: string;
|
|
7
|
+
validate(schema: Schema, values: SchemaValues): Promise<SchemaValuesValidationResponse>;
|
|
8
|
+
}
|
|
@@ -37,12 +37,12 @@ export declare abstract class SchemaPropertyService {
|
|
|
37
37
|
protected get attrs(): SchemaPropertyInputAttrs;
|
|
38
38
|
protected property: SchemaProperty;
|
|
39
39
|
protected level: number;
|
|
40
|
-
protected withProps: <T extends ComponentDefinition>(...args: Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? [component: T, props?: Omit<InstanceType<T>["$props"], "modelValue"> | undefined] : [component: T, props: Omit<InstanceType<T>["$props"], "modelValue">]) => Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? {
|
|
40
|
+
protected withProps: <T extends ComponentDefinition>(...args: Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? [component: T, props?: (Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>) | undefined] : [component: T, props: Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>]) => Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? {
|
|
41
41
|
component: T;
|
|
42
|
-
props?: Omit<InstanceType<T>["$props"], "modelValue"> | undefined;
|
|
42
|
+
props?: (Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>) | undefined;
|
|
43
43
|
} : {
|
|
44
44
|
component: T;
|
|
45
|
-
props: Omit<InstanceType<T>["$props"], "modelValue">;
|
|
45
|
+
props: Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>;
|
|
46
46
|
};
|
|
47
47
|
constructor({ property, level }: SchemaPropertyServiceSource);
|
|
48
48
|
mapResponseValue(value: SchemaValue): SchemaValue;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { SchemaProperty, SchemaPropertyInputAttrs, Schema, SchemaValues, SchemaValue, SchemaPropertyAnyOf, SchemaPropertyAllOf } from '../../types/schemas';
|
|
2
2
|
import { ValidationMethod } from '../../utilities/validation';
|
|
3
3
|
export type SchemaPropertyComponentWithProps = ReturnType<typeof schemaPropertyComponentWithProps> | null;
|
|
4
|
-
export declare const schemaPropertyComponentWithProps: <T extends import("../../utilities").ComponentDefinition>(...args: Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? [component: T, props?: Omit<InstanceType<T>["$props"], "modelValue"> | undefined] : [component: T, props: Omit<InstanceType<T>["$props"], "modelValue">]) => Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? {
|
|
4
|
+
export declare const schemaPropertyComponentWithProps: <T extends import("../../utilities").ComponentDefinition>(...args: Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? [component: T, props?: (Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>) | undefined] : [component: T, props: Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>]) => Omit<Partial<InstanceType<T>["$props"]>, "modelValue"> extends Omit<InstanceType<T>["$props"], "modelValue"> ? {
|
|
5
5
|
component: T;
|
|
6
|
-
props?: Omit<InstanceType<T>["$props"], "modelValue"> | undefined;
|
|
6
|
+
props?: (Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>) | undefined;
|
|
7
7
|
} : {
|
|
8
8
|
component: T;
|
|
9
|
-
props: Omit<InstanceType<T>["$props"], "modelValue">;
|
|
9
|
+
props: Omit<InstanceType<T>["$props"], "modelValue"> & Record<string, unknown>;
|
|
10
10
|
};
|
|
11
11
|
export declare function getSchemaDefaultValues(schema: Schema): SchemaValues;
|
|
12
12
|
export declare function getSchemaPropertyDefaultValue(property: SchemaProperty, level?: number): SchemaValue;
|
|
@@ -16,6 +16,7 @@ import { WorkspaceFlowsApi } from '../services/WorkspaceFlowsApi';
|
|
|
16
16
|
import { WorkspaceLogsApi } from '../services/WorkspaceLogsApi';
|
|
17
17
|
import { WorkspaceNotificationsApi } from '../services/WorkspaceNotificationsApi';
|
|
18
18
|
import { WorkspaceSavedSearchesApi } from '../services/WorkspaceSavedSearchesApi';
|
|
19
|
+
import { WorkspaceSchemasWorkspaceApi } from '../services/WorkspaceSchemasWorkspaceApi';
|
|
19
20
|
import { WorkspaceTaskRunsApi } from '../services/WorkspaceTaskRunsApi';
|
|
20
21
|
import { WorkspaceVariablesApi } from '../services/WorkspaceVariablesApi';
|
|
21
22
|
import { WorkspaceWorkPoolQueuesApi } from '../services/WorkspaceWorkPoolQueuesApi';
|
|
@@ -45,6 +46,7 @@ export declare function createApi(workspaceConfig: WorkspaceApiConfig): {
|
|
|
45
46
|
workPools: import("@prefecthq/vue-compositions").CreateActions<WorkspaceWorkPoolsApi>;
|
|
46
47
|
workPoolWorkers: import("@prefecthq/vue-compositions").CreateActions<WorkspaceWorkPoolWorkersApi>;
|
|
47
48
|
workQueues: import("@prefecthq/vue-compositions").CreateActions<WorkspaceWorkQueuesApi>;
|
|
49
|
+
schemas: import("@prefecthq/vue-compositions").CreateActions<WorkspaceSchemasWorkspaceApi>;
|
|
48
50
|
};
|
|
49
51
|
export type CreateApi = ReturnType<typeof createApi>;
|
|
50
52
|
export declare const workspaceApiKey: InjectionKey<CreateApi>;
|
|
@@ -5,13 +5,13 @@ export type ComponentDefinition = {
|
|
|
5
5
|
new (...args: unknown[]): Component;
|
|
6
6
|
};
|
|
7
7
|
type NoInfer<T> = T & {};
|
|
8
|
-
type WithPropsArgs<T extends ComponentDefinition, E extends string = '', P = InstanceType<T>['$props']> = Omit<Partial<P>, E> extends Omit<P, E> ? [component: T, props?: Omit<P, E>] : [component: T, props: Omit<P, E>];
|
|
8
|
+
type WithPropsArgs<T extends ComponentDefinition, E extends string = '', P = InstanceType<T>['$props']> = Omit<Partial<P>, E> extends Omit<P, E> ? [component: T, props?: Omit<P, E> & Record<string, unknown>] : [component: T, props: Omit<P, E> & Record<string, unknown>];
|
|
9
9
|
type WithProps<T extends ComponentDefinition, E extends string = '', P = InstanceType<T>['$props']> = Omit<Partial<P>, E> extends Omit<P, E> ? {
|
|
10
10
|
component: T;
|
|
11
|
-
props?: Omit<P, E>;
|
|
11
|
+
props?: Omit<P, E> & Record<string, unknown>;
|
|
12
12
|
} : {
|
|
13
13
|
component: T;
|
|
14
|
-
props: Omit<P, E>;
|
|
14
|
+
props: Omit<P, E> & Record<string, unknown>;
|
|
15
15
|
};
|
|
16
16
|
export declare function withProps<T extends ComponentDefinition>(...[component, props]: WithPropsArgs<T>): WithProps<NoInfer<T>>;
|
|
17
17
|
export declare function withPropsWithoutExcluded<T extends ComponentDefinition, E extends string>(excluded: E | E[], ...[component, props]: WithPropsArgs<T, E>): WithProps<NoInfer<T>, E>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/lodash.camelcase": "4.3.9",
|
|
44
44
|
"@types/lodash.debounce": "4.0.9",
|
|
45
45
|
"@types/lodash.merge": "4.6.9",
|
|
46
|
-
"@types/node": "^20.11.
|
|
46
|
+
"@types/node": "^20.11.16",
|
|
47
47
|
"@types/prismjs": "^1.26.3",
|
|
48
48
|
"@vitejs/plugin-vue": "5.0.3",
|
|
49
49
|
"auto-changelog": "^2.4.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"eslint": "8.56.0",
|
|
52
52
|
"lodash.camelcase": "4.3.0",
|
|
53
53
|
"lodash.debounce": "4.0.8",
|
|
54
|
-
"postcss": "8.4.
|
|
54
|
+
"postcss": "8.4.34",
|
|
55
55
|
"tailwindcss": "3.4.1",
|
|
56
56
|
"tsc-alias": "1.8.8",
|
|
57
57
|
"typescript": "5.3.3",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@prefecthq/graphs": "2.1.9",
|
|
73
73
|
"@types/lodash.isequal": "4.5.8",
|
|
74
74
|
"axios": "1.6.2",
|
|
75
|
-
"cronstrue": "^2.
|
|
75
|
+
"cronstrue": "^2.48.0",
|
|
76
76
|
"d3": "7.8.5",
|
|
77
77
|
"date-fns": "2.30.0",
|
|
78
78
|
"date-fns-tz": "1.3.7",
|