@sprucelabs/heartwood-view-controllers 122.2.1 → 122.3.0

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.
@@ -155,6 +155,13 @@ const bigFormSchema = {
155
155
  type: 'schema',
156
156
  options: { schema: talkingSprucebot_schema_1.default, }
157
157
  },
158
+ /** . Where should the status render? By default it is at the top of each slide. */
159
+ 'statusRenderPosition': {
160
+ type: 'select',
161
+ hint: 'Where should the status render? By default it is at the top of each slide.',
162
+ defaultValue: "topOfSlide",
163
+ options: { choices: [{ "value": "topOfSlide", "label": "Top of slide" }, { "value": "headerAltTitle", "label": "Header alternative title" }], }
164
+ },
158
165
  /** Present slide. The slide showing now! */
159
166
  'presentSlide': {
160
167
  label: 'Present slide',
@@ -9000,6 +9000,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
9000
9000
  'sprucebotAvatar'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SprucebotAvatar | undefined | null;
9001
9001
  'shouldRenderFirstFieldsLabel'?: boolean | undefined | null;
9002
9002
  'talkingSprucebot'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebot | undefined | null;
9003
+ /** . Where should the status render? By default it is at the top of each slide. */
9004
+ 'statusRenderPosition'?: ("topOfSlide" | "headerAltTitle") | undefined | null;
9003
9005
  /** Present slide. The slide showing now! */
9004
9006
  'presentSlide'?: number | undefined | null;
9005
9007
  /** Submit handler. */
@@ -9179,6 +9181,21 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
9179
9181
  schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebotSchema;
9180
9182
  };
9181
9183
  };
9184
+ /** . Where should the status render? By default it is at the top of each slide. */
9185
+ 'statusRenderPosition': {
9186
+ type: 'select';
9187
+ hint: 'Where should the status render? By default it is at the top of each slide.';
9188
+ defaultValue: "topOfSlide";
9189
+ options: {
9190
+ choices: [{
9191
+ "value": "topOfSlide";
9192
+ "label": "Top of slide";
9193
+ }, {
9194
+ "value": "headerAltTitle";
9195
+ "label": "Header alternative title";
9196
+ }];
9197
+ };
9198
+ };
9182
9199
  /** Present slide. The slide showing now! */
9183
9200
  'presentSlide': {
9184
9201
  label: 'Present slide';
@@ -150,6 +150,13 @@ const bigFormSchema = {
150
150
  type: 'schema',
151
151
  options: { schema: talkingSprucebotSchema_v2021_02_11, }
152
152
  },
153
+ /** . Where should the status render? By default it is at the top of each slide. */
154
+ 'statusRenderPosition': {
155
+ type: 'select',
156
+ hint: 'Where should the status render? By default it is at the top of each slide.',
157
+ defaultValue: "topOfSlide",
158
+ options: { choices: [{ "value": "topOfSlide", "label": "Top of slide" }, { "value": "headerAltTitle", "label": "Header alternative title" }], }
159
+ },
153
160
  /** Present slide. The slide showing now! */
154
161
  'presentSlide': {
155
162
  label: 'Present slide',
@@ -9000,6 +9000,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
9000
9000
  'sprucebotAvatar'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SprucebotAvatar | undefined | null;
9001
9001
  'shouldRenderFirstFieldsLabel'?: boolean | undefined | null;
9002
9002
  'talkingSprucebot'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebot | undefined | null;
9003
+ /** . Where should the status render? By default it is at the top of each slide. */
9004
+ 'statusRenderPosition'?: ("topOfSlide" | "headerAltTitle") | undefined | null;
9003
9005
  /** Present slide. The slide showing now! */
9004
9006
  'presentSlide'?: number | undefined | null;
9005
9007
  /** Submit handler. */
@@ -9179,6 +9181,21 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
9179
9181
  schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebotSchema;
9180
9182
  };
9181
9183
  };
9184
+ /** . Where should the status render? By default it is at the top of each slide. */
9185
+ 'statusRenderPosition': {
9186
+ type: 'select';
9187
+ hint: 'Where should the status render? By default it is at the top of each slide.';
9188
+ defaultValue: "topOfSlide";
9189
+ options: {
9190
+ choices: [{
9191
+ "value": "topOfSlide";
9192
+ "label": "Top of slide";
9193
+ }, {
9194
+ "value": "headerAltTitle";
9195
+ "label": "Header alternative title";
9196
+ }];
9197
+ };
9198
+ };
9182
9199
  /** Present slide. The slide showing now! */
