@arcgis/common-components 5.1.0-next.18 → 5.1.0-next.19
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-label-input/customElement.d.ts +4 -4
- package/dist/components/arcgis-ticks/customElement.d.ts +4 -4
- 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/package.json +3 -3
|
@@ -14,11 +14,11 @@ export abstract class ArcgisLabelInput extends LitElement {
|
|
|
14
14
|
accessor alignment: Button["alignment"] & InputNumber["alignment"];
|
|
15
15
|
/**
|
|
16
16
|
* Indicates whether the component is in edit mode.
|
|
17
|
-
* This value changes when user interacts with the component or when [edit()](
|
|
18
|
-
* The value is always `false` when the component is in [
|
|
17
|
+
* This value changes when user interacts with the component or when [edit()](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-label-input/#edit) is called.
|
|
18
|
+
* The value is always `false` when the component is in [readOnly](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-label-input/#readOnly) mode.
|
|
19
19
|
*
|
|
20
20
|
* @default false
|
|
21
|
-
* @see [edit()](
|
|
21
|
+
* @see [edit()](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-label-input/#edit)
|
|
22
22
|
*/
|
|
23
23
|
get editing(): boolean;
|
|
24
24
|
/** A function used to format the value. */
|
|
@@ -38,7 +38,7 @@ export abstract class ArcgisLabelInput extends LitElement {
|
|
|
38
38
|
/**
|
|
39
39
|
* Initiates the edit mode for the component.
|
|
40
40
|
*
|
|
41
|
-
* @see [editing](
|
|
41
|
+
* @see [editing](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-label-input/#editing)
|
|
42
42
|
*/
|
|
43
43
|
edit(): Promise<void>;
|
|
44
44
|
/** Fires each time a new value is typed and committed. */
|
|
@@ -8,10 +8,10 @@ import type { Layout, TickMode, TickValues } from "./types.js";
|
|
|
8
8
|
* [Slider component](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-slider/). Ticks help users understand the
|
|
9
9
|
* slider’s range and make more precise selections.
|
|
10
10
|
*
|
|
11
|
-
* Tick placement is controlled by the [mode](
|
|
12
|
-
* line. Tick positions are derived from the component’s [min](
|
|
13
|
-
* [interpolationExponent](
|
|
14
|
-
* The component can also be made [interactive](
|
|
11
|
+
* Tick placement is controlled by the [mode](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#mode), which defines how the [values](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#values) are parsed and translated into positions along the
|
|
12
|
+
* line. Tick positions are derived from the component’s [min](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#min) and [max](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#max) range, with optional none-linear scaling via
|
|
13
|
+
* [interpolationExponent](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#interpolationExponent). Ticks can be displayed in vertical or horizontal [layout](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#layout), with optional [showLabels](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#showLabels) and a [showBaseline](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#showBaseline).
|
|
14
|
+
* The component can also be made [interactive](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#interactive) to respond to user clicks on individual ticks. The [labelFormatter](https://developers.arcgis.com/javascript/latest/references/common-components/components/arcgis-ticks/#labelFormatter) property allows customization of tick label formatting.
|
|
15
15
|
*
|
|
16
16
|
* @cssproperty [--arcgis-ticks-tick-length] - Specifies the length of the ticks.
|
|
17
17
|
* @cssproperty [--arcgis-ticks-tick-color] - Specifies the color of the ticks.
|