@dodona/papyros 0.1.39 → 0.1.43

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.
@@ -4,6 +4,7 @@ export declare const OUTPUT_TA_ID = "code-output-area";
4
4
  export declare const INPUT_AREA_WRAPPER_ID = "code-input-area-wrapper";
5
5
  export declare const INPUT_TA_ID = "code-input-area";
6
6
  export declare const EDITOR_WRAPPER_ID = "code-area";
7
+ export declare const PANEL_WRAPPER_ID = "code-status-panel";
7
8
  export declare const STATE_SPINNER_ID = "state-spinner";
8
9
  export declare const APPLICATION_STATE_TEXT_ID = "application-state-text";
9
10
  export declare const RUN_BTN_ID = "run-code-btn";
@@ -9,7 +9,7 @@ export interface FriendlyError {
9
9
  where?: string;
10
10
  }
11
11
  export declare class OutputManager {
12
- OUTPUT_CONTENT_ID: string;
12
+ outputAreaId: string;
13
13
  get outputArea(): HTMLElement;
14
14
  renderNextElement(html: string): void;
15
15
  spanify(text: string, ignoreEmpty?: boolean): string;