@arcgis/common-components 5.1.0-next.8 → 5.1.0-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/arcgis-ckeditor5/types.d.ts +9 -0
- package/dist/components/arcgis-ckeditor5-popover/customElement.d.ts +1 -0
- package/dist/components/arcgis-field-info/utils/basic.d.ts +1 -0
- package/dist/components/arcgis-field-pick-list/utils/types.d.ts +5 -1
- package/dist/components/arcgis-histogram/customElement.d.ts +11 -11
- package/dist/components/arcgis-ticks/customElement.d.ts +1 -1
- package/dist/components/arcgis-unique-values-list/utils/basic.d.ts +1 -0
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/vscode.html-custom-data.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/utils/types.d.ts +16 -6
- package/package.json +3 -3
|
@@ -1,6 +1,15 @@
|
|
|
1
|
+
/** @internal */
|
|
1
2
|
export type InputMentionField = {
|
|
2
3
|
id: string;
|
|
3
4
|
name: string;
|
|
4
5
|
};
|
|
5
6
|
|
|
7
|
+
/** @internal */
|
|
8
|
+
export type DisplayMentionField = InputMentionField
|
|
9
|
+
& {
|
|
10
|
+
isFirstExpression: boolean;
|
|
11
|
+
isFirstField: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
/** @internal */
|
|
6
15
|
export type EditorType = "html" | "markdown";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference path="../../index.d.ts" />
|
|
2
2
|
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
3
3
|
|
|
4
|
+
/** @internal */
|
|
4
5
|
export abstract class ArcgisCkeditor5Popover extends LitElement {
|
|
5
6
|
/** Guid for ckeditor popover instance. */
|
|
6
7
|
accessor guid: `${string}-${string}-${string}-${string}-${string}`;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
/// <reference types="@arcgis/core/interfaces.d.ts" />
|
|
2
2
|
|
|
3
|
+
/** @internal */
|
|
3
4
|
export type FieldInfoLayer = __esri.CatalogFootprintLayer | __esri.CatalogLayer | __esri.CSVLayer | __esri.FeatureLayer | __esri.GeoJSONLayer | __esri.ImageryLayer | __esri.ImageryTileLayer | __esri.KnowledgeGraphSublayer | __esri.OGCFeatureLayer | __esri.OrientedImageryLayer | __esri.ParquetLayer | __esri.SceneLayer | __esri.StreamLayer | __esri.Sublayer | __esri.SubtypeGroupLayer | __esri.SubtypeSublayer | __esri.VoxelLayer | __esri.WCSLayer | __esri.WFSLayer;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
/// <reference types="@arcgis/core/interfaces.d.ts" />
|
|
2
2
|
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* All supported layer types
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
4
8
|
export type FieldPickListLayer = __esri.CatalogFootprintLayer | __esri.CatalogLayer | __esri.CSVLayer | __esri.FeatureLayer | __esri.GeoJSONLayer | __esri.ImageryLayer | __esri.ImageryTileLayer | __esri.KnowledgeGraphSublayer | __esri.OGCFeatureLayer | __esri.OrientedImageryLayer | __esri.ParquetLayer | __esri.SceneLayer | __esri.StreamLayer | __esri.Sublayer | __esri.SubtypeGroupLayer | __esri.SubtypeSublayer | __esri.VoxelLayer | __esri.WCSLayer | __esri.WFSLayer;
|
|
@@ -6,9 +6,9 @@ import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Renders a histogram to visualize the spread of a dataset based on [bins](#bins) representing buckets, or sub-ranges, of
|
|
9
|
-
* data. Each [bin](https://developers.arcgis.com/javascript/latest/
|
|
9
|
+
* data. Each [bin](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/types/#HistogramBin) is defined by a minimum and maximum value and a total count.
|
|
10
10
|
*
|
|
11
|
-
* You can generate the underlying histogram's bins with the [histogram](https://developers.arcgis.com/javascript/latest/
|
|
11
|
+
* You can generate the underlying histogram's bins with the [histogram](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/histogram/)
|
|
12
12
|
* module, then apply them to the component, as shown in the example below.
|
|
13
13
|
*
|
|
14
14
|
* ```js
|
|
@@ -43,7 +43,7 @@ import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
|
43
43
|
*
|
|
44
44
|
* @cssproperty [--arcgis-histogram-bar-color] - Specifies the color of the histogram bars when the bin doesn't have a corresponding color stop.
|
|
45
45
|
* @cssproperty [--arcgis-histogram-stop-color] - Specifies the default color for color stops.
|
|
46
|
-
* @see [histogram module](https://developers.arcgis.com/javascript/latest/
|
|
46
|
+
* @see [histogram module](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/histogram/)
|
|
47
47
|
* @see [Sample - Histogram component](https://developers.arcgis.com/javascript/latest/sample-code/histogram/)
|
|
48
48
|
* @since 5.0
|
|
49
49
|
*/
|
|
@@ -59,13 +59,13 @@ export abstract class ArcgisHistogram extends LitElement {
|
|
|
59
59
|
/**
|
|
60
60
|
* The statistical average of the data in the histogram. You would typically
|
|
61
61
|
* get this value from the `avg` property of
|
|
62
|
-
* [SummaryStatisticsResult](https://developers.arcgis.com/javascript/latest/
|
|
62
|
+
* [SummaryStatisticsResult](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#SummaryStatisticsResult),
|
|
63
63
|
* which is the result of the
|
|
64
|
-
* [summaryStatistics](https://developers.arcgis.com/javascript/latest/
|
|
64
|
+
* [summaryStatistics](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#summaryStatistics) function.
|
|
65
65
|
*
|
|
66
66
|
* When set, this value will render on the histogram with a symbol indicating it is the average.
|
|
67
67
|
*
|
|
68
|
-
* @see [summaryStatistics](https://developers.arcgis.com/javascript/latest/
|
|
68
|
+
* @see [summaryStatistics](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#summaryStatistics)
|
|
69
69
|
* @example
|
|
70
70
|
* ```js
|
|
71
71
|
* // sets result returned from a smart mapping method
|
|
@@ -81,7 +81,7 @@ export abstract class ArcgisHistogram extends LitElement {
|
|
|
81
81
|
/**
|
|
82
82
|
* An array of objects representing each bin in the histogram. This
|
|
83
83
|
* information is typically returned from the
|
|
84
|
-
* [histogram](https://developers.arcgis.com/javascript/latest/
|
|
84
|
+
* [histogram](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/histogram/#histogram) function.
|
|
85
85
|
*
|
|
86
86
|
* @example
|
|
87
87
|
* ```js
|
|
@@ -175,7 +175,7 @@ export abstract class ArcgisHistogram extends LitElement {
|
|
|
175
175
|
* };
|
|
176
176
|
* });
|
|
177
177
|
* ```
|
|
178
|
-
* @see [smartMappingUtils.getDeviationValues](https://developers.arcgis.com/javascript/latest/
|
|
178
|
+
* @see [smartMappingUtils.getDeviationValues](https://developers.arcgis.com/javascript/latest/references/core/widgets/smartMapping/support/utils/#getDeviationValues)
|
|
179
179
|
*/
|
|
180
180
|
accessor dataLines: DataLine[] | undefined;
|
|
181
181
|
/**
|
|
@@ -240,13 +240,13 @@ export abstract class ArcgisHistogram extends LitElement {
|
|
|
240
240
|
/**
|
|
241
241
|
* The statistical standard deviation of the data in the histogram. You would typically
|
|
242
242
|
* get this value from the `stddev` property of
|
|
243
|
-
* [SummaryStatisticsResult](https://developers.arcgis.com/javascript/latest/
|
|
243
|
+
* [SummaryStatisticsResult](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#SummaryStatisticsResult),
|
|
244
244
|
* which is the result of the
|
|
245
|
-
* [summaryStatistics](https://developers.arcgis.com/javascript/latest/
|
|
245
|
+
* [summaryStatistics](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#summaryStatistics) function.
|
|
246
246
|
*
|
|
247
247
|
* When set, this value will render on the histogram with symbols indicating standard deviation intervals from the mean.
|
|
248
248
|
*
|
|
249
|
-
* @see [summaryStatistics](https://developers.arcgis.com/javascript/latest/
|
|
249
|
+
* @see [summaryStatistics](https://developers.arcgis.com/javascript/latest/references/core/smartMapping/statistics/summaryStatistics/#summaryStatistics)
|
|
250
250
|
* @example
|
|
251
251
|
* ```js
|
|
252
252
|
* // sets result returned from a smart mapping method
|
|
@@ -4,7 +4,7 @@ import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* The ticks component displays visual markers along a line to indicate scale, intervals, or specific values. It is often used in conjunction with the
|
|
7
|
-
* [Slider component](https://developers.arcgis.com/javascript/latest/references/common-components/arcgis-slider/). Ticks help users understand the
|
|
7
|
+
* [Slider component](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-slider/). Ticks help users understand the
|
|
8
8
|
* slider’s range and make more precise selections.
|
|
9
9
|
*
|
|
10
10
|
* Tick placement is controlled by the [mode](#mode), which defines how the [values](#values) are parsed and translated into positions along the
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
/// <reference types="@arcgis/core/interfaces.d.ts" />
|
|
2
2
|
|
|
3
|
+
/** @internal */
|
|
3
4
|
export type SupportedLayer = __esri.CatalogFootprintLayer | __esri.CatalogLayer | __esri.CSVLayer | __esri.FeatureLayer | __esri.GeoJSONLayer | __esri.ImageryLayer | __esri.KnowledgeGraphSublayer | __esri.OrientedImageryLayer | __esri.StreamLayer | __esri.SubtypeGroupLayer | __esri.SubtypeSublayer | __esri.WFSLayer;
|