UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

26 lines (25 loc) 1.35 kB
/// <reference types="react" /> import { Dropdown } from '@docsvision/webclient/Platform/Dropdown'; import { Label } from '@docsvision/webclient/Platform/Label'; import { Sortable } from '@docsvision/webclient/Helpers/Sortable/Sortable'; import { SettingsPopupColumn } from '@docsvision/webclient/Platform/SettingsPopupColumn'; import { SettingsPopupRow } from '@docsvision/webclient/Platform/SettingsPopupRow'; import { SettingsPopupItemView } from '@docsvision/webclient/Platform/SettingsPopupItemView'; import { SettingsPopupCheckBoxContainer } from '@docsvision/webclient/Platform/SettingsPopupCheckBoxContainer'; import { CheckBox } from '@docsvision/webclient/Platform/CheckBox'; import { RadioGroup } from '@docsvision/webclient/Platform/RadioGroup'; export declare class SettingsPopupView { modalDialog: (props: import("@docsvision/web/components/modals/modal-dialog").ModalDialogProps) => JSX.Element; dropdown: typeof Dropdown; label: typeof Label; sortable: typeof Sortable; column: typeof SettingsPopupColumn; row: typeof SettingsPopupRow; itemView: typeof SettingsPopupItemView; checkBoxContainer: typeof SettingsPopupCheckBoxContainer; checkBox: typeof CheckBox; radioGroup: typeof RadioGroup; button: (props: import("@docsvision/web/components/form/button").ButtonProps) => JSX.Element; }