@jupytergis/schema 0.14.0 → 0.14.1
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.
|
@@ -53,6 +53,10 @@ export type Title = string;
|
|
|
53
53
|
* The type of story map
|
|
54
54
|
*/
|
|
55
55
|
export type StoryType = "guided" | "unguided";
|
|
56
|
+
/**
|
|
57
|
+
* Toggle the gradient background in presentation mode.
|
|
58
|
+
*/
|
|
59
|
+
export type UseGradientBackground = boolean;
|
|
56
60
|
/**
|
|
57
61
|
* The background color of the story map
|
|
58
62
|
*/
|
|
@@ -172,6 +176,7 @@ export interface IJGISStoryMap {
|
|
|
172
176
|
* Array of story segments for the story map
|
|
173
177
|
*/
|
|
174
178
|
storySegments?: string[];
|
|
179
|
+
showGradient?: UseGradientBackground;
|
|
175
180
|
presentationBgColor?: PresentationBackgroundColor;
|
|
176
181
|
presentationTextColor?: PresentationTextColor;
|
|
177
182
|
[k: string]: any;
|
package/lib/interfaces.d.ts
CHANGED
|
@@ -349,7 +349,6 @@ export interface IJupyterGISSettings {
|
|
|
349
349
|
rightPanelDisabled?: boolean;
|
|
350
350
|
layersDisabled?: boolean;
|
|
351
351
|
stacBrowserDisabled?: boolean;
|
|
352
|
-
filtersDisabled?: boolean;
|
|
353
352
|
objectPropertiesDisabled?: boolean;
|
|
354
353
|
annotationsDisabled?: boolean;
|
|
355
354
|
identifyDisabled?: boolean;
|
package/lib/model.js
CHANGED
|
@@ -164,6 +164,12 @@
|
|
|
164
164
|
"type": "string"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
+
"showGradient": {
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"title": "Use gradient background",
|
|
170
|
+
"description": "Toggle the gradient background in presentation mode.",
|
|
171
|
+
"default": true
|
|
172
|
+
},
|
|
167
173
|
"presentationBgColor": {
|
|
168
174
|
"type": "string",
|
|
169
175
|
"title": "Presentation Background Color",
|