@vertigis/arcgis-extensions 40.5.0 → 40.6.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.
- package/AppConfig.schema.json +3 -3
- package/data/TaskSettings.d.ts +18 -17
- package/data/TaskSettings.js +1 -1
- package/docs/html/assets/search.js +1 -1
- package/docs/html/classes/data_TaskSettings.TaskSettings.html +12 -11
- package/docs/html/interfaces/data_TaskSettings.TaskSettingsProperties.html +6 -6
- package/docs/html/variables/version.version.html +1 -1
- package/package.json +1 -1
- package/utilities/number.d.ts +3 -3
- package/utilities/number.js +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/AppConfig.schema.json
CHANGED
|
@@ -3053,9 +3053,9 @@
|
|
|
3053
3053
|
"description": "See{@linkdata /TaskSettings!TaskSettings.enableUpdate}.",
|
|
3054
3054
|
"type": "boolean"
|
|
3055
3055
|
},
|
|
3056
|
-
"
|
|
3057
|
-
"description": "See{@linkdata /TaskSettings!TaskSettings.
|
|
3058
|
-
"type": "
|
|
3056
|
+
"studioSearchSubindexId": {
|
|
3057
|
+
"description": "See{@linkdata /TaskSettings!TaskSettings.studioSearchSubindexId}.",
|
|
3058
|
+
"type": "string"
|
|
3059
3059
|
}
|
|
3060
3060
|
},
|
|
3061
3061
|
"type": "object"
|
package/data/TaskSettings.d.ts
CHANGED
|
@@ -21,10 +21,6 @@ export interface TaskSettingsProperties {
|
|
|
21
21
|
* See {@link data/TaskSettings!TaskSettings.enableSearch}.
|
|
22
22
|
*/
|
|
23
23
|
enableSearch?: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* See {@link data/TaskSettings!TaskSettings.useStudioSearch}.
|
|
26
|
-
*/
|
|
27
|
-
useStudioSearch?: boolean;
|
|
28
24
|
/**
|
|
29
25
|
* See {@link data/TaskSettings!TaskSettings.enableAdd}.
|
|
30
26
|
*/
|
|
@@ -41,6 +37,10 @@ export interface TaskSettingsProperties {
|
|
|
41
37
|
* See {@link data/TaskSettings!TaskSettings.enableEditing}.
|
|
42
38
|
*/
|
|
43
39
|
enableEditing?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* See {@link data/TaskSettings!TaskSettings.studioSearchSubindexId}.
|
|
42
|
+
*/
|
|
43
|
+
studioSearchSubindexId?: string;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* Settings that affect whether a feature source participates in common tasks
|
|
@@ -71,19 +71,6 @@ export declare class TaskSettings extends Settings<TaskSettingsProperties> {
|
|
|
71
71
|
*/
|
|
72
72
|
get enableSearch(): boolean;
|
|
73
73
|
set enableSearch(value: boolean);
|
|
74
|
-
/**
|
|
75
|
-
* Determines whether a second type of search should be available,
|
|
76
|
-
* specifically VertiGIS Studio Search. Things to note:
|
|
77
|
-
*
|
|
78
|
-
* - This setting requires enableSearch to be set to true in order to have any
|
|
79
|
-
* effect.
|
|
80
|
-
* - By enabling this setting a new search index will be created in VertiGIS
|
|
81
|
-
* Studio Search Designer.
|
|
82
|
-
* - Note that not all sources support VertiGIS Studio Search.
|
|
83
|
-
* - False by default.
|
|
84
|
-
*/
|
|
85
|
-
get useStudioSearch(): boolean;
|
|
86
|
-
set useStudioSearch(value: boolean);
|
|
87
74
|
/**
|
|
88
75
|
* Determines whether the feature source supports adding features. True by
|
|
89
76
|
* default.
|
|
@@ -110,6 +97,20 @@ export declare class TaskSettings extends Settings<TaskSettingsProperties> {
|
|
|
110
97
|
*/
|
|
111
98
|
get enableEditing(): boolean;
|
|
112
99
|
set enableEditing(value: boolean);
|
|
100
|
+
/**
|
|
101
|
+
* Saves the value of the subindex ID that is received back from Studio
|
|
102
|
+
* Search backend when the new layer/subindex is added to the Studio Search
|
|
103
|
+
* App Configuration. Things to note:
|
|
104
|
+
*
|
|
105
|
+
* - This setting requires enableSearch to be set to true in order to have any
|
|
106
|
+
* effect.
|
|
107
|
+
* - By enabling this setting a new search index will be created in VertiGIS
|
|
108
|
+
* Studio Search Designer.
|
|
109
|
+
* - Note that not all sources support VertiGIS Studio Search.
|
|
110
|
+
* - Empty by default.
|
|
111
|
+
*/
|
|
112
|
+
get studioSearchSubindexId(): string;
|
|
113
|
+
set studioSearchSubindexId(value: string);
|
|
113
114
|
/**
|
|
114
115
|
* @inheritDoc
|
|
115
116
|
*/
|
package/data/TaskSettings.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{__decorate as e}from"tslib";import{serializable as t}from"../support/Serializable.js";import{Settings as i}from"../support/Settings.js";let n=class extends i{get enableExport(){return this._getSetting("enableExport",!0)}set enableExport(e){this._setSetting("enableExport",e)}get enableIdentify(){return this._getSetting("enableIdentify",!0)}set enableIdentify(e){this._setSetting("enableIdentify",e)}get enableQuery(){return this._getSetting("enableQuery",!0)}set enableQuery(e){this._setSetting("enableQuery",e)}get enableSearch(){return this._getSetting("enableSearch",!0)}set enableSearch(e){this._setSetting("enableSearch",e)}get
|
|
1
|
+
import{__decorate as e}from"tslib";import{serializable as t}from"../support/Serializable.js";import{Settings as i}from"../support/Settings.js";let n=class extends i{get enableExport(){return this._getSetting("enableExport",!0)}set enableExport(e){this._setSetting("enableExport",e)}get enableIdentify(){return this._getSetting("enableIdentify",!0)}set enableIdentify(e){this._setSetting("enableIdentify",e)}get enableQuery(){return this._getSetting("enableQuery",!0)}set enableQuery(e){this._setSetting("enableQuery",e)}get enableSearch(){return this._getSetting("enableSearch",!0)}set enableSearch(e){this._setSetting("enableSearch",e)}get enableAdd(){return this._getSetting("enableAdd",!0)}set enableAdd(e){this._setSetting("enableAdd",e)}get enableUpdate(){return this._getSetting("enableUpdate",!0)}set enableUpdate(e){this._setSetting("enableUpdate",e)}get enableDelete(){return this._getSetting("enableDelete",!0)}set enableDelete(e){this._setSetting("enableDelete",e)}get enableEditing(){return this._getSetting("enableEditing",!0)}set enableEditing(e){this._setSetting("enableEditing",e)}get studioSearchSubindexId(){return this._getSetting("studioSearchSubindexId","")}set studioSearchSubindexId(e){this._getSetting("studioSearchSubindexId",e)}_getSerializableProperties(){return{enableAdd:"initial",enableDelete:"initial",enableEditing:"initial",enableExport:"initial",enableIdentify:"initial",enableQuery:"initial",enableSearch:"initial",enableUpdate:"initial",studioSearchSubindexId:"initial"}}};n=e([t],n);export{n as TaskSettings};
|