@arcgis/core-adapter 4.32.0-next.20 → 4.32.0-next.21
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/.turbo/turbo-build.log +4 -3
- package/dist/index.cjs +372 -0
- package/dist/index.d.cts +47 -2
- package/dist/index.d.ts +47 -2
- package/dist/index.js +327 -0
- package/package.json +1 -1
- package/scripts/generator.ts +7 -0
- package/src/index.ts +328 -1
- package/support/api-reference-esm-imports.json +41 -10
- package/support/arcgis.d.ts +1255 -205
package/support/arcgis.d.ts
CHANGED
|
@@ -1686,6 +1686,65 @@ declare namespace __esri {
|
|
|
1686
1686
|
preserveAspectRatio?: boolean;
|
|
1687
1687
|
}
|
|
1688
1688
|
|
|
1689
|
+
/**
|
|
1690
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1691
|
+
*
|
|
1692
|
+
* Utils for knowledge studio supporting access to utilities shared between Studio and the SDK
|
|
1693
|
+
*/
|
|
1694
|
+
interface generalSharedKgUtils {
|
|
1695
|
+
extentToInBoundsRings(extent: Extent): number[][][];
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
export const generalSharedKgUtils: generalSharedKgUtils;
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1702
|
+
*
|
|
1703
|
+
* Utils for knowledge studio supporting access to internal layer properties needed for in-memory state serialization
|
|
1704
|
+
*/
|
|
1705
|
+
interface layerInternalAccessUtils {
|
|
1706
|
+
getInclusionDefinitionFromLayer(layer: KnowledgeGraphLayer | LinkChartLayer): InclusionModeDefinition;
|
|
1707
|
+
|
|
1708
|
+
removeInclusionDefinitionFromLayer(layer: KnowledgeGraphLayer): void;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export const layerInternalAccessUtils: layerInternalAccessUtils;
|
|
1712
|
+
|
|
1713
|
+
interface resourceSerializationUtils {
|
|
1714
|
+
fetchAndConvertSerializedKnowledgeIdMap(
|
|
1715
|
+
idCollectionsUrl: string,
|
|
1716
|
+
generateAllSublayers?: boolean
|
|
1717
|
+
): Promise<InclusionModeDefinition>;
|
|
1718
|
+
|
|
1719
|
+
fetchAndConvertSerializedLinkChart(
|
|
1720
|
+
serializedResourceURLs: SerializedResourceURLs
|
|
1721
|
+
): Promise<InclusionModeDefinition>;
|
|
1722
|
+
|
|
1723
|
+
serializeInclusionDefinitionToAllPbf(
|
|
1724
|
+
inclusionDefinition: InclusionModeDefinition,
|
|
1725
|
+
kg: KnowledgeGraph,
|
|
1726
|
+
endpointMap: globalThis.Map<string, string[]>
|
|
1727
|
+
): Promise<SerializedFeatureCollections>;
|
|
1728
|
+
|
|
1729
|
+
serializeInclusionDefinitionToIdCollectionsMapPbf(
|
|
1730
|
+
inclusionDefinition: InclusionModeDefinition
|
|
1731
|
+
): Promise<ArrayBuffer>;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
export const resourceSerializationUtils: resourceSerializationUtils;
|
|
1735
|
+
|
|
1736
|
+
export interface SerializedFeatureCollections {
|
|
1737
|
+
entitiesFC: ArrayBuffer;
|
|
1738
|
+
|
|
1739
|
+
relationshipsFC: ArrayBuffer;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
export interface SerializedResourceURLs {
|
|
1743
|
+
entitiesUrl?: string;
|
|
1744
|
+
|
|
1745
|
+
relationshipsUrl?: string;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1689
1748
|
/**
|
|
1690
1749
|
* Note: reserved for internal use only, this is not part of the stable public API.
|
|
1691
1750
|
*
|
|
@@ -20001,6 +20060,28 @@ declare namespace __esri {
|
|
|
20001
20060
|
url?: string;
|
|
20002
20061
|
}
|
|
20003
20062
|
|
|
20063
|
+
interface cypherUtils {
|
|
20064
|
+
getBindParametersFromCypherQuery(query: string): Promise<BindParamsFromCypherQueryResult>;
|
|
20065
|
+
}
|
|
20066
|
+
|
|
20067
|
+
export const cypherUtils: cypherUtils;
|
|
20068
|
+
|
|
20069
|
+
export interface BindParamsFromCypherQueryResult {
|
|
20070
|
+
bindParameters: string[];
|
|
20071
|
+
|
|
20072
|
+
parseErrors: RecognizerError;
|
|
20073
|
+
}
|
|
20074
|
+
|
|
20075
|
+
export interface RecognizerError {
|
|
20076
|
+
line: number;
|
|
20077
|
+
|
|
20078
|
+
column: number;
|
|
20079
|
+
|
|
20080
|
+
msg: string;
|
|
20081
|
+
|
|
20082
|
+
e: any;
|
|
20083
|
+
}
|
|
20084
|
+
|
|
20004
20085
|
export interface KnowledgeGraphSublayer
|
|
20005
20086
|
extends Layer,
|
|
20006
20087
|
BlendLayer,
|
|
@@ -20926,6 +21007,27 @@ declare namespace __esri {
|
|
|
20926
21007
|
supportsCacheHint: boolean;
|
|
20927
21008
|
}
|
|
20928
21009
|
|
|
21010
|
+
interface supportUtils {
|
|
21011
|
+
/**
|
|
21012
|
+
* TODO: remove this method once chron layout overlay handling is migrated to the SDK
|
|
21013
|
+
*
|
|
21014
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-supportUtils.html#getChronologicalOverlay)
|
|
21015
|
+
*/
|
|
21016
|
+
getChronologicalOverlay(linkChartLayer: LinkChartLayer): GraphicsLayer;
|
|
21017
|
+
/**
|
|
21018
|
+
* TODO: remove this method once chron layout overlay handling is migrated to the SDK
|
|
21019
|
+
*
|
|
21020
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-supportUtils.html#getDefaultChronologicalOverlayLayerId)
|
|
21021
|
+
*/
|
|
21022
|
+
getDefaultChronologicalOverlayLayerId(): string;
|
|
21023
|
+
|
|
21024
|
+
getRelationshipEndNodeIds(records: IdTypePair[], kg: KnowledgeGraph): Promise<IdTypePair[]>;
|
|
21025
|
+
|
|
21026
|
+
getRelationshipEndNodeMap(records: IdTypePair[], kg: KnowledgeGraph): Promise<globalThis.Map<string, string[]>>;
|
|
21027
|
+
}
|
|
21028
|
+
|
|
21029
|
+
export const supportUtils: supportUtils;
|
|
21030
|
+
|
|
20929
21031
|
export class KnowledgeGraphLayer extends Layer {
|
|
20930
21032
|
/**
|
|
20931
21033
|
* A KnowledgeGraphLayer is a composite layer that can be created from a [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
|
|
@@ -21097,6 +21199,25 @@ declare namespace __esri {
|
|
|
21097
21199
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#LayerInclusionMemberDefinition)
|
|
21098
21200
|
*/
|
|
21099
21201
|
id: string;
|
|
21202
|
+
/**
|
|
21203
|
+
* The exact point location of the entity on the LinkChart.
|
|
21204
|
+
*
|
|
21205
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#LayerInclusionMemberDefinition)
|
|
21206
|
+
*/
|
|
21207
|
+
linkChartLocation?: Point | OptimizedGeometry;
|
|
21208
|
+
}
|
|
21209
|
+
|
|
21210
|
+
/**
|
|
21211
|
+
* An alternative geometry format for serialized geometries
|
|
21212
|
+
*
|
|
21213
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#OptimizedGeometry)
|
|
21214
|
+
*/
|
|
21215
|
+
export interface OptimizedGeometry {
|
|
21216
|
+
lengths: number[];
|
|
21217
|
+
|
|
21218
|
+
coords: number[];
|
|
21219
|
+
|
|
21220
|
+
hasIndeterminateRingOrder?: boolean;
|
|
21100
21221
|
}
|
|
21101
21222
|
|
|
21102
21223
|
export interface Layer extends Accessor, Loadable, Evented, Identifiable {}
|
|
@@ -21219,7 +21340,8 @@ declare namespace __esri {
|
|
|
21219
21340
|
| "voxel"
|
|
21220
21341
|
| "subtype-group"
|
|
21221
21342
|
| "knowledge-graph"
|
|
21222
|
-
| "knowledge-graph-sublayer"
|
|
21343
|
+
| "knowledge-graph-sublayer"
|
|
21344
|
+
| "link-chart";
|
|
21223
21345
|
/**
|
|
21224
21346
|
* Specifies a fixed [time extent](https://developers.arcgis.com/javascript/latest/api-reference/esri-time-TimeExtent.html) during which a layer should be visible.
|
|
21225
21347
|
*
|
|
@@ -21477,6 +21599,12 @@ declare namespace __esri {
|
|
|
21477
21599
|
|
|
21478
21600
|
constructor(properties?: LinkChartLayerProperties);
|
|
21479
21601
|
|
|
21602
|
+
/**
|
|
21603
|
+
* Sets a default layout configuration for the link chart.
|
|
21604
|
+
*
|
|
21605
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21606
|
+
*/
|
|
21607
|
+
defaultLinkChartConfig: LinkChartLayerDefaultLinkChartConfig;
|
|
21480
21608
|
/**
|
|
21481
21609
|
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21482
21610
|
*
|
|
@@ -21504,6 +21632,12 @@ declare namespace __esri {
|
|
|
21504
21632
|
}
|
|
21505
21633
|
|
|
21506
21634
|
interface LinkChartLayerProperties extends LayerProperties {
|
|
21635
|
+
/**
|
|
21636
|
+
* Sets a default layout configuration for the link chart.
|
|
21637
|
+
*
|
|
21638
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21639
|
+
*/
|
|
21640
|
+
defaultLinkChartConfig?: LinkChartLayerDefaultLinkChartConfig;
|
|
21507
21641
|
/**
|
|
21508
21642
|
* Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
|
|
21509
21643
|
*
|
|
@@ -21518,64 +21652,141 @@ declare namespace __esri {
|
|
|
21518
21652
|
url?: string;
|
|
21519
21653
|
}
|
|
21520
21654
|
|
|
21655
|
+
export interface LinkChartLayerChronologicalLayoutSettings {
|
|
21656
|
+
timeDirection?: "right" | "left" | "top" | "bottom";
|
|
21657
|
+
|
|
21658
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
21659
|
+
|
|
21660
|
+
eventsTicksVisualization?: "none" | "start-only" | "start-and-end";
|
|
21661
|
+
|
|
21662
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
21663
|
+
|
|
21664
|
+
durationLineWidth?: number;
|
|
21665
|
+
|
|
21666
|
+
entityPositionAtDurationRatio?: number;
|
|
21667
|
+
|
|
21668
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
21669
|
+
|
|
21670
|
+
separateTimeOverlaps?: boolean;
|
|
21671
|
+
|
|
21672
|
+
separateTimelineOverlaps?: boolean;
|
|
21673
|
+
|
|
21674
|
+
moveFirstBends?: boolean;
|
|
21675
|
+
|
|
21676
|
+
secondBendRatio?: number;
|
|
21677
|
+
|
|
21678
|
+
lineSeparationMultiplier?: number;
|
|
21679
|
+
|
|
21680
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
21681
|
+
|
|
21682
|
+
separatedLineShapeRatio?: number;
|
|
21683
|
+
}
|
|
21684
|
+
|
|
21685
|
+
export interface layersLinkChartLayerChronologicalLayoutSettings {
|
|
21686
|
+
timeDirection?: "right" | "left" | "top" | "bottom";
|
|
21687
|
+
|
|
21688
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
21689
|
+
|
|
21690
|
+
eventsTicksVisualization?: "none" | "start-only" | "start-and-end";
|
|
21691
|
+
|
|
21692
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
21693
|
+
|
|
21694
|
+
durationLineWidth?: number;
|
|
21695
|
+
|
|
21696
|
+
entityPositionAtDurationRatio?: number;
|
|
21697
|
+
|
|
21698
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
21699
|
+
|
|
21700
|
+
separateTimeOverlaps?: boolean;
|
|
21701
|
+
|
|
21702
|
+
separateTimelineOverlaps?: boolean;
|
|
21703
|
+
|
|
21704
|
+
moveFirstBends?: boolean;
|
|
21705
|
+
|
|
21706
|
+
secondBendRatio?: number;
|
|
21707
|
+
|
|
21708
|
+
lineSeparationMultiplier?: number;
|
|
21709
|
+
|
|
21710
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
21711
|
+
|
|
21712
|
+
separatedLineShapeRatio?: number;
|
|
21713
|
+
}
|
|
21714
|
+
|
|
21521
21715
|
/**
|
|
21522
|
-
* Defines
|
|
21716
|
+
* Defines additional settings for layout calculations.
|
|
21523
21717
|
*
|
|
21524
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21718
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21525
21719
|
*/
|
|
21526
|
-
export interface
|
|
21720
|
+
export interface LayoutModeSettings {
|
|
21527
21721
|
/**
|
|
21528
|
-
*
|
|
21722
|
+
* -
|
|
21529
21723
|
*
|
|
21530
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21724
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21531
21725
|
*/
|
|
21532
|
-
|
|
21726
|
+
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
21533
21727
|
/**
|
|
21534
|
-
*
|
|
21728
|
+
* -
|
|
21535
21729
|
*
|
|
21536
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21730
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
|
|
21537
21731
|
*/
|
|
21538
|
-
|
|
21732
|
+
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
21539
21733
|
}
|
|
21540
21734
|
|
|
21541
|
-
|
|
21542
|
-
* Defines the contents of each specified named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition) and whether all instance of the named type will be used for a specified subset.
|
|
21543
|
-
*
|
|
21544
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
|
|
21545
|
-
*/
|
|
21546
|
-
export interface LinkChartLayerLayerInclusionDefinition {
|
|
21735
|
+
export interface LinkChartLayerDefaultLinkChartConfig {
|
|
21547
21736
|
/**
|
|
21548
|
-
*
|
|
21737
|
+
* The layout mode to be applied by default.
|
|
21549
21738
|
*
|
|
21550
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21739
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21551
21740
|
*/
|
|
21552
|
-
|
|
21741
|
+
layoutMode?:
|
|
21742
|
+
| "RADIAL_TREE"
|
|
21743
|
+
| "GEOGRAPHIC"
|
|
21744
|
+
| "FORCE_DIRECTED"
|
|
21745
|
+
| "COMMUNITY"
|
|
21746
|
+
| "SIMPLE"
|
|
21747
|
+
| "HIERARCHICAL"
|
|
21748
|
+
| "SMART_TREE"
|
|
21749
|
+
| "CHRONOLOGICAL_SINGLE"
|
|
21750
|
+
| "CHRONOLOGICAL_MULTIPLE";
|
|
21553
21751
|
/**
|
|
21554
|
-
*
|
|
21752
|
+
* By default, the layout algorithm is always run on link charts when they are first created.
|
|
21555
21753
|
*
|
|
21556
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21754
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21557
21755
|
*/
|
|
21558
|
-
|
|
21756
|
+
doNotRecalculateLayout?: boolean;
|
|
21757
|
+
/**
|
|
21758
|
+
* Additional layout options for the default layout configuration.
|
|
21759
|
+
*
|
|
21760
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
|
|
21761
|
+
*/
|
|
21762
|
+
layoutOptions?: LayoutModeSettings;
|
|
21559
21763
|
}
|
|
21560
21764
|
|
|
21561
|
-
|
|
21562
|
-
* Defines the list of `members` for a named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition).
|
|
21563
|
-
*
|
|
21564
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
|
|
21565
|
-
*/
|
|
21566
|
-
export interface LinkChartLayerLayerInclusionMemberDefinition {
|
|
21765
|
+
export interface LinkChartLayerOrganicLayoutSettings {
|
|
21567
21766
|
/**
|
|
21568
|
-
* The
|
|
21767
|
+
* The maximum amount of time in milliseconds to spend on the layout calculation.
|
|
21569
21768
|
*
|
|
21570
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21769
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21571
21770
|
*/
|
|
21572
|
-
|
|
21771
|
+
computationBudgetTime?: number;
|
|
21573
21772
|
/**
|
|
21574
|
-
* The
|
|
21773
|
+
* The value to use for the ideal edge length during calculations.
|
|
21774
|
+
*
|
|
21775
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21776
|
+
*/
|
|
21777
|
+
idealEdgeLength?: number;
|
|
21778
|
+
/**
|
|
21779
|
+
* By default, the replusion radius is automatically calculated to give a reasonable value for each node.
|
|
21575
21780
|
*
|
|
21576
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#
|
|
21781
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21577
21782
|
*/
|
|
21578
|
-
|
|
21783
|
+
repulsionRadiusMultiplier?: number;
|
|
21784
|
+
/**
|
|
21785
|
+
* Whether the ideal edge length provided should be used as a multiplier for the calculated ideal edge length, or an absolute value, in degrees.
|
|
21786
|
+
*
|
|
21787
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
|
|
21788
|
+
*/
|
|
21789
|
+
idealEdgeLengthType?: "multiplier" | "absoluteValue";
|
|
21579
21790
|
}
|
|
21580
21791
|
|
|
21581
21792
|
export interface MapImageLayer
|
|
@@ -45931,6 +46142,542 @@ declare namespace __esri {
|
|
|
45931
46142
|
signal?: AbortSignal;
|
|
45932
46143
|
}
|
|
45933
46144
|
|
|
46145
|
+
export interface ChronologicalLayoutSettings extends Accessor, JSONSupport {}
|
|
46146
|
+
|
|
46147
|
+
export class ChronologicalLayoutSettings {
|
|
46148
|
+
/**
|
|
46149
|
+
* Settings for chronological layout calculations.
|
|
46150
|
+
*
|
|
46151
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html)
|
|
46152
|
+
*/
|
|
46153
|
+
|
|
46154
|
+
constructor(properties?: ChronologicalLayoutSettingsProperties);
|
|
46155
|
+
|
|
46156
|
+
/**
|
|
46157
|
+
* An integer between 1 and 10 setting the width of the line, in points, representing the duration of events with non-zero durations.
|
|
46158
|
+
*
|
|
46159
|
+
* @default 5
|
|
46160
|
+
*
|
|
46161
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#durationLineWidth)
|
|
46162
|
+
*/
|
|
46163
|
+
durationLineWidth: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
46164
|
+
/**
|
|
46165
|
+
* Determines the placement of an entity along a non-zero duration event interval.
|
|
46166
|
+
*
|
|
46167
|
+
* @default 1
|
|
46168
|
+
*
|
|
46169
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#entityPositionAtDurationRatio)
|
|
46170
|
+
*/
|
|
46171
|
+
entityPositionAtDurationRatio: number;
|
|
46172
|
+
/**
|
|
46173
|
+
* Controls the display of start and end event ticks on the timeline.
|
|
46174
|
+
*
|
|
46175
|
+
* @default "start-and-end"
|
|
46176
|
+
*
|
|
46177
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#eventsTicksVisualization)
|
|
46178
|
+
*/
|
|
46179
|
+
eventsTicksVisualization: "none" | "start-and-end" | "start-only";
|
|
46180
|
+
/**
|
|
46181
|
+
* The multiplier to be used for line separation, where a higher multiplier leads to greater separation between lines.
|
|
46182
|
+
*
|
|
46183
|
+
* @default 1
|
|
46184
|
+
*
|
|
46185
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#lineSeparationMultiplier)
|
|
46186
|
+
*/
|
|
46187
|
+
lineSeparationMultiplier: number;
|
|
46188
|
+
/**
|
|
46189
|
+
* When 'separateTimeLineOverlaps' is true, indicates whether the first bend on a relationship line related to an event is raised up above the event location, to reduce overlapping.
|
|
46190
|
+
*
|
|
46191
|
+
* @default true
|
|
46192
|
+
*
|
|
46193
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#moveFirstBends)
|
|
46194
|
+
*/
|
|
46195
|
+
moveFirstBends: boolean;
|
|
46196
|
+
/**
|
|
46197
|
+
* Ratio from 0 to 1 controlling the position at which the second bend of a relationship occurs, for event and non-event relationships between event and non-event entities.
|
|
46198
|
+
*
|
|
46199
|
+
* @default 0.3
|
|
46200
|
+
*
|
|
46201
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#secondBendRatio)
|
|
46202
|
+
*/
|
|
46203
|
+
secondBendRatio: number;
|
|
46204
|
+
/**
|
|
46205
|
+
* When 'separateTimeOverlaps' is true, adjusts the angle between the extremities of the original and separated lines.
|
|
46206
|
+
*
|
|
46207
|
+
* @default 0
|
|
46208
|
+
*
|
|
46209
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separatedLineShapeRatio)
|
|
46210
|
+
*/
|
|
46211
|
+
separatedLineShapeRatio: number;
|
|
46212
|
+
/**
|
|
46213
|
+
* Indicates whether events that overlap on a timeline are separated.
|
|
46214
|
+
*
|
|
46215
|
+
* @default true
|
|
46216
|
+
*
|
|
46217
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimelineOverlaps)
|
|
46218
|
+
*/
|
|
46219
|
+
separateTimelineOverlaps: boolean;
|
|
46220
|
+
/**
|
|
46221
|
+
* Indicates whether events that overlap in time are separated.
|
|
46222
|
+
*
|
|
46223
|
+
* @default true
|
|
46224
|
+
*
|
|
46225
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimeOverlaps)
|
|
46226
|
+
*/
|
|
46227
|
+
separateTimeOverlaps: boolean;
|
|
46228
|
+
/**
|
|
46229
|
+
* Determines whether or not lines representing the duration of events on entities with non-zero durations are shown.
|
|
46230
|
+
*
|
|
46231
|
+
* @default false
|
|
46232
|
+
*
|
|
46233
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showDurationLineForNonZeroDurationEntityEvents)
|
|
46234
|
+
*/
|
|
46235
|
+
showDurationLineForNonZeroDurationEntityEvents: boolean;
|
|
46236
|
+
/**
|
|
46237
|
+
* Determines whether to display interval bounds (tick lines at the start and end) of relationship lines for events with non-zero durations.
|
|
46238
|
+
*
|
|
46239
|
+
* @default false
|
|
46240
|
+
*
|
|
46241
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showNonZeroDurationIntervalBounds)
|
|
46242
|
+
*/
|
|
46243
|
+
showNonZeroDurationIntervalBounds: boolean;
|
|
46244
|
+
/**
|
|
46245
|
+
* Determines whether or not to space separated lines evenly, when either 'separateTimeOverlaps' or 'separateTimelineOverlaps' is true.
|
|
46246
|
+
*
|
|
46247
|
+
* @default false
|
|
46248
|
+
*
|
|
46249
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#spaceSeparatedLinesEvenly)
|
|
46250
|
+
*/
|
|
46251
|
+
spaceSeparatedLinesEvenly: boolean;
|
|
46252
|
+
/**
|
|
46253
|
+
* The UTC offset in minutes to use for the time banner.
|
|
46254
|
+
*
|
|
46255
|
+
* @default 0
|
|
46256
|
+
*
|
|
46257
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeBannerUTCOffsetInMinutes)
|
|
46258
|
+
*/
|
|
46259
|
+
timeBannerUTCOffsetInMinutes: number;
|
|
46260
|
+
/**
|
|
46261
|
+
* Controls the time axis orientation and the direction along which time increases in the layout, e.g.
|
|
46262
|
+
*
|
|
46263
|
+
* @default "right"
|
|
46264
|
+
*
|
|
46265
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeDirection)
|
|
46266
|
+
*/
|
|
46267
|
+
timeDirection: "bottom" | "left" | "right" | "top";
|
|
46268
|
+
/**
|
|
46269
|
+
* Determines whether or not to use Bezier curves for separated lines.
|
|
46270
|
+
*
|
|
46271
|
+
* @default false
|
|
46272
|
+
*
|
|
46273
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#useBezierCurves)
|
|
46274
|
+
*/
|
|
46275
|
+
useBezierCurves: boolean;
|
|
46276
|
+
|
|
46277
|
+
static fromJSON(json: any): ChronologicalLayoutSettings;
|
|
46278
|
+
}
|
|
46279
|
+
|
|
46280
|
+
interface ChronologicalLayoutSettingsProperties {
|
|
46281
|
+
/**
|
|
46282
|
+
* An integer between 1 and 10 setting the width of the line, in points, representing the duration of events with non-zero durations.
|
|
46283
|
+
*
|
|
46284
|
+
* @default 5
|
|
46285
|
+
*
|
|
46286
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#durationLineWidth)
|
|
46287
|
+
*/
|
|
46288
|
+
durationLineWidth?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
46289
|
+
/**
|
|
46290
|
+
* Determines the placement of an entity along a non-zero duration event interval.
|
|
46291
|
+
*
|
|
46292
|
+
* @default 1
|
|
46293
|
+
*
|
|
46294
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#entityPositionAtDurationRatio)
|
|
46295
|
+
*/
|
|
46296
|
+
entityPositionAtDurationRatio?: number;
|
|
46297
|
+
/**
|
|
46298
|
+
* Controls the display of start and end event ticks on the timeline.
|
|
46299
|
+
*
|
|
46300
|
+
* @default "start-and-end"
|
|
46301
|
+
*
|
|
46302
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#eventsTicksVisualization)
|
|
46303
|
+
*/
|
|
46304
|
+
eventsTicksVisualization?: "none" | "start-and-end" | "start-only";
|
|
46305
|
+
/**
|
|
46306
|
+
* The multiplier to be used for line separation, where a higher multiplier leads to greater separation between lines.
|
|
46307
|
+
*
|
|
46308
|
+
* @default 1
|
|
46309
|
+
*
|
|
46310
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#lineSeparationMultiplier)
|
|
46311
|
+
*/
|
|
46312
|
+
lineSeparationMultiplier?: number;
|
|
46313
|
+
/**
|
|
46314
|
+
* When 'separateTimeLineOverlaps' is true, indicates whether the first bend on a relationship line related to an event is raised up above the event location, to reduce overlapping.
|
|
46315
|
+
*
|
|
46316
|
+
* @default true
|
|
46317
|
+
*
|
|
46318
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#moveFirstBends)
|
|
46319
|
+
*/
|
|
46320
|
+
moveFirstBends?: boolean;
|
|
46321
|
+
/**
|
|
46322
|
+
* Ratio from 0 to 1 controlling the position at which the second bend of a relationship occurs, for event and non-event relationships between event and non-event entities.
|
|
46323
|
+
*
|
|
46324
|
+
* @default 0.3
|
|
46325
|
+
*
|
|
46326
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#secondBendRatio)
|
|
46327
|
+
*/
|
|
46328
|
+
secondBendRatio?: number;
|
|
46329
|
+
/**
|
|
46330
|
+
* When 'separateTimeOverlaps' is true, adjusts the angle between the extremities of the original and separated lines.
|
|
46331
|
+
*
|
|
46332
|
+
* @default 0
|
|
46333
|
+
*
|
|
46334
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separatedLineShapeRatio)
|
|
46335
|
+
*/
|
|
46336
|
+
separatedLineShapeRatio?: number;
|
|
46337
|
+
/**
|
|
46338
|
+
* Indicates whether events that overlap on a timeline are separated.
|
|
46339
|
+
*
|
|
46340
|
+
* @default true
|
|
46341
|
+
*
|
|
46342
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimelineOverlaps)
|
|
46343
|
+
*/
|
|
46344
|
+
separateTimelineOverlaps?: boolean;
|
|
46345
|
+
/**
|
|
46346
|
+
* Indicates whether events that overlap in time are separated.
|
|
46347
|
+
*
|
|
46348
|
+
* @default true
|
|
46349
|
+
*
|
|
46350
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#separateTimeOverlaps)
|
|
46351
|
+
*/
|
|
46352
|
+
separateTimeOverlaps?: boolean;
|
|
46353
|
+
/**
|
|
46354
|
+
* Determines whether or not lines representing the duration of events on entities with non-zero durations are shown.
|
|
46355
|
+
*
|
|
46356
|
+
* @default false
|
|
46357
|
+
*
|
|
46358
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showDurationLineForNonZeroDurationEntityEvents)
|
|
46359
|
+
*/
|
|
46360
|
+
showDurationLineForNonZeroDurationEntityEvents?: boolean;
|
|
46361
|
+
/**
|
|
46362
|
+
* Determines whether to display interval bounds (tick lines at the start and end) of relationship lines for events with non-zero durations.
|
|
46363
|
+
*
|
|
46364
|
+
* @default false
|
|
46365
|
+
*
|
|
46366
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#showNonZeroDurationIntervalBounds)
|
|
46367
|
+
*/
|
|
46368
|
+
showNonZeroDurationIntervalBounds?: boolean;
|
|
46369
|
+
/**
|
|
46370
|
+
* Determines whether or not to space separated lines evenly, when either 'separateTimeOverlaps' or 'separateTimelineOverlaps' is true.
|
|
46371
|
+
*
|
|
46372
|
+
* @default false
|
|
46373
|
+
*
|
|
46374
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#spaceSeparatedLinesEvenly)
|
|
46375
|
+
*/
|
|
46376
|
+
spaceSeparatedLinesEvenly?: boolean;
|
|
46377
|
+
/**
|
|
46378
|
+
* The UTC offset in minutes to use for the time banner.
|
|
46379
|
+
*
|
|
46380
|
+
* @default 0
|
|
46381
|
+
*
|
|
46382
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeBannerUTCOffsetInMinutes)
|
|
46383
|
+
*/
|
|
46384
|
+
timeBannerUTCOffsetInMinutes?: number;
|
|
46385
|
+
/**
|
|
46386
|
+
* Controls the time axis orientation and the direction along which time increases in the layout, e.g.
|
|
46387
|
+
*
|
|
46388
|
+
* @default "right"
|
|
46389
|
+
*
|
|
46390
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#timeDirection)
|
|
46391
|
+
*/
|
|
46392
|
+
timeDirection?: "bottom" | "left" | "right" | "top";
|
|
46393
|
+
/**
|
|
46394
|
+
* Determines whether or not to use Bezier curves for separated lines.
|
|
46395
|
+
*
|
|
46396
|
+
* @default false
|
|
46397
|
+
*
|
|
46398
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-ChronologicalLayoutSettings.html#useBezierCurves)
|
|
46399
|
+
*/
|
|
46400
|
+
useBezierCurves?: boolean;
|
|
46401
|
+
}
|
|
46402
|
+
|
|
46403
|
+
export interface LayoutSettings extends Accessor, JSONSupport {}
|
|
46404
|
+
|
|
46405
|
+
export class LayoutSettings {
|
|
46406
|
+
/**
|
|
46407
|
+
* Settings for link chart layouts.
|
|
46408
|
+
*
|
|
46409
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html)
|
|
46410
|
+
*/
|
|
46411
|
+
|
|
46412
|
+
constructor(properties?: LayoutSettingsProperties);
|
|
46413
|
+
|
|
46414
|
+
/**
|
|
46415
|
+
* Settings for chronological layout calculations.
|
|
46416
|
+
*
|
|
46417
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#chronologicalLayoutSettings)
|
|
46418
|
+
*/
|
|
46419
|
+
chronologicalLayoutSettings: ChronologicalLayoutSettings;
|
|
46420
|
+
/**
|
|
46421
|
+
* Settings for organic layout calculations.
|
|
46422
|
+
*
|
|
46423
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#organicLayoutSettings)
|
|
46424
|
+
*/
|
|
46425
|
+
organicLayoutSettings: OrganicLayoutSettings;
|
|
46426
|
+
|
|
46427
|
+
static fromJSON(json: any): LayoutSettings;
|
|
46428
|
+
}
|
|
46429
|
+
|
|
46430
|
+
interface LayoutSettingsProperties {
|
|
46431
|
+
/**
|
|
46432
|
+
* Settings for chronological layout calculations.
|
|
46433
|
+
*
|
|
46434
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#chronologicalLayoutSettings)
|
|
46435
|
+
*/
|
|
46436
|
+
chronologicalLayoutSettings?: ChronologicalLayoutSettingsProperties;
|
|
46437
|
+
/**
|
|
46438
|
+
* Settings for organic layout calculations.
|
|
46439
|
+
*
|
|
46440
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LayoutSettings.html#organicLayoutSettings)
|
|
46441
|
+
*/
|
|
46442
|
+
organicLayoutSettings?: OrganicLayoutSettingsProperties;
|
|
46443
|
+
}
|
|
46444
|
+
|
|
46445
|
+
export class LinkChartProperties extends Accessor {
|
|
46446
|
+
/**
|
|
46447
|
+
* Properties that contain source information, layout configurations and other settings for a Link chart.
|
|
46448
|
+
*
|
|
46449
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html)
|
|
46450
|
+
*/
|
|
46451
|
+
|
|
46452
|
+
constructor(properties?: LinkChartPropertiesProperties);
|
|
46453
|
+
|
|
46454
|
+
/**
|
|
46455
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46456
|
+
*
|
|
46457
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#entitiesUrl)
|
|
46458
|
+
*/
|
|
46459
|
+
entitiesUrl: string;
|
|
46460
|
+
/**
|
|
46461
|
+
* Settings for link chart layouts.
|
|
46462
|
+
*
|
|
46463
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutSettings)
|
|
46464
|
+
*/
|
|
46465
|
+
layoutSettings: LayoutSettings;
|
|
46466
|
+
/**
|
|
46467
|
+
* The link chart layout algorithm used to position entitites and relationships on the link chart.
|
|
46468
|
+
*
|
|
46469
|
+
* @default "organic-standard"
|
|
46470
|
+
*
|
|
46471
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutType)
|
|
46472
|
+
*/
|
|
46473
|
+
layoutType:
|
|
46474
|
+
| "basic-grid"
|
|
46475
|
+
| "chronological-mono-timeline"
|
|
46476
|
+
| "chronological-multi-timeline"
|
|
46477
|
+
| "geographic-organic-standard"
|
|
46478
|
+
| "hierarchical-bottom-to-top"
|
|
46479
|
+
| "hierarchical-top-to-bottom"
|
|
46480
|
+
| "organic-community"
|
|
46481
|
+
| "organic-fusiform"
|
|
46482
|
+
| "organic-leaf-circle"
|
|
46483
|
+
| "organic-standard"
|
|
46484
|
+
| "radial-node-centric"
|
|
46485
|
+
| "radial-root-centric"
|
|
46486
|
+
| "tree-bottom-to-top"
|
|
46487
|
+
| "tree-left-to-right"
|
|
46488
|
+
| "tree-right-to-left"
|
|
46489
|
+
| "tree-top-to-bottom";
|
|
46490
|
+
/**
|
|
46491
|
+
* Object that defines instructions on the visualization of nonspatial link chart data.
|
|
46492
|
+
*
|
|
46493
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#nonspatialDataDisplay)
|
|
46494
|
+
*/
|
|
46495
|
+
nonspatialDataDisplay: NonspatialDataDisplay;
|
|
46496
|
+
/**
|
|
46497
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46498
|
+
*
|
|
46499
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#relationshipsUrl)
|
|
46500
|
+
*/
|
|
46501
|
+
relationshipsUrl: string;
|
|
46502
|
+
}
|
|
46503
|
+
|
|
46504
|
+
interface LinkChartPropertiesProperties {
|
|
46505
|
+
/**
|
|
46506
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46507
|
+
*
|
|
46508
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#entitiesUrl)
|
|
46509
|
+
*/
|
|
46510
|
+
entitiesUrl?: string;
|
|
46511
|
+
/**
|
|
46512
|
+
* Settings for link chart layouts.
|
|
46513
|
+
*
|
|
46514
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutSettings)
|
|
46515
|
+
*/
|
|
46516
|
+
layoutSettings?: LayoutSettingsProperties;
|
|
46517
|
+
/**
|
|
46518
|
+
* The link chart layout algorithm used to position entitites and relationships on the link chart.
|
|
46519
|
+
*
|
|
46520
|
+
* @default "organic-standard"
|
|
46521
|
+
*
|
|
46522
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#layoutType)
|
|
46523
|
+
*/
|
|
46524
|
+
layoutType?:
|
|
46525
|
+
| "basic-grid"
|
|
46526
|
+
| "chronological-mono-timeline"
|
|
46527
|
+
| "chronological-multi-timeline"
|
|
46528
|
+
| "geographic-organic-standard"
|
|
46529
|
+
| "hierarchical-bottom-to-top"
|
|
46530
|
+
| "hierarchical-top-to-bottom"
|
|
46531
|
+
| "organic-community"
|
|
46532
|
+
| "organic-fusiform"
|
|
46533
|
+
| "organic-leaf-circle"
|
|
46534
|
+
| "organic-standard"
|
|
46535
|
+
| "radial-node-centric"
|
|
46536
|
+
| "radial-root-centric"
|
|
46537
|
+
| "tree-bottom-to-top"
|
|
46538
|
+
| "tree-left-to-right"
|
|
46539
|
+
| "tree-right-to-left"
|
|
46540
|
+
| "tree-top-to-bottom";
|
|
46541
|
+
/**
|
|
46542
|
+
* Object that defines instructions on the visualization of nonspatial link chart data.
|
|
46543
|
+
*
|
|
46544
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#nonspatialDataDisplay)
|
|
46545
|
+
*/
|
|
46546
|
+
nonspatialDataDisplay?: NonspatialDataDisplayProperties;
|
|
46547
|
+
/**
|
|
46548
|
+
* Url pointing to a resource containing featureSet as PBF reference containing a serialized representation of the internal entity table.
|
|
46549
|
+
*
|
|
46550
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-LinkChartProperties.html#relationshipsUrl)
|
|
46551
|
+
*/
|
|
46552
|
+
relationshipsUrl?: string;
|
|
46553
|
+
}
|
|
46554
|
+
|
|
46555
|
+
export interface NonspatialDataDisplay extends Accessor, JSONSupport {}
|
|
46556
|
+
|
|
46557
|
+
export class NonspatialDataDisplay {
|
|
46558
|
+
constructor(properties?: NonspatialDataDisplayProperties);
|
|
46559
|
+
|
|
46560
|
+
/**
|
|
46561
|
+
* Category of how nonspatial information should be displayed.
|
|
46562
|
+
*
|
|
46563
|
+
* @default "visible"
|
|
46564
|
+
*
|
|
46565
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-NonspatialDataDisplay.html#mode)
|
|
46566
|
+
*/
|
|
46567
|
+
mode: "hidden" | "visible";
|
|
46568
|
+
|
|
46569
|
+
static fromJSON(json: any): NonspatialDataDisplay;
|
|
46570
|
+
}
|
|
46571
|
+
|
|
46572
|
+
interface NonspatialDataDisplayProperties {
|
|
46573
|
+
/**
|
|
46574
|
+
* Category of how nonspatial information should be displayed.
|
|
46575
|
+
*
|
|
46576
|
+
* @default "visible"
|
|
46577
|
+
*
|
|
46578
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-NonspatialDataDisplay.html#mode)
|
|
46579
|
+
*/
|
|
46580
|
+
mode?: "hidden" | "visible";
|
|
46581
|
+
}
|
|
46582
|
+
|
|
46583
|
+
export interface OrganicLayoutSettings extends Accessor, JSONSupport {}
|
|
46584
|
+
|
|
46585
|
+
export class OrganicLayoutSettings {
|
|
46586
|
+
/**
|
|
46587
|
+
* Settings for organic layout calculations.
|
|
46588
|
+
*
|
|
46589
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html)
|
|
46590
|
+
*/
|
|
46591
|
+
|
|
46592
|
+
constructor(properties?: OrganicLayoutSettingsProperties);
|
|
46593
|
+
|
|
46594
|
+
/**
|
|
46595
|
+
* The value, in degrees, to use for the ideal edge length during layout calculations when the idealEdgeLengthType is 'absolute-value'.
|
|
46596
|
+
*
|
|
46597
|
+
* @default 1
|
|
46598
|
+
*
|
|
46599
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#absoluteIdealEdgeLength)
|
|
46600
|
+
*/
|
|
46601
|
+
absoluteIdealEdgeLength: number;
|
|
46602
|
+
/**
|
|
46603
|
+
* Determines whether the repulsion radius should be calculated automatically (true), or computed according to 'repulsionRadiusMultiplier' (false).
|
|
46604
|
+
*
|
|
46605
|
+
* @default true
|
|
46606
|
+
*
|
|
46607
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#autoRepulsionRadius)
|
|
46608
|
+
*/
|
|
46609
|
+
autoRepulsionRadius: boolean;
|
|
46610
|
+
/**
|
|
46611
|
+
* Determines which property to use to compute the ideal edge length.
|
|
46612
|
+
*
|
|
46613
|
+
* @default "multiplier"
|
|
46614
|
+
*
|
|
46615
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType)
|
|
46616
|
+
*/
|
|
46617
|
+
idealEdgeLengthType: "absolute-value" | "multiplier";
|
|
46618
|
+
/**
|
|
46619
|
+
* Value used to multiply the default edge length to determine the ideal edge length during layout calculations, when the [idealEdgeLengthType](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType) is 'multiplier'.
|
|
46620
|
+
*
|
|
46621
|
+
* @default 1
|
|
46622
|
+
*
|
|
46623
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#multiplicativeIdealEdgeLength)
|
|
46624
|
+
*/
|
|
46625
|
+
multiplicativeIdealEdgeLength: number;
|
|
46626
|
+
/**
|
|
46627
|
+
* Value to be used for the repulsion radius multiplier in organic layout calculations.
|
|
46628
|
+
*
|
|
46629
|
+
* @default 1
|
|
46630
|
+
*
|
|
46631
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#repulsionRadiusMultiplier)
|
|
46632
|
+
*/
|
|
46633
|
+
repulsionRadiusMultiplier: number | any;
|
|
46634
|
+
|
|
46635
|
+
static fromJSON(json: any): OrganicLayoutSettings;
|
|
46636
|
+
}
|
|
46637
|
+
|
|
46638
|
+
interface OrganicLayoutSettingsProperties {
|
|
46639
|
+
/**
|
|
46640
|
+
* The value, in degrees, to use for the ideal edge length during layout calculations when the idealEdgeLengthType is 'absolute-value'.
|
|
46641
|
+
*
|
|
46642
|
+
* @default 1
|
|
46643
|
+
*
|
|
46644
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#absoluteIdealEdgeLength)
|
|
46645
|
+
*/
|
|
46646
|
+
absoluteIdealEdgeLength?: number;
|
|
46647
|
+
/**
|
|
46648
|
+
* Determines whether the repulsion radius should be calculated automatically (true), or computed according to 'repulsionRadiusMultiplier' (false).
|
|
46649
|
+
*
|
|
46650
|
+
* @default true
|
|
46651
|
+
*
|
|
46652
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#autoRepulsionRadius)
|
|
46653
|
+
*/
|
|
46654
|
+
autoRepulsionRadius?: boolean;
|
|
46655
|
+
/**
|
|
46656
|
+
* Determines which property to use to compute the ideal edge length.
|
|
46657
|
+
*
|
|
46658
|
+
* @default "multiplier"
|
|
46659
|
+
*
|
|
46660
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType)
|
|
46661
|
+
*/
|
|
46662
|
+
idealEdgeLengthType?: "absolute-value" | "multiplier";
|
|
46663
|
+
/**
|
|
46664
|
+
* Value used to multiply the default edge length to determine the ideal edge length during layout calculations, when the [idealEdgeLengthType](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#idealEdgeLengthType) is 'multiplier'.
|
|
46665
|
+
*
|
|
46666
|
+
* @default 1
|
|
46667
|
+
*
|
|
46668
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#multiplicativeIdealEdgeLength)
|
|
46669
|
+
*/
|
|
46670
|
+
multiplicativeIdealEdgeLength?: number;
|
|
46671
|
+
/**
|
|
46672
|
+
* Value to be used for the repulsion radius multiplier in organic layout calculations.
|
|
46673
|
+
*
|
|
46674
|
+
* @default 1
|
|
46675
|
+
*
|
|
46676
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-linkChart-OrganicLayoutSettings.html#repulsionRadiusMultiplier)
|
|
46677
|
+
*/
|
|
46678
|
+
repulsionRadiusMultiplier?: number | any;
|
|
46679
|
+
}
|
|
46680
|
+
|
|
45934
46681
|
export interface Map extends Accessor, LayersMixin, TablesMixin {}
|
|
45935
46682
|
|
|
45936
46683
|
export class Map {
|
|
@@ -58444,6 +59191,12 @@ declare namespace __esri {
|
|
|
58444
59191
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html#metaEntityTypes)
|
|
58445
59192
|
*/
|
|
58446
59193
|
readonly metaEntityTypes: EntityType[];
|
|
59194
|
+
/**
|
|
59195
|
+
* A list of the provenance source type values and their behaviors in the knowledge graph.
|
|
59196
|
+
*
|
|
59197
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-DataModel.html#provenanceSourceTypeValues)
|
|
59198
|
+
*/
|
|
59199
|
+
readonly provenanceSourceTypeValues: SourceTypeValueBehavior[];
|
|
58447
59200
|
/**
|
|
58448
59201
|
* A list of the [relationship types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-RelationshipType.html) in the knowledge graph including their associated properties.
|
|
58449
59202
|
*
|
|
@@ -59394,6 +60147,24 @@ declare namespace __esri {
|
|
|
59394
60147
|
|
|
59395
60148
|
export type GraphAnyValue = Path | GraphObject | Geometry | Date | string | number | GraphAnyValue[];
|
|
59396
60149
|
|
|
60150
|
+
export class GraphQueryResultHeader extends Accessor {
|
|
60151
|
+
constructor(properties?: GraphQueryResultHeaderProperties);
|
|
60152
|
+
|
|
60153
|
+
exceededTransferLimit: boolean;
|
|
60154
|
+
|
|
60155
|
+
headerKeys: string[];
|
|
60156
|
+
|
|
60157
|
+
outSpatialReference: any;
|
|
60158
|
+
}
|
|
60159
|
+
|
|
60160
|
+
interface GraphQueryResultHeaderProperties {
|
|
60161
|
+
exceededTransferLimit?: boolean;
|
|
60162
|
+
|
|
60163
|
+
headerKeys?: string[];
|
|
60164
|
+
|
|
60165
|
+
outSpatialReference?: any;
|
|
60166
|
+
}
|
|
60167
|
+
|
|
59397
60168
|
export class GraphQueryStreaming extends GraphQuery {
|
|
59398
60169
|
/**
|
|
59399
60170
|
* Defines a streaming query operation performed on a [knowledge graph service's](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html) [graph](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-KnowledgeGraph.html) resource.
|
|
@@ -60261,6 +61032,35 @@ declare namespace __esri {
|
|
|
60261
61032
|
allowLeadingWildcardQueries: boolean;
|
|
60262
61033
|
}
|
|
60263
61034
|
|
|
61035
|
+
export interface SourceTypeValueBehavior extends Accessor, JSONSupport {}
|
|
61036
|
+
|
|
61037
|
+
export class SourceTypeValueBehavior {
|
|
61038
|
+
/**
|
|
61039
|
+
* An entity type defines a homogeneous collection of [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) with a common set of properties and a spatial feature type.
|
|
61040
|
+
*
|
|
61041
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html)
|
|
61042
|
+
*/
|
|
61043
|
+
|
|
61044
|
+
constructor(properties?: SourceTypeValueBehaviorProperties);
|
|
61045
|
+
|
|
61046
|
+
/**
|
|
61047
|
+
* Specifies the behavior from ('URL', 'String', or 'Document') of the source type value.
|
|
61048
|
+
*
|
|
61049
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html#behavior)
|
|
61050
|
+
*/
|
|
61051
|
+
readonly behavior: string;
|
|
61052
|
+
/**
|
|
61053
|
+
* Specifies the source type value.
|
|
61054
|
+
*
|
|
61055
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-SourceTypeValueBehavior.html#value)
|
|
61056
|
+
*/
|
|
61057
|
+
readonly value: string;
|
|
61058
|
+
|
|
61059
|
+
static fromJSON(json: any): SourceTypeValueBehavior;
|
|
61060
|
+
}
|
|
61061
|
+
|
|
61062
|
+
interface SourceTypeValueBehaviorProperties {}
|
|
61063
|
+
|
|
60264
61064
|
/**
|
|
60265
61065
|
* A knowledge graph service is associated with several resources.
|
|
60266
61066
|
*
|
|
@@ -60317,6 +61117,16 @@ declare namespace __esri {
|
|
|
60317
61117
|
searchArguments: GraphSearchStreaming,
|
|
60318
61118
|
requestOptions?: any
|
|
60319
61119
|
): Promise<GraphQueryStreamingResult>;
|
|
61120
|
+
/**
|
|
61121
|
+
* Retrieves the specified client data keys from the knowledge graph service associated with the given knowledge graph, if they exist.
|
|
61122
|
+
*
|
|
61123
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61124
|
+
*/
|
|
61125
|
+
fetchClientDataAtKeys(
|
|
61126
|
+
graph: KnowledgeGraph,
|
|
61127
|
+
keysToFetch: string[],
|
|
61128
|
+
options?: knowledgeGraphServiceFetchClientDataAtKeysOptions
|
|
61129
|
+
): Promise<globalThis.Map<string, string>>;
|
|
60320
61130
|
/**
|
|
60321
61131
|
* Retrieves the knowledge graph service based on the URL provided.
|
|
60322
61132
|
*
|
|
@@ -60333,6 +61143,21 @@ declare namespace __esri {
|
|
|
60333
61143
|
|
|
60334
61144
|
export const knowledgeGraphService: knowledgeGraphService;
|
|
60335
61145
|
|
|
61146
|
+
export interface knowledgeGraphServiceFetchClientDataAtKeysOptions {
|
|
61147
|
+
/**
|
|
61148
|
+
* By default, client data requests are cached by their version.
|
|
61149
|
+
*
|
|
61150
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61151
|
+
*/
|
|
61152
|
+
ignoreCache?: boolean;
|
|
61153
|
+
/**
|
|
61154
|
+
* Additional options to be used for the data request.
|
|
61155
|
+
*
|
|
61156
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html#fetchClientDataAtKeys)
|
|
61157
|
+
*/
|
|
61158
|
+
requestOptions?: RequestOptions;
|
|
61159
|
+
}
|
|
61160
|
+
|
|
60336
61161
|
/**
|
|
60337
61162
|
* A convenience module for importing [locator](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-locator.html) functions when developing with [TypeScript](https://developers.arcgis.com/javascript/latest/typescript-setup/).
|
|
60338
61163
|
*
|
|
@@ -75294,7 +76119,7 @@ declare namespace __esri {
|
|
|
75294
76119
|
*
|
|
75295
76120
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-support-utils.html)
|
|
75296
76121
|
*/
|
|
75297
|
-
interface
|
|
76122
|
+
interface rasterSupportUtils {
|
|
75298
76123
|
/**
|
|
75299
76124
|
* Returns default band ids used by a multispectral imagery layer when using a raster [rgb](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-rgb.html) or [stretch](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-renderers-stretch.html) renderer.
|
|
75300
76125
|
*
|
|
@@ -75309,7 +76134,7 @@ declare namespace __esri {
|
|
|
75309
76134
|
getSupportedRendererInfo(params: utilsGetSupportedRendererInfoParams): Promise<SupportedRendererInfo>;
|
|
75310
76135
|
}
|
|
75311
76136
|
|
|
75312
|
-
export const
|
|
76137
|
+
export const rasterSupportUtils: rasterSupportUtils;
|
|
75313
76138
|
|
|
75314
76139
|
/**
|
|
75315
76140
|
* The result object of the [getSupportedRendererInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-raster-support-utils.html#getSupportedRendererInfo) method.
|
|
@@ -98538,7 +99363,7 @@ declare namespace __esri {
|
|
|
98538
99363
|
*
|
|
98539
99364
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
98540
99365
|
*/
|
|
98541
|
-
map:
|
|
99366
|
+
map: esriWebLinkChart;
|
|
98542
99367
|
}
|
|
98543
99368
|
|
|
98544
99369
|
interface LinkChartViewProperties extends View2DProperties {
|
|
@@ -98547,7 +99372,7 @@ declare namespace __esri {
|
|
|
98547
99372
|
*
|
|
98548
99373
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
|
|
98549
99374
|
*/
|
|
98550
|
-
map?:
|
|
99375
|
+
map?: esriWebLinkChartProperties;
|
|
98551
99376
|
}
|
|
98552
99377
|
|
|
98553
99378
|
export class Magnifier extends Accessor {
|
|
@@ -103185,9 +104010,205 @@ declare namespace __esri {
|
|
|
103185
104010
|
*/
|
|
103186
104011
|
|
|
103187
104012
|
constructor(properties?: WebLinkChartProperties);
|
|
104013
|
+
|
|
104014
|
+
/**
|
|
104015
|
+
* The active [link chart layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html).
|
|
104016
|
+
*
|
|
104017
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#activeLinkChartLayer)
|
|
104018
|
+
*/
|
|
104019
|
+
readonly activeLinkChartLayer: LinkChartLayer;
|
|
104020
|
+
|
|
104021
|
+
readonly diagramNodesExtent: Extent;
|
|
104022
|
+
|
|
104023
|
+
entityCount: number;
|
|
104024
|
+
|
|
104025
|
+
knowledgeGraph: KnowledgeGraph;
|
|
104026
|
+
/**
|
|
104027
|
+
* Properties specific to the link chart.
|
|
104028
|
+
*
|
|
104029
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104030
|
+
*/
|
|
104031
|
+
linkChartProperties: LinkChartProperties;
|
|
104032
|
+
/**
|
|
104033
|
+
* The map type.
|
|
104034
|
+
*
|
|
104035
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104036
|
+
*/
|
|
104037
|
+
mapType: "webLinkChart";
|
|
104038
|
+
|
|
104039
|
+
relationshipCount: number;
|
|
104040
|
+
|
|
104041
|
+
addRecords(records: IdTypePair[]): Promise<void>;
|
|
104042
|
+
|
|
104043
|
+
applyLayout(
|
|
104044
|
+
layoutMode:
|
|
104045
|
+
| "RADIAL_TREE"
|
|
104046
|
+
| "GEOGRAPHIC"
|
|
104047
|
+
| "FORCE_DIRECTED"
|
|
104048
|
+
| "COMMUNITY"
|
|
104049
|
+
| "SIMPLE"
|
|
104050
|
+
| "HIERARCHICAL"
|
|
104051
|
+
| "SMART_TREE"
|
|
104052
|
+
| "CHRONOLOGICAL_SINGLE"
|
|
104053
|
+
| "CHRONOLOGICAL_MULTIPLE",
|
|
104054
|
+
options?: WebLinkChartApplyNewLayoutOptions
|
|
104055
|
+
): Promise<void>;
|
|
104056
|
+
|
|
104057
|
+
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
104058
|
+
|
|
104059
|
+
connectBetweenEntities(entityIds: string[]): IdTypePair[];
|
|
104060
|
+
|
|
104061
|
+
connectFromEntities(entityIds: string[]): IdTypePair[];
|
|
104062
|
+
/**
|
|
104063
|
+
* todo: more doc description
|
|
104064
|
+
*
|
|
104065
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand)
|
|
104066
|
+
*/
|
|
104067
|
+
expand(nodeIds: string[], relationshipTypeNames?: string[]): IdTypePair[];
|
|
104068
|
+
|
|
104069
|
+
getMemberIdsByType(typeName: string): string[];
|
|
104070
|
+
|
|
104071
|
+
refreshLinkChartData(ids?: string[]): Promise<void>;
|
|
104072
|
+
|
|
104073
|
+
removeRecords(records: IdTypePair[]): Promise<void>;
|
|
104074
|
+
}
|
|
104075
|
+
|
|
104076
|
+
interface WebLinkChartProperties extends WebDocument2DProperties {
|
|
104077
|
+
entityCount?: number;
|
|
104078
|
+
|
|
104079
|
+
knowledgeGraph?: KnowledgeGraphProperties;
|
|
104080
|
+
/**
|
|
104081
|
+
* Properties specific to the link chart.
|
|
104082
|
+
*
|
|
104083
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104084
|
+
*/
|
|
104085
|
+
linkChartProperties?: LinkChartPropertiesProperties;
|
|
104086
|
+
/**
|
|
104087
|
+
* The map type.
|
|
104088
|
+
*
|
|
104089
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104090
|
+
*/
|
|
104091
|
+
mapType?: "webLinkChart";
|
|
104092
|
+
|
|
104093
|
+
relationshipCount?: number;
|
|
103188
104094
|
}
|
|
103189
104095
|
|
|
103190
|
-
|
|
104096
|
+
export class esriWebLinkChart extends WebDocument2D {
|
|
104097
|
+
/**
|
|
104098
|
+
* The WebLinkChart class contains properties and methods for storing, managing, and overlaying layers in a link chart.
|
|
104099
|
+
*
|
|
104100
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html)
|
|
104101
|
+
*/
|
|
104102
|
+
|
|
104103
|
+
constructor(properties?: esriWebLinkChartProperties);
|
|
104104
|
+
|
|
104105
|
+
/**
|
|
104106
|
+
* The active [link chart layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html).
|
|
104107
|
+
*
|
|
104108
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#activeLinkChartLayer)
|
|
104109
|
+
*/
|
|
104110
|
+
readonly activeLinkChartLayer: LinkChartLayer;
|
|
104111
|
+
|
|
104112
|
+
readonly diagramNodesExtent: Extent;
|
|
104113
|
+
|
|
104114
|
+
entityCount: number;
|
|
104115
|
+
|
|
104116
|
+
knowledgeGraph: KnowledgeGraph;
|
|
104117
|
+
/**
|
|
104118
|
+
* Properties specific to the link chart.
|
|
104119
|
+
*
|
|
104120
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104121
|
+
*/
|
|
104122
|
+
linkChartProperties: LinkChartProperties;
|
|
104123
|
+
/**
|
|
104124
|
+
* The map type.
|
|
104125
|
+
*
|
|
104126
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104127
|
+
*/
|
|
104128
|
+
mapType: "webLinkChart";
|
|
104129
|
+
|
|
104130
|
+
relationshipCount: number;
|
|
104131
|
+
|
|
104132
|
+
addRecords(records: IdTypePair[]): Promise<void>;
|
|
104133
|
+
|
|
104134
|
+
applyLayout(
|
|
104135
|
+
layoutMode:
|
|
104136
|
+
| "RADIAL_TREE"
|
|
104137
|
+
| "GEOGRAPHIC"
|
|
104138
|
+
| "FORCE_DIRECTED"
|
|
104139
|
+
| "COMMUNITY"
|
|
104140
|
+
| "SIMPLE"
|
|
104141
|
+
| "HIERARCHICAL"
|
|
104142
|
+
| "SMART_TREE"
|
|
104143
|
+
| "CHRONOLOGICAL_SINGLE"
|
|
104144
|
+
| "CHRONOLOGICAL_MULTIPLE",
|
|
104145
|
+
options?: WebLinkChartApplyNewLayoutOptions
|
|
104146
|
+
): Promise<void>;
|
|
104147
|
+
|
|
104148
|
+
changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
|
|
104149
|
+
|
|
104150
|
+
connectBetweenEntities(entityIds: string[]): IdTypePair[];
|
|
104151
|
+
|
|
104152
|
+
connectFromEntities(entityIds: string[]): IdTypePair[];
|
|
104153
|
+
/**
|
|
104154
|
+
* todo: more doc description
|
|
104155
|
+
*
|
|
104156
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand)
|
|
104157
|
+
*/
|
|
104158
|
+
expand(nodeIds: string[], relationshipTypeNames?: string[]): IdTypePair[];
|
|
104159
|
+
|
|
104160
|
+
getMemberIdsByType(typeName: string): string[];
|
|
104161
|
+
|
|
104162
|
+
refreshLinkChartData(ids?: string[]): Promise<void>;
|
|
104163
|
+
|
|
104164
|
+
removeRecords(records: IdTypePair[]): Promise<void>;
|
|
104165
|
+
}
|
|
104166
|
+
|
|
104167
|
+
interface esriWebLinkChartProperties extends WebDocument2DProperties {
|
|
104168
|
+
entityCount?: number;
|
|
104169
|
+
|
|
104170
|
+
knowledgeGraph?: KnowledgeGraphProperties;
|
|
104171
|
+
/**
|
|
104172
|
+
* Properties specific to the link chart.
|
|
104173
|
+
*
|
|
104174
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#linkChartProperties)
|
|
104175
|
+
*/
|
|
104176
|
+
linkChartProperties?: LinkChartPropertiesProperties;
|
|
104177
|
+
/**
|
|
104178
|
+
* The map type.
|
|
104179
|
+
*
|
|
104180
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#mapType)
|
|
104181
|
+
*/
|
|
104182
|
+
mapType?: "webLinkChart";
|
|
104183
|
+
|
|
104184
|
+
relationshipCount?: number;
|
|
104185
|
+
}
|
|
104186
|
+
|
|
104187
|
+
export interface ApplyNewLayoutOptions {
|
|
104188
|
+
/**
|
|
104189
|
+
* A map of node IDs to their locked locations
|
|
104190
|
+
*
|
|
104191
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#ApplyNewLayoutOptions)
|
|
104192
|
+
*/
|
|
104193
|
+
lockedNodeLocations?: globalThis.Map<string, Point>;
|
|
104194
|
+
|
|
104195
|
+
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
104196
|
+
|
|
104197
|
+
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104198
|
+
}
|
|
104199
|
+
|
|
104200
|
+
export interface WebLinkChartApplyNewLayoutOptions {
|
|
104201
|
+
/**
|
|
104202
|
+
* A map of node IDs to their locked locations
|
|
104203
|
+
*
|
|
104204
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#ApplyNewLayoutOptions)
|
|
104205
|
+
*/
|
|
104206
|
+
lockedNodeLocations?: globalThis.Map<string, Point>;
|
|
104207
|
+
|
|
104208
|
+
organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
|
|
104209
|
+
|
|
104210
|
+
chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
|
|
104211
|
+
}
|
|
103191
104212
|
|
|
103192
104213
|
export class WebMap extends WebDocument2D {
|
|
103193
104214
|
/**
|
|
@@ -105775,6 +106796,12 @@ declare namespace __esri {
|
|
|
105775
106796
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemap)
|
|
105776
106797
|
*/
|
|
105777
106798
|
activeBasemap: Basemap;
|
|
106799
|
+
/**
|
|
106800
|
+
* The current index of the active [basemap](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#basemap) in the [BasemapGallery](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html).
|
|
106801
|
+
*
|
|
106802
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemapIndex)
|
|
106803
|
+
*/
|
|
106804
|
+
activeBasemapIndex: number;
|
|
105778
106805
|
/**
|
|
105779
106806
|
* A collection of [BasemapGalleryItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-support-BasemapGalleryItem.html)s representing basemaps.
|
|
105780
106807
|
*
|
|
@@ -105817,6 +106844,12 @@ declare namespace __esri {
|
|
|
105817
106844
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemap)
|
|
105818
106845
|
*/
|
|
105819
106846
|
activeBasemap?: BasemapProperties;
|
|
106847
|
+
/**
|
|
106848
|
+
* The current index of the active [basemap](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#basemap) in the [BasemapGallery](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery.html).
|
|
106849
|
+
*
|
|
106850
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-BasemapGalleryViewModel.html#activeBasemapIndex)
|
|
106851
|
+
*/
|
|
106852
|
+
activeBasemapIndex?: number;
|
|
105820
106853
|
/**
|
|
105821
106854
|
* A collection of [BasemapGalleryItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapGallery-support-BasemapGalleryItem.html)s representing basemaps.
|
|
105822
106855
|
*
|
|
@@ -106074,15 +107107,6 @@ declare namespace __esri {
|
|
|
106074
107107
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#dragEnabled)
|
|
106075
107108
|
*/
|
|
106076
107109
|
dragEnabled: boolean;
|
|
106077
|
-
/**
|
|
106078
|
-
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
106079
|
-
*
|
|
106080
|
-
* @default false
|
|
106081
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
106082
|
-
*
|
|
106083
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
106084
|
-
*/
|
|
106085
|
-
editingEnabled: boolean;
|
|
106086
107110
|
/**
|
|
106087
107111
|
* Indicates whether the form to edit the basemap's title is currently visible.
|
|
106088
107112
|
*
|
|
@@ -106115,15 +107139,6 @@ declare namespace __esri {
|
|
|
106115
107139
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#minFilterItems)
|
|
106116
107140
|
*/
|
|
106117
107141
|
minFilterItems: number;
|
|
106118
|
-
/**
|
|
106119
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
106120
|
-
*
|
|
106121
|
-
* @default false
|
|
106122
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
106123
|
-
*
|
|
106124
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
106125
|
-
*/
|
|
106126
|
-
multipleSelectionEnabled: boolean;
|
|
106127
107142
|
/**
|
|
106128
107143
|
* The value of the filter input text string if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#visibleElements) is true.
|
|
106129
107144
|
*
|
|
@@ -106240,15 +107255,6 @@ declare namespace __esri {
|
|
|
106240
107255
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#dragEnabled)
|
|
106241
107256
|
*/
|
|
106242
107257
|
dragEnabled?: boolean;
|
|
106243
|
-
/**
|
|
106244
|
-
* Indicates whether the basemap’s title, layer order and layer grouping can be edited by the user.
|
|
106245
|
-
*
|
|
106246
|
-
* @default false
|
|
106247
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode}, {@link module:esri/widgets/BasemapLayerList#VisibleElements visibleElements.editTitleButton}, and {@link module:esri/widgets/BasemapLayerList#dragEnabled dragEnabled} instead.
|
|
106248
|
-
*
|
|
106249
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#editingEnabled)
|
|
106250
|
-
*/
|
|
106251
|
-
editingEnabled?: boolean;
|
|
106252
107258
|
/**
|
|
106253
107259
|
* Indicates whether the form to edit the basemap's title is currently visible.
|
|
106254
107260
|
*
|
|
@@ -106281,15 +107287,6 @@ declare namespace __esri {
|
|
|
106281
107287
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#minFilterItems)
|
|
106282
107288
|
*/
|
|
106283
107289
|
minFilterItems?: number;
|
|
106284
|
-
/**
|
|
106285
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
106286
|
-
*
|
|
106287
|
-
* @default false
|
|
106288
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/BasemapLayerList#selectionMode selectionMode} instead.
|
|
106289
|
-
*
|
|
106290
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#multipleSelectionEnabled)
|
|
106291
|
-
*/
|
|
106292
|
-
multipleSelectionEnabled?: boolean;
|
|
106293
107290
|
/**
|
|
106294
107291
|
* The value of the filter input text string if [visibleElements.filter](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#visibleElements) is true.
|
|
106295
107292
|
*
|
|
@@ -106584,7 +107581,7 @@ declare namespace __esri {
|
|
|
106584
107581
|
*/
|
|
106585
107582
|
editTitleButton?: boolean;
|
|
106586
107583
|
/**
|
|
106587
|
-
* **Since 4.25** Indicates whether
|
|
107584
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
106588
107585
|
*
|
|
106589
107586
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html#VisibleElements)
|
|
106590
107587
|
*/
|
|
@@ -106934,15 +107931,6 @@ declare namespace __esri {
|
|
|
106934
107931
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#dragEnabled)
|
|
106935
107932
|
*/
|
|
106936
107933
|
dragEnabled: boolean;
|
|
106937
|
-
/**
|
|
106938
|
-
* Indicates whether the bookmarks are able to be edited.
|
|
106939
|
-
*
|
|
106940
|
-
* @default false
|
|
106941
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
106942
|
-
*
|
|
106943
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
106944
|
-
*/
|
|
106945
|
-
editingEnabled: boolean;
|
|
106946
107934
|
/**
|
|
106947
107935
|
* Defines the text used as a placeholder when visibleElements.filter is set to `true`.
|
|
106948
107936
|
*
|
|
@@ -107029,15 +108017,6 @@ declare namespace __esri {
|
|
|
107029
108017
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#dragEnabled)
|
|
107030
108018
|
*/
|
|
107031
108019
|
dragEnabled?: boolean;
|
|
107032
|
-
/**
|
|
107033
|
-
* Indicates whether the bookmarks are able to be edited.
|
|
107034
|
-
*
|
|
107035
|
-
* @default false
|
|
107036
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.editBookmarkButton}, {@link module:esri/widgets/Bookmarks#VisibleElements visibleElements.addBookmarkButton}, and {@link module:esri/widgets/Bookmarks#dragEnabled dragEnabled} instead.
|
|
107037
|
-
*
|
|
107038
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#editingEnabled)
|
|
107039
|
-
*/
|
|
107040
|
-
editingEnabled?: boolean;
|
|
107041
108020
|
/**
|
|
107042
108021
|
* Defines the text used as a placeholder when visibleElements.filter is set to `true`.
|
|
107043
108022
|
*
|
|
@@ -107313,12 +108292,6 @@ declare namespace __esri {
|
|
|
107313
108292
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#VisibleElements)
|
|
107314
108293
|
*/
|
|
107315
108294
|
export interface BookmarksVisibleElements {
|
|
107316
|
-
/**
|
|
107317
|
-
* _Deprecated since 4.29.
|
|
107318
|
-
*
|
|
107319
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks.html#VisibleElements)
|
|
107320
|
-
*/
|
|
107321
|
-
addBookmark?: boolean;
|
|
107322
108295
|
/**
|
|
107323
108296
|
* _Since 4.29._ Indicates whether the button to add a new bookmark displays.
|
|
107324
108297
|
*
|
|
@@ -107991,6 +108964,14 @@ declare namespace __esri {
|
|
|
107991
108964
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listItemCreatedFunction)
|
|
107992
108965
|
*/
|
|
107993
108966
|
listItemCreatedFunction: CatalogLayerListViewModelListItemCreatedHandler;
|
|
108967
|
+
/**
|
|
108968
|
+
* Specifies whether to ignore the [listMode](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html#listMode) property of the layers to display all layers.
|
|
108969
|
+
*
|
|
108970
|
+
* @default false
|
|
108971
|
+
*
|
|
108972
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listModeDisabled)
|
|
108973
|
+
*/
|
|
108974
|
+
listModeDisabled: boolean;
|
|
107994
108975
|
/**
|
|
107995
108976
|
* The view model's state.
|
|
107996
108977
|
*
|
|
@@ -108043,6 +109024,14 @@ declare namespace __esri {
|
|
|
108043
109024
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listItemCreatedFunction)
|
|
108044
109025
|
*/
|
|
108045
109026
|
listItemCreatedFunction?: CatalogLayerListViewModelListItemCreatedHandler;
|
|
109027
|
+
/**
|
|
109028
|
+
* Specifies whether to ignore the [listMode](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html#listMode) property of the layers to display all layers.
|
|
109029
|
+
*
|
|
109030
|
+
* @default false
|
|
109031
|
+
*
|
|
109032
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#listModeDisabled)
|
|
109033
|
+
*/
|
|
109034
|
+
listModeDisabled?: boolean;
|
|
108046
109035
|
/**
|
|
108047
109036
|
* The view from which the widget will operate.
|
|
108048
109037
|
*
|
|
@@ -108088,7 +109077,7 @@ declare namespace __esri {
|
|
|
108088
109077
|
*/
|
|
108089
109078
|
collapseButton?: boolean;
|
|
108090
109079
|
/**
|
|
108091
|
-
* Indicates whether
|
|
109080
|
+
* Indicates whether to display layers with load errors.
|
|
108092
109081
|
*
|
|
108093
109082
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html#VisibleElements)
|
|
108094
109083
|
*/
|
|
@@ -114639,19 +115628,33 @@ declare namespace __esri {
|
|
|
114639
115628
|
*
|
|
114640
115629
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#collapsed)
|
|
114641
115630
|
*/
|
|
114642
|
-
|
|
115631
|
+
collapsed: boolean;
|
|
114643
115632
|
/**
|
|
114644
115633
|
* The content of the Features widget.
|
|
114645
115634
|
*
|
|
114646
115635
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#content)
|
|
114647
115636
|
*/
|
|
114648
115637
|
content: string | HTMLElement | Widget;
|
|
115638
|
+
/**
|
|
115639
|
+
* Indicates whether the feature navigation arrows are displayed at the top of the widget.
|
|
115640
|
+
*
|
|
115641
|
+
* @default false
|
|
115642
|
+
*
|
|
115643
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#featureNavigationTop)
|
|
115644
|
+
*/
|
|
115645
|
+
featureNavigationTop: boolean;
|
|
114649
115646
|
/**
|
|
114650
115647
|
* An array of features associated with the Features widget.
|
|
114651
115648
|
*
|
|
114652
115649
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#features)
|
|
114653
115650
|
*/
|
|
114654
115651
|
features: Graphic[];
|
|
115652
|
+
/**
|
|
115653
|
+
* The actions that are displayed in the header of the widget.
|
|
115654
|
+
*
|
|
115655
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#headerActions)
|
|
115656
|
+
*/
|
|
115657
|
+
headerActions: Collection<ActionBase>;
|
|
114655
115658
|
/**
|
|
114656
115659
|
* Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#title) of the widget.
|
|
114657
115660
|
*
|
|
@@ -114791,18 +115794,40 @@ declare namespace __esri {
|
|
|
114791
115794
|
}
|
|
114792
115795
|
|
|
114793
115796
|
interface FeaturesProperties extends WidgetProperties, GoToProperties {
|
|
115797
|
+
/**
|
|
115798
|
+
* Indicates whether the popup displays its content.
|
|
115799
|
+
*
|
|
115800
|
+
* @default false
|
|
115801
|
+
*
|
|
115802
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#collapsed)
|
|
115803
|
+
*/
|
|
115804
|
+
collapsed?: boolean;
|
|
114794
115805
|
/**
|
|
114795
115806
|
* The content of the Features widget.
|
|
114796
115807
|
*
|
|
114797
115808
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#content)
|
|
114798
115809
|
*/
|
|
114799
115810
|
content?: string | HTMLElement | WidgetProperties;
|
|
115811
|
+
/**
|
|
115812
|
+
* Indicates whether the feature navigation arrows are displayed at the top of the widget.
|
|
115813
|
+
*
|
|
115814
|
+
* @default false
|
|
115815
|
+
*
|
|
115816
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#featureNavigationTop)
|
|
115817
|
+
*/
|
|
115818
|
+
featureNavigationTop?: boolean;
|
|
114800
115819
|
/**
|
|
114801
115820
|
* An array of features associated with the Features widget.
|
|
114802
115821
|
*
|
|
114803
115822
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#features)
|
|
114804
115823
|
*/
|
|
114805
115824
|
features?: GraphicProperties[];
|
|
115825
|
+
/**
|
|
115826
|
+
* The actions that are displayed in the header of the widget.
|
|
115827
|
+
*
|
|
115828
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#headerActions)
|
|
115829
|
+
*/
|
|
115830
|
+
headerActions?: CollectionProperties<ActionBaseProperties>;
|
|
114806
115831
|
/**
|
|
114807
115832
|
* Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#title) of the widget.
|
|
114808
115833
|
*
|
|
@@ -117570,9 +118595,7 @@ declare namespace __esri {
|
|
|
117570
118595
|
|
|
117571
118596
|
export type FieldValueFormatFunction = (params: any) => string | number | HTMLElement;
|
|
117572
118597
|
|
|
117573
|
-
export
|
|
117574
|
-
|
|
117575
|
-
export class Column {
|
|
118598
|
+
export class Column extends Accessor {
|
|
117576
118599
|
/**
|
|
117577
118600
|
* The `Column` class works with the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html) and provides much of the underlying logic for column behavior.
|
|
117578
118601
|
*
|
|
@@ -120816,15 +121839,6 @@ declare namespace __esri {
|
|
|
120816
121839
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#minFilterItems)
|
|
120817
121840
|
*/
|
|
120818
121841
|
minFilterItems: number;
|
|
120819
|
-
/**
|
|
120820
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
120821
|
-
*
|
|
120822
|
-
* @default false
|
|
120823
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
120824
|
-
*
|
|
120825
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
120826
|
-
*/
|
|
120827
|
-
multipleSelectionEnabled: boolean;
|
|
120828
121842
|
/**
|
|
120829
121843
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that are opened in a [catalogLayerList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#catalogLayerList) or [tableList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#tableList) flow item.
|
|
120830
121844
|
*
|
|
@@ -120845,15 +121859,6 @@ declare namespace __esri {
|
|
|
120845
121859
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectedItems)
|
|
120846
121860
|
*/
|
|
120847
121861
|
selectedItems: Collection<ListItem>;
|
|
120848
|
-
/**
|
|
120849
|
-
* Indicates whether list items may be selected by the user.
|
|
120850
|
-
*
|
|
120851
|
-
* @default false
|
|
120852
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
120853
|
-
*
|
|
120854
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
120855
|
-
*/
|
|
120856
|
-
selectionEnabled: boolean;
|
|
120857
121862
|
/**
|
|
120858
121863
|
* Specifies the selection mode.
|
|
120859
121864
|
*
|
|
@@ -120990,15 +121995,6 @@ declare namespace __esri {
|
|
|
120990
121995
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#minFilterItems)
|
|
120991
121996
|
*/
|
|
120992
121997
|
minFilterItems?: number;
|
|
120993
|
-
/**
|
|
120994
|
-
* Indicates whether more than one list item may be selected by the user at a single time.
|
|
120995
|
-
*
|
|
120996
|
-
* @default false
|
|
120997
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} instead.
|
|
120998
|
-
*
|
|
120999
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#multipleSelectionEnabled)
|
|
121000
|
-
*/
|
|
121001
|
-
multipleSelectionEnabled?: boolean;
|
|
121002
121998
|
/**
|
|
121003
121999
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that are opened in a [catalogLayerList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#catalogLayerList) or [tableList](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#tableList) flow item.
|
|
121004
122000
|
*
|
|
@@ -121013,15 +122009,6 @@ declare namespace __esri {
|
|
|
121013
122009
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectedItems)
|
|
121014
122010
|
*/
|
|
121015
122011
|
selectedItems?: CollectionProperties<ListItemProperties>;
|
|
121016
|
-
/**
|
|
121017
|
-
* Indicates whether list items may be selected by the user.
|
|
121018
|
-
*
|
|
121019
|
-
* @default false
|
|
121020
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/LayerList#selectionMode selectionMode} and {@link module:esri/widgets/LayerList#dragEnabled dragEnabled} instead.
|
|
121021
|
-
*
|
|
121022
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#selectionEnabled)
|
|
121023
|
-
*/
|
|
121024
|
-
selectionEnabled?: boolean;
|
|
121025
122012
|
/**
|
|
121026
122013
|
* Specifies the selection mode.
|
|
121027
122014
|
*
|
|
@@ -121232,6 +122219,14 @@ declare namespace __esri {
|
|
|
121232
122219
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#hidden)
|
|
121233
122220
|
*/
|
|
121234
122221
|
hidden: boolean;
|
|
122222
|
+
/**
|
|
122223
|
+
* Whether the layer is unsupported by the view.
|
|
122224
|
+
*
|
|
122225
|
+
* @default false
|
|
122226
|
+
*
|
|
122227
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-ListItem.html#incompatible)
|
|
122228
|
+
*/
|
|
122229
|
+
readonly incompatible: boolean;
|
|
121235
122230
|
/**
|
|
121236
122231
|
* The layer associated with the triggered action.
|
|
121237
122232
|
*
|
|
@@ -121770,7 +122765,7 @@ declare namespace __esri {
|
|
|
121770
122765
|
*/
|
|
121771
122766
|
collapseButton?: boolean;
|
|
121772
122767
|
/**
|
|
121773
|
-
* **Since 4.25** Indicates whether
|
|
122768
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
121774
122769
|
*
|
|
121775
122770
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html#VisibleElements)
|
|
121776
122771
|
*/
|
|
@@ -123087,15 +124082,6 @@ declare namespace __esri {
|
|
|
123087
124082
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#popupEnabled)
|
|
123088
124083
|
*/
|
|
123089
124084
|
popupEnabled: boolean;
|
|
123090
|
-
/**
|
|
123091
|
-
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
123092
|
-
*
|
|
123093
|
-
* @default true
|
|
123094
|
-
* @deprecated since version 4.29. Use Track widget instead
|
|
123095
|
-
*
|
|
123096
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
123097
|
-
*/
|
|
123098
|
-
rotationEnabled: boolean;
|
|
123099
124085
|
/**
|
|
123100
124086
|
* Indicates the scale to set on the view when navigating to the position of the geolocated result once a location is returned from the [track](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#event-track) event.
|
|
123101
124087
|
*
|
|
@@ -123166,15 +124152,6 @@ declare namespace __esri {
|
|
|
123166
124152
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#popupEnabled)
|
|
123167
124153
|
*/
|
|
123168
124154
|
popupEnabled?: boolean;
|
|
123169
|
-
/**
|
|
123170
|
-
* Indicates whether the widget will automatically rotate to the device heading based on the Geolocation APIs [`GeolocationCoordinates.heading`](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates/heading) property.
|
|
123171
|
-
*
|
|
123172
|
-
* @default true
|
|
123173
|
-
* @deprecated since version 4.29. Use Track widget instead
|
|
123174
|
-
*
|
|
123175
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#rotationEnabled)
|
|
123176
|
-
*/
|
|
123177
|
-
rotationEnabled?: boolean;
|
|
123178
124155
|
/**
|
|
123179
124156
|
* Indicates the scale to set on the view when navigating to the position of the geolocated result once a location is returned from the [track](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Locate.html#event-track) event.
|
|
123180
124157
|
*
|
|
@@ -130630,9 +131607,7 @@ declare namespace __esri {
|
|
|
130630
131607
|
visibleElements?: SliderVisibleElements;
|
|
130631
131608
|
}
|
|
130632
131609
|
|
|
130633
|
-
export
|
|
130634
|
-
|
|
130635
|
-
export class SliderViewModel {
|
|
131610
|
+
export class SliderViewModel extends Accessor {
|
|
130636
131611
|
/**
|
|
130637
131612
|
* Provides the logic for the [Slider](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Slider.html) widget.
|
|
130638
131613
|
*
|
|
@@ -133545,6 +134520,22 @@ declare namespace __esri {
|
|
|
133545
134520
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#leadingLayers)
|
|
133546
134521
|
*/
|
|
133547
134522
|
leadingLayers: Collection<Layer>;
|
|
134523
|
+
/**
|
|
134524
|
+
* The maximum position of the Swipe, as a percentage.
|
|
134525
|
+
*
|
|
134526
|
+
* @default 100
|
|
134527
|
+
*
|
|
134528
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#max)
|
|
134529
|
+
*/
|
|
134530
|
+
readonly max: number;
|
|
134531
|
+
/**
|
|
134532
|
+
* The minimum position of the Swipe, as a percentage.
|
|
134533
|
+
*
|
|
134534
|
+
* @default 0
|
|
134535
|
+
*
|
|
134536
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#min)
|
|
134537
|
+
*/
|
|
134538
|
+
readonly min: number;
|
|
133548
134539
|
/**
|
|
133549
134540
|
* The position of the Swipe widget.
|
|
133550
134541
|
*
|
|
@@ -133561,6 +134552,22 @@ declare namespace __esri {
|
|
|
133561
134552
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#state)
|
|
133562
134553
|
*/
|
|
133563
134554
|
readonly state: "disabled" | "ready";
|
|
134555
|
+
/**
|
|
134556
|
+
* The step value used to increment or decrement the position of the Swipe when using keyboard navigation.
|
|
134557
|
+
*
|
|
134558
|
+
* @default 0.5
|
|
134559
|
+
*
|
|
134560
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step)
|
|
134561
|
+
*/
|
|
134562
|
+
step: number;
|
|
134563
|
+
/**
|
|
134564
|
+
* The multiplier used to increase the [step](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step) value when the `Shift` key is pressed in combination with one of the arrow keys.
|
|
134565
|
+
*
|
|
134566
|
+
* @default 10
|
|
134567
|
+
*
|
|
134568
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#stepMultiplier)
|
|
134569
|
+
*/
|
|
134570
|
+
stepMultiplier: number;
|
|
133564
134571
|
/**
|
|
133565
134572
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that will show on the right or bottom side of Swipe widget.
|
|
133566
134573
|
*
|
|
@@ -133598,6 +134605,22 @@ declare namespace __esri {
|
|
|
133598
134605
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#position)
|
|
133599
134606
|
*/
|
|
133600
134607
|
position?: number;
|
|
134608
|
+
/**
|
|
134609
|
+
* The step value used to increment or decrement the position of the Swipe when using keyboard navigation.
|
|
134610
|
+
*
|
|
134611
|
+
* @default 0.5
|
|
134612
|
+
*
|
|
134613
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step)
|
|
134614
|
+
*/
|
|
134615
|
+
step?: number;
|
|
134616
|
+
/**
|
|
134617
|
+
* The multiplier used to increase the [step](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#step) value when the `Shift` key is pressed in combination with one of the arrow keys.
|
|
134618
|
+
*
|
|
134619
|
+
* @default 10
|
|
134620
|
+
*
|
|
134621
|
+
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Swipe-SwipeViewModel.html#stepMultiplier)
|
|
134622
|
+
*/
|
|
134623
|
+
stepMultiplier?: number;
|
|
133601
134624
|
/**
|
|
133602
134625
|
* A collection of [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html)s that will show on the right or bottom side of Swipe widget.
|
|
133603
134626
|
*
|
|
@@ -133709,30 +134732,12 @@ declare namespace __esri {
|
|
|
133709
134732
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#minFilterItems)
|
|
133710
134733
|
*/
|
|
133711
134734
|
minFilterItems: number;
|
|
133712
|
-
/**
|
|
133713
|
-
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
133714
|
-
*
|
|
133715
|
-
* @default false
|
|
133716
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
133717
|
-
*
|
|
133718
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
133719
|
-
*/
|
|
133720
|
-
multipleSelectionEnabled: boolean;
|
|
133721
134735
|
/**
|
|
133722
134736
|
* A collection of selected [ListItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html)s representing table list items selected by the user.
|
|
133723
134737
|
*
|
|
133724
134738
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectedItems)
|
|
133725
134739
|
*/
|
|
133726
134740
|
selectedItems: Collection<TableListListItem>;
|
|
133727
|
-
/**
|
|
133728
|
-
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
133729
|
-
*
|
|
133730
|
-
* @default false
|
|
133731
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
133732
|
-
*
|
|
133733
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
133734
|
-
*/
|
|
133735
|
-
selectionEnabled: boolean;
|
|
133736
134741
|
/**
|
|
133737
134742
|
* Specifies the selection mode.
|
|
133738
134743
|
*
|
|
@@ -133839,30 +134844,12 @@ declare namespace __esri {
|
|
|
133839
134844
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#minFilterItems)
|
|
133840
134845
|
*/
|
|
133841
134846
|
minFilterItems?: number;
|
|
133842
|
-
/**
|
|
133843
|
-
* Indicates whether more than one [list item](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) can be selected by a user at a single time.
|
|
133844
|
-
*
|
|
133845
|
-
* @default false
|
|
133846
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} instead.
|
|
133847
|
-
*
|
|
133848
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#multipleSelectionEnabled)
|
|
133849
|
-
*/
|
|
133850
|
-
multipleSelectionEnabled?: boolean;
|
|
133851
134847
|
/**
|
|
133852
134848
|
* A collection of selected [ListItem](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html)s representing table list items selected by the user.
|
|
133853
134849
|
*
|
|
133854
134850
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectedItems)
|
|
133855
134851
|
*/
|
|
133856
134852
|
selectedItems?: CollectionProperties<TableListListItem>;
|
|
133857
|
-
/**
|
|
133858
|
-
* Indicates whether [list items](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-ListItem.html) may be selected by the user.
|
|
133859
|
-
*
|
|
133860
|
-
* @default false
|
|
133861
|
-
* @deprecated since version 4.29. Use {@link module:esri/widgets/TableList#selectionMode selectionMode} and {@link module:esri/widgets/TableList#dragEnabled dragEnabled} instead.
|
|
133862
|
-
*
|
|
133863
|
-
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#selectionEnabled)
|
|
133864
|
-
*/
|
|
133865
|
-
selectionEnabled?: boolean;
|
|
133866
134853
|
/**
|
|
133867
134854
|
* Specifies the selection mode.
|
|
133868
134855
|
*
|
|
@@ -134232,7 +135219,7 @@ declare namespace __esri {
|
|
|
134232
135219
|
*/
|
|
134233
135220
|
collapseButton?: boolean;
|
|
134234
135221
|
/**
|
|
134235
|
-
* **Since 4.25** Indicates whether
|
|
135222
|
+
* **Since 4.25** Indicates whether to display layers with load errors.
|
|
134236
135223
|
*
|
|
134237
135224
|
* [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html#VisibleElements)
|
|
134238
135225
|
*/
|
|
@@ -137366,9 +138353,7 @@ declare namespace __esri {
|
|
|
137366
138353
|
previousButton?: boolean;
|
|
137367
138354
|
}
|
|
137368
138355
|
|
|
137369
|
-
export
|
|
137370
|
-
|
|
137371
|
-
export class VersionManagementViewModel {
|
|
138356
|
+
export class VersionManagementViewModel extends Accessor {
|
|
137372
138357
|
/**
|
|
137373
138358
|
* This class allows you to manage versions from a variety of [feature services](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-featureService-FeatureService.html).
|
|
137374
138359
|
*
|
|
@@ -142980,6 +143965,31 @@ declare module "esri/layers/WMTSLayer" {
|
|
|
142980
143965
|
export = WMTSLayer;
|
|
142981
143966
|
}
|
|
142982
143967
|
|
|
143968
|
+
declare module "esri/linkChart/ChronologicalLayoutSettings" {
|
|
143969
|
+
import ChronologicalLayoutSettings = __esri.ChronologicalLayoutSettings;
|
|
143970
|
+
export = ChronologicalLayoutSettings;
|
|
143971
|
+
}
|
|
143972
|
+
|
|
143973
|
+
declare module "esri/linkChart/LayoutSettings" {
|
|
143974
|
+
import LayoutSettings = __esri.LayoutSettings;
|
|
143975
|
+
export = LayoutSettings;
|
|
143976
|
+
}
|
|
143977
|
+
|
|
143978
|
+
declare module "esri/linkChart/LinkChartProperties" {
|
|
143979
|
+
import LinkChartProperties = __esri.LinkChartProperties;
|
|
143980
|
+
export = LinkChartProperties;
|
|
143981
|
+
}
|
|
143982
|
+
|
|
143983
|
+
declare module "esri/linkChart/NonspatialDataDisplay" {
|
|
143984
|
+
import NonspatialDataDisplay = __esri.NonspatialDataDisplay;
|
|
143985
|
+
export = NonspatialDataDisplay;
|
|
143986
|
+
}
|
|
143987
|
+
|
|
143988
|
+
declare module "esri/linkChart/OrganicLayoutSettings" {
|
|
143989
|
+
import OrganicLayoutSettings = __esri.OrganicLayoutSettings;
|
|
143990
|
+
export = OrganicLayoutSettings;
|
|
143991
|
+
}
|
|
143992
|
+
|
|
142983
143993
|
declare module "esri/Map" {
|
|
142984
143994
|
import Map = __esri.Map;
|
|
142985
143995
|
export = Map;
|
|
@@ -143460,6 +144470,11 @@ declare module "esri/rest/knowledgeGraph/GraphQueryResult" {
|
|
|
143460
144470
|
export = GraphQueryResult;
|
|
143461
144471
|
}
|
|
143462
144472
|
|
|
144473
|
+
declare module "esri/rest/knowledgeGraph/GraphQueryResultHeader" {
|
|
144474
|
+
import GraphQueryResultHeader = __esri.GraphQueryResultHeader;
|
|
144475
|
+
export = GraphQueryResultHeader;
|
|
144476
|
+
}
|
|
144477
|
+
|
|
143463
144478
|
declare module "esri/rest/knowledgeGraph/GraphQueryStreaming" {
|
|
143464
144479
|
import GraphQueryStreaming = __esri.GraphQueryStreaming;
|
|
143465
144480
|
export = GraphQueryStreaming;
|
|
@@ -143520,6 +144535,11 @@ declare module "esri/rest/knowledgeGraph/ServiceDefinition" {
|
|
|
143520
144535
|
export = ServiceDefinition;
|
|
143521
144536
|
}
|
|
143522
144537
|
|
|
144538
|
+
declare module "esri/rest/knowledgeGraph/SourceTypeValueBehavior" {
|
|
144539
|
+
import SourceTypeValueBehavior = __esri.SourceTypeValueBehavior;
|
|
144540
|
+
export = SourceTypeValueBehavior;
|
|
144541
|
+
}
|
|
144542
|
+
|
|
143523
144543
|
declare module "esri/rest/networks/support/AggregatedGeometry" {
|
|
143524
144544
|
import AggregatedGeometry = __esri.AggregatedGeometry;
|
|
143525
144545
|
export = AggregatedGeometry;
|
|
@@ -144840,6 +145860,11 @@ declare module "esri/webmap/InitialViewProperties" {
|
|
|
144840
145860
|
export = InitialViewProperties;
|
|
144841
145861
|
}
|
|
144842
145862
|
|
|
145863
|
+
declare module "esri/WebLinkChart" {
|
|
145864
|
+
import esriWebLinkChart = __esri.esriWebLinkChart;
|
|
145865
|
+
export = esriWebLinkChart;
|
|
145866
|
+
}
|
|
145867
|
+
|
|
144843
145868
|
declare module "esri/WebScene" {
|
|
144844
145869
|
import WebScene = __esri.WebScene;
|
|
144845
145870
|
export = WebScene;
|
|
@@ -146485,6 +147510,16 @@ declare module "esri/layers/catalog/catalogUtils" {
|
|
|
146485
147510
|
export = catalogUtils;
|
|
146486
147511
|
}
|
|
146487
147512
|
|
|
147513
|
+
declare module "esri/layers/knowledgeGraph/cypherUtils" {
|
|
147514
|
+
import cypherUtils = __esri.cypherUtils;
|
|
147515
|
+
export = cypherUtils;
|
|
147516
|
+
}
|
|
147517
|
+
|
|
147518
|
+
declare module "esri/layers/knowledgeGraph/supportUtils" {
|
|
147519
|
+
import supportUtils = __esri.supportUtils;
|
|
147520
|
+
export = supportUtils;
|
|
147521
|
+
}
|
|
147522
|
+
|
|
146488
147523
|
declare module "esri/layers/ogc/wfsUtils" {
|
|
146489
147524
|
import wfsUtils = __esri.wfsUtils;
|
|
146490
147525
|
export = wfsUtils;
|
|
@@ -146766,8 +147801,8 @@ declare module "esri/smartMapping/raster/support/colorRamps" {
|
|
|
146766
147801
|
}
|
|
146767
147802
|
|
|
146768
147803
|
declare module "esri/smartMapping/raster/support/utils" {
|
|
146769
|
-
import
|
|
146770
|
-
export =
|
|
147804
|
+
import rasterSupportUtils = __esri.rasterSupportUtils;
|
|
147805
|
+
export = rasterSupportUtils;
|
|
146771
147806
|
}
|
|
146772
147807
|
|
|
146773
147808
|
declare module "esri/smartMapping/renderers/color" {
|
|
@@ -147115,6 +148150,21 @@ declare module "esri/applications/ExperienceBuilder/sketchUtils" {
|
|
|
147115
148150
|
export = sketchUtils;
|
|
147116
148151
|
}
|
|
147117
148152
|
|
|
148153
|
+
declare module "esri/applications/KnowledgeStudio/generalSharedKgUtils" {
|
|
148154
|
+
import generalSharedKgUtils = __esri.generalSharedKgUtils;
|
|
148155
|
+
export = generalSharedKgUtils;
|
|
148156
|
+
}
|
|
148157
|
+
|
|
148158
|
+
declare module "esri/applications/KnowledgeStudio/layerInternalAccessUtils" {
|
|
148159
|
+
import layerInternalAccessUtils = __esri.layerInternalAccessUtils;
|
|
148160
|
+
export = layerInternalAccessUtils;
|
|
148161
|
+
}
|
|
148162
|
+
|
|
148163
|
+
declare module "esri/applications/KnowledgeStudio/resourceSerializationUtils" {
|
|
148164
|
+
import resourceSerializationUtils = __esri.resourceSerializationUtils;
|
|
148165
|
+
export = resourceSerializationUtils;
|
|
148166
|
+
}
|
|
148167
|
+
|
|
147118
148168
|
declare module "esri/applications/MapViewer/mediaUtils" {
|
|
147119
148169
|
import mediaUtils = __esri.mediaUtils;
|
|
147120
148170
|
export = mediaUtils;
|