@sprucelabs/heartwood-view-controllers 121.3.7 → 121.3.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.
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/themeFonts.schema.js +19 -12
- package/build/.spruce/schemas/schemas.types.d.ts +27 -16
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/themeFonts.schema.js +19 -12
- package/build/esm/.spruce/schemas/schemas.types.d.ts +27 -16
- package/build/esm/schemas/v2021_02_11/theme.builder.d.ts +88 -0
- package/build/esm/schemas/v2021_02_11/theme.builder.js +16 -8
- package/build/schemas/v2021_02_11/theme.builder.d.ts +88 -0
- package/build/schemas/v2021_02_11/theme.builder.js +16 -8
- package/package.json +1 -1
|
@@ -19,32 +19,39 @@ const themeFontsSchema = {
|
|
|
19
19
|
hint: 'The font used for the largest headers.',
|
|
20
20
|
options: { schema: fontSetting_schema_1.default, }
|
|
21
21
|
},
|
|
22
|
-
/** Header
|
|
22
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
23
|
+
'altHeaderFont': {
|
|
24
|
+
label: 'Alternative Header Font',
|
|
25
|
+
type: 'schema',
|
|
26
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.',
|
|
27
|
+
options: { schema: fontSetting_schema_1.default, }
|
|
28
|
+
},
|
|
29
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
23
30
|
'headerTwoFont': {
|
|
24
|
-
label: 'Header
|
|
31
|
+
label: 'Header Two Font',
|
|
25
32
|
type: 'schema',
|
|
26
|
-
hint: 'The font used for the largest headers.',
|
|
33
|
+
hint: 'The font used for the second largest headers.',
|
|
27
34
|
options: { schema: fontSetting_schema_1.default, }
|
|
28
35
|
},
|
|
29
|
-
/** Header
|
|
36
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
30
37
|
'headerThreeFont': {
|
|
31
|
-
label: 'Header
|
|
38
|
+
label: 'Header Three Font',
|
|
32
39
|
type: 'schema',
|
|
33
|
-
hint: 'The font used for
|
|
40
|
+
hint: 'The font used for third largest headers.',
|
|
34
41
|
options: { schema: fontSetting_schema_1.default, }
|
|
35
42
|
},
|
|
36
|
-
/**
|
|
43
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
37
44
|
'bodyFont': {
|
|
38
|
-
label: '
|
|
45
|
+
label: 'Body Font',
|
|
39
46
|
type: 'schema',
|
|
40
|
-
hint: 'The font used for the
|
|
47
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.',
|
|
41
48
|
options: { schema: fontSetting_schema_1.default, }
|
|
42
49
|
},
|
|
43
|
-
/**
|
|
50
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
44
51
|
'footerFont': {
|
|
45
|
-
label: '
|
|
52
|
+
label: 'Footer Font',
|
|
46
53
|
type: 'schema',
|
|
47
|
-
hint: 'The font used for
|
|
54
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).',
|
|
48
55
|
options: { schema: fontSetting_schema_1.default, }
|
|
49
56
|
},
|
|
50
57
|
}
|
|
@@ -1993,13 +1993,15 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1993
1993
|
interface ThemeFonts {
|
|
1994
1994
|
/** Header One Font. The font used for the largest headers. */
|
|
1995
1995
|
'headerOneFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1996
|
-
/** Header
|
|
1996
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
1997
|
+
'altHeaderFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1998
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
1997
1999
|
'headerTwoFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1998
|
-
/** Header
|
|
2000
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
1999
2001
|
'headerThreeFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2000
|
-
/**
|
|
2002
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
2001
2003
|
'bodyFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2002
|
-
/**
|
|
2004
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
2003
2005
|
'footerFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2004
2006
|
}
|
|
2005
2007
|
interface ThemeFontsSchema extends SpruceSchema.Schema {
|
|
@@ -2018,38 +2020,47 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2018
2020
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2019
2021
|
};
|
|
2020
2022
|
};
|
|
2021
|
-
/** Header
|
|
2023
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
2024
|
+
'altHeaderFont': {
|
|
2025
|
+
label: 'Alternative Header Font';
|
|
2026
|
+
type: 'schema';
|
|
2027
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.';
|
|
2028
|
+
options: {
|
|
2029
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2030
|
+
};
|
|
2031
|
+
};
|
|
2032
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
2022
2033
|
'headerTwoFont': {
|
|
2023
|
-
label: 'Header
|
|
2034
|
+
label: 'Header Two Font';
|
|
2024
2035
|
type: 'schema';
|
|
2025
|
-
hint: 'The font used for the largest headers.';
|
|
2036
|
+
hint: 'The font used for the second largest headers.';
|
|
2026
2037
|
options: {
|
|
2027
2038
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2028
2039
|
};
|
|
2029
2040
|
};
|
|
2030
|
-
/** Header
|
|
2041
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
2031
2042
|
'headerThreeFont': {
|
|
2032
|
-
label: 'Header
|
|
2043
|
+
label: 'Header Three Font';
|
|
2033
2044
|
type: 'schema';
|
|
2034
|
-
hint: 'The font used for
|
|
2045
|
+
hint: 'The font used for third largest headers.';
|
|
2035
2046
|
options: {
|
|
2036
2047
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2037
2048
|
};
|
|
2038
2049
|
};
|
|
2039
|
-
/**
|
|
2050
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
2040
2051
|
'bodyFont': {
|
|
2041
|
-
label: '
|
|
2052
|
+
label: 'Body Font';
|
|
2042
2053
|
type: 'schema';
|
|
2043
|
-
hint: 'The font used for the
|
|
2054
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.';
|
|
2044
2055
|
options: {
|
|
2045
2056
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2046
2057
|
};
|
|
2047
2058
|
};
|
|
2048
|
-
/**
|
|
2059
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
2049
2060
|
'footerFont': {
|
|
2050
|
-
label: '
|
|
2061
|
+
label: 'Footer Font';
|
|
2051
2062
|
type: 'schema';
|
|
2052
|
-
hint: 'The font used for
|
|
2063
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).';
|
|
2053
2064
|
options: {
|
|
2054
2065
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2055
2066
|
};
|
|
@@ -14,32 +14,39 @@ const themeFontsSchema = {
|
|
|
14
14
|
hint: 'The font used for the largest headers.',
|
|
15
15
|
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
16
16
|
},
|
|
17
|
-
/** Header
|
|
17
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
18
|
+
'altHeaderFont': {
|
|
19
|
+
label: 'Alternative Header Font',
|
|
20
|
+
type: 'schema',
|
|
21
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.',
|
|
22
|
+
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
23
|
+
},
|
|
24
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
18
25
|
'headerTwoFont': {
|
|
19
|
-
label: 'Header
|
|
26
|
+
label: 'Header Two Font',
|
|
20
27
|
type: 'schema',
|
|
21
|
-
hint: 'The font used for the largest headers.',
|
|
28
|
+
hint: 'The font used for the second largest headers.',
|
|
22
29
|
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
23
30
|
},
|
|
24
|
-
/** Header
|
|
31
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
25
32
|
'headerThreeFont': {
|
|
26
|
-
label: 'Header
|
|
33
|
+
label: 'Header Three Font',
|
|
27
34
|
type: 'schema',
|
|
28
|
-
hint: 'The font used for
|
|
35
|
+
hint: 'The font used for third largest headers.',
|
|
29
36
|
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
30
37
|
},
|
|
31
|
-
/**
|
|
38
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
32
39
|
'bodyFont': {
|
|
33
|
-
label: '
|
|
40
|
+
label: 'Body Font',
|
|
34
41
|
type: 'schema',
|
|
35
|
-
hint: 'The font used for the
|
|
42
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.',
|
|
36
43
|
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
37
44
|
},
|
|
38
|
-
/**
|
|
45
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
39
46
|
'footerFont': {
|
|
40
|
-
label: '
|
|
47
|
+
label: 'Footer Font',
|
|
41
48
|
type: 'schema',
|
|
42
|
-
hint: 'The font used for
|
|
49
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).',
|
|
43
50
|
options: { schema: fontSettingSchema_v2021_02_11, }
|
|
44
51
|
},
|
|
45
52
|
}
|
|
@@ -1993,13 +1993,15 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1993
1993
|
interface ThemeFonts {
|
|
1994
1994
|
/** Header One Font. The font used for the largest headers. */
|
|
1995
1995
|
'headerOneFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1996
|
-
/** Header
|
|
1996
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
1997
|
+
'altHeaderFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1998
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
1997
1999
|
'headerTwoFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
1998
|
-
/** Header
|
|
2000
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
1999
2001
|
'headerThreeFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2000
|
-
/**
|
|
2002
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
2001
2003
|
'bodyFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2002
|
-
/**
|
|
2004
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
2003
2005
|
'footerFont'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSetting | undefined | null;
|
|
2004
2006
|
}
|
|
2005
2007
|
interface ThemeFontsSchema extends SpruceSchema.Schema {
|
|
@@ -2018,38 +2020,47 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2018
2020
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2019
2021
|
};
|
|
2020
2022
|
};
|
|
2021
|
-
/** Header
|
|
2023
|
+
/** Alternative Header Font. The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller. */
|
|
2024
|
+
'altHeaderFont': {
|
|
2025
|
+
label: 'Alternative Header Font';
|
|
2026
|
+
type: 'schema';
|
|
2027
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.';
|
|
2028
|
+
options: {
|
|
2029
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2030
|
+
};
|
|
2031
|
+
};
|
|
2032
|
+
/** Header Two Font. The font used for the second largest headers. */
|
|
2022
2033
|
'headerTwoFont': {
|
|
2023
|
-
label: 'Header
|
|
2034
|
+
label: 'Header Two Font';
|
|
2024
2035
|
type: 'schema';
|
|
2025
|
-
hint: 'The font used for the largest headers.';
|
|
2036
|
+
hint: 'The font used for the second largest headers.';
|
|
2026
2037
|
options: {
|
|
2027
2038
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2028
2039
|
};
|
|
2029
2040
|
};
|
|
2030
|
-
/** Header
|
|
2041
|
+
/** Header Three Font. The font used for third largest headers. */
|
|
2031
2042
|
'headerThreeFont': {
|
|
2032
|
-
label: 'Header
|
|
2043
|
+
label: 'Header Three Font';
|
|
2033
2044
|
type: 'schema';
|
|
2034
|
-
hint: 'The font used for
|
|
2045
|
+
hint: 'The font used for third largest headers.';
|
|
2035
2046
|
options: {
|
|
2036
2047
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2037
2048
|
};
|
|
2038
2049
|
};
|
|
2039
|
-
/**
|
|
2050
|
+
/** Body Font. The font used for the body text on all cards, toolbelt, etc. */
|
|
2040
2051
|
'bodyFont': {
|
|
2041
|
-
label: '
|
|
2052
|
+
label: 'Body Font';
|
|
2042
2053
|
type: 'schema';
|
|
2043
|
-
hint: 'The font used for the
|
|
2054
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.';
|
|
2044
2055
|
options: {
|
|
2045
2056
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2046
2057
|
};
|
|
2047
2058
|
};
|
|
2048
|
-
/**
|
|
2059
|
+
/** Footer Font. The font used for footers (but can be overriden by card footer styles). */
|
|
2049
2060
|
'footerFont': {
|
|
2050
|
-
label: '
|
|
2061
|
+
label: 'Footer Font';
|
|
2051
2062
|
type: 'schema';
|
|
2052
|
-
hint: 'The font used for
|
|
2063
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).';
|
|
2053
2064
|
options: {
|
|
2054
2065
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontSettingSchema;
|
|
2055
2066
|
};
|
|
@@ -237,6 +237,28 @@ declare const _default: {
|
|
|
237
237
|
label: string;
|
|
238
238
|
hint: string;
|
|
239
239
|
};
|
|
240
|
+
altHeaderFont: {
|
|
241
|
+
type: "schema";
|
|
242
|
+
options: {
|
|
243
|
+
schema: {
|
|
244
|
+
id: string;
|
|
245
|
+
fields: {
|
|
246
|
+
fontFamily: {
|
|
247
|
+
type: "text";
|
|
248
|
+
label: string;
|
|
249
|
+
hint: string;
|
|
250
|
+
};
|
|
251
|
+
fontSize: {
|
|
252
|
+
type: "text";
|
|
253
|
+
label: string;
|
|
254
|
+
hint: string;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
label: string;
|
|
260
|
+
hint: string;
|
|
261
|
+
};
|
|
240
262
|
headerTwoFont: {
|
|
241
263
|
type: "schema";
|
|
242
264
|
options: {
|
|
@@ -399,6 +421,28 @@ declare const _default: {
|
|
|
399
421
|
label: string;
|
|
400
422
|
hint: string;
|
|
401
423
|
};
|
|
424
|
+
altHeaderFont: {
|
|
425
|
+
type: "schema";
|
|
426
|
+
options: {
|
|
427
|
+
schema: {
|
|
428
|
+
id: string;
|
|
429
|
+
fields: {
|
|
430
|
+
fontFamily: {
|
|
431
|
+
type: "text";
|
|
432
|
+
label: string;
|
|
433
|
+
hint: string;
|
|
434
|
+
};
|
|
435
|
+
fontSize: {
|
|
436
|
+
type: "text";
|
|
437
|
+
label: string;
|
|
438
|
+
hint: string;
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
label: string;
|
|
444
|
+
hint: string;
|
|
445
|
+
};
|
|
402
446
|
headerTwoFont: {
|
|
403
447
|
type: "schema";
|
|
404
448
|
options: {
|
|
@@ -561,6 +605,28 @@ declare const _default: {
|
|
|
561
605
|
label: string;
|
|
562
606
|
hint: string;
|
|
563
607
|
};
|
|
608
|
+
altHeaderFont: {
|
|
609
|
+
type: "schema";
|
|
610
|
+
options: {
|
|
611
|
+
schema: {
|
|
612
|
+
id: string;
|
|
613
|
+
fields: {
|
|
614
|
+
fontFamily: {
|
|
615
|
+
type: "text";
|
|
616
|
+
label: string;
|
|
617
|
+
hint: string;
|
|
618
|
+
};
|
|
619
|
+
fontSize: {
|
|
620
|
+
type: "text";
|
|
621
|
+
label: string;
|
|
622
|
+
hint: string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
};
|
|
627
|
+
label: string;
|
|
628
|
+
hint: string;
|
|
629
|
+
};
|
|
564
630
|
headerTwoFont: {
|
|
565
631
|
type: "schema";
|
|
566
632
|
options: {
|
|
@@ -723,6 +789,28 @@ declare const _default: {
|
|
|
723
789
|
label: string;
|
|
724
790
|
hint: string;
|
|
725
791
|
};
|
|
792
|
+
altHeaderFont: {
|
|
793
|
+
type: "schema";
|
|
794
|
+
options: {
|
|
795
|
+
schema: {
|
|
796
|
+
id: string;
|
|
797
|
+
fields: {
|
|
798
|
+
fontFamily: {
|
|
799
|
+
type: "text";
|
|
800
|
+
label: string;
|
|
801
|
+
hint: string;
|
|
802
|
+
};
|
|
803
|
+
fontSize: {
|
|
804
|
+
type: "text";
|
|
805
|
+
label: string;
|
|
806
|
+
hint: string;
|
|
807
|
+
};
|
|
808
|
+
};
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
label: string;
|
|
812
|
+
hint: string;
|
|
813
|
+
};
|
|
726
814
|
headerTwoFont: {
|
|
727
815
|
type: "schema";
|
|
728
816
|
options: {
|
|
@@ -27,37 +27,45 @@ const themeFontsSchema = buildSchema({
|
|
|
27
27
|
label: 'Header One Font',
|
|
28
28
|
hint: 'The font used for the largest headers.',
|
|
29
29
|
},
|
|
30
|
+
altHeaderFont: {
|
|
31
|
+
type: 'schema',
|
|
32
|
+
options: {
|
|
33
|
+
schema: fontSettingSchema,
|
|
34
|
+
},
|
|
35
|
+
label: 'Alternative Header Font',
|
|
36
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.',
|
|
37
|
+
},
|
|
30
38
|
headerTwoFont: {
|
|
31
39
|
type: 'schema',
|
|
32
40
|
options: {
|
|
33
41
|
schema: fontSettingSchema,
|
|
34
42
|
},
|
|
35
|
-
label: 'Header
|
|
36
|
-
hint: 'The font used for the largest headers.',
|
|
43
|
+
label: 'Header Two Font',
|
|
44
|
+
hint: 'The font used for the second largest headers.',
|
|
37
45
|
},
|
|
38
46
|
headerThreeFont: {
|
|
39
47
|
type: 'schema',
|
|
40
48
|
options: {
|
|
41
49
|
schema: fontSettingSchema,
|
|
42
50
|
},
|
|
43
|
-
label: 'Header
|
|
44
|
-
hint: 'The font used for
|
|
51
|
+
label: 'Header Three Font',
|
|
52
|
+
hint: 'The font used for third largest headers.',
|
|
45
53
|
},
|
|
46
54
|
bodyFont: {
|
|
47
55
|
type: 'schema',
|
|
48
56
|
options: {
|
|
49
57
|
schema: fontSettingSchema,
|
|
50
58
|
},
|
|
51
|
-
label: '
|
|
52
|
-
hint: 'The font used for the
|
|
59
|
+
label: 'Body Font',
|
|
60
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.',
|
|
53
61
|
},
|
|
54
62
|
footerFont: {
|
|
55
63
|
type: 'schema',
|
|
56
64
|
options: {
|
|
57
65
|
schema: fontSettingSchema,
|
|
58
66
|
},
|
|
59
|
-
label: '
|
|
60
|
-
hint: 'The font used for
|
|
67
|
+
label: 'Footer Font',
|
|
68
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).',
|
|
61
69
|
},
|
|
62
70
|
},
|
|
63
71
|
});
|
|
@@ -237,6 +237,28 @@ declare const _default: {
|
|
|
237
237
|
label: string;
|
|
238
238
|
hint: string;
|
|
239
239
|
};
|
|
240
|
+
altHeaderFont: {
|
|
241
|
+
type: "schema";
|
|
242
|
+
options: {
|
|
243
|
+
schema: {
|
|
244
|
+
id: string;
|
|
245
|
+
fields: {
|
|
246
|
+
fontFamily: {
|
|
247
|
+
type: "text";
|
|
248
|
+
label: string;
|
|
249
|
+
hint: string;
|
|
250
|
+
};
|
|
251
|
+
fontSize: {
|
|
252
|
+
type: "text";
|
|
253
|
+
label: string;
|
|
254
|
+
hint: string;
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
label: string;
|
|
260
|
+
hint: string;
|
|
261
|
+
};
|
|
240
262
|
headerTwoFont: {
|
|
241
263
|
type: "schema";
|
|
242
264
|
options: {
|
|
@@ -399,6 +421,28 @@ declare const _default: {
|
|
|
399
421
|
label: string;
|
|
400
422
|
hint: string;
|
|
401
423
|
};
|
|
424
|
+
altHeaderFont: {
|
|
425
|
+
type: "schema";
|
|
426
|
+
options: {
|
|
427
|
+
schema: {
|
|
428
|
+
id: string;
|
|
429
|
+
fields: {
|
|
430
|
+
fontFamily: {
|
|
431
|
+
type: "text";
|
|
432
|
+
label: string;
|
|
433
|
+
hint: string;
|
|
434
|
+
};
|
|
435
|
+
fontSize: {
|
|
436
|
+
type: "text";
|
|
437
|
+
label: string;
|
|
438
|
+
hint: string;
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
label: string;
|
|
444
|
+
hint: string;
|
|
445
|
+
};
|
|
402
446
|
headerTwoFont: {
|
|
403
447
|
type: "schema";
|
|
404
448
|
options: {
|
|
@@ -561,6 +605,28 @@ declare const _default: {
|
|
|
561
605
|
label: string;
|
|
562
606
|
hint: string;
|
|
563
607
|
};
|
|
608
|
+
altHeaderFont: {
|
|
609
|
+
type: "schema";
|
|
610
|
+
options: {
|
|
611
|
+
schema: {
|
|
612
|
+
id: string;
|
|
613
|
+
fields: {
|
|
614
|
+
fontFamily: {
|
|
615
|
+
type: "text";
|
|
616
|
+
label: string;
|
|
617
|
+
hint: string;
|
|
618
|
+
};
|
|
619
|
+
fontSize: {
|
|
620
|
+
type: "text";
|
|
621
|
+
label: string;
|
|
622
|
+
hint: string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
};
|
|
627
|
+
label: string;
|
|
628
|
+
hint: string;
|
|
629
|
+
};
|
|
564
630
|
headerTwoFont: {
|
|
565
631
|
type: "schema";
|
|
566
632
|
options: {
|
|
@@ -723,6 +789,28 @@ declare const _default: {
|
|
|
723
789
|
label: string;
|
|
724
790
|
hint: string;
|
|
725
791
|
};
|
|
792
|
+
altHeaderFont: {
|
|
793
|
+
type: "schema";
|
|
794
|
+
options: {
|
|
795
|
+
schema: {
|
|
796
|
+
id: string;
|
|
797
|
+
fields: {
|
|
798
|
+
fontFamily: {
|
|
799
|
+
type: "text";
|
|
800
|
+
label: string;
|
|
801
|
+
hint: string;
|
|
802
|
+
};
|
|
803
|
+
fontSize: {
|
|
804
|
+
type: "text";
|
|
805
|
+
label: string;
|
|
806
|
+
hint: string;
|
|
807
|
+
};
|
|
808
|
+
};
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
label: string;
|
|
812
|
+
hint: string;
|
|
813
|
+
};
|
|
726
814
|
headerTwoFont: {
|
|
727
815
|
type: "schema";
|
|
728
816
|
options: {
|
|
@@ -32,37 +32,45 @@ const themeFontsSchema = (0, schema_1.buildSchema)({
|
|
|
32
32
|
label: 'Header One Font',
|
|
33
33
|
hint: 'The font used for the largest headers.',
|
|
34
34
|
},
|
|
35
|
+
altHeaderFont: {
|
|
36
|
+
type: 'schema',
|
|
37
|
+
options: {
|
|
38
|
+
schema: fontSettingSchema,
|
|
39
|
+
},
|
|
40
|
+
label: 'Alternative Header Font',
|
|
41
|
+
hint: 'The font used for the alternative headers. These are rendered next to the header one font, but are usually smaller.',
|
|
42
|
+
},
|
|
35
43
|
headerTwoFont: {
|
|
36
44
|
type: 'schema',
|
|
37
45
|
options: {
|
|
38
46
|
schema: fontSettingSchema,
|
|
39
47
|
},
|
|
40
|
-
label: 'Header
|
|
41
|
-
hint: 'The font used for the largest headers.',
|
|
48
|
+
label: 'Header Two Font',
|
|
49
|
+
hint: 'The font used for the second largest headers.',
|
|
42
50
|
},
|
|
43
51
|
headerThreeFont: {
|
|
44
52
|
type: 'schema',
|
|
45
53
|
options: {
|
|
46
54
|
schema: fontSettingSchema,
|
|
47
55
|
},
|
|
48
|
-
label: 'Header
|
|
49
|
-
hint: 'The font used for
|
|
56
|
+
label: 'Header Three Font',
|
|
57
|
+
hint: 'The font used for third largest headers.',
|
|
50
58
|
},
|
|
51
59
|
bodyFont: {
|
|
52
60
|
type: 'schema',
|
|
53
61
|
options: {
|
|
54
62
|
schema: fontSettingSchema,
|
|
55
63
|
},
|
|
56
|
-
label: '
|
|
57
|
-
hint: 'The font used for the
|
|
64
|
+
label: 'Body Font',
|
|
65
|
+
hint: 'The font used for the body text on all cards, toolbelt, etc.',
|
|
58
66
|
},
|
|
59
67
|
footerFont: {
|
|
60
68
|
type: 'schema',
|
|
61
69
|
options: {
|
|
62
70
|
schema: fontSettingSchema,
|
|
63
71
|
},
|
|
64
|
-
label: '
|
|
65
|
-
hint: 'The font used for
|
|
72
|
+
label: 'Footer Font',
|
|
73
|
+
hint: 'The font used for footers (but can be overriden by card footer styles).',
|
|
66
74
|
},
|
|
67
75
|
},
|
|
68
76
|
});
|
package/package.json
CHANGED