@mescius/inputman.angular
Version:
このパッケージには、Angular用の[InputManJS](https://developer.mescius.jp/inputmanjs)コンポーネントが含まれます。
41 lines (40 loc) • 2.18 kB
TypeScript
import { AfterViewInit, EventEmitter } from '@angular/core';
import { GC } from '../inputman';
import { GcComponents } from './GcComponents';
import * as i0 from "@angular/core";
export declare class GcTourComponent extends GcComponents<GC.InputMan.GcTour> implements AfterViewInit {
ngAfterViewInit(): void;
private bindEventCore;
protected bindEvent(): void;
protected initGcComponent(): void;
steps: GC.InputMan.TourStepConfig[];
disableInteraction?: boolean;
offset?: number | number[];
showOverlay?: boolean;
highlightRadius?: number;
closeOnOverlayClick?: boolean;
closeOnEsc?: boolean;
showCloseButton?: boolean;
hidePreviousButton?: boolean;
hideDoneButton?: boolean;
tipClassName?: string;
tipDirection?: GC.InputMan.TipDirection;
tipPosition?: GC.InputMan.TipPosition;
tipResource?: GC.InputMan.TourTipResourceConfig;
autoFocusTarget?: boolean;
customTip?: (context: GC.InputMan.TourCustomTipContext) => void;
closed: EventEmitter<{
sender: GC.InputMan.GcTour;
eArgs: GC.InputMan.TourClosedEventArgs;
}>;
stepChanging: EventEmitter<{
sender: GC.InputMan.GcTour;
eArgs: GC.InputMan.TourStepChangingEventArgs;
}>;
stepChanged: EventEmitter<{
sender: GC.InputMan.GcTour;
eArgs: GC.InputMan.TourStepChangedEventArgs;
}>;
static ɵfac: i0.ɵɵFactoryDeclaration<GcTourComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<GcTourComponent, "gc-tour", never, { "steps": "steps"; "disableInteraction": "disableInteraction"; "offset": "offset"; "showOverlay": "showOverlay"; "highlightRadius": "highlightRadius"; "closeOnOverlayClick": "closeOnOverlayClick"; "closeOnEsc": "closeOnEsc"; "showCloseButton": "showCloseButton"; "hidePreviousButton": "hidePreviousButton"; "hideDoneButton": "hideDoneButton"; "tipClassName": "tipClassName"; "tipDirection": "tipDirection"; "tipPosition": "tipPosition"; "tipResource": "tipResource"; "autoFocusTarget": "autoFocusTarget"; "customTip": "customTip"; }, { "closed": "closed"; "stepChanging": "stepChanging"; "stepChanged": "stepChanged"; }, never, never, false, never>;
}