react-text-forge 1.2.7 → 1.2.8

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.
@@ -5,8 +5,8 @@ export default ReactTextForge;
5
5
  * @param {object} props
6
6
  * @param {object} props.value - contenu textuel
7
7
  * @param {function} props.setValue - change l'état du contenu
8
- * @param {object} props.fullScreen - Gestion du plein écran
9
- * @param {object} props.showTheme - Gestion du thème
8
+ * @param {boolean} props.fullScreen - Gestion du plein écran
9
+ * @param {boolean} props.showTheme - Gestion du thème
10
10
  * @param {string} props.borderColor - couleur de bordure des éléments
11
11
  * @param {string} props.backgroundColor - couleur d'arrière-plan
12
12
  * @param {string} props.imageColor - couleur des images
@@ -20,8 +20,8 @@ export default ReactTextForge;
20
20
  declare function ReactTextForge({ value, setValue, fullScreen, showTheme, borderColor, backgroundColor, imageColor, borderDarkColor, backgroundDarkColor, imageDarkColor, toggleColor, raccourcis }: {
21
21
  value: object;
22
22
  setValue: Function;
23
- fullScreen: object;
24
- showTheme: object;
23
+ fullScreen: boolean;
24
+ showTheme: boolean;
25
25
  borderColor: string;
26
26
  backgroundColor: string;
27
27
  imageColor: string;