@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.
@@ -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()](#edit) is called.
18
- * The value is always `false` when the component is in [read-only](#readOnly) mode.
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()](#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](#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](#mode), which defines how the [values](#values) are parsed and translated into positions along the
12
- * line. Tick positions are derived from the component’s [min](#min) and [max](#max) range, with optional none-linear scaling via
13
- * [interpolationExponent](#interpolationExponent). Ticks can be displayed in vertical or horizontal [layouts](#layout), with optional [labels](#showLabels) and a [baseline](#showBaseline).
14
- * The component can also be made [interactive](#interactive) to respond to user clicks on individual ticks. The [labelFormatter](#labelFormatter) property allows customization of tick label formatting.
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.