forked from htmlstreamofficial/preline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
749 lines (747 loc) · 22.3 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
export interface ICopyMarkupOptions {
targetSelector: string;
wrapperSelector: string;
limit?: number;
}
export interface ICopyMarkup {
options?: ICopyMarkupOptions;
}
export interface IBasePlugin<O, E> {
el: E;
options?: O;
events?: {};
}
declare class HSBasePlugin<O, E = HTMLElement> implements IBasePlugin<O, E> {
el: E;
options: O;
events?: any;
constructor(el: E, options: O, events?: any);
createCollection(collection: any[], element: any): void;
fireEvent(evt: string, payload?: any): any;
on(evt: string, cb: Function): void;
}
export interface ICollectionItem<T> {
id: string | number;
element: T;
}
export declare class HSCopyMarkup extends HSBasePlugin<ICopyMarkupOptions> implements ICopyMarkup {
private readonly targetSelector;
private readonly wrapperSelector;
private readonly limit;
private target;
private wrapper;
private items;
constructor(el: HTMLElement, options?: ICopyMarkupOptions);
private init;
private copy;
private addPredefinedItems;
private setTarget;
private setWrapper;
private addToItems;
delete(target: HTMLElement): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSCopyMarkup | ICollectionItem<HSCopyMarkup>;
static autoInit(): void;
}
export interface IAccordion {
options?: {};
show(): void;
hide(): void;
}
export declare class HSAccordion extends HSBasePlugin<{}> implements IAccordion {
private readonly toggle;
content: HTMLElement | null;
private readonly group;
private readonly isAlwaysOpened;
constructor(el: HTMLElement, options?: {}, events?: {});
private init;
show(): boolean;
hide(): boolean;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HTMLElement | ICollectionItem<HSAccordion>;
static show(target: HTMLElement): void;
static hide(target: HTMLElement): void;
static autoInit(): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface ICarouselOptions {
currentIndex: number;
loadingClasses?: string | string[];
isAutoPlay?: boolean;
speed?: number;
isInfiniteLoop?: boolean;
}
export interface ICarousel {
options?: ICarouselOptions;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
}
export declare class HSCarousel extends HSBasePlugin<ICarouselOptions> implements ICarousel {
private readonly inner;
private readonly slides;
private readonly prev;
private readonly next;
private readonly dots;
private sliderWidth;
private currentIndex;
private readonly loadingClasses;
private readonly loadingClassesRemove;
private readonly loadingClassesAdd;
private readonly afterLoadingClassesAdd;
private readonly isAutoPlay;
private readonly speed;
private readonly isInfiniteLoop;
private timer;
private readonly touchX;
constructor(el: HTMLElement, options?: ICarouselOptions);
private init;
private observeResize;
private calculateWidth;
private addCurrentClass;
private addDisabledClass;
private autoPlay;
private setTimer;
private resetTimer;
private detectDirection;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSCarousel | ICollectionItem<HSCarousel>;
static autoInit(): void;
}
export interface ICollapse {
options?: {};
show(): void;
hide(): void;
}
export declare class HSCollapse extends HSBasePlugin<{}> implements ICollapse {
private readonly contentId;
content: HTMLElement | null;
private animationInProcess;
constructor(el: HTMLElement, options?: {}, events?: {});
private init;
private hideAllMegaMenuItems;
show(): boolean;
hide(): boolean;
static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSCollapse>;
static autoInit(): void;
static show(target: HTMLElement): void;
static hide(target: HTMLElement): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IDropdown {
options?: {};
open(): void;
close(isAnimated: boolean): void;
forceClearState(): void;
}
export interface IHTMLElementPopper extends HTMLElement {
_popper: any;
}
export declare class HSDropdown extends HSBasePlugin<{}, IHTMLElementPopper> implements IDropdown {
private static history;
private readonly toggle;
menu: HTMLElement | null;
private eventMode;
private readonly closeMode;
private animationInProcess;
constructor(el: IHTMLElementPopper, options?: {}, events?: {});
private init;
resizeHandler(): void;
private onClickHandler;
private onMouseEnterHandler;
private onMouseLeaveHandler;
private destroyPopper;
private absoluteStrategyModifiers;
open(): boolean;
close(isAnimated?: boolean): boolean;
forceClearState(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): ICollectionItem<HSDropdown> | IHTMLElementPopper;
static autoInit(): void;
static open(target: HTMLElement): void;
static close(target: HTMLElement): void;
static accessibility(evt: KeyboardEvent): void;
static onEscape(evt: KeyboardEvent): void;
static onEnter(evt: KeyboardEvent): void;
static onArrow(isArrowUp?: boolean): boolean;
static onStartEnd(isStart?: boolean): boolean;
static onFirstLetter(code: string): boolean;
static closeCurrentlyOpened(evtTarget?: HTMLElement | null, isAnimated?: boolean): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IInputNumberOptions {
}
export interface IInputNumber {
options?: IInputNumberOptions;
}
export declare class HSInputNumber extends HSBasePlugin<IInputNumberOptions> implements IInputNumber {
private readonly input;
private readonly increment;
private readonly decrement;
private inputValue;
constructor(el: HTMLElement, options?: IInputNumberOptions);
private init;
private build;
private buildInput;
private buildIncrement;
private buildDecrement;
private changeValue;
private disableButtons;
private enableButtons;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSInputNumber | {
id: number;
element: HSInputNumber;
};
static autoInit(): void;
}
export interface IOverlayOptions {
hiddenClass?: string | null;
isClosePrev?: boolean;
backdropClasses?: string | null;
}
export interface IOverlay {
options?: IOverlayOptions;
open(): void;
close(): void;
}
export declare class HSOverlay extends HSBasePlugin<{}> implements IOverlay {
private readonly hiddenClass;
private readonly isClosePrev;
private readonly backdropClasses;
private openNextOverlay;
private autoHide;
private readonly overlayId;
overlay: HTMLElement | null;
isCloseWhenClickInside: string;
isTabAccessibilityLimited: string;
hasAutofocus: string;
hasAbilityToCloseOnBackdropClick: string;
constructor(el: HTMLElement, options?: IOverlayOptions, events?: {});
private init;
private hideAuto;
private checkTimer;
private buildBackdrop;
private destroyBackdrop;
private focusElement;
open(): false | Promise<void>;
close(): Promise<unknown>;
static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSOverlay>;
static autoInit(): void;
static open(target: HTMLElement): void;
static close(target: HTMLElement): void;
static accessibility(evt: KeyboardEvent): boolean;
static onEscape(target: ICollectionItem<HSOverlay>): void;
static onTab(target: ICollectionItem<HSOverlay>, focusableElements: HTMLElement[]): boolean;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IPinInputOptions {
availableCharsRE?: RegExp;
}
export interface IPinInput {
options?: IPinInputOptions;
}
export declare class HSPinInput extends HSBasePlugin<IPinInputOptions> implements IPinInput {
private items;
private currentItem;
private currentValue;
private readonly placeholders;
private readonly availableCharsRE;
constructor(el: HTMLElement, options?: IPinInputOptions);
private init;
private build;
private buildInputItems;
private checkIfNumber;
private autoFillAll;
private setCurrentValue;
private toggleCompleted;
private onInput;
private onKeydown;
private onFocusIn;
private onFocusOut;
private onPaste;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSPinInput | ICollectionItem<HSPinInput>;
static autoInit(): void;
}
export interface IRemoveElementOptions {
removeTargetAnimationClass: string;
}
export interface IRemoveElement {
options?: IRemoveElementOptions;
}
export declare class HSRemoveElement extends HSBasePlugin<IRemoveElementOptions> implements IRemoveElement {
private readonly removeTargetId;
private readonly removeTarget;
private readonly removeTargetAnimationClass;
constructor(el: HTMLElement, options?: IRemoveElementOptions);
private init;
private remove;
static autoInit(): void;
}
export interface ISearchItemTemplate {
type: string;
markup: string;
}
export interface ISearchByJsonOptions {
jsonUrl: string;
minChars?: number;
dropdownTemplate?: string;
dropdownClasses?: string;
dropdownItemTemplate?: string;
dropdownItemTemplatesByType?: ISearchItemTemplate[];
dropdownItemClasses?: string;
highlightedTextTagName?: string;
highlightedTextClasses?: string;
}
export interface ISearchByJson {
options?: ISearchByJsonOptions;
}
export declare class HSSearchByJson extends HSBasePlugin<ISearchByJsonOptions, HTMLInputElement> implements ISearchByJson {
private readonly jsonUrl;
private readonly minChars;
private json;
private result;
private val;
private readonly dropdownTemplate;
private readonly dropdownClasses;
private readonly dropdownItemTemplate;
private readonly dropdownItemTemplatesByType;
private readonly dropdownItemClasses;
private readonly highlightedTextTagName;
private readonly highlightedTextClasses;
private dropdown;
constructor(el: HTMLInputElement, options?: ISearchByJsonOptions);
private init;
private fetchData;
private searchData;
private buildDropdown;
private buildItems;
private itemTemplate;
static getInstance(target: HTMLElement | string): HSSearchByJson;
static autoInit(): void;
}
export interface IScrollspy {
options?: {};
}
export declare class HSScrollspy extends HSBasePlugin<{}> implements IScrollspy {
private activeSection;
private readonly contentId;
private readonly content;
private readonly links;
private readonly sections;
private readonly scrollableId;
private readonly scrollable;
constructor(el: HTMLElement, options?: {});
private init;
private update;
private scrollTo;
static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSScrollspy>;
static autoInit(): void;
}
export interface ISingleOptionOptions {
description: string;
icon: string;
}
export interface ISingleOption {
title: string;
val: string;
options?: ISingleOptionOptions | null;
}
export interface ISelectOptions {
value?: string | string[];
isOpened?: boolean;
placeholder?: string;
hasSearch?: boolean;
mode?: string;
viewport?: string;
toggleTag?: string;
toggleClasses?: string;
toggleCountText?: string;
toggleCountTextMinItems?: number;
tagsClasses?: string;
tagsItemTemplate?: string;
tagsItemClasses?: string;
tagsInputClasses?: string;
dropdownTag?: string;
dropdownClasses?: string;
dropdownDirectionClasses?: {
top?: string;
bottom?: string;
};
dropdownSpace: number;
searchWrapperTemplate?: string;
searchClasses?: string;
searchWrapperClasses?: string;
searchPlaceholder?: string;
searchNoResultText?: string | null;
searchNoResultClasses?: string | null;
optionTemplate?: string;
optionTag?: string;
optionClasses?: string;
descriptionClasses?: string;
iconClasses?: string;
isAddTagOnEnter?: boolean;
}
export interface ISelect {
options?: ISelectOptions;
destroy(): void;
open(): void;
close(): void;
addOption(items: ISingleOption | ISingleOption[]): void;
removeOption(values: string | string[]): void;
recalculateDirection(): void;
}
export declare class HSSelect extends HSBasePlugin<ISelectOptions> implements ISelect {
value: string | string[] | null;
private readonly placeholder;
private readonly hasSearch;
private readonly mode;
private readonly viewport;
isOpened: boolean | null;
isMultiple: boolean | null;
isDisabled: boolean | null;
private readonly toggleTag;
private readonly toggleClasses;
private readonly toggleCountText;
private readonly toggleCountTextMinItems;
private readonly tagsClasses;
private readonly tagsItemTemplate;
private readonly tagsItemClasses;
private readonly tagsInputClasses;
private readonly dropdownTag;
private readonly dropdownClasses;
private readonly dropdownDirectionClasses;
dropdownSpace: number | null;
private readonly searchWrapperTemplate;
private readonly searchPlaceholder;
private readonly searchClasses;
private readonly searchWrapperClasses;
private searchNoResultText;
private searchNoResultClasses;
private readonly optionTag;
private readonly optionTemplate;
private readonly optionClasses;
private readonly descriptionClasses;
private readonly iconClasses;
private animationInProcess;
private wrapper;
private toggle;
private toggleTextWrapper;
private tags;
private tagsItems;
private tagsInput;
private dropdown;
private searchWrapper;
private search;
private searchNoResult;
private selectOptions;
private readonly isAddTagOnEnter;
constructor(el: HTMLElement, options?: ISelectOptions);
private init;
private build;
private buildWrapper;
private buildToggle;
private setToggleIcon;
private setToggleTitle;
private buildTags;
private buildTagsItems;
private buildTagsItem;
private getItemByValue;
private setTagsItems;
private buildTagsInput;
private buildDropdown;
private buildSearch;
private buildOption;
private destroyOption;
private buildOriginalOption;
private destroyOriginalOption;
private onSelectOption;
private addSelectOption;
private removeSelectOption;
private resetTagsInputField;
private clearSelections;
private setNewValue;
private stringFromValue;
private selectSingleItem;
private selectMultipleItems;
private unselectMultipleItems;
private searchOptions;
private eraseToggleIcon;
private eraseToggleTitle;
destroy(): void;
open(): boolean;
close(): boolean;
addOption(items: ISingleOption | ISingleOption[]): void;
removeOption(values: string | string[]): void;
recalculateDirection(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSSelect | ICollectionItem<HSSelect>;
static autoInit(): void;
static close(target: HTMLElement | string): void;
static closeCurrentlyOpened(evtTarget?: HTMLElement | null): void;
static accessibility(evt: KeyboardEvent): void;
static onEscape(): void;
static onArrow(isArrowUp?: boolean): boolean;
static onTab(isArrowUp?: boolean): boolean;
static onStartEnd(isStart?: boolean): boolean;
static onEnter(evt: Event): void;
}
export interface IStepperOptions {
currentIndex?: number;
isCompleted?: boolean;
mode?: string;
}
export interface IStepper {
options?: IStepperOptions;
setProcessedNavItem(n?: number): void;
unsetProcessedNavItem(n?: number): void;
goToNext(): void;
disableButtons(): void;
enableButtons(): void;
setErrorNavItem(n?: number): void;
}
export declare class HSStepper extends HSBasePlugin<{}> implements IStepper {
private currentIndex;
private readonly mode;
private isCompleted;
private totalSteps;
private navItems;
private contentItems;
private backBtn;
private nextBtn;
private skipBtn;
private completeStepBtn;
private completeStepBtnDefaultText;
private finishBtn;
private resetBtn;
constructor(el: HTMLElement, options?: IStepperOptions);
private init;
private getUncompletedSteps;
private setTotalSteps;
private buildNav;
private buildNavItem;
private addNavItem;
private setCurrentNavItem;
private setCurrentNavItemActions;
private getNavItem;
private setProcessedNavItemActions;
private setErrorNavItemActions;
private unsetCurrentNavItemActions;
private handleNavItemClick;
private buildContent;
private buildContentItem;
private addContentItem;
private setCurrentContentItem;
private hideAllContentItems;
private setCurrentContentItemActions;
private unsetCurrentContentItemActions;
private disableAll;
private disableNavItemActions;
private enableNavItemActions;
private buildButtons;
private buildBackButton;
private handleBackButtonClick;
private checkForTheFirstStep;
private setToDisabled;
private setToNonDisabled;
private buildNextButton;
private unsetProcessedNavItemActions;
private handleNextButtonClick;
private removeOptionalClasses;
private buildSkipButton;
private setSkipItem;
private setSkipItemActions;
private showSkipButton;
private handleSkipButtonClick;
private buildCompleteStepButton;
private changeTextAndDisableCompleteButtonIfStepCompleted;
private setCompleteItem;
private setCompleteItemActions;
private showCompleteStepButton;
private handleCompleteStepButtonClick;
private buildFinishButton;
private setCompleted;
private unsetCompleted;
private showFinishButton;
private handleFinishButtonClick;
private buildResetButton;
private handleResetButtonClick;
setProcessedNavItem(n?: number): void;
unsetProcessedNavItem(n?: number): void;
goToNext(): void;
disableButtons(): void;
enableButtons(): void;
setErrorNavItem(n?: number): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSStepper | ICollectionItem<HSStepper>;
static autoInit(): void;
}
export interface IStrongPasswordOptions {
target: string | HTMLInputElement;
hints?: string;
stripClasses?: string;
minLength?: number;
mode?: string;
popoverSpace?: number;
checksExclude?: string[];
specialCharactersSet?: string;
}
export interface IStrongPassword {
options?: IStrongPasswordOptions;
recalculateDirection(): void;
}
export declare class HSStrongPassword extends HSBasePlugin<IStrongPasswordOptions> implements IStrongPassword {
private readonly target;
private readonly hints;
private readonly stripClasses;
private readonly minLength;
private readonly mode;
private readonly popoverSpace;
private readonly checksExclude;
private readonly specialCharactersSet;
isOpened: boolean;
private strength;
private passedRules;
private weakness;
private rules;
private availableChecks;
constructor(el: HTMLElement, options?: IStrongPasswordOptions);
private init;
private build;
private buildStrips;
private buildHints;
private buildWeakness;
private buildRules;
private setWeaknessText;
private setRulesText;
private togglePopover;
private checkStrength;
private checkIfPassed;
private setStrength;
private hideStrips;
recalculateDirection(): void;
static getInstance(target: HTMLElement | string): HSStrongPassword;
static autoInit(): void;
}
export interface ITabs {
options?: {};
}
export declare class HSTabs extends HSBasePlugin<{}> implements ITabs {
toggles: NodeListOf<HTMLElement> | null;
private readonly extraToggleId;
private readonly extraToggle;
private current;
private currentContentId;
currentContent: HTMLElement | null;
private prev;
private prevContentId;
private prevContent;
constructor(el: HTMLElement, options?: {}, events?: {});
private init;
private open;
private change;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSTabs | ICollectionItem<HSTabs>;
static autoInit(): void;
static open(target: HTMLElement): void;
static accessibility(evt: KeyboardEvent): void;
static onArrow(isOpposite?: boolean): void;
static onStartEnd(isOpposite?: boolean): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IThemeSwitchOptions {
theme?: "dark" | "light" | "default";
}
export interface IThemeSwitch {
options?: IThemeSwitchOptions;
setAppearance(theme: string, isSaveToLocalStorage: boolean, isSetDispatchEvent: boolean): void;
}
export declare class HSThemeSwitch extends HSBasePlugin<IThemeSwitchOptions> implements IThemeSwitch {
theme: string;
private readonly themeSet;
constructor(el: HTMLElement, options?: IThemeSwitchOptions);
private init;
private setResetStyles;
setAppearance(theme?: string, isSaveToLocalStorage?: boolean, isSetDispatchEvent?: boolean): void;
static getInstance(target: HTMLElement | string): HSThemeSwitch;
static autoInit(): void;
}
export interface IToggleCountOptions {
target: string | HTMLInputElement;
min: number;
max: number;
duration: number;
}
export interface IToggleCount {
options?: IToggleCountOptions;
countUp(): void;
countDown(): void;
}
export declare class HSToggleCount extends HSBasePlugin<IToggleCountOptions> implements IToggleCount {
private readonly target;
private readonly min;
private readonly max;
private readonly duration;
private isChecked;
constructor(el: HTMLElement, options?: IToggleCountOptions);
private init;
private toggle;
private animate;
countUp(): void;
countDown(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSToggleCount | ICollectionItem<HSToggleCount>;
static autoInit(): void;
}
export interface ITogglePasswordOptions {
target: string | string[] | HTMLInputElement | HTMLInputElement[];
}
export interface ITogglePassword {
options?: ITogglePasswordOptions;
show(): void;
hide(): void;
}
export declare class HSTogglePassword extends HSBasePlugin<ITogglePasswordOptions> implements ITogglePassword {
private readonly target;
private isShown;
private isMultiple;
private eventType;
constructor(el: HTMLElement, options?: ITogglePasswordOptions);
private init;
private getMultipleToggles;
show(): void;
hide(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSTogglePassword | ICollectionItem<HSTogglePassword>;
static autoInit(): void;
}
export interface ITooltip {
options?: {};
show(): void;
hide(): void;
}
export declare class HSTooltip extends HSBasePlugin<{}> implements ITooltip {
private readonly toggle;
content: HTMLElement | null;
readonly eventMode: string;
private readonly preventPopper;
private popperInstance;
private readonly placement;
private readonly strategy;
constructor(el: HTMLElement, options?: {}, events?: {});
private init;
private enter;
private leave;
private click;
private focus;
private buildPopper;
show(): void;
hide(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HTMLElement | ICollectionItem<HSTooltip>;
static autoInit(): void;
static show(target: HTMLElement): void;
static hide(target: HTMLElement): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IStaticMethods {
getClassProperty(el: HTMLElement, prop?: string, val?: string): string;
afterTransition(el: HTMLElement, cb: Function): void;
autoInit(collection?: string | string[]): void;
}
export declare const HSStaticMethods: IStaticMethods;
export {};