@esri/solution-creator 1.1.5 → 1.2.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/dist/umd/creator.umd.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* @preserve
|
|
2
|
-
* @esri/solution-creator - v1.
|
|
2
|
+
* @esri/solution-creator - v1.2.0 - Apache-2.0
|
|
3
3
|
* Copyright (c) 2018-2021 Esri, Inc.
|
|
4
|
-
*
|
|
4
|
+
* Thu Dec 09 2021 16:05:40 GMT-0800 (Pacific Standard Time)
|
|
5
5
|
*
|
|
6
6
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
* you may not use this file except in compliance with the License.
|
|
@@ -18,8 +18,31 @@
|
|
|
18
18
|
(function (global, factory) {
|
|
19
19
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@esri/solution-common'), require('@esri/hub-common'), require('@esri/solution-feature-layer'), require('@esri/solution-file'), require('@esri/solution-form'), require('@esri/solution-group'), require('@esri/solution-simple-types'), require('@esri/solution-storymap'), require('@esri/solution-velocity'), require('@esri/solution-web-experience'), require('@esri/solution-hub-types')) :
|
|
20
20
|
typeof define === 'function' && define.amd ? define(['exports', '@esri/solution-common', '@esri/hub-common', '@esri/solution-feature-layer', '@esri/solution-file', '@esri/solution-form', '@esri/solution-group', '@esri/solution-simple-types', '@esri/solution-storymap', '@esri/solution-velocity', '@esri/solution-web-experience', '@esri/solution-hub-types'], factory) :
|
|
21
|
-
(global = global || self, factory(global.arcgisSolution = global.arcgisSolution || {}, global.arcgisSolution, global.arcgisHub, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution));
|
|
22
|
-
}(this, (function (exports, solutionCommon, hubCommon, featureLayer, fileProcessor, formProcessor, group, solutionSimpleTypes, solutionStorymap, solutionVelocity, solutionWebExperience, solutionHubTypes) { 'use strict';
|
|
21
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.arcgisSolution = global.arcgisSolution || {}, global.arcgisSolution, global.arcgisHub, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution, global.arcgisSolution));
|
|
22
|
+
})(this, (function (exports, solutionCommon, hubCommon, featureLayer, fileProcessor, formProcessor, group, solutionSimpleTypes, solutionStorymap, solutionVelocity, solutionWebExperience, solutionHubTypes) { 'use strict';
|
|
23
|
+
|
|
24
|
+
function _interopNamespace(e) {
|
|
25
|
+
if (e && e.__esModule) return e;
|
|
26
|
+
var n = Object.create(null);
|
|
27
|
+
if (e) {
|
|
28
|
+
Object.keys(e).forEach(function (k) {
|
|
29
|
+
if (k !== 'default') {
|
|
30
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
31
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return e[k]; }
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
n["default"] = e;
|
|
39
|
+
return Object.freeze(n);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
var featureLayer__namespace = /*#__PURE__*/_interopNamespace(featureLayer);
|
|
43
|
+
var fileProcessor__namespace = /*#__PURE__*/_interopNamespace(fileProcessor);
|
|
44
|
+
var formProcessor__namespace = /*#__PURE__*/_interopNamespace(formProcessor);
|
|
45
|
+
var group__namespace = /*#__PURE__*/_interopNamespace(group);
|
|
23
46
|
|
|
24
47
|
/** @license
|
|
25
48
|
* Copyright 2020 Esri
|
|
@@ -45,12 +68,12 @@
|
|
|
45
68
|
const moduleMap = {
|
|
46
69
|
////////////////////////////////////////////////////////
|
|
47
70
|
// Group type
|
|
48
|
-
Group:
|
|
71
|
+
Group: group__namespace,
|
|
49
72
|
////////////////////////////////////////////////////////
|
|
50
73
|
// Layer types
|
|
51
74
|
"Big Data Analytic": solutionVelocity.VelocityProcessor,
|
|
52
75
|
"Feature Collection": solutionSimpleTypes.simpleTypes,
|
|
53
|
-
"Feature Service":
|
|
76
|
+
"Feature Service": featureLayer__namespace,
|
|
54
77
|
Feed: solutionVelocity.VelocityProcessor,
|
|
55
78
|
"Geocoding Service": undefined,
|
|
56
79
|
"Geodata Service": undefined,
|
|
@@ -59,7 +82,7 @@
|
|
|
59
82
|
"Globe Service": undefined,
|
|
60
83
|
"Image Service": undefined,
|
|
61
84
|
KML: undefined,
|
|
62
|
-
"Map Service":
|
|
85
|
+
"Map Service": featureLayer__namespace,
|
|
63
86
|
"Network Analysis Service": undefined,
|
|
64
87
|
"Real Time Analytic": solutionVelocity.VelocityProcessor,
|
|
65
88
|
"Relational Database Connection": undefined,
|
|
@@ -83,7 +106,7 @@
|
|
|
83
106
|
"Data Store": undefined,
|
|
84
107
|
"Desktop Application": undefined,
|
|
85
108
|
"Excalibur Imagery Project": undefined,
|
|
86
|
-
Form:
|
|
109
|
+
Form: formProcessor__namespace,
|
|
87
110
|
"Hub Initiative": UNSUPPORTED,
|
|
88
111
|
"Hub Page": solutionHubTypes.HubPageProcessor,
|
|
89
112
|
"Hub Site Application": solutionHubTypes.HubSiteProcessor,
|
|
@@ -108,95 +131,95 @@
|
|
|
108
131
|
"Workforce Project": solutionSimpleTypes.simpleTypes,
|
|
109
132
|
////////////////////////////////////////////////////////
|
|
110
133
|
// File types
|
|
111
|
-
"360 VR Experience":
|
|
112
|
-
"AppBuilder Extension":
|
|
113
|
-
"AppBuilder Widget Package":
|
|
114
|
-
"Application Configuration":
|
|
115
|
-
"ArcGIS Pro Add In":
|
|
116
|
-
"ArcGIS Pro Configuration":
|
|
117
|
-
"ArcPad Package":
|
|
118
|
-
"Basemap Package":
|
|
119
|
-
"CAD Drawing":
|
|
120
|
-
"CityEngine Web Scene":
|
|
134
|
+
"360 VR Experience": fileProcessor__namespace,
|
|
135
|
+
"AppBuilder Extension": fileProcessor__namespace,
|
|
136
|
+
"AppBuilder Widget Package": fileProcessor__namespace,
|
|
137
|
+
"Application Configuration": fileProcessor__namespace,
|
|
138
|
+
"ArcGIS Pro Add In": fileProcessor__namespace,
|
|
139
|
+
"ArcGIS Pro Configuration": fileProcessor__namespace,
|
|
140
|
+
"ArcPad Package": fileProcessor__namespace,
|
|
141
|
+
"Basemap Package": fileProcessor__namespace,
|
|
142
|
+
"CAD Drawing": fileProcessor__namespace,
|
|
143
|
+
"CityEngine Web Scene": fileProcessor__namespace,
|
|
121
144
|
"Code Attachment": UNSUPPORTED,
|
|
122
|
-
"Code Sample":
|
|
123
|
-
"Color Set":
|
|
124
|
-
"Compact Tile Package":
|
|
125
|
-
"CSV Collection":
|
|
126
|
-
CSV:
|
|
127
|
-
"Deep Learning Package":
|
|
128
|
-
"Desktop Add In":
|
|
129
|
-
"Desktop Application Template":
|
|
130
|
-
"Desktop Style":
|
|
131
|
-
"Document Link":
|
|
132
|
-
"Explorer Add In":
|
|
133
|
-
"Explorer Layer":
|
|
134
|
-
"Explorer Map":
|
|
135
|
-
"Feature Collection Template":
|
|
136
|
-
"File Geodatabase":
|
|
137
|
-
GeoJson:
|
|
138
|
-
GeoPackage:
|
|
139
|
-
"Geoprocessing Package":
|
|
140
|
-
"Geoprocessing Sample":
|
|
141
|
-
"Globe Document":
|
|
142
|
-
"Image Collection":
|
|
143
|
-
Image:
|
|
144
|
-
"iWork Keynote":
|
|
145
|
-
"iWork Numbers":
|
|
146
|
-
"iWork Pages":
|
|
147
|
-
"KML Collection":
|
|
148
|
-
"Layer Package":
|
|
149
|
-
"Layer Template":
|
|
150
|
-
Layer:
|
|
151
|
-
Layout:
|
|
152
|
-
"Locator Package":
|
|
153
|
-
"Map Document":
|
|
154
|
-
"Map Package":
|
|
155
|
-
"Map Template":
|
|
156
|
-
"Microsoft Excel":
|
|
157
|
-
"Microsoft Powerpoint":
|
|
158
|
-
"Microsoft Word":
|
|
159
|
-
"Mobile Basemap Package":
|
|
160
|
-
"Mobile Map Package":
|
|
161
|
-
"Mobile Scene Package":
|
|
162
|
-
"Native Application":
|
|
163
|
-
"Native Application Installer":
|
|
164
|
-
"Native Application Template":
|
|
165
|
-
netCDF:
|
|
166
|
-
"Operation View":
|
|
167
|
-
"Operations Dashboard Add In":
|
|
168
|
-
"Operations Dashboard Extension":
|
|
169
|
-
PDF:
|
|
170
|
-
"Pro Layer Package":
|
|
171
|
-
"Pro Layer":
|
|
172
|
-
"Pro Map Package":
|
|
173
|
-
"Pro Map":
|
|
174
|
-
"Pro Report":
|
|
175
|
-
"Project Package":
|
|
176
|
-
"Project Template":
|
|
177
|
-
"Published Map":
|
|
178
|
-
"Raster function template":
|
|
179
|
-
"Report Template":
|
|
180
|
-
"Rule Package":
|
|
181
|
-
"Scene Document":
|
|
182
|
-
"Scene Package":
|
|
183
|
-
"Service Definition":
|
|
184
|
-
Shapefile:
|
|
185
|
-
"Statistical Data Collection":
|
|
186
|
-
Style:
|
|
187
|
-
"Survey123 Add In":
|
|
188
|
-
"Symbol Set":
|
|
189
|
-
"Task File":
|
|
190
|
-
"Tile Package":
|
|
191
|
-
"Toolbox Package":
|
|
192
|
-
"Vector Tile Package":
|
|
193
|
-
"Viewer Configuration":
|
|
194
|
-
"Visio Document":
|
|
195
|
-
"Window Mobile Package":
|
|
196
|
-
"Windows Mobile Package":
|
|
197
|
-
"Windows Viewer Add In":
|
|
198
|
-
"Windows Viewer Configuration":
|
|
199
|
-
"Workflow Manager Package":
|
|
145
|
+
"Code Sample": fileProcessor__namespace,
|
|
146
|
+
"Color Set": fileProcessor__namespace,
|
|
147
|
+
"Compact Tile Package": fileProcessor__namespace,
|
|
148
|
+
"CSV Collection": fileProcessor__namespace,
|
|
149
|
+
CSV: fileProcessor__namespace,
|
|
150
|
+
"Deep Learning Package": fileProcessor__namespace,
|
|
151
|
+
"Desktop Add In": fileProcessor__namespace,
|
|
152
|
+
"Desktop Application Template": fileProcessor__namespace,
|
|
153
|
+
"Desktop Style": fileProcessor__namespace,
|
|
154
|
+
"Document Link": fileProcessor__namespace,
|
|
155
|
+
"Explorer Add In": fileProcessor__namespace,
|
|
156
|
+
"Explorer Layer": fileProcessor__namespace,
|
|
157
|
+
"Explorer Map": fileProcessor__namespace,
|
|
158
|
+
"Feature Collection Template": fileProcessor__namespace,
|
|
159
|
+
"File Geodatabase": fileProcessor__namespace,
|
|
160
|
+
GeoJson: fileProcessor__namespace,
|
|
161
|
+
GeoPackage: fileProcessor__namespace,
|
|
162
|
+
"Geoprocessing Package": fileProcessor__namespace,
|
|
163
|
+
"Geoprocessing Sample": fileProcessor__namespace,
|
|
164
|
+
"Globe Document": fileProcessor__namespace,
|
|
165
|
+
"Image Collection": fileProcessor__namespace,
|
|
166
|
+
Image: fileProcessor__namespace,
|
|
167
|
+
"iWork Keynote": fileProcessor__namespace,
|
|
168
|
+
"iWork Numbers": fileProcessor__namespace,
|
|
169
|
+
"iWork Pages": fileProcessor__namespace,
|
|
170
|
+
"KML Collection": fileProcessor__namespace,
|
|
171
|
+
"Layer Package": fileProcessor__namespace,
|
|
172
|
+
"Layer Template": fileProcessor__namespace,
|
|
173
|
+
Layer: fileProcessor__namespace,
|
|
174
|
+
Layout: fileProcessor__namespace,
|
|
175
|
+
"Locator Package": fileProcessor__namespace,
|
|
176
|
+
"Map Document": fileProcessor__namespace,
|
|
177
|
+
"Map Package": fileProcessor__namespace,
|
|
178
|
+
"Map Template": fileProcessor__namespace,
|
|
179
|
+
"Microsoft Excel": fileProcessor__namespace,
|
|
180
|
+
"Microsoft Powerpoint": fileProcessor__namespace,
|
|
181
|
+
"Microsoft Word": fileProcessor__namespace,
|
|
182
|
+
"Mobile Basemap Package": fileProcessor__namespace,
|
|
183
|
+
"Mobile Map Package": fileProcessor__namespace,
|
|
184
|
+
"Mobile Scene Package": fileProcessor__namespace,
|
|
185
|
+
"Native Application": fileProcessor__namespace,
|
|
186
|
+
"Native Application Installer": fileProcessor__namespace,
|
|
187
|
+
"Native Application Template": fileProcessor__namespace,
|
|
188
|
+
netCDF: fileProcessor__namespace,
|
|
189
|
+
"Operation View": fileProcessor__namespace,
|
|
190
|
+
"Operations Dashboard Add In": fileProcessor__namespace,
|
|
191
|
+
"Operations Dashboard Extension": fileProcessor__namespace,
|
|
192
|
+
PDF: fileProcessor__namespace,
|
|
193
|
+
"Pro Layer Package": fileProcessor__namespace,
|
|
194
|
+
"Pro Layer": fileProcessor__namespace,
|
|
195
|
+
"Pro Map Package": fileProcessor__namespace,
|
|
196
|
+
"Pro Map": fileProcessor__namespace,
|
|
197
|
+
"Pro Report": fileProcessor__namespace,
|
|
198
|
+
"Project Package": fileProcessor__namespace,
|
|
199
|
+
"Project Template": fileProcessor__namespace,
|
|
200
|
+
"Published Map": fileProcessor__namespace,
|
|
201
|
+
"Raster function template": fileProcessor__namespace,
|
|
202
|
+
"Report Template": fileProcessor__namespace,
|
|
203
|
+
"Rule Package": fileProcessor__namespace,
|
|
204
|
+
"Scene Document": fileProcessor__namespace,
|
|
205
|
+
"Scene Package": fileProcessor__namespace,
|
|
206
|
+
"Service Definition": fileProcessor__namespace,
|
|
207
|
+
Shapefile: fileProcessor__namespace,
|
|
208
|
+
"Statistical Data Collection": fileProcessor__namespace,
|
|
209
|
+
Style: fileProcessor__namespace,
|
|
210
|
+
"Survey123 Add In": fileProcessor__namespace,
|
|
211
|
+
"Symbol Set": fileProcessor__namespace,
|
|
212
|
+
"Task File": fileProcessor__namespace,
|
|
213
|
+
"Tile Package": fileProcessor__namespace,
|
|
214
|
+
"Toolbox Package": fileProcessor__namespace,
|
|
215
|
+
"Vector Tile Package": fileProcessor__namespace,
|
|
216
|
+
"Viewer Configuration": fileProcessor__namespace,
|
|
217
|
+
"Visio Document": fileProcessor__namespace,
|
|
218
|
+
"Window Mobile Package": fileProcessor__namespace,
|
|
219
|
+
"Windows Mobile Package": fileProcessor__namespace,
|
|
220
|
+
"Windows Viewer Add In": fileProcessor__namespace,
|
|
221
|
+
"Windows Viewer Configuration": fileProcessor__namespace,
|
|
222
|
+
"Workflow Manager Package": fileProcessor__namespace,
|
|
200
223
|
////////////////////////////////////////////////////////
|
|
201
224
|
// Testing "types"
|
|
202
225
|
Undefined: undefined,
|
|
@@ -1261,5 +1284,5 @@
|
|
|
1261
1284
|
|
|
1262
1285
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1263
1286
|
|
|
1264
|
-
}))
|
|
1287
|
+
}));
|
|
1265
1288
|
//# sourceMappingURL=creator.umd.js.map
|