@arcgis/charts-components 5.1.0-next.129 → 5.1.0-next.130
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-chart/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/chart-config/validator/index.d.ts +1 -0
- package/dist/utils/chart-config/validator/interfaces.d.ts +1 -0
- package/package.json +3 -3
|
@@ -1633,7 +1633,11 @@ export abstract class ArcgisChart extends LitElement {
|
|
|
1633
1633
|
readonly arcgisDataProcessComplete: import("@arcgis/lumina").TargetedEvent<this, DataProcessCompletePayload>;
|
|
1634
1634
|
/** Event triggered when an error occurred while fetching of processing the data for the chart. */
|
|
1635
1635
|
readonly arcgisDataProcessError: import("@arcgis/lumina").TargetedEvent<this, void>;
|
|
1636
|
-
/**
|
|
1636
|
+
/**
|
|
1637
|
+
* Event triggered when an invalid configuration is detected.
|
|
1638
|
+
*
|
|
1639
|
+
* @deprecated since 5.1. Won't be replaced.
|
|
1640
|
+
*/
|
|
1637
1641
|
readonly arcgisInvalidConfigWarningRaise: import("@arcgis/lumina").TargetedEvent<this, DataWarningObject>;
|
|
1638
1642
|
/** Event triggered once a legend item visibility has been changed. */
|
|
1639
1643
|
readonly arcgisLegendItemVisibilityChange: import("@arcgis/lumina").TargetedEvent<this, LegendItemVisibilityChangePayload>;
|