/// import type { InstantAppsAppError } from "../components/instant-apps-app-error"; import type { InstantAppsAppGuide } from "../components/instant-apps-app-guide"; import type { InstantAppsBuffer } from "../components/instant-apps-buffer"; import type { InstantAppsControlPanel } from "../components/instant-apps-control-panel"; import type { InstantAppsCreate } from "../components/instant-apps-create"; import type { InstantAppsExport } from "../components/instant-apps-export"; import type { InstantAppsExportViews } from "../components/instant-apps-export-views"; import type { InstantAppsFilterList } from "../components/instant-apps-filter-list"; import type { InstantAppsHeader } from "../components/instant-apps-header"; import type { InstantAppsInteractiveLegend } from "../components/instant-apps-interactive-legend"; import type { InstantAppsInteractiveLegendClassic } from "../components/instant-apps-interactive-legend-classic"; import type { InstantAppsInteractiveLegendCount } from "../components/instant-apps-interactive-legend-count"; import type { InstantAppsInteractiveLegendGroupLegendElement } from "../components/instant-apps-interactive-legend-group-legend-element"; import type { InstantAppsInteractiveLegendGroupLegendElementCaption } from "../components/instant-apps-interactive-legend-group-legend-element-caption"; import type { InstantAppsInteractiveLegendLayerElement } from "../components/instant-apps-interactive-legend-layer-element"; import type { InstantAppsInteractiveLegendLayerElementCaption } from "../components/instant-apps-interactive-legend-layer-element-caption"; import type { InstantAppsInteractiveLegendLegendElement } from "../components/instant-apps-interactive-legend-legend-element"; import type { InstantAppsInteractiveLegendLegendElementCaption } from "../components/instant-apps-interactive-legend-legend-element-caption"; import type { InstantAppsInteractiveLegendRelationship } from "../components/instant-apps-interactive-legend-relationship"; import type { InstantAppsKeyboardShortcuts } from "../components/instant-apps-keyboard-shortcuts"; import type { InstantAppsLandingPage } from "../components/instant-apps-landing-page"; import type { InstantAppsLanguageSwitcher } from "../components/instant-apps-language-switcher"; import type { InstantAppsLanguageTranslator } from "../components/instant-apps-language-translator"; import type { InstantAppsCkeditorWrapper } from "../components/instant-apps-ckeditor-wrapper"; import type { InstantAppsLanguageTranslatorContent } from "../components/instant-apps-language-translator-content"; import type { InstantAppsLanguageTranslatorItem } from "../components/instant-apps-language-translator-item"; import type { InstantAppsLanguageTranslatorSearch } from "../components/instant-apps-language-translator-search"; import type { InstantAppsMeasurement } from "../components/instant-apps-measurement"; import type { InstantAppsMeasurementTool } from "../components/instant-apps-measurement-tool"; import type { InstantAppsPopover } from "../components/instant-apps-popover"; import type { InstantAppsPopovers } from "../components/instant-apps-popovers"; import type { InstantAppsScoreboard } from "../components/instant-apps-scoreboard"; import type { InstantAppsSignIn } from "../components/instant-apps-sign-in"; import type { InstantAppsSocialShare } from "../components/instant-apps-social-share"; import type { InstantAppsSplash } from "../components/instant-apps-splash"; import type { InstantAppsTimeFilter } from "../components/instant-apps-time-filter"; import { HTMLAttributes } from "preact"; import type { EventHandler } from "@arcgis/lumina"; interface PreactInstantAppsAppError extends HTMLAttributes { } interface PreactInstantAppsAppGuide extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsBuffer extends Partial>, HTMLAttributes { } interface PreactInstantAppsControlPanel extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsCreate extends Partial>, HTMLAttributes { } interface PreactInstantAppsExport extends Partial>, HTMLAttributes { onafterExport?: EventHandler; onexportOutputUpdated?: EventHandler; } interface PreactInstantAppsExportViews extends Partial>, HTMLAttributes { onexportOutputUpdated?: EventHandler; } interface PreactInstantAppsFilterList extends Required>, Partial>, HTMLAttributes { onfilterListReset?: EventHandler; onfilterUpdate?: EventHandler; } interface PreactInstantAppsHeader extends Partial>, HTMLAttributes { oninfoIsOpenChanged?: EventHandler; } interface PreactInstantAppsInteractiveLegend extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendClassic extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendCount extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendGroupLegendElement extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendGroupLegendElementCaption extends Required>, Partial>, HTMLAttributes { ongroupLayerCaptionElementExpandUpdated?: EventHandler; } interface PreactInstantAppsInteractiveLegendLayerElement extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendLayerElementCaption extends Required>, Partial>, HTMLAttributes { onlayerCaptionElementExpandUpdated?: EventHandler; } interface PreactInstantAppsInteractiveLegendLegendElement extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsInteractiveLegendLegendElementCaption extends Required>, Partial>, HTMLAttributes { onlegendLayerExpandUpdated?: EventHandler; onshowAllSelected?: EventHandler; } interface PreactInstantAppsInteractiveLegendRelationship extends Required>, HTMLAttributes { } interface PreactInstantAppsKeyboardShortcuts extends Required>, HTMLAttributes { } interface PreactInstantAppsLandingPage extends Required>, Partial>, HTMLAttributes { onlandingPageClose?: EventHandler; onlandingPageOpen?: EventHandler; } interface PreactInstantAppsLanguageSwitcher extends Required>, Partial>, HTMLAttributes { onselectedLanguageUpdated?: EventHandler; } interface PreactInstantAppsLanguageTranslator extends Required>, Partial>, HTMLAttributes { ontranslatorDataUpdated?: EventHandler; } interface PreactInstantAppsCkeditorWrapper extends Required>, Partial>, HTMLAttributes { ondataChanged?: EventHandler; onisFocused?: EventHandler; } interface PreactInstantAppsLanguageTranslatorContent extends HTMLAttributes { } interface PreactInstantAppsLanguageTranslatorItem extends Required>, HTMLAttributes { ontranslatorItemDataUpdated?: EventHandler; } interface PreactInstantAppsLanguageTranslatorSearch extends Required>, HTMLAttributes { onsuggestionSelected?: EventHandler; } interface PreactInstantAppsMeasurement extends Required>, Partial>, HTMLAttributes { onmeasureActive?: EventHandler; } interface PreactInstantAppsMeasurementTool extends Required>, HTMLAttributes { } interface PreactInstantAppsPopover extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsPopovers extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsScoreboard extends Required>, Partial>, HTMLAttributes { onscoreboardItemsUpdated?: EventHandler; } interface PreactInstantAppsSignIn extends Required>, Partial>, HTMLAttributes { } interface PreactInstantAppsSocialShare extends Partial>, HTMLAttributes { } interface PreactInstantAppsSplash extends Partial>, HTMLAttributes { onsplashClose?: EventHandler; } interface PreactInstantAppsTimeFilter extends Required>, Partial>, HTMLAttributes { } declare module 'preact' { namespace createElement.JSX { interface IntrinsicElements { "instant-apps-app-error": PreactInstantAppsAppError; "instant-apps-app-guide": PreactInstantAppsAppGuide; "instant-apps-buffer": PreactInstantAppsBuffer; "instant-apps-control-panel": PreactInstantAppsControlPanel; "instant-apps-create": PreactInstantAppsCreate; "instant-apps-export": PreactInstantAppsExport; "instant-apps-export-views": PreactInstantAppsExportViews; "instant-apps-filter-list": PreactInstantAppsFilterList; "instant-apps-header": PreactInstantAppsHeader; "instant-apps-interactive-legend": PreactInstantAppsInteractiveLegend; "instant-apps-interactive-legend-classic": PreactInstantAppsInteractiveLegendClassic; "instant-apps-interactive-legend-count": PreactInstantAppsInteractiveLegendCount; "instant-apps-interactive-legend-group-legend-element": PreactInstantAppsInteractiveLegendGroupLegendElement; "instant-apps-interactive-legend-group-legend-element-caption": PreactInstantAppsInteractiveLegendGroupLegendElementCaption; "instant-apps-interactive-legend-layer-element": PreactInstantAppsInteractiveLegendLayerElement; "instant-apps-interactive-legend-layer-element-caption": PreactInstantAppsInteractiveLegendLayerElementCaption; "instant-apps-interactive-legend-legend-element": PreactInstantAppsInteractiveLegendLegendElement; "instant-apps-interactive-legend-legend-element-caption": PreactInstantAppsInteractiveLegendLegendElementCaption; "instant-apps-interactive-legend-relationship": PreactInstantAppsInteractiveLegendRelationship; "instant-apps-keyboard-shortcuts": PreactInstantAppsKeyboardShortcuts; "instant-apps-landing-page": PreactInstantAppsLandingPage; "instant-apps-language-switcher": PreactInstantAppsLanguageSwitcher; "instant-apps-language-translator": PreactInstantAppsLanguageTranslator; "instant-apps-ckeditor-wrapper": PreactInstantAppsCkeditorWrapper; "instant-apps-language-translator-content": PreactInstantAppsLanguageTranslatorContent; "instant-apps-language-translator-item": PreactInstantAppsLanguageTranslatorItem; "instant-apps-language-translator-search": PreactInstantAppsLanguageTranslatorSearch; "instant-apps-measurement": PreactInstantAppsMeasurement; "instant-apps-measurement-tool": PreactInstantAppsMeasurementTool; "instant-apps-popover": PreactInstantAppsPopover; "instant-apps-popovers": PreactInstantAppsPopovers; "instant-apps-scoreboard": PreactInstantAppsScoreboard; "instant-apps-sign-in": PreactInstantAppsSignIn; "instant-apps-social-share": PreactInstantAppsSocialShare; "instant-apps-splash": PreactInstantAppsSplash; "instant-apps-time-filter": PreactInstantAppsTimeFilter; } } namespace h.JSX { interface IntrinsicElements { "instant-apps-app-error": PreactInstantAppsAppError; "instant-apps-app-guide": PreactInstantAppsAppGuide; "instant-apps-buffer": PreactInstantAppsBuffer; "instant-apps-control-panel": PreactInstantAppsControlPanel; "instant-apps-create": PreactInstantAppsCreate; "instant-apps-export": PreactInstantAppsExport; "instant-apps-export-views": PreactInstantAppsExportViews; "instant-apps-filter-list": PreactInstantAppsFilterList; "instant-apps-header": PreactInstantAppsHeader; "instant-apps-interactive-legend": PreactInstantAppsInteractiveLegend; "instant-apps-interactive-legend-classic": PreactInstantAppsInteractiveLegendClassic; "instant-apps-interactive-legend-count": PreactInstantAppsInteractiveLegendCount; "instant-apps-interactive-legend-group-legend-element": PreactInstantAppsInteractiveLegendGroupLegendElement; "instant-apps-interactive-legend-group-legend-element-caption": PreactInstantAppsInteractiveLegendGroupLegendElementCaption; "instant-apps-interactive-legend-layer-element": PreactInstantAppsInteractiveLegendLayerElement; "instant-apps-interactive-legend-layer-element-caption": PreactInstantAppsInteractiveLegendLayerElementCaption; "instant-apps-interactive-legend-legend-element": PreactInstantAppsInteractiveLegendLegendElement; "instant-apps-interactive-legend-legend-element-caption": PreactInstantAppsInteractiveLegendLegendElementCaption; "instant-apps-interactive-legend-relationship": PreactInstantAppsInteractiveLegendRelationship; "instant-apps-keyboard-shortcuts": PreactInstantAppsKeyboardShortcuts; "instant-apps-landing-page": PreactInstantAppsLandingPage; "instant-apps-language-switcher": PreactInstantAppsLanguageSwitcher; "instant-apps-language-translator": PreactInstantAppsLanguageTranslator; "instant-apps-ckeditor-wrapper": PreactInstantAppsCkeditorWrapper; "instant-apps-language-translator-content": PreactInstantAppsLanguageTranslatorContent; "instant-apps-language-translator-item": PreactInstantAppsLanguageTranslatorItem; "instant-apps-language-translator-search": PreactInstantAppsLanguageTranslatorSearch; "instant-apps-measurement": PreactInstantAppsMeasurement; "instant-apps-measurement-tool": PreactInstantAppsMeasurementTool; "instant-apps-popover": PreactInstantAppsPopover; "instant-apps-popovers": PreactInstantAppsPopovers; "instant-apps-scoreboard": PreactInstantAppsScoreboard; "instant-apps-sign-in": PreactInstantAppsSignIn; "instant-apps-social-share": PreactInstantAppsSocialShare; "instant-apps-splash": PreactInstantAppsSplash; "instant-apps-time-filter": PreactInstantAppsTimeFilter; } } }