@sprucelabs/heartwood-view-controllers 122.2.0 → 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.
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/bigForm.schema.js +7 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/themeProps.schema.js +7 -0
- package/build/.spruce/schemas/schemas.types.d.ts +26 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/bigForm.schema.js +7 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/themeProps.schema.js +7 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +26 -0
- package/build/esm/schemas/v2021_02_11/cards/card.builder.d.ts +11 -0
- package/build/esm/schemas/v2021_02_11/cards/cardBody.builder.d.ts +11 -0
- package/build/esm/schemas/v2021_02_11/cards/cardSection.builder.d.ts +11 -0
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +11 -0
- package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.d.ts +11 -0
- package/build/esm/schemas/v2021_02_11/forms/bigForm.builder.js +14 -1
- package/build/esm/schemas/v2021_02_11/theme.builder.d.ts +5 -0
- package/build/esm/schemas/v2021_02_11/theme.builder.js +5 -0
- package/build/esm/schemas/v2021_02_11/toolBelt.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/cards/card.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/cards/cardBody.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/cards/cardSection.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/forms/bigForm.builder.d.ts +11 -0
- package/build/schemas/v2021_02_11/forms/bigForm.builder.js +14 -0
- package/build/schemas/v2021_02_11/theme.builder.d.ts +5 -0
- package/build/schemas/v2021_02_11/theme.builder.js +5 -0
- package/build/schemas/v2021_02_11/toolBelt.builder.d.ts +11 -0
- package/package.json +1 -1
|
@@ -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',
|
|
@@ -208,6 +208,13 @@ const themePropsSchema = {
|
|
|
208
208
|
type: 'schema',
|
|
209
209
|
options: { schema: cardStyles_schema_1.default, }
|
|
210
210
|
},
|
|
211
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
212
|
+
'stylesheetUrl': {
|
|
213
|
+
label: 'Stylesheet Url',
|
|
214
|
+
type: 'text',
|
|
215
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.',
|
|
216
|
+
options: undefined
|
|
217
|
+
},
|
|
211
218
|
}
|
|
212
219
|
};
|
|
213
220
|
schema_1.SchemaRegistry.getInstance().trackSchema(themePropsSchema);
|
|
@@ -2245,6 +2245,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2245
2245
|
'fontFamilies'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontFamily[] | undefined | null;
|
|
2246
2246
|
'fonts'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemeFonts | undefined | null;
|
|
2247
2247
|
'cardStyles'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardStyles | undefined | null;
|
|
2248
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
2249
|
+
'stylesheetUrl'?: string | undefined | null;
|
|
2248
2250
|
}
|
|
2249
2251
|
interface ThemePropsSchema extends SpruceSchema.Schema {
|
|
2250
2252
|
id: 'themeProps';
|
|
@@ -2464,6 +2466,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2464
2466
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardStylesSchema;
|
|
2465
2467
|
};
|
|
2466
2468
|
};
|
|
2469
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
2470
|
+
'stylesheetUrl': {
|
|
2471
|
+
label: 'Stylesheet Url';
|
|
2472
|
+
type: 'text';
|
|
2473
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.';
|
|
2474
|
+
options: undefined;
|
|
2475
|
+
};
|
|
2467
2476
|
};
|
|
2468
2477
|
}
|
|
2469
2478
|
interface ThemePropsEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemePropsSchema> {
|
|
@@ -8991,6 +9000,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8991
9000
|
'sprucebotAvatar'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SprucebotAvatar | undefined | null;
|
|
8992
9001
|
'shouldRenderFirstFieldsLabel'?: boolean | undefined | null;
|
|
8993
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;
|
|
8994
9005
|
/** Present slide. The slide showing now! */
|
|
8995
9006
|
'presentSlide'?: number | undefined | null;
|
|
8996
9007
|
/** Submit handler. */
|
|
@@ -9170,6 +9181,21 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9170
9181
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebotSchema;
|
|
9171
9182
|
};
|
|
9172
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
|
+
};
|
|
9173
9199
|
/** Present slide. The slide showing now! */
|
|
9174
9200
|
'presentSlide': {
|
|
9175
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',
|
|
@@ -203,6 +203,13 @@ const themePropsSchema = {
|
|
|
203
203
|
type: 'schema',
|
|
204
204
|
options: { schema: cardStylesSchema_v2021_02_11, }
|
|
205
205
|
},
|
|
206
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
207
|
+
'stylesheetUrl': {
|
|
208
|
+
label: 'Stylesheet Url',
|
|
209
|
+
type: 'text',
|
|
210
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.',
|
|
211
|
+
options: undefined
|
|
212
|
+
},
|
|
206
213
|
}
|
|
207
214
|
};
|
|
208
215
|
SchemaRegistry.getInstance().trackSchema(themePropsSchema);
|
|
@@ -2245,6 +2245,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2245
2245
|
'fontFamilies'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FontFamily[] | undefined | null;
|
|
2246
2246
|
'fonts'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemeFonts | undefined | null;
|
|
2247
2247
|
'cardStyles'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardStyles | undefined | null;
|
|
2248
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
2249
|
+
'stylesheetUrl'?: string | undefined | null;
|
|
2248
2250
|
}
|
|
2249
2251
|
interface ThemePropsSchema extends SpruceSchema.Schema {
|
|
2250
2252
|
id: 'themeProps';
|
|
@@ -2464,6 +2466,13 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2464
2466
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardStylesSchema;
|
|
2465
2467
|
};
|
|
2466
2468
|
};
|
|
2469
|
+
/** Stylesheet Url. The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets. */
|
|
2470
|
+
'stylesheetUrl': {
|
|
2471
|
+
label: 'Stylesheet Url';
|
|
2472
|
+
type: 'text';
|
|
2473
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.';
|
|
2474
|
+
options: undefined;
|
|
2475
|
+
};
|
|
2467
2476
|
};
|
|
2468
2477
|
}
|
|
2469
2478
|
interface ThemePropsEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemePropsSchema> {
|
|
@@ -8991,6 +9000,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
8991
9000
|
'sprucebotAvatar'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.SprucebotAvatar | undefined | null;
|
|
8992
9001
|
'shouldRenderFirstFieldsLabel'?: boolean | undefined | null;
|
|
8993
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;
|
|
8994
9005
|
/** Present slide. The slide showing now! */
|
|
8995
9006
|
'presentSlide'?: number | undefined | null;
|
|
8996
9007
|
/** Submit handler. */
|
|
@@ -9170,6 +9181,21 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
9170
9181
|
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.TalkingSprucebotSchema;
|
|
9171
9182
|
};
|
|
9172
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
|
+
};
|
|
9173
9199
|
/** Present slide. The slide showing now! */
|
|
9174
9200
|
'presentSlide': {
|
|
9175
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
|
-
} }) }) }) }),
|
|
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: {
|
|
@@ -372,6 +372,11 @@ export default buildSchema({
|
|
|
372
372
|
}),
|
|
373
373
|
},
|
|
374
374
|
},
|
|
375
|
+
stylesheetUrl: {
|
|
376
|
+
type: 'text',
|
|
377
|
+
label: 'Stylesheet Url',
|
|
378
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.',
|
|
379
|
+
},
|
|
375
380
|
},
|
|
376
381
|
},
|
|
377
382
|
},
|
|
@@ -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',
|
|
@@ -377,6 +377,11 @@ exports.default = (0, schema_1.buildSchema)({
|
|
|
377
377
|
}),
|
|
378
378
|
},
|
|
379
379
|
},
|
|
380
|
+
stylesheetUrl: {
|
|
381
|
+
type: 'text',
|
|
382
|
+
label: 'Stylesheet Url',
|
|
383
|
+
hint: 'The url of the stylesheet to apply to the theme. Must be publicly served in some way and will be loaded after the core stylesheets.',
|
|
384
|
+
},
|
|
380
385
|
},
|
|
381
386
|
},
|
|
382
387
|
},
|
|
@@ -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