@arcgis/common-components 5.1.0-next.95 → 5.1.0-next.97
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/arcgis-color-input/customElement.d.ts +2 -2
- package/dist/components/arcgis-field-pick-list/customElement.d.ts +6 -6
- package/dist/components/arcgis-picker-input/customElement.d.ts +2 -2
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/vscode.html-custom-data.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/utils/types.d.ts +16 -4
- package/package.json +3 -3
package/dist/utils/types.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type LogicalPlacement = Popover["placement"];
|
|
|
11
11
|
*
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
14
|
-
export interface
|
|
14
|
+
export interface PopoverProps {
|
|
15
15
|
refElement: HTMLElement;
|
|
16
16
|
placement?: LogicalPlacement;
|
|
17
17
|
offsetDistance?: number;
|
|
@@ -25,13 +25,19 @@ export interface IPopoverProps {
|
|
|
25
25
|
zIndex?: number;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated - use PopoverProps instead
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
export type IPopoverProps = PopoverProps;
|
|
33
|
+
|
|
28
34
|
/**
|
|
29
35
|
* Object to be passed to arcgis-field-pick-list containing info about a field.
|
|
30
36
|
* Use type:"none" to add non-sortable items, without info options, to the bottom of the list.
|
|
31
37
|
*
|
|
32
38
|
* @internal
|
|
33
39
|
*/
|
|
34
|
-
export interface
|
|
40
|
+
export interface PickListFieldInfo {
|
|
35
41
|
name: string;
|
|
36
42
|
alias?: string | null;
|
|
37
43
|
type: string;
|
|
@@ -42,14 +48,20 @@ export interface IPickListFieldInfo {
|
|
|
42
48
|
showDeleteAction?: boolean;
|
|
43
49
|
}
|
|
44
50
|
|
|
51
|
+
/**
|
|
52
|
+
* @deprecated - use PickListFieldInfo instead
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
export type IPickListFieldInfo = PickListFieldInfo;
|
|
56
|
+
|
|
45
57
|
/**
|
|
46
58
|
* Object to be passed to arcgis-field-pick-list containing a group of fields.
|
|
47
59
|
*
|
|
48
60
|
* @internal
|
|
49
61
|
*/
|
|
50
|
-
export interface
|
|
62
|
+
export interface PickListGroupInfo {
|
|
51
63
|
title?: string;
|
|
52
|
-
fields:
|
|
64
|
+
fields: PickListFieldInfo[];
|
|
53
65
|
}
|
|
54
66
|
|
|
55
67
|
/** @internal */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/common-components",
|
|
3
|
-
"version": "5.1.0-next.
|
|
3
|
+
"version": "5.1.0-next.97",
|
|
4
4
|
"description": "ArcGIS Maps SDK for JavaScript common components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"2D",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@lit/task": "^1.0.3",
|
|
47
47
|
"lit": "^3.3.0",
|
|
48
48
|
"tslib": "^2.8.1",
|
|
49
|
-
"@arcgis/lumina": "5.1.0-next.
|
|
50
|
-
"@arcgis/toolkit": "5.1.0-next.
|
|
49
|
+
"@arcgis/lumina": "5.1.0-next.97",
|
|
50
|
+
"@arcgis/toolkit": "5.1.0-next.97"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@arcgis/core": "^5.1.0-next",
|