@arcgis/common-components 5.1.0-next.7 → 5.1.0-next.8
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/customElement.d.ts +1 -0
- package/dist/components/arcgis-color-input/customElement.d.ts +1 -0
- package/dist/components/arcgis-field-info/customElement.d.ts +1 -0
- package/dist/components/arcgis-field-pick-list/customElement.d.ts +1 -0
- package/dist/components/arcgis-label-input/customElement.d.ts +1 -0
- package/dist/components/arcgis-picker-input/customElement.d.ts +1 -0
- package/dist/components/arcgis-ramp-color/customElement.d.ts +2 -0
- package/dist/components/arcgis-ramp-color-break/customElement.d.ts +2 -0
- package/dist/components/arcgis-ramp-opacity/customElement.d.ts +1 -0
- package/dist/components/arcgis-slider-input/customElement.d.ts +1 -0
- package/dist/components/arcgis-unique-values-list/customElement.d.ts +5 -1
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/utils/types.d.ts +5 -1
- package/package.json +3 -3
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
3
3
|
import type { EditorType, InputMentionField } from "./types.js";
|
|
4
4
|
|
|
5
|
+
/** @internal */
|
|
5
6
|
export abstract class ArcgisCkeditor5 extends LitElement {
|
|
6
7
|
/**
|
|
7
8
|
* The editor's text area will have a vertical resize handle if set to true
|
|
@@ -4,6 +4,7 @@ import type { IPopoverProps } from "../../utils/types.js";
|
|
|
4
4
|
import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
5
5
|
import type { Popover as Popover } from "@esri/calcite-components/components/calcite-popover";
|
|
6
6
|
|
|
7
|
+
/** @internal */
|
|
7
8
|
export abstract class ArcgisColorInput extends LitElement {
|
|
8
9
|
/** @internal */
|
|
9
10
|
protected _messages: Partial<{
|
|
@@ -4,6 +4,7 @@ import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
|
4
4
|
import type { FieldInfoLayer } from "./utils/basic.js";
|
|
5
5
|
import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
6
6
|
|
|
7
|
+
/** @internal */
|
|
7
8
|
export abstract class ArcgisFieldInfo extends LitElement {
|
|
8
9
|
/** @internal */
|
|
9
10
|
protected _messages: {
|
|
@@ -13,6 +13,7 @@ import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
|
13
13
|
* @slot [content-bottom] - A slot for content below the list, non-scrollable. Valid only if listOnly is not set to true.
|
|
14
14
|
* @slot [content-footer] - A slot for content below the list inside the panel's footer, non-scrollable. Valid only if listOnly is not set to true.
|
|
15
15
|
* @slot [no-fields] - A slot for content, e.g. a message, that displays if the list of fields is empty.
|
|
16
|
+
* @internal
|
|
16
17
|
*/
|
|
17
18
|
export abstract class ArcgisFieldPickList extends LitElement {
|
|
18
19
|
/** @internal */
|
|
@@ -4,6 +4,7 @@ import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
|
4
4
|
import type { Button as Button } from "@esri/calcite-components/components/calcite-button";
|
|
5
5
|
import type { InputNumber as InputNumber } from "@esri/calcite-components/components/calcite-input-number";
|
|
6
6
|
|
|
7
|
+
/** @internal */
|
|
7
8
|
export abstract class ArcgisLabelInput extends LitElement {
|
|
8
9
|
/**
|
|
9
10
|
* Specifies the alignment of the component's text elements.
|
|
@@ -3,6 +3,7 @@ import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
|
3
3
|
import type { IPopoverProps } from "../../utils/types.js";
|
|
4
4
|
import type { Icon as Icon } from "@esri/calcite-components/components/calcite-icon";
|
|
5
5
|
|
|
6
|
+
/** @internal */
|
|
6
7
|
export abstract class ArcgisPickerInput extends LitElement {
|
|
7
8
|
/**
|
|
8
9
|
* If true, disables the component.
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import type Color from "@arcgis/core/Color.js";
|
|
3
3
|
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
4
4
|
|
|
5
|
+
/** @internal */
|
|
5
6
|
export abstract class ArcgisRampColor extends LitElement {
|
|
6
7
|
/** @default "horizontal" */
|
|
7
8
|
accessor layout: "horizontal" | "vertical";
|
|
@@ -12,6 +13,7 @@ export abstract class ArcgisRampColor extends LitElement {
|
|
|
12
13
|
accessor stops: ColorStop[];
|
|
13
14
|
}
|
|
14
15
|
|
|
16
|
+
/** @internal */
|
|
15
17
|
export interface ColorStop {
|
|
16
18
|
color: Color | string;
|
|
17
19
|
value: number;
|
|
@@ -3,6 +3,7 @@ import type Color from "@arcgis/core/Color.js";
|
|
|
3
3
|
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
4
4
|
import type { ArcgisRampColor } from "../arcgis-ramp-color/customElement.js";
|
|
5
5
|
|
|
6
|
+
/** @internal */
|
|
6
7
|
export abstract class ArcgisRampColorBreak extends LitElement {
|
|
7
8
|
/** @default "horizontal" */
|
|
8
9
|
accessor layout: ArcgisRampColor["layout"];
|
|
@@ -13,6 +14,7 @@ export abstract class ArcgisRampColorBreak extends LitElement {
|
|
|
13
14
|
accessor stops: ColorBreak[];
|
|
14
15
|
}
|
|
15
16
|
|
|
17
|
+
/** @internal */
|
|
16
18
|
export interface ColorBreak {
|
|
17
19
|
color: Color | string;
|
|
18
20
|
max: number;
|
|
@@ -3,6 +3,7 @@ import type Color from "@arcgis/core/Color.js";
|
|
|
3
3
|
import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
4
4
|
import type { ArcgisRampColor } from "../arcgis-ramp-color/customElement.js";
|
|
5
5
|
|
|
6
|
+
/** @internal */
|
|
6
7
|
export abstract class ArcgisRampOpacity extends LitElement {
|
|
7
8
|
accessor fillColor: Color | string;
|
|
8
9
|
/** @default "horizontal" */
|
|
@@ -4,7 +4,11 @@ import type { PublicLitElement as LitElement } from "@arcgis/lumina";
|
|
|
4
4
|
import type { SupportedLayer } from "./utils/basic.js";
|
|
5
5
|
import type { T9nMeta } from "@arcgis/lumina/controllers";
|
|
6
6
|
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* Displays a list of unique values taking into account field type formatting and field domains.
|
|
9
|
+
*
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
8
12
|
export abstract class ArcgisUniqueValuesList extends LitElement {
|
|
9
13
|
/** @internal */
|
|
10
14
|
protected _messages: {
|