9183
9200
  'presentSlide': {
9184
9201
  label: 'Present slide';
@@ -21317,6 +21317,17 @@ declare const _default: {
21317
21317
  isRequired: true;
21318
21318
  isArray: true;
21319
21319
  };
21320
+ statusRenderPosition: {
21321
+ type: "select";
21322
+ options: {
21323
+ choices: {
21324
+ value: string;
21325
+ label: string;
21326
+ }[];
21327
+ };
21328
+ hint: string;
21329
+ defaultValue: string;
21330
+ };
21320
21331
  controller: {
21321
21332
  type: "raw";
21322
21333
  label: string;
@@ -14155,6 +14155,17 @@ declare const _default: {
14155
14155
  isRequired: true;
14156
14156
  isArray: true;
14157
14157
  };
14158
+ statusRenderPosition: {
14159
+ type: "select";
14160
+ options: {
14161
+ choices: {
14162
+ value: string;
14163
+ label: string;
14164
+ }[];
14165
+ };
14166
+ hint: string;
14167
+ defaultValue: string;
14168
+ };
14158
14169
  controller: {
14159
14170
  type: "raw";
14160
14171
  label: string;
@@ -14105,6 +14105,17 @@ declare const _default: {
14105
14105
  isRequired: true;
14106
14106
  isArray: true;
14107
14107
  };
14108
+ statusRenderPosition: {
14109
+ type: "select";
14110
+ options: {
14111
+ choices: {
14112
+ value: string;
14113
+ label: string;
14114
+ }[];
14115
+ };
14116
+ hint: string;
14117
+ defaultValue: string;
14118
+ };
14108
14119
  controller: {
14109
14120
  type: "raw";
14110
14121
  label: string;
@@ -21348,6 +21348,17 @@ declare const _default: {
21348
21348
  isRequired: true;
21349
21349
  isArray: true;
21350
21350
  };
21351
+ statusRenderPosition: {
21352
+ type: "select";
21353
+ options: {
21354
+ choices: {
21355
+ value: string;
21356
+ label: string;
21357
+ }[];
21358
+ };
21359
+ hint: string;
21360
+ defaultValue: string;
21361
+ };
21351
21362
  controller: {
21352
21363
  type: "raw";
21353
21364
  label: string;
@@ -6919,6 +6919,17 @@ declare const _default: {
6919
6919
  isRequired: true;
6920
6920
  isArray: true;
6921
6921
  };
6922
+ statusRenderPosition: {
6923
+ type: "select";
6924
+ options: {
6925
+ choices: {
6926
+ value: string;
6927
+ label: string;
6928
+ }[];
6929
+ };
6930
+ hint: string;
6931
+ defaultValue: string;
6932
+ };
6922
6933
  controller: {
6923
6934
  type: "raw";
6924
6935
  label: string;
@@ -24,7 +24,20 @@ export default buildSchema({
24
24
  },
25
25
  }, sections: Object.assign(Object.assign({}, formBuilder.fields.sections), { options: Object.assign(Object.assign({}, formBuilder.fields.sections.options), { schema: Object.assign(Object.assign({}, formSectionBuilder), { id: 'bigFormSection', fields: Object.assign(Object.assign({}, formSectionBuilder.fields), { shouldShowSubmitButton: {
26
26
  type: 'boolean',
27
- } }) }) }) }), controller: {
27
+ } }) }) }) }), statusRenderPosition: {
28
+ type: 'select',
29
+ options: {
30
+ choices: [
31
+ { value: 'topOfSlide', label: 'Top of slide' },
32
+ {
33
+ value: 'headerAltTitle',
34
+ label: 'Header alternative title',
35
+ },
36
+ ],
37
+ },
38
+ hint: 'Where should the status render? By default it is at the top of each slide.',
39
+ defaultValue: 'topOfSlide',
40
+ }, controller: {
28
41
  type: 'raw',
29
42
  label: 'Controller',
30
43
  options: {
@@ -21389,6 +21389,17 @@ declare const _default: {
21389
21389
  isRequired: true;
21390
21390
  isArray: true;
21391
21391
  };
21392
+ statusRenderPosition: {
21393
+ type: "select";
21394
+ options: {
21395
+ choices: {
21396
+ value: string;
21397
+ label: string;
21398
+ }[];
21399
+ };
21400
+ hint: string;
21401
+ defaultValue: string;
21402
+ };
21392
21403
  controller: {
21393
21404
  type: "raw";
21394
21405
  label: string;
@@ -21317,6 +21317,17 @@ declare const _default: {
21317
21317
  isRequired: true;
21318
21318
  isArray: true;
21319
21319
  };
21320
+ statusRenderPosition: {
21321
+ type: "select";
21322
+ options: {
21323
+ choices: {
21324
+ value: string;
21325
+ label: string;
21326
+ }[];
21327
+ };
21328
+ hint: string;
21329
+ defaultValue: string;
21330
+ };
21320
21331
  controller: {
21321
21332
  type: "raw";
21322
21333
  label: string;
@@ -14155,6 +14155,17 @@ declare const _default: {
14155
14155
  isRequired: true;
14156
14156
  isArray: true;
14157
14157
  };
14158
+ statusRenderPosition: {
14159
+ type: "select";
14160
+ options: {
14161
+ choices: {
14162
+ value: string;
14163
+ label: string;
14164
+ }[];
14165
+ };
14166
+ hint: string;
14167
+ defaultValue: string;
14168
+ };
14158
14169
  controller: {
14159
14170
  type: "raw";
14160
14171
  label: string;
@@ -14105,6 +14105,17 @@ declare const _default: {
14105
14105
  isRequired: true;
14106
14106
  isArray: true;
14107
14107
  };
14108
+ statusRenderPosition: {
14109
+ type: "select";
14110
+ options: {
14111
+ choices: {
14112
+ value: string;
14113
+ label: string;
14114
+ }[];
14115
+ };
14116
+ hint: string;
14117
+ defaultValue: string;
14118
+ };
14108
14119
  controller: {
14109
14120
  type: "raw";
14110
14121
  label: string;
@@ -21348,6 +21348,17 @@ declare const _default: {
21348
21348
  isRequired: true;
21349
21349
  isArray: true;
21350
21350
  };
21351
+ statusRenderPosition: {
21352
+ type: "select";
21353
+ options: {
21354
+ choices: {
21355
+ value: string;
21356
+ label: string;
21357
+ }[];
21358
+ };
21359
+ hint: string;
21360
+ defaultValue: string;
21361
+ };
21351
21362
  controller: {
21352
21363
  type: "raw";
21353
21364
  label: string;
@@ -6919,6 +6919,17 @@ declare const _default: {
6919
6919
  isRequired: true;
6920
6920
  isArray: true;
6921
6921
  };
6922
+ statusRenderPosition: {
6923
+ type: "select";
6924
+ options: {
6925
+ choices: {
6926
+ value: string;
6927
+ label: string;
6928
+ }[];
6929
+ };
6930
+ hint: string;
6931
+ defaultValue: string;
6932
+ };
6922
6933
  controller: {
6923
6934
  type: "raw";
6924
6935
  label: string;
@@ -48,6 +48,20 @@ exports.default = (0, schema_1.buildSchema)({
48
48
  },
49
49
  },
50
50
  },
51
+ statusRenderPosition: {
52
+ type: 'select',
53
+ options: {
54
+ choices: [
55
+ { value: 'topOfSlide', label: 'Top of slide' },
56
+ {
57
+ value: 'headerAltTitle',
58
+ label: 'Header alternative title',
59
+ },
60
+ ],
61
+ },
62
+ hint: 'Where should the status render? By default it is at the top of each slide.',
63
+ defaultValue: 'topOfSlide',
64
+ },
51
65
  controller: {
52
66
  type: 'raw',
53
67
  label: 'Controller',
@@ -21389,6 +21389,17 @@ declare const _default: {
21389
21389
  isRequired: true;
21390
21390
  isArray: true;
21391
21391
  };
21392
+ statusRenderPosition: {
21393
+ type: "select";
21394
+ options: {
21395
+ choices: {
21396
+ value: string;
21397
+ label: string;
21398
+ }[];
21399
+ };
21400
+ hint: string;
21401
+ defaultValue: string;
21402
+ };
21392
21403
  controller: {
21393
21404
  type: "raw";
21394
21405
  label: string;
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "sideEffects": false,
14
14
  "license": "MIT",
15
15
  "description": "All the power of Heartwood in one, convenient package.",
16
- "version": "122.2.1",
16
+ "version": "122.3.0",
17
17
  "skill": {
18
18
  "namespace": "HeartwoodViewControllers",
19
19
  "commandOverrides": {