@sprucelabs/heartwood-view-controllers 122.0.11 → 122.0.12
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/cardStyle.schema.js +8 -8
- package/build/.spruce/schemas/schemas.types.d.ts +12 -12
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/cardStyle.schema.js +8 -8
- package/build/esm/.spruce/schemas/schemas.types.d.ts +12 -12
- package/build/esm/schemas/v2021_02_11/theme.builder.d.ts +6 -6
- package/build/esm/schemas/v2021_02_11/theme.builder.js +6 -6
- package/build/schemas/v2021_02_11/theme.builder.d.ts +6 -6
- package/build/schemas/v2021_02_11/theme.builder.js +6 -6
- package/package.json +1 -1
|
@@ -12,18 +12,18 @@ const cardStyleSchema = {
|
|
|
12
12
|
name: '',
|
|
13
13
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers',
|
|
14
14
|
fields: {
|
|
15
|
-
/** Card Background Color. The background color of the card. */
|
|
16
|
-
'
|
|
17
|
-
label: 'Card Background Color',
|
|
15
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
16
|
+
'bodyBackgroundColor': {
|
|
17
|
+
label: 'Card Body Background Color',
|
|
18
18
|
type: 'text',
|
|
19
|
-
hint: 'The background color of the card.',
|
|
19
|
+
hint: 'The background color of the body of the card.',
|
|
20
20
|
options: undefined
|
|
21
21
|
},
|
|
22
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
23
|
-
'
|
|
24
|
-
label: 'Card Foreground Color',
|
|
22
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
23
|
+
'bodyForegroundColor': {
|
|
24
|
+
label: 'Card Body Foreground Color',
|
|
25
25
|
type: 'text',
|
|
26
|
-
hint: 'The color of the text of the card.',
|
|
26
|
+
hint: 'The color of the text of the body of the card.',
|
|
27
27
|
options: undefined
|
|
28
28
|
},
|
|
29
29
|
/** Header Background Color. The background color of the card's header. */
|
|
@@ -1804,10 +1804,10 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1804
1804
|
}
|
|
1805
1805
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
1806
1806
|
interface CardStyle {
|
|
1807
|
-
/** Card Background Color. The background color of the card. */
|
|
1808
|
-
'
|
|
1809
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
1810
|
-
'
|
|
1807
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
1808
|
+
'bodyBackgroundColor'?: string | undefined | null;
|
|
1809
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
1810
|
+
'bodyForegroundColor'?: string | undefined | null;
|
|
1811
1811
|
/** Header Background Color. The background color of the card's header. */
|
|
1812
1812
|
'headerBackgroundColor'?: string | undefined | null;
|
|
1813
1813
|
/** Header Foreground Color. The color of the text in the card's header. */
|
|
@@ -1826,18 +1826,18 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1826
1826
|
name: '';
|
|
1827
1827
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
1828
1828
|
fields: {
|
|
1829
|
-
/** Card Background Color. The background color of the card. */
|
|
1830
|
-
'
|
|
1831
|
-
label: 'Card Background Color';
|
|
1829
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
1830
|
+
'bodyBackgroundColor': {
|
|
1831
|
+
label: 'Card Body Background Color';
|
|
1832
1832
|
type: 'text';
|
|
1833
|
-
hint: 'The background color of the card.';
|
|
1833
|
+
hint: 'The background color of the body of the card.';
|
|
1834
1834
|
options: undefined;
|
|
1835
1835
|
};
|
|
1836
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
1837
|
-
'
|
|
1838
|
-
label: 'Card Foreground Color';
|
|
1836
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
1837
|
+
'bodyForegroundColor': {
|
|
1838
|
+
label: 'Card Body Foreground Color';
|
|
1839
1839
|
type: 'text';
|
|
1840
|
-
hint: 'The color of the text of the card.';
|
|
1840
|
+
hint: 'The color of the text of the body of the card.';
|
|
1841
1841
|
options: undefined;
|
|
1842
1842
|
};
|
|
1843
1843
|
/** Header Background Color. The background color of the card's header. */
|
|
@@ -7,18 +7,18 @@ const cardStyleSchema = {
|
|
|
7
7
|
name: '',
|
|
8
8
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers',
|
|
9
9
|
fields: {
|
|
10
|
-
/** Card Background Color. The background color of the card. */
|
|
11
|
-
'
|
|
12
|
-
label: 'Card Background Color',
|
|
10
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
11
|
+
'bodyBackgroundColor': {
|
|
12
|
+
label: 'Card Body Background Color',
|
|
13
13
|
type: 'text',
|
|
14
|
-
hint: 'The background color of the card.',
|
|
14
|
+
hint: 'The background color of the body of the card.',
|
|
15
15
|
options: undefined
|
|
16
16
|
},
|
|
17
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
18
|
-
'
|
|
19
|
-
label: 'Card Foreground Color',
|
|
17
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
18
|
+
'bodyForegroundColor': {
|
|
19
|
+
label: 'Card Body Foreground Color',
|
|
20
20
|
type: 'text',
|
|
21
|
-
hint: 'The color of the text of the card.',
|
|
21
|
+
hint: 'The color of the text of the body of the card.',
|
|
22
22
|
options: undefined
|
|
23
23
|
},
|
|
24
24
|
/** Header Background Color. The background color of the card's header. */
|
|
@@ -1804,10 +1804,10 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1804
1804
|
}
|
|
1805
1805
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
1806
1806
|
interface CardStyle {
|
|
1807
|
-
/** Card Background Color. The background color of the card. */
|
|
1808
|
-
'
|
|
1809
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
1810
|
-
'
|
|
1807
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
1808
|
+
'bodyBackgroundColor'?: string | undefined | null;
|
|
1809
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
1810
|
+
'bodyForegroundColor'?: string | undefined | null;
|
|
1811
1811
|
/** Header Background Color. The background color of the card's header. */
|
|
1812
1812
|
'headerBackgroundColor'?: string | undefined | null;
|
|
1813
1813
|
/** Header Foreground Color. The color of the text in the card's header. */
|
|
@@ -1826,18 +1826,18 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1826
1826
|
name: '';
|
|
1827
1827
|
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
1828
1828
|
fields: {
|
|
1829
|
-
/** Card Background Color. The background color of the card. */
|
|
1830
|
-
'
|
|
1831
|
-
label: 'Card Background Color';
|
|
1829
|
+
/** Card Body Background Color. The background color of the body of the card. */
|
|
1830
|
+
'bodyBackgroundColor': {
|
|
1831
|
+
label: 'Card Body Background Color';
|
|
1832
1832
|
type: 'text';
|
|
1833
|
-
hint: 'The background color of the card.';
|
|
1833
|
+
hint: 'The background color of the body of the card.';
|
|
1834
1834
|
options: undefined;
|
|
1835
1835
|
};
|
|
1836
|
-
/** Card Foreground Color. The color of the text of the card. */
|
|
1837
|
-
'
|
|
1838
|
-
label: 'Card Foreground Color';
|
|
1836
|
+
/** Card Body Foreground Color. The color of the text of the body of the card. */
|
|
1837
|
+
'bodyForegroundColor': {
|
|
1838
|
+
label: 'Card Body Foreground Color';
|
|
1839
1839
|
type: 'text';
|
|
1840
|
-
hint: 'The color of the text of the card.';
|
|
1840
|
+
hint: 'The color of the text of the body of the card.';
|
|
1841
1841
|
options: undefined;
|
|
1842
1842
|
};
|
|
1843
1843
|
/** Header Background Color. The background color of the card's header. */
|
|
@@ -384,12 +384,12 @@ declare const _default: {
|
|
|
384
384
|
schema: {
|
|
385
385
|
id: string;
|
|
386
386
|
fields: {
|
|
387
|
-
|
|
387
|
+
bodyBackgroundColor: {
|
|
388
388
|
type: "text";
|
|
389
389
|
label: string;
|
|
390
390
|
hint: string;
|
|
391
391
|
};
|
|
392
|
-
|
|
392
|
+
bodyForegroundColor: {
|
|
393
393
|
type: "text";
|
|
394
394
|
label: string;
|
|
395
395
|
hint: string;
|
|
@@ -569,12 +569,12 @@ declare const _default: {
|
|
|
569
569
|
schema: {
|
|
570
570
|
id: string;
|
|
571
571
|
fields: {
|
|
572
|
-
|
|
572
|
+
bodyBackgroundColor: {
|
|
573
573
|
type: "text";
|
|
574
574
|
label: string;
|
|
575
575
|
hint: string;
|
|
576
576
|
};
|
|
577
|
-
|
|
577
|
+
bodyForegroundColor: {
|
|
578
578
|
type: "text";
|
|
579
579
|
label: string;
|
|
580
580
|
hint: string;
|
|
@@ -754,12 +754,12 @@ declare const _default: {
|
|
|
754
754
|
schema: {
|
|
755
755
|
id: string;
|
|
756
756
|
fields: {
|
|
757
|
-
|
|
757
|
+
bodyBackgroundColor: {
|
|
758
758
|
type: "text";
|
|
759
759
|
label: string;
|
|
760
760
|
hint: string;
|
|
761
761
|
};
|
|
762
|
-
|
|
762
|
+
bodyForegroundColor: {
|
|
763
763
|
type: "text";
|
|
764
764
|
label: string;
|
|
765
765
|
hint: string;
|
|
@@ -72,15 +72,15 @@ const themeFontsSchema = buildSchema({
|
|
|
72
72
|
const cardStyleSchema = buildSchema({
|
|
73
73
|
id: 'cardStyle',
|
|
74
74
|
fields: {
|
|
75
|
-
|
|
75
|
+
bodyBackgroundColor: {
|
|
76
76
|
type: 'text',
|
|
77
|
-
label: 'Card Background Color',
|
|
78
|
-
hint: 'The background color of the card.',
|
|
77
|
+
label: 'Card Body Background Color',
|
|
78
|
+
hint: 'The background color of the body of the card.',
|
|
79
79
|
},
|
|
80
|
-
|
|
80
|
+
bodyForegroundColor: {
|
|
81
81
|
type: 'text',
|
|
82
|
-
label: 'Card Foreground Color',
|
|
83
|
-
hint: 'The color of the text of the card.',
|
|
82
|
+
label: 'Card Body Foreground Color',
|
|
83
|
+
hint: 'The color of the text of the body of the card.',
|
|
84
84
|
},
|
|
85
85
|
headerBackgroundColor: {
|
|
86
86
|
type: 'text',
|
|
@@ -384,12 +384,12 @@ declare const _default: {
|
|
|
384
384
|
schema: {
|
|
385
385
|
id: string;
|
|
386
386
|
fields: {
|
|
387
|
-
|
|
387
|
+
bodyBackgroundColor: {
|
|
388
388
|
type: "text";
|
|
389
389
|
label: string;
|
|
390
390
|
hint: string;
|
|
391
391
|
};
|
|
392
|
-
|
|
392
|
+
bodyForegroundColor: {
|
|
393
393
|
type: "text";
|
|
394
394
|
label: string;
|
|
395
395
|
hint: string;
|
|
@@ -569,12 +569,12 @@ declare const _default: {
|
|
|
569
569
|
schema: {
|
|
570
570
|
id: string;
|
|
571
571
|
fields: {
|
|
572
|
-
|
|
572
|
+
bodyBackgroundColor: {
|
|
573
573
|
type: "text";
|
|
574
574
|
label: string;
|
|
575
575
|
hint: string;
|
|
576
576
|
};
|
|
577
|
-
|
|
577
|
+
bodyForegroundColor: {
|
|
578
578
|
type: "text";
|
|
579
579
|
label: string;
|
|
580
580
|
hint: string;
|
|
@@ -754,12 +754,12 @@ declare const _default: {
|
|
|
754
754
|
schema: {
|
|
755
755
|
id: string;
|
|
756
756
|
fields: {
|
|
757
|
-
|
|
757
|
+
bodyBackgroundColor: {
|
|
758
758
|
type: "text";
|
|
759
759
|
label: string;
|
|
760
760
|
hint: string;
|
|
761
761
|
};
|
|
762
|
-
|
|
762
|
+
bodyForegroundColor: {
|
|
763
763
|
type: "text";
|
|
764
764
|
label: string;
|
|
765
765
|
hint: string;
|
|
@@ -77,15 +77,15 @@ const themeFontsSchema = (0, schema_1.buildSchema)({
|
|
|
77
77
|
const cardStyleSchema = (0, schema_1.buildSchema)({
|
|
78
78
|
id: 'cardStyle',
|
|
79
79
|
fields: {
|
|
80
|
-
|
|
80
|
+
bodyBackgroundColor: {
|
|
81
81
|
type: 'text',
|
|
82
|
-
label: 'Card Background Color',
|
|
83
|
-
hint: 'The background color of the card.',
|
|
82
|
+
label: 'Card Body Background Color',
|
|
83
|
+
hint: 'The background color of the body of the card.',
|
|
84
84
|
},
|
|
85
|
-
|
|
85
|
+
bodyForegroundColor: {
|
|
86
86
|
type: 'text',
|
|
87
|
-
label: 'Card Foreground Color',
|
|
88
|
-
hint: 'The color of the text of the card.',
|
|
87
|
+
label: 'Card Body Foreground Color',
|
|
88
|
+
hint: 'The color of the text of the body of the card.',
|
|
89
89
|
},
|
|
90
90
|
headerBackgroundColor: {
|
|
91
91
|
type: 'text',
|
package/package.json
CHANGED