@esri/solutions-components 5.1.0-next.140 → 5.1.0-next.142
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/cdn/{AYQT4HC4.js → 34JROLRM.js} +1 -1
- package/dist/cdn/4WJ2UJWQ.js +2 -0
- package/dist/cdn/{PV6MK2E6.js → FV4F6RW3.js} +1 -1
- package/dist/cdn/{QTZMCFZB.js → LLPT3R4B.js} +16 -16
- package/dist/cdn/{7J2F4TFI.js → PUQBEN7F.js} +1 -1
- package/dist/cdn/{TSYIZSCP.js → RYEEEMFO.js} +11 -1
- package/dist/cdn/S6U6SXMD.js +2 -0
- package/dist/cdn/{RMCQZMLA.js → TIRNZIMX.js} +1 -1
- package/dist/cdn/{OYBEDO63.js → UVOAWVML.js} +1 -1
- package/dist/cdn/{SAJPXZDW.js → WCOEPRRK.js} +1 -1
- package/dist/cdn/{NN52IXXG.js → YM3CRTWP.js} +1 -1
- package/dist/cdn/assets/solution-builder-assistant/t9n/messages.en.json +1 -1
- package/dist/cdn/assets/solution-builder-assistant/t9n/messages.json +1 -1
- package/dist/cdn/index.js +1 -1
- package/dist/chunks/converter.js +114 -105
- package/dist/chunks/designSolution.js +11 -1
- package/dist/chunks/solution-builder-assistant.js +56 -27
- package/dist/chunks/updateDesign.js +1 -1
- package/dist/components/arcgis-solutions-assistant/customElement.js +182 -174
- package/dist/components/solution-builder-assistant/customElement.d.ts +2 -0
- package/dist/components/solution-builder-assistant/customElement.js +3 -2
- package/dist/components/solution-builder-assistant/index.js +1 -0
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/solutions-components_commit.txt +8 -5
- package/package.json +1 -1
- package/dist/cdn/LDNPRHOM.js +0 -2
- package/dist/cdn/WPGT2HLS.js +0 -2
|
@@ -137,6 +137,7 @@ export abstract class SolutionBuilderAssistant extends LitElement {
|
|
|
137
137
|
fieldValueType_coordinate: string;
|
|
138
138
|
fieldValueType_dateAndTime: string;
|
|
139
139
|
fieldValueType_none: string;
|
|
140
|
+
checkPrivileges: string;
|
|
140
141
|
missingPrivilegesPopup: {
|
|
141
142
|
missingLicensingOrPrivileges: string;
|
|
142
143
|
missingPrivilegesListHeading: string;
|
|
@@ -291,6 +292,7 @@ export abstract class SolutionBuilderAssistant extends LitElement {
|
|
|
291
292
|
fieldValueType_coordinate: string;
|
|
292
293
|
fieldValueType_dateAndTime: string;
|
|
293
294
|
fieldValueType_none: string;
|
|
295
|
+
checkPrivileges: string;
|
|
294
296
|
missingPrivilegesPopup: {
|
|
295
297
|
missingLicensingOrPrivileges: string;
|
|
296
298
|
missingPrivilegesListHeading: string;
|
|
@@ -5,7 +5,7 @@ import "lit/directives/keyed.js";
|
|
|
5
5
|
import "../../chunks/useT9n.js";
|
|
6
6
|
import "lit-html/directives/ref.js";
|
|
7
7
|
import "@arcgis/lumina";
|
|
8
|
-
import { S as
|
|
8
|
+
import { S as B } from "../../chunks/solution-builder-assistant.js";
|
|
9
9
|
import "@arcgis/lumina/context";
|
|
10
10
|
import "../../chunks/deployAppContexts.js";
|
|
11
11
|
import "../../chunks/helpers.js";
|
|
@@ -14,6 +14,7 @@ import "../../chunks/validators.js";
|
|
|
14
14
|
import "../../chunks/solution-deploy-dialog.js";
|
|
15
15
|
import "../solution-deploying-dialog/customElement.js";
|
|
16
16
|
import "../../chunks/templates.js";
|
|
17
|
+
import "@esri/solution-common";
|
|
17
18
|
export {
|
|
18
|
-
|
|
19
|
+
B as SolutionBuilderAssistant
|
|
19
20
|
};
|
|
@@ -26,4 +26,5 @@ import "@esri/calcite-components/components/calcite-label";
|
|
|
26
26
|
import "@esri/calcite-components/components/calcite-table";
|
|
27
27
|
import "@esri/calcite-components/components/calcite-table-header";
|
|
28
28
|
import "@esri/calcite-components/components/calcite-input-number";
|
|
29
|
+
import "@esri/calcite-components/components/calcite-popover";
|
|
29
30
|
export * from "./customElement.js";
|