@dodona/papyros 0.1.951-darkmode → 0.1.954-darkmode
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/Library.js +1 -1
- package/dist/util/HTMLShapes.d.ts +2 -2
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare const svgCircle: (id: string, color: string) => string;
|
|
|
9
9
|
* Wrap text (best a single character) in a circle to provide information to the user
|
|
10
10
|
* @param {string} content The symbol in the circle, e.g. ? of !
|
|
11
11
|
* @param {string} title The information to display when hovering over the element
|
|
12
|
-
* @param {string}
|
|
12
|
+
* @param {string} colorClasses The classes to color the content
|
|
13
13
|
* @return {string} A string representation of the circle with content
|
|
14
14
|
*/
|
|
15
|
-
export declare const inCircle: (content: string, title: string,
|
|
15
|
+
export declare const inCircle: (content: string, title: string, colorClasses: string) => string;
|