@sprucelabs/heartwood-view-controllers 126.12.13 → 126.12.15

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.
@@ -12,6 +12,13 @@ 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. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
16
+ 'cardBackgroundColor': {
17
+ label: 'Card Background Color',
18
+ type: 'text',
19
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.',
20
+ options: undefined
21
+ },
15
22
  /** Card Body Background Color. The background color of the body of the card. */
16
23
  'bodyBackgroundColor': {
17
24
  label: 'Card Body Background Color',
@@ -927,6 +927,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
927
927
  }
928
928
  namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
929
929
  interface CardStyle {
930
+ /** Card Background Color. The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
931
+ 'cardBackgroundColor'?: string | undefined | null;
930
932
  /** Card Body Background Color. The background color of the body of the card. */
931
933
  'bodyBackgroundColor'?: string | undefined | null;
932
934
  /** Card Body Foreground Color. The color of the text of the body of the card. */
@@ -949,6 +951,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
949
951
  name: '';
950
952
  moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
951
953
  fields: {
954
+ /** Card Background Color. The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
955
+ 'cardBackgroundColor': {
956
+ label: 'Card Background Color';
957
+ type: 'text';
958
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.';
959
+ options: undefined;
960
+ };
952
961
  /** Card Body Background Color. The background color of the body of the card. */
953
962
  'bodyBackgroundColor': {
954
963
  label: 'Card Body Background Color';
@@ -7,6 +7,13 @@ 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. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
11
+ 'cardBackgroundColor': {
12
+ label: 'Card Background Color',
13
+ type: 'text',
14
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.',
15
+ options: undefined
16
+ },
10
17
  /** Card Body Background Color. The background color of the body of the card. */
11
18
  'bodyBackgroundColor': {
12
19
  label: 'Card Body Background Color',
@@ -927,6 +927,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
927
927
  }
928
928
  namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
929
929
  interface CardStyle {
930
+ /** Card Background Color. The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
931
+ 'cardBackgroundColor'?: string | undefined | null;
930
932
  /** Card Body Background Color. The background color of the body of the card. */
931
933
  'bodyBackgroundColor'?: string | undefined | null;
932
934
  /** Card Body Foreground Color. The color of the text of the body of the card. */
@@ -949,6 +951,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
949
951
  name: '';
950
952
  moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
951
953
  fields: {
954
+ /** Card Background Color. The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent. */
955
+ 'cardBackgroundColor': {
956
+ label: 'Card Background Color';
957
+ type: 'text';
958
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.';
959
+ options: undefined;
960
+ };
952
961
  /** Card Body Background Color. The background color of the body of the card. */
953
962
  'bodyBackgroundColor': {
954
963
  label: 'Card Body Background Color';
@@ -405,6 +405,11 @@ declare const _default: {
405
405
  schema: {
406
406
  id: string;
407
407
  fields: {
408
+ cardBackgroundColor: {
409
+ type: "text";
410
+ label: string;
411
+ hint: string;
412
+ };
408
413
  bodyBackgroundColor: {
409
414
  type: "text";
410
415
  label: string;
@@ -590,6 +595,11 @@ declare const _default: {
590
595
  schema: {
591
596
  id: string;
592
597
  fields: {
598
+ cardBackgroundColor: {
599
+ type: "text";
600
+ label: string;
601
+ hint: string;
602
+ };
593
603
  bodyBackgroundColor: {
594
604
  type: "text";
595
605
  label: string;
@@ -775,6 +785,11 @@ declare const _default: {
775
785
  schema: {
776
786
  id: string;
777
787
  fields: {
788
+ cardBackgroundColor: {
789
+ type: "text";
790
+ label: string;
791
+ hint: string;
792
+ };
778
793
  bodyBackgroundColor: {
779
794
  type: "text";
780
795
  label: string;
@@ -72,6 +72,11 @@ const themeFontsSchema = buildSchema({
72
72
  const cardStyleSchema = buildSchema({
73
73
  id: 'cardStyle',
74
74
  fields: {
75
+ cardBackgroundColor: {
76
+ type: 'text',
77
+ label: 'Card Background Color',
78
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.',
79
+ },
75
80
  bodyBackgroundColor: {
76
81
  type: 'text',
77
82
  label: 'Card Body Background Color',
@@ -405,6 +405,11 @@ declare const _default: {
405
405
  schema: {
406
406
  id: string;
407
407
  fields: {
408
+ cardBackgroundColor: {
409
+ type: "text";
410
+ label: string;
411
+ hint: string;
412
+ };
408
413
  bodyBackgroundColor: {
409
414
  type: "text";
410
415
  label: string;
@@ -590,6 +595,11 @@ declare const _default: {
590
595
  schema: {
591
596
  id: string;
592
597
  fields: {
598
+ cardBackgroundColor: {
599
+ type: "text";
600
+ label: string;
601
+ hint: string;
602
+ };
593
603
  bodyBackgroundColor: {
594
604
  type: "text";
595
605
  label: string;
@@ -775,6 +785,11 @@ declare const _default: {
775
785
  schema: {
776
786
  id: string;
777
787
  fields: {
788
+ cardBackgroundColor: {
789
+ type: "text";
790
+ label: string;
791
+ hint: string;
792
+ };
778
793
  bodyBackgroundColor: {
779
794
  type: "text";
780
795
  label: string;
@@ -77,6 +77,11 @@ const themeFontsSchema = (0, schema_1.buildSchema)({
77
77
  const cardStyleSchema = (0, schema_1.buildSchema)({
78
78
  id: 'cardStyle',
79
79
  fields: {
80
+ cardBackgroundColor: {
81
+ type: 'text',
82
+ label: 'Card Background Color',
83
+ hint: 'The background color of the card. This color will show through any transparency in the header, body, or footer colors. It defaults to transparent.',
84
+ },
80
85
  bodyBackgroundColor: {
81
86
  type: 'text',
82
87
  label: 'Card Body Background Color',
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "sideEffects": false,
13
13
  "license": "MIT",
14
14
  "description": "All the power of Heartwood in one, convenient package.",
15
- "version": "126.12.13",
15
+ "version": "126.12.15",
16
16
  "skill": {
17
17
  "namespace": "HeartwoodViewControllers",
18
18
  "commandOverrides": {
@@ -73,16 +73,16 @@
73
73
  "@babel/preset-env": "^7.28.3",
74
74
  "@babel/preset-typescript": "^7.27.1",
75
75
  "@babel/runtime": "^7.28.4",
76
- "@sprucelabs/calendar-utils": "^43.1.47",
76
+ "@sprucelabs/calendar-utils": "^43.1.48",
77
77
  "@sprucelabs/error": "^7.1.32",
78
78
  "@sprucelabs/globby": "^2.0.506",
79
- "@sprucelabs/mercury-core-events": "^27.4.19",
80
- "@sprucelabs/mercury-types": "^48.0.122",
79
+ "@sprucelabs/mercury-core-events": "^27.4.20",
80
+ "@sprucelabs/mercury-types": "^48.0.123",
81
81
  "@sprucelabs/schema": "^32.2.5",
82
- "@sprucelabs/spruce-core-schemas": "^41.3.17",
83
- "@sprucelabs/spruce-event-utils": "^41.0.137",
84
- "@sprucelabs/spruce-skill-utils": "^32.0.130",
85
- "@sprucelabs/test-utils": "^6.0.102",
82
+ "@sprucelabs/spruce-core-schemas": "^41.3.18",
83
+ "@sprucelabs/spruce-event-utils": "^41.0.138",
84
+ "@sprucelabs/spruce-skill-utils": "^32.0.131",
85
+ "@sprucelabs/test-utils": "^6.0.103",
86
86
  "babel-loader": "^10.0.0",
87
87
  "babel-plugin-module-resolver": "^5.0.2",
88
88
  "dot-prop": "^10.1.0",
@@ -96,8 +96,8 @@
96
96
  "devDependencies": {
97
97
  "@sprucelabs/esm-postbuild": "^7.0.44",
98
98
  "@sprucelabs/jest-json-reporter": "^9.0.65",
99
- "@sprucelabs/mercury-client": "^43.0.165",
100
- "@sprucelabs/mercury-event-emitter": "^43.0.165",
99
+ "@sprucelabs/mercury-client": "^43.0.166",
100
+ "@sprucelabs/mercury-event-emitter": "^43.0.166",
101
101
  "@sprucelabs/resolve-path-aliases": "^3.0.28",
102
102
  "@sprucelabs/semantic-release": "^5.0.2",
103
103
  "@sprucelabs/test": "^10.0.24",