/// import type { ArcgisCkeditor5 } from "../components/arcgis-ckeditor5/customElement.js"; import type { ArcgisCkeditor5Popover } from "../components/arcgis-ckeditor5-popover/customElement.js"; import type { ArcgisColorInput } from "../components/arcgis-color-input/customElement.js"; import type { ArcgisCoordinateSystemPicker } from "../components/arcgis-coordinate-system-picker/customElement.js"; import type { ArcgisCoordinateSystemPickerTree } from "../components/arcgis-coordinate-system-picker-tree/customElement.js"; import type { ArcgisFieldInfo } from "../components/arcgis-field-info/customElement.js"; import type { ArcgisFieldPickList } from "../components/arcgis-field-pick-list/customElement.js"; import type { ArcgisHistogram } from "../components/arcgis-histogram/customElement.js"; import type { ArcgisLabelInput } from "../components/arcgis-label-input/customElement.js"; import type { ArcgisPickerInput } from "../components/arcgis-picker-input/customElement.js"; import type { ArcgisRampColor } from "../components/arcgis-ramp-color/customElement.js"; import type { ArcgisRampColorBreak } from "../components/arcgis-ramp-color-break/customElement.js"; import type { ArcgisRampOpacity } from "../components/arcgis-ramp-opacity/customElement.js"; import type { ArcgisSlider } from "../components/arcgis-slider/customElement.js"; import type { ArcgisSliderInput } from "../components/arcgis-slider-input/customElement.js"; import type { ArcgisTicks } from "../components/arcgis-ticks/customElement.js"; import type { ArcgisUniqueValuesList } from "../components/arcgis-unique-values-list/customElement.js"; import { JSXBase as StencilJsx } from "@stencil/core/internal"; import type { EventHandler } from "@arcgis/lumina"; interface StencilArcgisCkeditor5 extends Partial>, StencilJsx.HTMLAttributes { onArcgisCkeditor5Created?: EventHandler; onArcgisCkeditor5DataUpdated?: EventHandler; onArcgisCkeditor5SourceEditingChanged?: EventHandler; onArcgisCreated?: EventHandler; onArcgisDataUpdated?: EventHandler; onArcgisSourceEditingChanged?: EventHandler; } interface StencilArcgisCkeditor5Popover extends Partial>, StencilJsx.HTMLAttributes { onArcgisCkeditor5PopoverClosed?: EventHandler; onArcgisPopoverClosed?: EventHandler; } interface StencilArcgisColorInput extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; onArcgisColorInputChange?: EventHandler; onArcgisColorInputPopoverClose?: EventHandler; onArcgisColorInputPopoverOpen?: EventHandler; onArcgisColorInputSwatchUpdate?: EventHandler; onArcgisPickerClose?: EventHandler; onArcgisPickerOpen?: EventHandler; onArcgisSwatchUpdate?: EventHandler; } interface StencilArcgisCoordinateSystemPicker extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; } interface StencilArcgisCoordinateSystemPickerTree extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; } interface StencilArcgisFieldInfo extends Partial>, StencilJsx.HTMLAttributes { onArcgisComplete?: EventHandler; onArcgisFieldInfoComplete?: EventHandler; } interface StencilArcgisFieldPickList extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; onArcgisClose?: EventHandler; onArcgisDeleteField?: EventHandler; onArcgisEditField?: EventHandler; onArcgisFieldPickListChange?: EventHandler; onArcgisFieldPickListDismissed?: EventHandler; onArcgisFieldPickListSortByChange?: EventHandler; onArcgisSortByChange?: EventHandler; } interface StencilArcgisHistogram extends Partial>, StencilJsx.HTMLAttributes { } interface StencilArcgisLabelInput extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; } interface StencilArcgisPickerInput extends Partial>, StencilJsx.HTMLAttributes { onArcgisPopoverClose?: EventHandler; onArcgisPopoverOpen?: EventHandler; } interface StencilArcgisRampColor extends Partial>, StencilJsx.HTMLAttributes { } interface StencilArcgisRampColorBreak extends Partial>, StencilJsx.HTMLAttributes { } interface StencilArcgisRampOpacity extends Partial>, StencilJsx.HTMLAttributes { } interface StencilArcgisSlider extends Partial>, StencilJsx.HTMLAttributes { onArcgisActiveValueChange?: EventHandler; onArcgisChange?: EventHandler; onArcgisInput?: EventHandler; onArcgisRangeChange?: EventHandler; } interface StencilArcgisSliderInput extends Partial>, StencilJsx.HTMLAttributes { onArcgisSliderInputValueChange?: EventHandler; onArcgisValueChange?: EventHandler; } interface StencilArcgisTicks extends Partial>, StencilJsx.HTMLAttributes { onArcgisTickClick?: EventHandler; } interface StencilArcgisUniqueValuesList extends Partial>, StencilJsx.HTMLAttributes { onArcgisChange?: EventHandler; onArcgisLoad?: EventHandler; onArcgisSortByChange?: EventHandler; } interface ExposedElements { "arcgis-ckeditor5": StencilArcgisCkeditor5; "arcgis-ckeditor5-popover": StencilArcgisCkeditor5Popover; "arcgis-color-input": StencilArcgisColorInput; "arcgis-coordinate-system-picker": StencilArcgisCoordinateSystemPicker; "arcgis-coordinate-system-picker-tree": StencilArcgisCoordinateSystemPickerTree; "arcgis-field-info": StencilArcgisFieldInfo; "arcgis-field-pick-list": StencilArcgisFieldPickList; "arcgis-histogram": StencilArcgisHistogram; "arcgis-label-input": StencilArcgisLabelInput; "arcgis-picker-input": StencilArcgisPickerInput; "arcgis-ramp-color": StencilArcgisRampColor; "arcgis-ramp-color-break": StencilArcgisRampColorBreak; "arcgis-ramp-opacity": StencilArcgisRampOpacity; "arcgis-slider": StencilArcgisSlider; "arcgis-slider-input": StencilArcgisSliderInput; "arcgis-ticks": StencilArcgisTicks; "arcgis-unique-values-list": StencilArcgisUniqueValuesList; } export namespace JSX { export interface IntrinsicElements extends ExposedElements {} } declare module "@stencil/core/internal/stencil-public-runtime" { export namespace h.JSX { interface IntrinsicElements extends ExposedElements {} } }