chore: update cloudly dependency stack
Align Cloudly with the current typedserver, smartconfig, smartstate, and Docker tooling releases so builds and Docker output stay compatible with the upgraded stack.
This commit is contained in:
@@ -3,15 +3,15 @@ import { formatCronFriendly, formatDuration, formatRelativeTime, getCategoryHue,
|
||||
|
||||
@customElement('cloudly-task-panel')
|
||||
export class CloudlyTaskPanel extends DeesElement {
|
||||
@property({ type: Object }) task: any;
|
||||
@property({ type: Array }) executions: any[] = [];
|
||||
@property({ type: Object }) canceling: Record<string, boolean> = {};
|
||||
@property({ type: Object }) accessor task: any = undefined;
|
||||
@property({ type: Array }) accessor executions: any[] = [];
|
||||
@property({ type: Object }) accessor canceling: Record<string, boolean> = {};
|
||||
|
||||
// Callbacks provided by parent view
|
||||
@property({ attribute: false }) onRun?: (taskName: string) => void;
|
||||
@property({ attribute: false }) onCancel?: (taskName: string) => void;
|
||||
@property({ attribute: false }) onOpenDetails?: (execution: any) => void;
|
||||
@property({ attribute: false }) onOpenLogs?: (execution: any) => void;
|
||||
@property({ attribute: false }) accessor onRun: ((taskName: string) => void) | undefined = undefined;
|
||||
@property({ attribute: false }) accessor onCancel: ((taskName: string) => void) | undefined = undefined;
|
||||
@property({ attribute: false }) accessor onOpenDetails: ((execution: any) => void) | undefined = undefined;
|
||||
@property({ attribute: false }) accessor onOpenLogs: ((execution: any) => void) | undefined = undefined;
|
||||
|
||||
public static styles = [
|
||||
cssManager.defaultStyles,
|
||||
@@ -203,4 +203,3 @@ declare global {
|
||||
'cloudly-task-panel': CloudlyTaskPanel;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user