@arcgis/portal-components-react 5.2.0-next.10 → 5.2.0-next.100
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 +4 -2
- package/README.md +2 -2
- package/dist/components.d.ts +177 -17
- package/dist/index.js +241 -35
- package/package.json +5 -5
package/LICENSE.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# Licensing
|
|
2
2
|
|
|
3
|
-
COPYRIGHT
|
|
3
|
+
COPYRIGHT Esri
|
|
4
4
|
|
|
5
5
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
6
6
|
|
|
7
|
-
This material is licensed for use under the
|
|
7
|
+
This material is licensed for use under the Esri Master License Agreement (MLA), and is bound by the terms of that agreement.
|
|
8
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
9
|
|
|
10
|
+
See use restrictions at https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf.
|
|
11
|
+
|
|
10
12
|
For additional information, contact:
|
|
11
13
|
Environmental Systems Research Institute, Inc.
|
|
12
14
|
Attn: Contracts and Legal Services Department
|
package/README.md
CHANGED
|
@@ -10,5 +10,5 @@ It is not intended to be used directly, but rather used as a dependency by other
|
|
|
10
10
|
|
|
11
11
|
## License
|
|
12
12
|
|
|
13
|
-
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.
|
|
14
|
-
For third party notices, see https://js.arcgis.com/5.
|
|
13
|
+
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.2/LICENSE.txt.
|
|
14
|
+
For third party notices, see https://js.arcgis.com/5.2/third-party-notices.txt.
|
package/dist/components.d.ts
CHANGED
|
@@ -1,39 +1,119 @@
|
|
|
1
1
|
/// <reference types="@arcgis/portal-components" preserve="true" />
|
|
2
2
|
import { EventName } from '@lit/react';
|
|
3
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
3
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-account-switcher />` directly. */
|
|
4
|
+
export declare const ArcgisPortalAccountSwitcher: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-account-switcher/customElement').ArcgisPortalAccountSwitcher & {
|
|
5
|
+
class?: string;
|
|
6
|
+
}, {
|
|
7
|
+
onArcgisAccountSwitch: EventName<HTMLArcgisPortalAccountSwitcherElement["arcgisAccountSwitch"]>;
|
|
8
|
+
onArcgisClose: EventName<HTMLArcgisPortalAccountSwitcherElement["arcgisClose"]>;
|
|
9
|
+
}>;
|
|
10
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-account-switcher-accounts />` directly. */
|
|
11
|
+
export declare const ArcgisPortalAccountSwitcherAccounts: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-account-switcher-accounts/customElement').ArcgisPortalAccountSwitcherAccounts & {
|
|
12
|
+
class?: string;
|
|
13
|
+
}, {
|
|
14
|
+
onArcgisCloseDialog: EventName<HTMLArcgisPortalAccountSwitcherAccountsElement["arcgisCloseDialog"]>;
|
|
15
|
+
onArcgisLinkAll: EventName<HTMLArcgisPortalAccountSwitcherAccountsElement["arcgisLinkAll"]>;
|
|
16
|
+
}>;
|
|
17
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-account-switcher-list />` directly. */
|
|
18
|
+
export declare const ArcgisPortalAccountSwitcherList: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-account-switcher-list/customElement').ArcgisPortalAccountSwitcherList & {
|
|
19
|
+
class?: string;
|
|
20
|
+
}, {
|
|
21
|
+
onArcgisAccountSwitch: EventName<HTMLArcgisPortalAccountSwitcherListElement["arcgisAccountSwitch"]>;
|
|
22
|
+
onArcgisAccountUnlink: EventName<HTMLArcgisPortalAccountSwitcherListElement["arcgisAccountUnlink"]>;
|
|
23
|
+
}>;
|
|
24
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-add-gps-metadata />` directly. */
|
|
25
|
+
export declare const ArcgisPortalAddGpsMetadata: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-add-gps-metadata/customElement').ArcgisPortalAddGpsMetadata & {
|
|
26
|
+
class?: string;
|
|
27
|
+
}, {
|
|
28
|
+
onArcgisGPSMetadataFieldsAdded: EventName<HTMLArcgisPortalAddGpsMetadataElement["arcgisGPSMetadataFieldsAdded"]>;
|
|
29
|
+
}>;
|
|
30
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-ai-assistant />` directly. */
|
|
4
31
|
export declare const ArcgisPortalAiAssistant: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-ai-assistant/customElement').ArcgisPortalAiAssistant & {
|
|
5
32
|
class?: string;
|
|
6
33
|
}, {
|
|
7
34
|
onArcgisPortalNavigationRequest: EventName<HTMLArcgisPortalAiAssistantElement["arcgisPortalNavigationRequest"]>;
|
|
8
35
|
}>;
|
|
9
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
36
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-ai-assistant-interrupt />` directly. */
|
|
10
37
|
export declare const ArcgisPortalAiAssistantInterrupt: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-ai-assistant-interrupt/customElement').ArcgisPortalAiAssistantInterrupt & {
|
|
11
38
|
class?: string;
|
|
12
39
|
}, {
|
|
13
40
|
onArcgisCancel: EventName<HTMLArcgisPortalAiAssistantInterruptElement["arcgisCancel"]>;
|
|
14
41
|
onArcgisSubmit: EventName<HTMLArcgisPortalAiAssistantInterruptElement["arcgisSubmit"]>;
|
|
15
42
|
}>;
|
|
16
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
43
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser />` directly. */
|
|
44
|
+
export declare const ArcgisPortalBrowser: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser/customElement').ArcgisPortalBrowser & {
|
|
45
|
+
class?: string;
|
|
46
|
+
}, {
|
|
47
|
+
onArcgisAriaUpdate: EventName<HTMLArcgisPortalBrowserElement["arcgisAriaUpdate"]>;
|
|
48
|
+
onArcgisBrowserFilterClear: EventName<HTMLArcgisPortalBrowserElement["arcgisBrowserFilterClear"]>;
|
|
49
|
+
onArcgisBrowserFilterRemove: EventName<HTMLArcgisPortalBrowserElement["arcgisBrowserFilterRemove"]>;
|
|
50
|
+
onAriaUpdate: EventName<HTMLArcgisPortalBrowserElement["ariaUpdate"]>;
|
|
51
|
+
}>;
|
|
52
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-actions />` directly. */
|
|
53
|
+
export declare const ArcgisPortalBrowserActions: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-actions/customElement').ArcgisPortalBrowserActions & {
|
|
54
|
+
class?: string;
|
|
55
|
+
}, {}>;
|
|
56
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-filter-status />` directly. */
|
|
57
|
+
export declare const ArcgisPortalBrowserFilterStatus: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-filter-status/customElement').ArcgisPortalBrowserFilterStatus & {
|
|
58
|
+
class?: string;
|
|
59
|
+
}, {
|
|
60
|
+
onArcgisBrowserFilterClear: EventName<HTMLArcgisPortalBrowserFilterStatusElement["arcgisBrowserFilterClear"]>;
|
|
61
|
+
onArcgisBrowserFilterRemove: EventName<HTMLArcgisPortalBrowserFilterStatusElement["arcgisBrowserFilterRemove"]>;
|
|
62
|
+
}>;
|
|
63
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-pagination />` directly. */
|
|
64
|
+
export declare const ArcgisPortalBrowserPagination: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-pagination/customElement').ArcgisPortalBrowserPagination & {
|
|
65
|
+
class?: string;
|
|
66
|
+
}, {
|
|
67
|
+
onArcgisBrowserPage: EventName<HTMLArcgisPortalBrowserPaginationElement["arcgisBrowserPage"]>;
|
|
68
|
+
}>;
|
|
69
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-search />` directly. */
|
|
70
|
+
export declare const ArcgisPortalBrowserSearch: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-search/customElement').ArcgisPortalBrowserSearch & {
|
|
71
|
+
class?: string;
|
|
72
|
+
}, {
|
|
73
|
+
onArcgisBrowserSearch: EventName<HTMLArcgisPortalBrowserSearchElement["arcgisBrowserSearch"]>;
|
|
74
|
+
onArcgisBrowserSearchInput: EventName<HTMLArcgisPortalBrowserSearchElement["arcgisBrowserSearchInput"]>;
|
|
75
|
+
}>;
|
|
76
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-sort />` directly. */
|
|
77
|
+
export declare const ArcgisPortalBrowserSort: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-sort/customElement').ArcgisPortalBrowserSort & {
|
|
78
|
+
class?: string;
|
|
79
|
+
}, {
|
|
80
|
+
onArcgisBrowserSortFieldChange: EventName<HTMLArcgisPortalBrowserSortElement["arcgisBrowserSortFieldChange"]>;
|
|
81
|
+
onArcgisBrowserSortOrderChange: EventName<HTMLArcgisPortalBrowserSortElement["arcgisBrowserSortOrderChange"]>;
|
|
82
|
+
}>;
|
|
83
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-top-bar />` directly. */
|
|
84
|
+
export declare const ArcgisPortalBrowserTopBar: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-top-bar/customElement').ArcgisPortalBrowserTopBar & {
|
|
85
|
+
class?: string;
|
|
86
|
+
}, {
|
|
87
|
+
onArcgisBrowserFilterClear: EventName<HTMLArcgisPortalBrowserTopBarElement["arcgisBrowserFilterClear"]>;
|
|
88
|
+
onArcgisBrowserFilterRemove: EventName<HTMLArcgisPortalBrowserTopBarElement["arcgisBrowserFilterRemove"]>;
|
|
89
|
+
}>;
|
|
90
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-browser-view />` directly. */
|
|
91
|
+
export declare const ArcgisPortalBrowserView: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-browser-view/customElement').ArcgisPortalBrowserView & {
|
|
92
|
+
class?: string;
|
|
93
|
+
}, {
|
|
94
|
+
onArcgisBrowserViewChange: EventName<HTMLArcgisPortalBrowserViewElement["arcgisBrowserViewChange"]>;
|
|
95
|
+
}>;
|
|
96
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-classification-banner />` directly. */
|
|
17
97
|
export declare const ArcgisPortalClassificationBanner: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-classification-banner/customElement').ArcgisPortalClassificationBanner & {
|
|
18
98
|
class?: string;
|
|
19
99
|
}, {}>;
|
|
20
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
100
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-classification-config />` directly. */
|
|
21
101
|
export declare const ArcgisPortalClassificationConfig: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-classification-config/customElement').ArcgisPortalClassificationConfig & {
|
|
22
102
|
class?: string;
|
|
23
103
|
}, {
|
|
24
104
|
onArcgisPropertyChange: EventName<HTMLArcgisPortalClassificationConfigElement["arcgisPropertyChange"]>;
|
|
25
105
|
}>;
|
|
26
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
106
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-classification-favorite />` directly. */
|
|
27
107
|
export declare const ArcgisPortalClassificationFavorite: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-classification-favorite/customElement').ArcgisPortalClassificationFavorite & {
|
|
28
108
|
class?: string;
|
|
29
109
|
}, {}>;
|
|
30
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
110
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-classification-form-element />` directly. */
|
|
31
111
|
export declare const ArcgisPortalClassificationFormElement: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-classification-form-element/customElement').ArcgisPortalClassificationFormElement & {
|
|
32
112
|
class?: string;
|
|
33
113
|
}, {
|
|
34
114
|
onArcgisAttributeValueChange: EventName<HTMLArcgisPortalClassificationFormElementElement["arcgisAttributeValueChange"]>;
|
|
35
115
|
}>;
|
|
36
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
116
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-extent-picker />` directly. */
|
|
37
117
|
export declare const ArcgisPortalExtentPicker: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-extent-picker/customElement').ArcgisPortalExtentPicker & {
|
|
38
118
|
class?: string;
|
|
39
119
|
}, {
|
|
@@ -41,7 +121,7 @@ export declare const ArcgisPortalExtentPicker: import('@lit/react').ReactWebComp
|
|
|
41
121
|
onArcgisExtentPickerClose: EventName<HTMLArcgisPortalExtentPickerElement["arcgisExtentPickerClose"]>;
|
|
42
122
|
onArcgisExtentPickerSave: EventName<HTMLArcgisPortalExtentPickerElement["arcgisExtentPickerSave"]>;
|
|
43
123
|
}>;
|
|
44
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
124
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-field-delete />` directly. */
|
|
45
125
|
export declare const ArcgisPortalFieldDelete: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-field-delete/customElement').ArcgisPortalFieldDelete & {
|
|
46
126
|
class?: string;
|
|
47
127
|
}, {
|
|
@@ -50,11 +130,46 @@ export declare const ArcgisPortalFieldDelete: import('@lit/react').ReactWebCompo
|
|
|
50
130
|
onArcgisClose: EventName<HTMLArcgisPortalFieldDeleteElement["arcgisClose"]>;
|
|
51
131
|
onArcgisFieldsDeleted: EventName<HTMLArcgisPortalFieldDeleteElement["arcgisFieldsDeleted"]>;
|
|
52
132
|
}>;
|
|
53
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
133
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-badges />` directly. */
|
|
54
134
|
export declare const ArcgisPortalGroupBadges: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-badges/customElement').ArcgisPortalGroupBadges & {
|
|
55
135
|
class?: string;
|
|
56
136
|
}, {}>;
|
|
57
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
137
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-browser />` directly. */
|
|
138
|
+
export declare const ArcgisPortalGroupBrowser: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-browser/customElement').ArcgisPortalGroupBrowser & {
|
|
139
|
+
class?: string;
|
|
140
|
+
}, {
|
|
141
|
+
onArcgisAriaUpdate: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisAriaUpdate"]>;
|
|
142
|
+
onArcgisGroupBrowserInternalUIAction: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserInternalUIAction"]>;
|
|
143
|
+
onArcgisGroupBrowserLoading: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserLoading"]>;
|
|
144
|
+
onArcgisGroupBrowserPreview: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserPreview"]>;
|
|
145
|
+
onArcgisGroupBrowserSearchParamsUpdate: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserSearchParamsUpdate"]>;
|
|
146
|
+
onArcgisGroupBrowserSelect: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserSelect"]>;
|
|
147
|
+
onArcgisGroupBrowserSublayerPreview: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserSublayerPreview"]>;
|
|
148
|
+
onArcgisGroupBrowserUpdate: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserUpdate"]>;
|
|
149
|
+
onArcgisGroupBrowserUserFilterChange: EventName<HTMLArcgisPortalGroupBrowserElement["arcgisGroupBrowserUserFilterChange"]>;
|
|
150
|
+
}>;
|
|
151
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-browser-card />` directly. */
|
|
152
|
+
export declare const ArcgisPortalGroupBrowserCard: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-browser-card/customElement').ArcgisPortalGroupBrowserCard & {
|
|
153
|
+
class?: string;
|
|
154
|
+
}, {
|
|
155
|
+
onArcgisGroupBrowserCardPreview: EventName<HTMLArcgisPortalGroupBrowserCardElement["arcgisGroupBrowserCardPreview"]>;
|
|
156
|
+
onArcgisGroupCardSelect: EventName<HTMLArcgisPortalGroupBrowserCardElement["arcgisGroupCardSelect"]>;
|
|
157
|
+
}>;
|
|
158
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-browser-preview />` directly. */
|
|
159
|
+
export declare const ArcgisPortalGroupBrowserPreview: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-browser-preview/customElement').ArcgisPortalGroupBrowserPreview & {
|
|
160
|
+
class?: string;
|
|
161
|
+
}, {
|
|
162
|
+
onArcgisGroupBrowserInternalUIAction: EventName<HTMLArcgisPortalGroupBrowserPreviewElement["arcgisGroupBrowserInternalUIAction"]>;
|
|
163
|
+
onArcgisGroupBrowserPreviewClose: EventName<HTMLArcgisPortalGroupBrowserPreviewElement["arcgisGroupBrowserPreviewClose"]>;
|
|
164
|
+
}>;
|
|
165
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-browser-preview-card />` directly. */
|
|
166
|
+
export declare const ArcgisPortalGroupBrowserPreviewCard: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-browser-preview-card/customElement').ArcgisPortalGroupBrowserPreviewCard & {
|
|
167
|
+
class?: string;
|
|
168
|
+
}, {
|
|
169
|
+
onArcgisGroupBrowserInternalUIAction: EventName<HTMLArcgisPortalGroupBrowserPreviewCardElement["arcgisGroupBrowserInternalUIAction"]>;
|
|
170
|
+
onArcgisGroupBrowserPreviewCardSelect: EventName<HTMLArcgisPortalGroupBrowserPreviewCardElement["arcgisGroupBrowserPreviewCardSelect"]>;
|
|
171
|
+
}>;
|
|
172
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-card />` directly. */
|
|
58
173
|
export declare const ArcgisPortalGroupCard: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-card/customElement').ArcgisPortalGroupCard & {
|
|
59
174
|
class?: string;
|
|
60
175
|
}, {
|
|
@@ -62,15 +177,51 @@ export declare const ArcgisPortalGroupCard: import('@lit/react').ReactWebCompone
|
|
|
62
177
|
onArcgisGroupBrowserInternalUIAction: EventName<HTMLArcgisPortalGroupCardElement["arcgisGroupBrowserInternalUIAction"]>;
|
|
63
178
|
onArcgisGroupCardSelect: EventName<HTMLArcgisPortalGroupCardElement["arcgisGroupCardSelect"]>;
|
|
64
179
|
}>;
|
|
65
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
180
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-group-thumbnail />` directly. */
|
|
66
181
|
export declare const ArcgisPortalGroupThumbnail: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-group-thumbnail/customElement').ArcgisPortalGroupThumbnail & {
|
|
67
182
|
class?: string;
|
|
68
183
|
}, {}>;
|
|
69
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
184
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-info-banner />` directly. */
|
|
185
|
+
export declare const ArcgisPortalInfoBanner: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-info-banner/customElement').ArcgisPortalInfoBanner & {
|
|
186
|
+
class?: string;
|
|
187
|
+
}, {}>;
|
|
188
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-actions />` directly. */
|
|
189
|
+
export declare const ArcgisPortalItemActions: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-actions/customElement').ArcgisPortalItemActions & {
|
|
190
|
+
class?: string;
|
|
191
|
+
}, {
|
|
192
|
+
onArcgisItemActionClick: EventName<HTMLArcgisPortalItemActionsElement["arcgisItemActionClick"]>;
|
|
193
|
+
onArcgisItemActions: EventName<HTMLArcgisPortalItemActionsElement["arcgisItemActions"]>;
|
|
194
|
+
onArcgisItemActionsOpen: EventName<HTMLArcgisPortalItemActionsElement["arcgisItemActionsOpen"]>;
|
|
195
|
+
onArcgisItemFavoriteUpdate: EventName<HTMLArcgisPortalItemActionsElement["arcgisItemFavoriteUpdate"]>;
|
|
196
|
+
}>;
|
|
197
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-badges />` directly. */
|
|
198
|
+
export declare const ArcgisPortalItemBadges: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-badges/customElement').ArcgisPortalItemBadges & {
|
|
199
|
+
class?: string;
|
|
200
|
+
}, {}>;
|
|
201
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-badge />` directly. */
|
|
202
|
+
export declare const ArcgisPortalItemBadge: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-badge/customElement').ArcgisPortalItemBadge & {
|
|
203
|
+
class?: string;
|
|
204
|
+
}, {}>;
|
|
205
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-card />` directly. */
|
|
206
|
+
export declare const ArcgisPortalItemCard: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-card/customElement').ArcgisPortalItemCard & {
|
|
207
|
+
class?: string;
|
|
208
|
+
}, {
|
|
209
|
+
onArcgisItemBrowserCardPreview: EventName<HTMLArcgisPortalItemCardElement["arcgisItemBrowserCardPreview"]>;
|
|
210
|
+
onArcgisItemCardActionsOpen: EventName<HTMLArcgisPortalItemCardElement["arcgisItemCardActionsOpen"]>;
|
|
211
|
+
onArcgisItemCardInternalUIAction: EventName<HTMLArcgisPortalItemCardElement["arcgisItemCardInternalUIAction"]>;
|
|
212
|
+
onArcgisItemCardSelect: EventName<HTMLArcgisPortalItemCardElement["arcgisItemCardSelect"]>;
|
|
213
|
+
}>;
|
|
214
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-favorite />` directly. */
|
|
215
|
+
export declare const ArcgisPortalItemFavorite: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-favorite/customElement').ArcgisPortalItemFavorite & {
|
|
216
|
+
class?: string;
|
|
217
|
+
}, {
|
|
218
|
+
onArcgisItemFavoriteUpdate: EventName<HTMLArcgisPortalItemFavoriteElement["arcgisItemFavoriteUpdate"]>;
|
|
219
|
+
}>;
|
|
220
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-item-type />` directly. */
|
|
70
221
|
export declare const ArcgisPortalItemType: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-item-type/customElement').ArcgisPortalItemType & {
|
|
71
222
|
class?: string;
|
|
72
223
|
}, {}>;
|
|
73
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
224
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-mentionable-text-area />` directly. */
|
|
74
225
|
export declare const ArcgisPortalMentionableTextArea: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-mentionable-text-area/customElement').ArcgisPortalMentionableTextArea & {
|
|
75
226
|
class?: string;
|
|
76
227
|
}, {
|
|
@@ -80,24 +231,33 @@ export declare const ArcgisPortalMentionableTextArea: import('@lit/react').React
|
|
|
80
231
|
onArcgisUserMentionableTextAreaChange: EventName<HTMLArcgisPortalMentionableTextAreaElement["arcgisUserMentionableTextAreaChange"]>;
|
|
81
232
|
onArcgisUserMentionableTextAreaKeyDown: EventName<HTMLArcgisPortalMentionableTextAreaElement["arcgisUserMentionableTextAreaKeyDown"]>;
|
|
82
233
|
}>;
|
|
83
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
234
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-navigation />` directly. */
|
|
235
|
+
export declare const ArcgisPortalNavigation: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-navigation/customElement').ArcGISPortalNavigation & {
|
|
236
|
+
class?: string;
|
|
237
|
+
}, {
|
|
238
|
+
onArcgisNavigate: EventName<HTMLArcgisPortalNavigationElement["arcgisNavigate"]>;
|
|
239
|
+
onArcgisNavigationProjectMenuClick: EventName<HTMLArcgisPortalNavigationElement["arcgisNavigationProjectMenuClick"]>;
|
|
240
|
+
onArcgisNavigationSignIn: EventName<HTMLArcgisPortalNavigationElement["arcgisNavigationSignIn"]>;
|
|
241
|
+
onArcgisNavigationSignOut: EventName<HTMLArcgisPortalNavigationElement["arcgisNavigationSignOut"]>;
|
|
242
|
+
}>;
|
|
243
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-replacement-item-redirect />` directly. */
|
|
84
244
|
export declare const ArcgisPortalReplacementItemRedirect: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-replacement-item-redirect/customElement').ArcgisPortalReplacementItemRedirect & {
|
|
85
245
|
class?: string;
|
|
86
246
|
}, {
|
|
87
247
|
onArcgisPortalReplacementItemFetch: EventName<HTMLArcgisPortalReplacementItemRedirectElement["arcgisPortalReplacementItemFetch"]>;
|
|
88
248
|
}>;
|
|
89
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
249
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-user-avatar />` directly. */
|
|
90
250
|
export declare const ArcgisPortalUserAvatar: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-user-avatar/customElement').ArcgisPortalUserAvatar & {
|
|
91
251
|
class?: string;
|
|
92
252
|
}, {}>;
|
|
93
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
253
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-user-popup />` directly. */
|
|
94
254
|
export declare const ArcgisPortalUserPopup: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-user-popup/customElement').ArcgisPortalUserPopup & {
|
|
95
255
|
class?: string;
|
|
96
256
|
}, {
|
|
97
257
|
onArcgisUserPopupClose: EventName<HTMLArcgisPortalUserPopupElement["arcgisUserPopupClose"]>;
|
|
98
258
|
onArcgisUserPopupInternalUIAction: EventName<HTMLArcgisPortalUserPopupElement["arcgisUserPopupInternalUIAction"]>;
|
|
99
259
|
}>;
|
|
100
|
-
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use
|
|
260
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use `<arcgis-portal-voice-input />` directly. */
|
|
101
261
|
export declare const ArcgisPortalVoiceInput: import('@lit/react').ReactWebComponent<import('@arcgis/portal-components/components/arcgis-portal-voice-input/customElement').ArcgisPortalVoiceInput & {
|
|
102
262
|
class?: string;
|
|
103
263
|
}, {
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,45 @@
|
|
|
1
|
-
import
|
|
1
|
+
import o from "react";
|
|
2
2
|
import { createComponent as i } from "@lit/react";
|
|
3
3
|
import { getReactWrapperOptions as r, makeReactWrapperFactory as a } from "@arcgis/lumina";
|
|
4
|
-
const e = /* @__PURE__ */ a(
|
|
4
|
+
const e = /* @__PURE__ */ a(o, i), n = /* @__PURE__ */ e(
|
|
5
|
+
r(
|
|
6
|
+
"arcgis-portal-account-switcher",
|
|
7
|
+
{
|
|
8
|
+
onArcgisAccountSwitch: "arcgisAccountSwitch",
|
|
9
|
+
onArcgisClose: "arcgisClose"
|
|
10
|
+
}
|
|
11
|
+
)
|
|
12
|
+
), g = /* @__PURE__ */ e(
|
|
13
|
+
r(
|
|
14
|
+
"arcgis-portal-account-switcher-accounts",
|
|
15
|
+
{
|
|
16
|
+
onArcgisCloseDialog: "arcgisCloseDialog",
|
|
17
|
+
onArcgisLinkAll: "arcgisLinkAll"
|
|
18
|
+
}
|
|
19
|
+
)
|
|
20
|
+
), l = /* @__PURE__ */ e(
|
|
21
|
+
r(
|
|
22
|
+
"arcgis-portal-account-switcher-list",
|
|
23
|
+
{
|
|
24
|
+
onArcgisAccountSwitch: "arcgisAccountSwitch",
|
|
25
|
+
onArcgisAccountUnlink: "arcgisAccountUnlink"
|
|
26
|
+
}
|
|
27
|
+
)
|
|
28
|
+
), A = /* @__PURE__ */ e(
|
|
29
|
+
r(
|
|
30
|
+
"arcgis-portal-add-gps-metadata",
|
|
31
|
+
{
|
|
32
|
+
onArcgisGPSMetadataFieldsAdded: "arcgisGPSMetadataFieldsAdded"
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
), p = /* @__PURE__ */ e(
|
|
5
36
|
r(
|
|
6
37
|
"arcgis-portal-ai-assistant",
|
|
7
38
|
{
|
|
8
39
|
onArcgisPortalNavigationRequest: "arcgisPortalNavigationRequest"
|
|
9
40
|
}
|
|
10
41
|
)
|
|
11
|
-
),
|
|
42
|
+
), w = /* @__PURE__ */ e(
|
|
12
43
|
r(
|
|
13
44
|
"arcgis-portal-ai-assistant-interrupt",
|
|
14
45
|
{
|
|
@@ -16,31 +47,92 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
16
47
|
onArcgisSubmit: "arcgisSubmit"
|
|
17
48
|
}
|
|
18
49
|
)
|
|
19
|
-
),
|
|
50
|
+
), u = /* @__PURE__ */ e(
|
|
51
|
+
r(
|
|
52
|
+
"arcgis-portal-browser",
|
|
53
|
+
{
|
|
54
|
+
onArcgisAriaUpdate: "arcgisAriaUpdate",
|
|
55
|
+
onArcgisBrowserFilterClear: "arcgisBrowserFilterClear",
|
|
56
|
+
onArcgisBrowserFilterRemove: "arcgisBrowserFilterRemove",
|
|
57
|
+
onAriaUpdate: "ariaUpdate"
|
|
58
|
+
}
|
|
59
|
+
)
|
|
60
|
+
), d = /* @__PURE__ */ e(
|
|
61
|
+
r(
|
|
62
|
+
"arcgis-portal-browser-actions",
|
|
63
|
+
{}
|
|
64
|
+
)
|
|
65
|
+
), P = /* @__PURE__ */ e(
|
|
66
|
+
r(
|
|
67
|
+
"arcgis-portal-browser-filter-status",
|
|
68
|
+
{
|
|
69
|
+
onArcgisBrowserFilterClear: "arcgisBrowserFilterClear",
|
|
70
|
+
onArcgisBrowserFilterRemove: "arcgisBrowserFilterRemove"
|
|
71
|
+
}
|
|
72
|
+
)
|
|
73
|
+
), B = /* @__PURE__ */ e(
|
|
74
|
+
r(
|
|
75
|
+
"arcgis-portal-browser-pagination",
|
|
76
|
+
{
|
|
77
|
+
onArcgisBrowserPage: "arcgisBrowserPage"
|
|
78
|
+
}
|
|
79
|
+
)
|
|
80
|
+
), C = /* @__PURE__ */ e(
|
|
81
|
+
r(
|
|
82
|
+
"arcgis-portal-browser-search",
|
|
83
|
+
{
|
|
84
|
+
onArcgisBrowserSearch: "arcgisBrowserSearch",
|
|
85
|
+
onArcgisBrowserSearchInput: "arcgisBrowserSearchInput"
|
|
86
|
+
}
|
|
87
|
+
)
|
|
88
|
+
), I = /* @__PURE__ */ e(
|
|
89
|
+
r(
|
|
90
|
+
"arcgis-portal-browser-sort",
|
|
91
|
+
{
|
|
92
|
+
onArcgisBrowserSortFieldChange: "arcgisBrowserSortFieldChange",
|
|
93
|
+
onArcgisBrowserSortOrderChange: "arcgisBrowserSortOrderChange"
|
|
94
|
+
}
|
|
95
|
+
)
|
|
96
|
+
), m = /* @__PURE__ */ e(
|
|
97
|
+
r(
|
|
98
|
+
"arcgis-portal-browser-top-bar",
|
|
99
|
+
{
|
|
100
|
+
onArcgisBrowserFilterClear: "arcgisBrowserFilterClear",
|
|
101
|
+
onArcgisBrowserFilterRemove: "arcgisBrowserFilterRemove"
|
|
102
|
+
}
|
|
103
|
+
)
|
|
104
|
+
), v = /* @__PURE__ */ e(
|
|
105
|
+
r(
|
|
106
|
+
"arcgis-portal-browser-view",
|
|
107
|
+
{
|
|
108
|
+
onArcgisBrowserViewChange: "arcgisBrowserViewChange"
|
|
109
|
+
}
|
|
110
|
+
)
|
|
111
|
+
), S = /* @__PURE__ */ e(
|
|
20
112
|
r(
|
|
21
113
|
"arcgis-portal-classification-banner",
|
|
22
114
|
{}
|
|
23
115
|
)
|
|
24
|
-
),
|
|
116
|
+
), G = /* @__PURE__ */ e(
|
|
25
117
|
r(
|
|
26
118
|
"arcgis-portal-classification-config",
|
|
27
119
|
{
|
|
28
120
|
onArcgisPropertyChange: "arcgisPropertyChange"
|
|
29
121
|
}
|
|
30
122
|
)
|
|
31
|
-
),
|
|
123
|
+
), h = /* @__PURE__ */ e(
|
|
32
124
|
r(
|
|
33
125
|
"arcgis-portal-classification-favorite",
|
|
34
126
|
{}
|
|
35
127
|
)
|
|
36
|
-
),
|
|
128
|
+
), U = /* @__PURE__ */ e(
|
|
37
129
|
r(
|
|
38
130
|
"arcgis-portal-classification-form-element",
|
|
39
131
|
{
|
|
40
132
|
onArcgisAttributeValueChange: "arcgisAttributeValueChange"
|
|
41
133
|
}
|
|
42
134
|
)
|
|
43
|
-
),
|
|
135
|
+
), b = /* @__PURE__ */ e(
|
|
44
136
|
r(
|
|
45
137
|
"arcgis-portal-extent-picker",
|
|
46
138
|
{
|
|
@@ -49,7 +141,7 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
49
141
|
onArcgisExtentPickerSave: "arcgisExtentPickerSave"
|
|
50
142
|
}
|
|
51
143
|
)
|
|
52
|
-
),
|
|
144
|
+
), F = /* @__PURE__ */ e(
|
|
53
145
|
r(
|
|
54
146
|
"arcgis-portal-field-delete",
|
|
55
147
|
{
|
|
@@ -59,12 +151,51 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
59
151
|
onArcgisFieldsDeleted: "arcgisFieldsDeleted"
|
|
60
152
|
}
|
|
61
153
|
)
|
|
62
|
-
),
|
|
154
|
+
), f = /* @__PURE__ */ e(
|
|
63
155
|
r(
|
|
64
156
|
"arcgis-portal-group-badges",
|
|
65
157
|
{}
|
|
66
158
|
)
|
|
67
|
-
),
|
|
159
|
+
), x = /* @__PURE__ */ e(
|
|
160
|
+
r(
|
|
161
|
+
"arcgis-portal-group-browser",
|
|
162
|
+
{
|
|
163
|
+
onArcgisAriaUpdate: "arcgisAriaUpdate",
|
|
164
|
+
onArcgisGroupBrowserInternalUIAction: "arcgisGroupBrowserInternalUIAction",
|
|
165
|
+
onArcgisGroupBrowserLoading: "arcgisGroupBrowserLoading",
|
|
166
|
+
onArcgisGroupBrowserPreview: "arcgisGroupBrowserPreview",
|
|
167
|
+
onArcgisGroupBrowserSearchParamsUpdate: "arcgisGroupBrowserSearchParamsUpdate",
|
|
168
|
+
onArcgisGroupBrowserSelect: "arcgisGroupBrowserSelect",
|
|
169
|
+
onArcgisGroupBrowserSublayerPreview: "arcgisGroupBrowserSublayerPreview",
|
|
170
|
+
onArcgisGroupBrowserUpdate: "arcgisGroupBrowserUpdate",
|
|
171
|
+
onArcgisGroupBrowserUserFilterChange: "arcgisGroupBrowserUserFilterChange"
|
|
172
|
+
}
|
|
173
|
+
)
|
|
174
|
+
), M = /* @__PURE__ */ e(
|
|
175
|
+
r(
|
|
176
|
+
"arcgis-portal-group-browser-card",
|
|
177
|
+
{
|
|
178
|
+
onArcgisGroupBrowserCardPreview: "arcgisGroupBrowserCardPreview",
|
|
179
|
+
onArcgisGroupCardSelect: "arcgisGroupCardSelect"
|
|
180
|
+
}
|
|
181
|
+
)
|
|
182
|
+
), k = /* @__PURE__ */ e(
|
|
183
|
+
r(
|
|
184
|
+
"arcgis-portal-group-browser-preview",
|
|
185
|
+
{
|
|
186
|
+
onArcgisGroupBrowserInternalUIAction: "arcgisGroupBrowserInternalUIAction",
|
|
187
|
+
onArcgisGroupBrowserPreviewClose: "arcgisGroupBrowserPreviewClose"
|
|
188
|
+
}
|
|
189
|
+
)
|
|
190
|
+
), T = /* @__PURE__ */ e(
|
|
191
|
+
r(
|
|
192
|
+
"arcgis-portal-group-browser-preview-card",
|
|
193
|
+
{
|
|
194
|
+
onArcgisGroupBrowserInternalUIAction: "arcgisGroupBrowserInternalUIAction",
|
|
195
|
+
onArcgisGroupBrowserPreviewCardSelect: "arcgisGroupBrowserPreviewCardSelect"
|
|
196
|
+
}
|
|
197
|
+
)
|
|
198
|
+
), V = /* @__PURE__ */ e(
|
|
68
199
|
r(
|
|
69
200
|
"arcgis-portal-group-card",
|
|
70
201
|
{
|
|
@@ -73,17 +204,59 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
73
204
|
onArcgisGroupCardSelect: "arcgisGroupCardSelect"
|
|
74
205
|
}
|
|
75
206
|
)
|
|
76
|
-
),
|
|
207
|
+
), R = /* @__PURE__ */ e(
|
|
77
208
|
r(
|
|
78
209
|
"arcgis-portal-group-thumbnail",
|
|
79
210
|
{}
|
|
80
211
|
)
|
|
81
|
-
),
|
|
212
|
+
), y = /* @__PURE__ */ e(
|
|
213
|
+
r(
|
|
214
|
+
"arcgis-portal-info-banner",
|
|
215
|
+
{}
|
|
216
|
+
)
|
|
217
|
+
), D = /* @__PURE__ */ e(
|
|
218
|
+
r(
|
|
219
|
+
"arcgis-portal-item-actions",
|
|
220
|
+
{
|
|
221
|
+
onArcgisItemActionClick: "arcgisItemActionClick",
|
|
222
|
+
onArcgisItemActions: "arcgisItemActions",
|
|
223
|
+
onArcgisItemActionsOpen: "arcgisItemActionsOpen",
|
|
224
|
+
onArcgisItemFavoriteUpdate: "arcgisItemFavoriteUpdate"
|
|
225
|
+
}
|
|
226
|
+
)
|
|
227
|
+
), N = /* @__PURE__ */ e(
|
|
228
|
+
r(
|
|
229
|
+
"arcgis-portal-item-badges",
|
|
230
|
+
{}
|
|
231
|
+
)
|
|
232
|
+
), E = /* @__PURE__ */ e(
|
|
233
|
+
r(
|
|
234
|
+
"arcgis-portal-item-badge",
|
|
235
|
+
{}
|
|
236
|
+
)
|
|
237
|
+
), O = /* @__PURE__ */ e(
|
|
238
|
+
r(
|
|
239
|
+
"arcgis-portal-item-card",
|
|
240
|
+
{
|
|
241
|
+
onArcgisItemBrowserCardPreview: "arcgisItemBrowserCardPreview",
|
|
242
|
+
onArcgisItemCardActionsOpen: "arcgisItemCardActionsOpen",
|
|
243
|
+
onArcgisItemCardInternalUIAction: "arcgisItemCardInternalUIAction",
|
|
244
|
+
onArcgisItemCardSelect: "arcgisItemCardSelect"
|
|
245
|
+
}
|
|
246
|
+
)
|
|
247
|
+
), L = /* @__PURE__ */ e(
|
|
248
|
+
r(
|
|
249
|
+
"arcgis-portal-item-favorite",
|
|
250
|
+
{
|
|
251
|
+
onArcgisItemFavoriteUpdate: "arcgisItemFavoriteUpdate"
|
|
252
|
+
}
|
|
253
|
+
)
|
|
254
|
+
), K = /* @__PURE__ */ e(
|
|
82
255
|
r(
|
|
83
256
|
"arcgis-portal-item-type",
|
|
84
257
|
{}
|
|
85
258
|
)
|
|
86
|
-
),
|
|
259
|
+
), W = /* @__PURE__ */ e(
|
|
87
260
|
r(
|
|
88
261
|
"arcgis-portal-mentionable-text-area",
|
|
89
262
|
{
|
|
@@ -94,19 +267,29 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
94
267
|
onArcgisUserMentionableTextAreaKeyDown: "arcgisUserMentionableTextAreaKeyDown"
|
|
95
268
|
}
|
|
96
269
|
)
|
|
97
|
-
),
|
|
270
|
+
), j = /* @__PURE__ */ e(
|
|
271
|
+
r(
|
|
272
|
+
"arcgis-portal-navigation",
|
|
273
|
+
{
|
|
274
|
+
onArcgisNavigate: "arcgisNavigate",
|
|
275
|
+
onArcgisNavigationProjectMenuClick: "arcgisNavigationProjectMenuClick",
|
|
276
|
+
onArcgisNavigationSignIn: "arcgisNavigationSignIn",
|
|
277
|
+
onArcgisNavigationSignOut: "arcgisNavigationSignOut"
|
|
278
|
+
}
|
|
279
|
+
)
|
|
280
|
+
), q = /* @__PURE__ */ e(
|
|
98
281
|
r(
|
|
99
282
|
"arcgis-portal-replacement-item-redirect",
|
|
100
283
|
{
|
|
101
284
|
onArcgisPortalReplacementItemFetch: "arcgisPortalReplacementItemFetch"
|
|
102
285
|
}
|
|
103
286
|
)
|
|
104
|
-
),
|
|
287
|
+
), z = /* @__PURE__ */ e(
|
|
105
288
|
r(
|
|
106
289
|
"arcgis-portal-user-avatar",
|
|
107
290
|
{}
|
|
108
291
|
)
|
|
109
|
-
),
|
|
292
|
+
), H = /* @__PURE__ */ e(
|
|
110
293
|
r(
|
|
111
294
|
"arcgis-portal-user-popup",
|
|
112
295
|
{
|
|
@@ -114,7 +297,7 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
114
297
|
onArcgisUserPopupInternalUIAction: "arcgisUserPopupInternalUIAction"
|
|
115
298
|
}
|
|
116
299
|
)
|
|
117
|
-
),
|
|
300
|
+
), J = /* @__PURE__ */ e(
|
|
118
301
|
r(
|
|
119
302
|
"arcgis-portal-voice-input",
|
|
120
303
|
{
|
|
@@ -127,21 +310,44 @@ const e = /* @__PURE__ */ a(t, i), n = /* @__PURE__ */ e(
|
|
|
127
310
|
)
|
|
128
311
|
);
|
|
129
312
|
export {
|
|
130
|
-
n as
|
|
131
|
-
g as
|
|
132
|
-
l as
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
313
|
+
n as ArcgisPortalAccountSwitcher,
|
|
314
|
+
g as ArcgisPortalAccountSwitcherAccounts,
|
|
315
|
+
l as ArcgisPortalAccountSwitcherList,
|
|
316
|
+
A as ArcgisPortalAddGpsMetadata,
|
|
317
|
+
p as ArcgisPortalAiAssistant,
|
|
318
|
+
w as ArcgisPortalAiAssistantInterrupt,
|
|
319
|
+
u as ArcgisPortalBrowser,
|
|
320
|
+
d as ArcgisPortalBrowserActions,
|
|
321
|
+
P as ArcgisPortalBrowserFilterStatus,
|
|
322
|
+
B as ArcgisPortalBrowserPagination,
|
|
323
|
+
C as ArcgisPortalBrowserSearch,
|
|
324
|
+
I as ArcgisPortalBrowserSort,
|
|
325
|
+
m as ArcgisPortalBrowserTopBar,
|
|
326
|
+
v as ArcgisPortalBrowserView,
|
|
327
|
+
S as ArcgisPortalClassificationBanner,
|
|
328
|
+
G as ArcgisPortalClassificationConfig,
|
|
329
|
+
h as ArcgisPortalClassificationFavorite,
|
|
330
|
+
U as ArcgisPortalClassificationFormElement,
|
|
331
|
+
b as ArcgisPortalExtentPicker,
|
|
332
|
+
F as ArcgisPortalFieldDelete,
|
|
333
|
+
f as ArcgisPortalGroupBadges,
|
|
334
|
+
x as ArcgisPortalGroupBrowser,
|
|
335
|
+
M as ArcgisPortalGroupBrowserCard,
|
|
336
|
+
k as ArcgisPortalGroupBrowserPreview,
|
|
337
|
+
T as ArcgisPortalGroupBrowserPreviewCard,
|
|
338
|
+
V as ArcgisPortalGroupCard,
|
|
339
|
+
R as ArcgisPortalGroupThumbnail,
|
|
340
|
+
y as ArcgisPortalInfoBanner,
|
|
341
|
+
D as ArcgisPortalItemActions,
|
|
342
|
+
E as ArcgisPortalItemBadge,
|
|
343
|
+
N as ArcgisPortalItemBadges,
|
|
344
|
+
O as ArcgisPortalItemCard,
|
|
345
|
+
L as ArcgisPortalItemFavorite,
|
|
346
|
+
K as ArcgisPortalItemType,
|
|
347
|
+
W as ArcgisPortalMentionableTextArea,
|
|
348
|
+
j as ArcgisPortalNavigation,
|
|
349
|
+
q as ArcgisPortalReplacementItemRedirect,
|
|
350
|
+
z as ArcgisPortalUserAvatar,
|
|
351
|
+
H as ArcgisPortalUserPopup,
|
|
352
|
+
J as ArcgisPortalVoiceInput
|
|
147
353
|
};
|
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.100",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS portal components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"2D",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
],
|
|
30
30
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
31
31
|
"dependencies": {
|
|
32
|
+
"@arcgis/lumina": "5.2.0-next.100",
|
|
33
|
+
"@arcgis/portal-components": "5.2.0-next.100",
|
|
32
34
|
"@lit/react": "^1.0.8",
|
|
33
35
|
"lit": "^3.3.0",
|
|
34
|
-
"tslib": "^2.8.1"
|
|
35
|
-
"@arcgis/lumina": "5.2.0-next.10",
|
|
36
|
-
"@arcgis/portal-components": "5.2.0-next.10"
|
|
36
|
+
"tslib": "^2.8.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@arcgis/core": "
|
|
39
|
+
"@arcgis/core": "5.2.0-next.100",
|
|
40
40
|
"react": ">=18.0.0 <20.0.0"
|
|
41
41
|
}
|
|
42
42
|
}
|