@arcgis/portal-components-react 5.2.0-next.25 → 5.2.0-next.26
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/components.d.ts +16 -0
- package/dist/index.js +55 -33
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -19,6 +19,18 @@ export declare const ArcgisPortalBrowser: import('@lit/react').ReactWebComponent
|
|
|
19
19
|
}, {
|
|
20
20
|
onArcgisAriaUpdate: EventName<HTMLArcgisPortalBrowserElement["arcgisAriaUpdate"]>;
|
|
21
21
|
}>;
|
|
22
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-filter />` directly. */
|
|
23
|
+
export declare const ArcgisPortalBrowserFilter: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-filter/customElement').ArcgisPortalBrowserFilter & {
|
|
24
|
+
class?: string;
|
|
25
|
+
}, {
|
|
26
|
+
onArcgisBrowserFilterRemove: EventName<HTMLArcgisPortalBrowserFilterElement["arcgisBrowserFilterRemove"]>;
|
|
27
|
+
}>;
|
|
28
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-filter-date />` directly. */
|
|
29
|
+
export declare const ArcgisPortalBrowserFilterDate: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-filter-date/customElement').ArcgisPortalBrowserFilterDate & {
|
|
30
|
+
class?: string;
|
|
31
|
+
}, {
|
|
32
|
+
onArcgisBrowserFilter: EventName<HTMLArcgisPortalBrowserFilterDateElement["arcgisBrowserFilter"]>;
|
|
33
|
+
}>;
|
|
22
34
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-filter-status />` directly. */
|
|
23
35
|
export declare const ArcgisPortalBrowserFilterStatus: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-filter-status/customElement').ArcgisPortalBrowserFilterStatus & {
|
|
24
36
|
class?: string;
|
|
@@ -26,6 +38,10 @@ export declare const ArcgisPortalBrowserFilterStatus: import('@lit/react').React
|
|
|
26
38
|
onArcgisBrowserFilterClear: EventName<HTMLArcgisPortalBrowserFilterStatusElement["arcgisBrowserFilterClear"]>;
|
|
27
39
|
onArcgisBrowserFilterRemove: EventName<HTMLArcgisPortalBrowserFilterStatusElement["arcgisBrowserFilterRemove"]>;
|
|
28
40
|
}>;
|
|
41
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-filters />` directly. */
|
|
42
|
+
export declare const ArcgisPortalBrowserFilters: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-filters/customElement').ArcgisPortalBrowserFilters & {
|
|
43
|
+
class?: string;
|
|
44
|
+
}, {}>;
|
|
29
45
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-classification-banner />` directly. */
|
|
30
46
|
export declare const ArcgisPortalClassificationBanner: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-classification-banner/customElement').ArcgisPortalClassificationBanner & {
|
|
31
47
|
class?: string;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import t from "react";
|
|
2
2
|
import { createComponent as i } from "@lit/react";
|
|
3
|
-
import { getReactWrapperOptions as r, makeReactWrapperFactory as
|
|
4
|
-
const e = /* @__PURE__ */
|
|
3
|
+
import { getReactWrapperOptions as r, makeReactWrapperFactory as o } from "@arcgis/lumina";
|
|
4
|
+
const e = /* @__PURE__ */ o(t, i), n = /* @__PURE__ */ e(
|
|
5
5
|
r(
|
|
6
6
|
"arcgis-portal-ai-assistant",
|
|
7
7
|
{
|
|
@@ -24,6 +24,20 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
24
24
|
}
|
|
25
25
|
)
|
|
26
26
|
), p = /* @__PURE__ */ e(
|
|
27
|
+
r(
|
|
28
|
+
"arcgis-portal-browser-filter",
|
|
29
|
+
{
|
|
30
|
+
onArcgisBrowserFilterRemove: "arcgisBrowserFilterRemove"
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
), A = /* @__PURE__ */ e(
|
|
34
|
+
r(
|
|
35
|
+
"arcgis-portal-browser-filter-date",
|
|
36
|
+
{
|
|
37
|
+
onArcgisBrowserFilter: "arcgisBrowserFilter"
|
|
38
|
+
}
|
|
39
|
+
)
|
|
40
|
+
), u = /* @__PURE__ */ e(
|
|
27
41
|
r(
|
|
28
42
|
"arcgis-portal-browser-filter-status",
|
|
29
43
|
{
|
|
@@ -31,31 +45,36 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
31
45
|
onArcgisBrowserFilterRemove: "arcgisBrowserFilterRemove"
|
|
32
46
|
}
|
|
33
47
|
)
|
|
34
|
-
),
|
|
48
|
+
), P = /* @__PURE__ */ e(
|
|
49
|
+
r(
|
|
50
|
+
"arcgis-portal-browser-filters",
|
|
51
|
+
{}
|
|
52
|
+
)
|
|
53
|
+
), C = /* @__PURE__ */ e(
|
|
35
54
|
r(
|
|
36
55
|
"arcgis-portal-classification-banner",
|
|
37
56
|
{}
|
|
38
57
|
)
|
|
39
|
-
),
|
|
58
|
+
), m = /* @__PURE__ */ e(
|
|
40
59
|
r(
|
|
41
60
|
"arcgis-portal-classification-config",
|
|
42
61
|
{
|
|
43
62
|
onArcgisPropertyChange: "arcgisPropertyChange"
|
|
44
63
|
}
|
|
45
64
|
)
|
|
46
|
-
),
|
|
65
|
+
), w = /* @__PURE__ */ e(
|
|
47
66
|
r(
|
|
48
67
|
"arcgis-portal-classification-favorite",
|
|
49
68
|
{}
|
|
50
69
|
)
|
|
51
|
-
),
|
|
70
|
+
), I = /* @__PURE__ */ e(
|
|
52
71
|
r(
|
|
53
72
|
"arcgis-portal-classification-form-element",
|
|
54
73
|
{
|
|
55
74
|
onArcgisAttributeValueChange: "arcgisAttributeValueChange"
|
|
56
75
|
}
|
|
57
76
|
)
|
|
58
|
-
),
|
|
77
|
+
), d = /* @__PURE__ */ e(
|
|
59
78
|
r(
|
|
60
79
|
"arcgis-portal-extent-picker",
|
|
61
80
|
{
|
|
@@ -64,7 +83,7 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
64
83
|
onArcgisExtentPickerSave: "arcgisExtentPickerSave"
|
|
65
84
|
}
|
|
66
85
|
)
|
|
67
|
-
),
|
|
86
|
+
), b = /* @__PURE__ */ e(
|
|
68
87
|
r(
|
|
69
88
|
"arcgis-portal-field-delete",
|
|
70
89
|
{
|
|
@@ -74,12 +93,12 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
74
93
|
onArcgisFieldsDeleted: "arcgisFieldsDeleted"
|
|
75
94
|
}
|
|
76
95
|
)
|
|
77
|
-
),
|
|
96
|
+
), f = /* @__PURE__ */ e(
|
|
78
97
|
r(
|
|
79
98
|
"arcgis-portal-group-badges",
|
|
80
99
|
{}
|
|
81
100
|
)
|
|
82
|
-
),
|
|
101
|
+
), B = /* @__PURE__ */ e(
|
|
83
102
|
r(
|
|
84
103
|
"arcgis-portal-group-card",
|
|
85
104
|
{
|
|
@@ -88,17 +107,17 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
88
107
|
onArcgisGroupCardSelect: "arcgisGroupCardSelect"
|
|
89
108
|
}
|
|
90
109
|
)
|
|
91
|
-
),
|
|
110
|
+
), x = /* @__PURE__ */ e(
|
|
92
111
|
r(
|
|
93
112
|
"arcgis-portal-group-thumbnail",
|
|
94
113
|
{}
|
|
95
114
|
)
|
|
96
|
-
),
|
|
115
|
+
), F = /* @__PURE__ */ e(
|
|
97
116
|
r(
|
|
98
117
|
"arcgis-portal-item-type",
|
|
99
118
|
{}
|
|
100
119
|
)
|
|
101
|
-
),
|
|
120
|
+
), h = /* @__PURE__ */ e(
|
|
102
121
|
r(
|
|
103
122
|
"arcgis-portal-mentionable-text-area",
|
|
104
123
|
{
|
|
@@ -109,19 +128,19 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
109
128
|
onArcgisUserMentionableTextAreaKeyDown: "arcgisUserMentionableTextAreaKeyDown"
|
|
110
129
|
}
|
|
111
130
|
)
|
|
112
|
-
),
|
|
131
|
+
), U = /* @__PURE__ */ e(
|
|
113
132
|
r(
|
|
114
133
|
"arcgis-portal-replacement-item-redirect",
|
|
115
134
|
{
|
|
116
135
|
onArcgisPortalReplacementItemFetch: "arcgisPortalReplacementItemFetch"
|
|
117
136
|
}
|
|
118
137
|
)
|
|
119
|
-
),
|
|
138
|
+
), v = /* @__PURE__ */ e(
|
|
120
139
|
r(
|
|
121
140
|
"arcgis-portal-user-avatar",
|
|
122
141
|
{}
|
|
123
142
|
)
|
|
124
|
-
),
|
|
143
|
+
), T = /* @__PURE__ */ e(
|
|
125
144
|
r(
|
|
126
145
|
"arcgis-portal-user-popup",
|
|
127
146
|
{
|
|
@@ -129,7 +148,7 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
129
148
|
onArcgisUserPopupInternalUIAction: "arcgisUserPopupInternalUIAction"
|
|
130
149
|
}
|
|
131
150
|
)
|
|
132
|
-
),
|
|
151
|
+
), M = /* @__PURE__ */ e(
|
|
133
152
|
r(
|
|
134
153
|
"arcgis-portal-voice-input",
|
|
135
154
|
{
|
|
@@ -145,20 +164,23 @@ export {
|
|
|
145
164
|
n as ArcgisPortalAiAssistant,
|
|
146
165
|
g as ArcgisPortalAiAssistantInterrupt,
|
|
147
166
|
l as ArcgisPortalBrowser,
|
|
148
|
-
p as
|
|
149
|
-
A as
|
|
150
|
-
u as
|
|
151
|
-
P as
|
|
152
|
-
C as
|
|
153
|
-
m as
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
167
|
+
p as ArcgisPortalBrowserFilter,
|
|
168
|
+
A as ArcgisPortalBrowserFilterDate,
|
|
169
|
+
u as ArcgisPortalBrowserFilterStatus,
|
|
170
|
+
P as ArcgisPortalBrowserFilters,
|
|
171
|
+
C as ArcgisPortalClassificationBanner,
|
|
172
|
+
m as ArcgisPortalClassificationConfig,
|
|
173
|
+
w as ArcgisPortalClassificationFavorite,
|
|
174
|
+
I as ArcgisPortalClassificationFormElement,
|
|
175
|
+
d as ArcgisPortalExtentPicker,
|
|
176
|
+
b as ArcgisPortalFieldDelete,
|
|
177
|
+
f as ArcgisPortalGroupBadges,
|
|
178
|
+
B as ArcgisPortalGroupCard,
|
|
179
|
+
x as ArcgisPortalGroupThumbnail,
|
|
180
|
+
F as ArcgisPortalItemType,
|
|
181
|
+
h as ArcgisPortalMentionableTextArea,
|
|
182
|
+
U as ArcgisPortalReplacementItemRedirect,
|
|
183
|
+
v as ArcgisPortalUserAvatar,
|
|
184
|
+
T as ArcgisPortalUserPopup,
|
|
185
|
+
M as ArcgisPortalVoiceInput
|
|
164
186
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/portal-components-react",
|
|
3
|
-
"version": "5.2.0-next.
|
|
3
|
+
"version": "5.2.0-next.26",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS portal components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"2D",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@lit/react": "^1.0.8",
|
|
33
33
|
"lit": "^3.3.0",
|
|
34
34
|
"tslib": "^2.8.1",
|
|
35
|
-
"@arcgis/lumina": "5.2.0-next.
|
|
36
|
-
"@arcgis/portal-components": "5.2.0-next.
|
|
35
|
+
"@arcgis/lumina": "5.2.0-next.26",
|
|
36
|
+
"@arcgis/portal-components": "5.2.0-next.26"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@arcgis/core": "^5.2.0-next",
|