@dodona/papyros 0.1.39 → 0.1.40
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/OutputManager.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/util/Util.d.ts +2 -2
- package/package.json +1 -1
package/dist/util/Util.d.ts
CHANGED
|
@@ -7,9 +7,9 @@ export declare function renderSelect<T>(selectId: string, options: Array<T>, opt
|
|
|
7
7
|
export declare function addListener<T extends string>(elementId: string, onEvent: (e: T) => void, eventType?: string, attribute?: string): void;
|
|
8
8
|
export declare function removeSelection(selectId: string): void;
|
|
9
9
|
export interface RenderOptions {
|
|
10
|
-
|
|
10
|
+
parentElementId: string;
|
|
11
11
|
classNames?: string;
|
|
12
|
-
|
|
12
|
+
attributes?: Map<string, string>;
|
|
13
13
|
}
|
|
14
14
|
export declare function getElement(element: string | HTMLElement): HTMLElement;
|
|
15
15
|
export declare function renderWithOptions(options: RenderOptions, content: string | HTMLElement): HTMLElement;
|