(core) Fix test util and upgrade fixtures

Summary:
Fixes a test util that broke after a sync with grist-core, and upgrades
fixtures after a migration was added.

Test Plan: N/A

Reviewers: paulfitz

Reviewed By: paulfitz

Subscribers: paulfitz

Differential Revision: https://phab.getgrist.com/D3810
This commit is contained in:
George Gevoian
2023-03-01 10:21:19 -05:00
parent a8b4a67b9f
commit aa3faae25b
9 changed files with 84 additions and 58 deletions

View File

@@ -296,6 +296,9 @@ export const ThemeColors = t.iface([], {
"menu-toggle-active-fg": "string",
"menu-toggle-bg": "string",
"menu-toggle-border": "string",
"info-button-fg": "string",
"info-button-hover-fg": "string",
"info-button-active-fg": "string",
"button-group-fg": "string",
"button-group-light-fg": "string",
"button-group-bg": "string",

View File

@@ -387,6 +387,11 @@ export interface ThemeColors {
'menu-toggle-bg': string;
'menu-toggle-border': string;
/* Info Button */
'info-button-fg': string;
'info-button-hover-fg': string;
'info-button-active-fg': string;
/* Button Groups */
'button-group-fg': string;
'button-group-light-fg': string;

View File

@@ -366,6 +366,11 @@ export const GristDark: ThemeColors = {
'menu-toggle-bg': '#32323F',
'menu-toggle-border': '#A4A4A4',
/* Info Button */
'info-button-fg': '#8F8F8F',
'info-button-hover-fg': '#707070',
'info-button-active-fg': '#5C5C5C',
/* Button Groups */
'button-group-fg': '#EFEFEF',
'button-group-light-fg': '#A4A4A4',

View File

@@ -366,6 +366,11 @@ export const GristLight: ThemeColors = {
'menu-toggle-bg': 'white',
'menu-toggle-border': '#929299',
/* Info Button */
'info-button-fg': '#8F8F8F',
'info-button-hover-fg': '#707070',
'info-button-active-fg': '#5C5C5C',
/* Button Groups */
'button-group-fg': '#262633',
'button-group-light-fg': '#929299',