@arcgis/instant-apps-components-react 4.34.0-next.99 → 4.34.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/LICENSE.md +17 -0
- package/README.md +2 -14
- package/dist/components.d.ts +9 -0
- package/dist/index.js +80 -62
- package/package.json +7 -7
package/LICENSE.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Licensing
|
|
2
|
+
|
|
3
|
+
COPYRIGHT © Esri
|
|
4
|
+
|
|
5
|
+
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
6
|
+
|
|
7
|
+
This material is licensed for use under the [Esri Master License Agreement (MLA)](https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf), and is bound by the terms of that agreement.
|
|
8
|
+
You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.
|
|
9
|
+
|
|
10
|
+
For additional information, contact:
|
|
11
|
+
Environmental Systems Research Institute, Inc.
|
|
12
|
+
Attn: Contracts and Legal Services Department
|
|
13
|
+
380 New York Street
|
|
14
|
+
Redlands, California, USA 92373
|
|
15
|
+
USA
|
|
16
|
+
|
|
17
|
+
email: legal@esri.com
|
package/README.md
CHANGED
|
@@ -24,18 +24,6 @@ We welcome contributions to this project. See the main [instant-apps-components
|
|
|
24
24
|
|
|
25
25
|
## License
|
|
26
26
|
|
|
27
|
-
COPYRIGHT ©
|
|
27
|
+
COPYRIGHT © Esri
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
This material is licensed for use under the [Esri Master License Agreement (MLA)](https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf), and is bound by the terms of that agreement.
|
|
32
|
-
You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.
|
|
33
|
-
|
|
34
|
-
For additional information, contact:
|
|
35
|
-
Environmental Systems Research Institute, Inc.
|
|
36
|
-
Attn: Contracts and Legal Services Department
|
|
37
|
-
380 New York Street
|
|
38
|
-
Redlands, California, USA 92373
|
|
39
|
-
USA
|
|
40
|
-
|
|
41
|
-
email: legal@esri.com
|
|
29
|
+
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package.
|
package/dist/components.d.ts
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
/// <reference types="@arcgis/instant-apps-components" preserve="true" />
|
|
2
2
|
import { EventName } from '@lit/react';
|
|
3
|
+
export declare const InstantAppsAppError: import('@lit/react').ReactWebComponent<HTMLInstantAppsAppErrorElement & {
|
|
4
|
+
class?: string;
|
|
5
|
+
}, {}>;
|
|
3
6
|
export declare const InstantAppsAppGuide: import('@lit/react').ReactWebComponent<HTMLInstantAppsAppGuideElement & {
|
|
4
7
|
class?: string;
|
|
5
8
|
}, {}>;
|
|
9
|
+
export declare const InstantAppsBuffer: import('@lit/react').ReactWebComponent<HTMLInstantAppsBufferElement & {
|
|
10
|
+
class?: string;
|
|
11
|
+
}, {}>;
|
|
6
12
|
export declare const InstantAppsControlPanel: import('@lit/react').ReactWebComponent<HTMLInstantAppsControlPanelElement & {
|
|
7
13
|
class?: string;
|
|
8
14
|
}, {}>;
|
|
@@ -92,6 +98,9 @@ export declare const InstantAppsCkeditorWrapper: import('@lit/react').ReactWebCo
|
|
|
92
98
|
onDataChanged: EventName<HTMLInstantAppsCkeditorWrapperElement["dataChanged"]>;
|
|
93
99
|
onIsFocused: EventName<HTMLInstantAppsCkeditorWrapperElement["isFocused"]>;
|
|
94
100
|
}>;
|
|
101
|
+
export declare const InstantAppsLanguageTranslatorContent: import('@lit/react').ReactWebComponent<HTMLInstantAppsLanguageTranslatorContentElement & {
|
|
102
|
+
class?: string;
|
|
103
|
+
}, {}>;
|
|
95
104
|
export declare const InstantAppsLanguageTranslatorItem: import('@lit/react').ReactWebComponent<HTMLInstantAppsLanguageTranslatorItemElement & {
|
|
96
105
|
class?: string;
|
|
97
106
|
}, {
|
package/dist/index.js
CHANGED
|
@@ -3,34 +3,44 @@ import { createComponent as a } from "@lit/react";
|
|
|
3
3
|
import { makeReactWrapperFactory as s, getReactWrapperOptions as t } from "@arcgis/lumina";
|
|
4
4
|
const n = /* @__PURE__ */ s(e, a), i = /* @__PURE__ */ n(
|
|
5
5
|
t(
|
|
6
|
-
"instant-apps-app-
|
|
6
|
+
"instant-apps-app-error",
|
|
7
7
|
{}
|
|
8
8
|
)
|
|
9
9
|
), d = /* @__PURE__ */ n(
|
|
10
10
|
t(
|
|
11
|
-
"instant-apps-
|
|
11
|
+
"instant-apps-app-guide",
|
|
12
12
|
{}
|
|
13
13
|
)
|
|
14
14
|
), c = /* @__PURE__ */ n(
|
|
15
15
|
t(
|
|
16
|
-
"instant-apps-
|
|
16
|
+
"instant-apps-buffer",
|
|
17
17
|
{}
|
|
18
18
|
)
|
|
19
19
|
), l = /* @__PURE__ */ n(
|
|
20
|
+
t(
|
|
21
|
+
"instant-apps-control-panel",
|
|
22
|
+
{}
|
|
23
|
+
)
|
|
24
|
+
), g = /* @__PURE__ */ n(
|
|
25
|
+
t(
|
|
26
|
+
"instant-apps-create",
|
|
27
|
+
{}
|
|
28
|
+
)
|
|
29
|
+
), I = /* @__PURE__ */ n(
|
|
20
30
|
t(
|
|
21
31
|
"instant-apps-export",
|
|
22
32
|
{
|
|
23
33
|
onExportOutputUpdated: "exportOutputUpdated"
|
|
24
34
|
}
|
|
25
35
|
)
|
|
26
|
-
),
|
|
36
|
+
), u = /* @__PURE__ */ n(
|
|
27
37
|
t(
|
|
28
38
|
"instant-apps-export-views",
|
|
29
39
|
{
|
|
30
40
|
onExportOutputUpdated: "exportOutputUpdated"
|
|
31
41
|
}
|
|
32
42
|
)
|
|
33
|
-
),
|
|
43
|
+
), A = /* @__PURE__ */ n(
|
|
34
44
|
t(
|
|
35
45
|
"instant-apps-filter-list",
|
|
36
46
|
{
|
|
@@ -38,58 +48,58 @@ const n = /* @__PURE__ */ s(e, a), i = /* @__PURE__ */ n(
|
|
|
38
48
|
onFilterUpdate: "filterUpdate"
|
|
39
49
|
}
|
|
40
50
|
)
|
|
41
|
-
),
|
|
51
|
+
), m = /* @__PURE__ */ n(
|
|
42
52
|
t(
|
|
43
53
|
"instant-apps-header",
|
|
44
54
|
{
|
|
45
55
|
onInfoIsOpenChanged: "infoIsOpenChanged"
|
|
46
56
|
}
|
|
47
57
|
)
|
|
48
|
-
),
|
|
58
|
+
), L = /* @__PURE__ */ n(
|
|
49
59
|
t(
|
|
50
60
|
"instant-apps-interactive-legend",
|
|
51
61
|
{}
|
|
52
62
|
)
|
|
53
|
-
),
|
|
63
|
+
), v = /* @__PURE__ */ n(
|
|
54
64
|
t(
|
|
55
65
|
"instant-apps-interactive-legend-classic",
|
|
56
66
|
{}
|
|
57
67
|
)
|
|
58
|
-
),
|
|
68
|
+
), C = /* @__PURE__ */ n(
|
|
59
69
|
t(
|
|
60
70
|
"instant-apps-interactive-legend-count",
|
|
61
71
|
{}
|
|
62
72
|
)
|
|
63
|
-
),
|
|
73
|
+
), h = /* @__PURE__ */ n(
|
|
64
74
|
t(
|
|
65
75
|
"instant-apps-interactive-legend-group-legend-element",
|
|
66
76
|
{}
|
|
67
77
|
)
|
|
68
|
-
),
|
|
78
|
+
), E = /* @__PURE__ */ n(
|
|
69
79
|
t(
|
|
70
80
|
"instant-apps-interactive-legend-group-legend-element-caption",
|
|
71
81
|
{
|
|
72
82
|
onGroupLayerCaptionElementExpandUpdated: "groupLayerCaptionElementExpandUpdated"
|
|
73
83
|
}
|
|
74
84
|
)
|
|
75
|
-
),
|
|
85
|
+
), U = /* @__PURE__ */ n(
|
|
76
86
|
t(
|
|
77
87
|
"instant-apps-interactive-legend-layer-element",
|
|
78
88
|
{}
|
|
79
89
|
)
|
|
80
|
-
),
|
|
90
|
+
), S = /* @__PURE__ */ n(
|
|
81
91
|
t(
|
|
82
92
|
"instant-apps-interactive-legend-layer-element-caption",
|
|
83
93
|
{
|
|
84
94
|
onLayerCaptionElementExpandUpdated: "layerCaptionElementExpandUpdated"
|
|
85
95
|
}
|
|
86
96
|
)
|
|
87
|
-
),
|
|
97
|
+
), x = /* @__PURE__ */ n(
|
|
88
98
|
t(
|
|
89
99
|
"instant-apps-interactive-legend-legend-element",
|
|
90
100
|
{}
|
|
91
101
|
)
|
|
92
|
-
),
|
|
102
|
+
), f = /* @__PURE__ */ n(
|
|
93
103
|
t(
|
|
94
104
|
"instant-apps-interactive-legend-legend-element-caption",
|
|
95
105
|
{
|
|
@@ -97,17 +107,17 @@ const n = /* @__PURE__ */ s(e, a), i = /* @__PURE__ */ n(
|
|
|
97
107
|
onShowAllSelected: "showAllSelected"
|
|
98
108
|
}
|
|
99
109
|
)
|
|
100
|
-
),
|
|
110
|
+
), y = /* @__PURE__ */ n(
|
|
101
111
|
t(
|
|
102
112
|
"instant-apps-interactive-legend-relationship",
|
|
103
113
|
{}
|
|
104
114
|
)
|
|
105
|
-
),
|
|
115
|
+
), O = /* @__PURE__ */ n(
|
|
106
116
|
t(
|
|
107
117
|
"instant-apps-keyboard-shortcuts",
|
|
108
118
|
{}
|
|
109
119
|
)
|
|
110
|
-
),
|
|
120
|
+
), P = /* @__PURE__ */ n(
|
|
111
121
|
t(
|
|
112
122
|
"instant-apps-landing-page",
|
|
113
123
|
{
|
|
@@ -115,14 +125,14 @@ const n = /* @__PURE__ */ s(e, a), i = /* @__PURE__ */ n(
|
|
|
115
125
|
onLandingPageOpen: "landingPageOpen"
|
|
116
126
|
}
|
|
117
127
|
)
|
|
118
|
-
),
|
|
128
|
+
), T = /* @__PURE__ */ n(
|
|
119
129
|
t(
|
|
120
130
|
"instant-apps-language-switcher",
|
|
121
131
|
{
|
|
122
132
|
onSelectedLanguageUpdated: "selectedLanguageUpdated"
|
|
123
133
|
}
|
|
124
134
|
)
|
|
125
|
-
),
|
|
135
|
+
), b = /* @__PURE__ */ n(
|
|
126
136
|
t(
|
|
127
137
|
"instant-apps-language-translator",
|
|
128
138
|
{
|
|
@@ -138,103 +148,111 @@ const n = /* @__PURE__ */ s(e, a), i = /* @__PURE__ */ n(
|
|
|
138
148
|
}
|
|
139
149
|
)
|
|
140
150
|
), F = /* @__PURE__ */ n(
|
|
151
|
+
t(
|
|
152
|
+
"instant-apps-language-translator-content",
|
|
153
|
+
{}
|
|
154
|
+
)
|
|
155
|
+
), R = /* @__PURE__ */ n(
|
|
141
156
|
t(
|
|
142
157
|
"instant-apps-language-translator-item",
|
|
143
158
|
{
|
|
144
159
|
onTranslatorItemDataUpdated: "translatorItemDataUpdated"
|
|
145
160
|
}
|
|
146
161
|
)
|
|
147
|
-
),
|
|
162
|
+
), D = /* @__PURE__ */ n(
|
|
148
163
|
t(
|
|
149
164
|
"instant-apps-language-translator-search",
|
|
150
165
|
{
|
|
151
166
|
onSuggestionSelected: "suggestionSelected"
|
|
152
167
|
}
|
|
153
168
|
)
|
|
154
|
-
),
|
|
169
|
+
), k = /* @__PURE__ */ n(
|
|
155
170
|
t(
|
|
156
171
|
"instant-apps-measurement",
|
|
157
172
|
{
|
|
158
173
|
onMeasureActive: "measureActive"
|
|
159
174
|
}
|
|
160
175
|
)
|
|
161
|
-
),
|
|
176
|
+
), G = /* @__PURE__ */ n(
|
|
162
177
|
t(
|
|
163
178
|
"instant-apps-measurement-tool",
|
|
164
179
|
{}
|
|
165
180
|
)
|
|
166
|
-
),
|
|
181
|
+
), W = /* @__PURE__ */ n(
|
|
167
182
|
t(
|
|
168
183
|
"instant-apps-popover",
|
|
169
184
|
{}
|
|
170
185
|
)
|
|
171
|
-
),
|
|
186
|
+
), M = /* @__PURE__ */ n(
|
|
172
187
|
t(
|
|
173
188
|
"instant-apps-popovers",
|
|
174
189
|
{}
|
|
175
190
|
)
|
|
176
|
-
),
|
|
191
|
+
), B = /* @__PURE__ */ n(
|
|
177
192
|
t(
|
|
178
193
|
"instant-apps-scoreboard",
|
|
179
194
|
{
|
|
180
195
|
onScoreboardItemsUpdated: "scoreboardItemsUpdated"
|
|
181
196
|
}
|
|
182
197
|
)
|
|
183
|
-
),
|
|
198
|
+
), H = /* @__PURE__ */ n(
|
|
184
199
|
t(
|
|
185
200
|
"instant-apps-sign-in",
|
|
186
201
|
{}
|
|
187
202
|
)
|
|
188
|
-
),
|
|
203
|
+
), K = /* @__PURE__ */ n(
|
|
189
204
|
t(
|
|
190
205
|
"instant-apps-social-share",
|
|
191
206
|
{}
|
|
192
207
|
)
|
|
193
|
-
),
|
|
208
|
+
), V = /* @__PURE__ */ n(
|
|
194
209
|
t(
|
|
195
210
|
"instant-apps-splash",
|
|
196
211
|
{
|
|
197
212
|
onSplashClose: "splashClose"
|
|
198
213
|
}
|
|
199
214
|
)
|
|
200
|
-
),
|
|
215
|
+
), j = /* @__PURE__ */ n(
|
|
201
216
|
t(
|
|
202
217
|
"instant-apps-time-filter",
|
|
203
218
|
{}
|
|
204
219
|
)
|
|
205
220
|
);
|
|
206
221
|
export {
|
|
207
|
-
i as
|
|
222
|
+
i as InstantAppsAppError,
|
|
223
|
+
d as InstantAppsAppGuide,
|
|
224
|
+
c as InstantAppsBuffer,
|
|
208
225
|
w as InstantAppsCkeditorWrapper,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
F as
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
226
|
+
l as InstantAppsControlPanel,
|
|
227
|
+
g as InstantAppsCreate,
|
|
228
|
+
I as InstantAppsExport,
|
|
229
|
+
u as InstantAppsExportViews,
|
|
230
|
+
A as InstantAppsFilterList,
|
|
231
|
+
m as InstantAppsHeader,
|
|
232
|
+
L as InstantAppsInteractiveLegend,
|
|
233
|
+
v as InstantAppsInteractiveLegendClassic,
|
|
234
|
+
C as InstantAppsInteractiveLegendCount,
|
|
235
|
+
h as InstantAppsInteractiveLegendGroupLegendElement,
|
|
236
|
+
E as InstantAppsInteractiveLegendGroupLegendElementCaption,
|
|
237
|
+
U as InstantAppsInteractiveLegendLayerElement,
|
|
238
|
+
S as InstantAppsInteractiveLegendLayerElementCaption,
|
|
239
|
+
x as InstantAppsInteractiveLegendLegendElement,
|
|
240
|
+
f as InstantAppsInteractiveLegendLegendElementCaption,
|
|
241
|
+
y as InstantAppsInteractiveLegendRelationship,
|
|
242
|
+
O as InstantAppsKeyboardShortcuts,
|
|
243
|
+
P as InstantAppsLandingPage,
|
|
244
|
+
T as InstantAppsLanguageSwitcher,
|
|
245
|
+
b as InstantAppsLanguageTranslator,
|
|
246
|
+
F as InstantAppsLanguageTranslatorContent,
|
|
247
|
+
R as InstantAppsLanguageTranslatorItem,
|
|
248
|
+
D as InstantAppsLanguageTranslatorSearch,
|
|
249
|
+
k as InstantAppsMeasurement,
|
|
250
|
+
G as InstantAppsMeasurementTool,
|
|
251
|
+
W as InstantAppsPopover,
|
|
252
|
+
M as InstantAppsPopovers,
|
|
253
|
+
B as InstantAppsScoreboard,
|
|
254
|
+
H as InstantAppsSignIn,
|
|
255
|
+
K as InstantAppsSocialShare,
|
|
256
|
+
V as InstantAppsSplash,
|
|
257
|
+
j as InstantAppsTimeFilter
|
|
240
258
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/instant-apps-components-react",
|
|
3
|
-
"version": "4.34.0
|
|
3
|
+
"version": "4.34.0",
|
|
4
4
|
"description": "A set of React components that wrap Instant Apps components",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
],
|
|
13
13
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@arcgis/instant-apps-components": "4.34.0
|
|
16
|
-
"@arcgis/lumina": "4.34.0
|
|
17
|
-
"@arcgis/map-components": "4.34.0
|
|
15
|
+
"@arcgis/instant-apps-components": "4.34.0",
|
|
16
|
+
"@arcgis/lumina": "4.34.0",
|
|
17
|
+
"@arcgis/map-components": "4.34.0",
|
|
18
18
|
"@ckeditor/ckeditor5-build-classic": "^39.0.1",
|
|
19
19
|
"@lit/react": "^1.0.7",
|
|
20
20
|
"lit": "^3.3.0",
|
|
21
21
|
"tslib": "^2.8.1"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@arcgis/core": "
|
|
25
|
-
"react": ">=18.0.0 <
|
|
26
|
-
"react-dom": ">=18.0.0 <
|
|
24
|
+
"@arcgis/core": "~4.34.0",
|
|
25
|
+
"react": ">=18.0.0 <20.0.0",
|
|
26
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
27
27
|
}
|
|
28
28
|
}
|