@livetiles/reach-plugin-types 0.5.0-preview.128 → 0.5.0-preview.130
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/lib/index.d.ts +9 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1464,6 +1464,7 @@ declare module "libs/reach/util/common/src/user/Subscription" {
|
|
|
1464
1464
|
primaryColor: string;
|
|
1465
1465
|
secondaryColor: string;
|
|
1466
1466
|
useHighlightColorOnWhiteBackground?: boolean;
|
|
1467
|
+
customFontColors?: string[];
|
|
1467
1468
|
}
|
|
1468
1469
|
export interface WebHook {
|
|
1469
1470
|
id: string;
|
|
@@ -5500,6 +5501,14 @@ declare module "apps/reach-app/src/app/admin/themes/ThemeContrastPreview" {
|
|
|
5500
5501
|
foregroundColor: string;
|
|
5501
5502
|
}>;
|
|
5502
5503
|
}
|
|
5504
|
+
declare module "apps/reach-app/src/app/admin/themes/CustomFontColors" {
|
|
5505
|
+
import { FC } from 'react';
|
|
5506
|
+
import { Theme } from "libs/reach/util/common/src/index";
|
|
5507
|
+
export const CustomFontColors: FC<{
|
|
5508
|
+
theme: Theme;
|
|
5509
|
+
onApply?: (colors: string[]) => void;
|
|
5510
|
+
}>;
|
|
5511
|
+
}
|
|
5503
5512
|
declare module "apps/reach-app/src/app/admin/themes/Themes" {
|
|
5504
5513
|
import { FC } from 'react';
|
|
5505
5514
|
export const Themes: FC;
|