-
Notifications
You must be signed in to change notification settings - Fork 316
/
preline.d.ts
1367 lines (1364 loc) · 40.7 KB
/
preline.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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { VirtualElement } from '@popperjs/core';
export interface ICopyMarkupOptions {
targetSelector: string;
wrapperSelector: string;
limit?: number;
}
export interface ICopyMarkup {
options?: ICopyMarkupOptions;
delete(target: HTMLElement): void;
destroy(): void;
}
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;
private onElementClickListener;
private onDeleteItemButtonClickListener;
constructor(el: HTMLElement, options?: ICopyMarkupOptions);
private elementClick;
private deleteItemButtonClick;
private init;
private copy;
private addPredefinedItems;
private setTarget;
private setWrapper;
private addToItems;
delete(target: HTMLElement): void;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSCopyMarkup | ICollectionItem<HSCopyMarkup>;
static autoInit(): void;
}
export interface IAccordionTreeViewStaticOptions {
}
export interface IAccordionTreeView {
el: HTMLElement | null;
options?: IAccordionTreeViewStaticOptions;
listeners?: {
el: HTMLElement;
listener: (evt: Event) => void;
}[];
}
export interface IAccordionOptions {
}
export interface IAccordion {
options?: IAccordionOptions;
toggleClick(evt: Event): void;
show(): void;
hide(): void;
update(): void;
destroy(): void;
}
export declare class HSAccordion extends HSBasePlugin<IAccordionOptions> implements IAccordion {
private toggle;
content: HTMLElement | null;
private group;
private isAlwaysOpened;
private isToggleStopPropagated;
private onToggleClickListener;
static selectable: IAccordionTreeView[];
constructor(el: HTMLElement, options?: IAccordionOptions, events?: {});
private init;
toggleClick(evt: Event): void;
show(): boolean;
hide(): boolean;
update(): boolean;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HTMLElement | ICollectionItem<HSAccordion>;
static show(target: HTMLElement): void;
static hide(target: HTMLElement): void;
static autoInit(): void;
static onSelectableClick: (evt: Event, item: IAccordionTreeView, el: HTMLElement) => void;
static treeView(): boolean;
static toggleSelected(root: IAccordionTreeView, item: HTMLElement): void;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export type TCarouselOptionsSlidesQty = {
[key: string]: number;
};
export interface ICarouselOptions {
currentIndex: number;
loadingClasses?: string | string[];
dotsItemClasses?: string;
isAutoHeight?: boolean;
isAutoPlay?: boolean;
isCentered?: boolean;
isDraggable?: boolean;
isInfiniteLoop?: boolean;
isRTL?: boolean;
isSnap?: boolean;
hasSnapSpacers?: boolean;
slidesQty?: TCarouselOptionsSlidesQty | number;
speed?: number;
updateDelay?: number;
}
export interface ICarousel {
options?: ICarouselOptions;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
destroy(): void;
}
export declare class HSCarousel extends HSBasePlugin<ICarouselOptions> implements ICarousel {
private currentIndex;
private readonly loadingClasses;
private readonly dotsItemClasses;
private readonly isAutoHeight;
private readonly isAutoPlay;
private readonly isCentered;
private readonly isDraggable;
private readonly isInfiniteLoop;
private readonly isRTL;
private readonly isSnap;
private readonly hasSnapSpacers;
private readonly slidesQty;
private readonly speed;
private readonly updateDelay;
private readonly loadingClassesRemove;
private readonly loadingClassesAdd;
private readonly afterLoadingClassesAdd;
private readonly container;
private readonly inner;
private readonly slides;
private readonly prev;
private readonly next;
private readonly dots;
private dotsItems;
private readonly info;
private readonly infoTotal;
private readonly infoCurrent;
private sliderWidth;
private timer;
private isScrolling;
private isDragging;
private dragStartX;
private initialTranslateX;
private readonly touchX;
private resizeContainer;
resizeContainerWidth: number;
private onPrevClickListener;
private onNextClickListener;
private onContainerScrollListener;
private onElementTouchStartListener;
private onElementTouchEndListener;
private onInnerMouseDownListener;
private onInnerTouchStartListener;
private onDocumentMouseMoveListener;
private onDocumentTouchMoveListener;
private onDocumentMouseUpListener;
private onDocumentTouchEndListener;
private onDotClickListener;
constructor(el: HTMLElement, options?: ICarouselOptions);
private setIsSnap;
private prevClick;
private nextClick;
private containerScroll;
private elementTouchStart;
private elementTouchEnd;
private innerMouseDown;
private innerTouchStart;
private documentMouseMove;
private documentTouchMove;
private documentMouseUp;
private documentTouchEnd;
private dotClick;
private init;
private initDragHandling;
private getTranslateXValue;
private removeClickEventWhileDragging;
private handleDragStart;
private handleDragMove;
private handleDragEnd;
private getEventX;
private getCurrentSlidesQty;
private buildSnapSpacers;
private initDots;
private buildDots;
private setDots;
private goToCurrentDot;
private buildInfo;
private setInfoTotal;
private setInfoCurrent;
private buildSingleDot;
private singleDotEvents;
private observeResize;
private calculateWidth;
private addCurrentClass;
private setCurrentDot;
private setElementToDisabled;
private unsetElementToDisabled;
private addDisabledClass;
private autoPlay;
private setTimer;
private resetTimer;
private detectDirection;
private calculateTransform;
private setTranslate;
private setIndex;
recalculateWidth(): void;
goToPrev(): void;
goToNext(): void;
goTo(i: number): void;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSCarousel | ICollectionItem<HSCarousel>;
static autoInit(): void;
}
export interface ICollapse {
options?: {};
show(): void;
hide(): void;
destroy(): void;
}
export declare class HSCollapse extends HSBasePlugin<{}> implements ICollapse {
private readonly contentId;
content: HTMLElement | null;
private animationInProcess;
private onElementClickListener;
constructor(el: HTMLElement, options?: {}, events?: {});
private elementClick;
private init;
private hideAllMegaMenuItems;
show(): boolean;
hide(): boolean;
destroy(): void;
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 IComboBoxOptions {
gap?: number;
viewport?: string | HTMLElement | null;
preventVisibility?: boolean;
apiUrl?: string | null;
apiDataPart?: string | null;
apiQuery?: string | null;
apiSearchQuery?: string | null;
apiSearchPath?: string | null;
apiSearchDefaultPath?: string | null;
apiHeaders?: {};
apiGroupField?: string | null;
outputItemTemplate?: string | null;
outputEmptyTemplate?: string | null;
outputLoaderTemplate?: string | null;
groupingType?: "default" | "tabs" | null;
groupingTitleTemplate?: string | null;
tabsWrapperTemplate?: string | null;
preventSelection?: boolean;
preventAutoPosition?: boolean;
isOpenOnFocus?: boolean;
}
export interface IComboBox {
options?: IComboBoxOptions;
getCurrentData(): {} | {}[];
open(): void;
close(): void;
recalculateDirection(): void;
destroy(): void;
}
export declare class HSComboBox extends HSBasePlugin<IComboBoxOptions> implements IComboBox {
gap: number;
viewport: string | HTMLElement | null;
preventVisibility: boolean;
apiUrl: string | null;
apiDataPart: string | null;
apiQuery: string | null;
apiSearchQuery: string | null;
apiSearchPath: string | null;
apiSearchDefaultPath: string | null;
apiHeaders: {};
apiGroupField: string | null;
outputItemTemplate: string | null;
outputEmptyTemplate: string | null;
outputLoaderTemplate: string | null;
groupingType: "default" | "tabs" | null;
groupingTitleTemplate: string | null;
tabsWrapperTemplate: string | null;
preventSelection: boolean;
preventAutoPosition: boolean;
isOpenOnFocus: boolean;
private readonly input;
private readonly output;
private readonly itemsWrapper;
private items;
private tabs;
private readonly toggle;
private readonly toggleClose;
private readonly toggleOpen;
private outputPlaceholder;
private outputLoader;
private value;
private selected;
private currentData;
private groups;
private selectedGroup;
isOpened: boolean;
isCurrent: boolean;
private animationInProcess;
private onInputFocusListener;
private onInputInputListener;
private onToggleClickListener;
private onToggleCloseClickListener;
private onToggleOpenClickListener;
constructor(el: HTMLElement, options?: IComboBoxOptions, events?: {});
private inputFocus;
private inputInput;
private toggleClick;
private toggleCloseClick;
private toggleOpenClick;
private init;
private build;
private getNestedProperty;
private setValue;
private setValueAndOpen;
private setValueAndClear;
private setSelectedByValue;
private setResultAndRender;
private setResults;
private setGroups;
private setApiGroups;
private setItemsVisibility;
private isTextExists;
private isTextExistsAny;
private hasVisibleItems;
private valuesBySelector;
private sortItems;
private buildInput;
private buildItems;
private buildOutputLoader;
private buildToggle;
private buildToggleClose;
private buildToggleOpen;
private buildOutputPlaceholder;
private destroyOutputLoader;
private itemRender;
private plainRender;
private jsonItemsRender;
private groupDefaultRender;
private groupTabsRender;
private itemsFromHtml;
private itemsFromJson;
private appendItemsToWrapper;
private resultItems;
private destroyOutputPlaceholder;
getCurrentData(): {} | {}[];
setCurrent(): void;
open(val?: string): boolean;
close(val?: string | null, data?: {} | null): boolean;
recalculateDirection(): void;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSComboBox | ICollectionItem<HSComboBox>;
static autoInit(): void;
static close(target: HTMLElement | string): void;
static closeCurrentlyOpened(evtTarget?: HTMLElement | null): void;
private static getPreparedItems;
private static setHighlighted;
static accessibility(evt: KeyboardEvent): void;
static onEscape(): void;
static onArrow(isArrowUp?: boolean): boolean;
static onStartEnd(isStart?: boolean): boolean;
static onEnter(evt: Event): void;
}
export interface IDropdown {
options?: {};
open(): void;
close(isAnimated: boolean): void;
forceClearState(): void;
destroy(): void;
}
export interface IHTMLElementPopper extends HTMLElement {
_popper: any;
}
export declare class HSDropdown extends HSBasePlugin<{}, IHTMLElementPopper> implements IDropdown {
private static history;
private readonly toggle;
private readonly closers;
menu: HTMLElement | null;
private eventMode;
private closeMode;
private hasAutofocus;
private animationInProcess;
private onElementMouseEnterListener;
private onElementMouseLeaveListener;
private onToggleClickListener;
private onToggleContextMenuListener;
private onCloserClickListener;
constructor(el: IHTMLElementPopper, options?: {}, events?: {});
private elementMouseEnter;
private elementMouseLeave;
private toggleClick;
private toggleContextMenu;
private closerClick;
private init;
resizeHandler(): void;
private buildToggle;
private buildMenu;
private buildClosers;
private getScrollbarSize;
private onContextMenuHandler;
private onClickHandler;
private onMouseEnterHandler;
private onMouseLeaveHandler;
private destroyPopper;
private absoluteStrategyModifiers;
private focusElement;
private setupPopper;
private selectCheckbox;
private selectRadio;
calculatePopperPosition(target?: VirtualElement | HTMLElement): import("@popperjs/core").Placement;
open(target?: VirtualElement | HTMLElement): boolean;
close(isAnimated?: boolean): boolean;
forceClearState(): void;
destroy(): 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): boolean;
static onArrow(isArrowUp?: boolean): boolean;
static onArrowX(evt: KeyboardEvent, direction: "right" | "left"): 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 {
min?: number;
max?: number;
step?: number;
}
export interface IInputNumber {
options?: IInputNumberOptions;
destroy(): void;
}
export declare class HSInputNumber extends HSBasePlugin<IInputNumberOptions> implements IInputNumber {
private readonly input;
private readonly increment;
private readonly decrement;
private inputValue;
private readonly minInputValue;
private readonly maxInputValue;
private readonly step;
private onInputInputListener;
private onIncrementClickListener;
private onDecrementClickListener;
constructor(el: HTMLElement, options?: IInputNumberOptions);
private inputInput;
private incrementClick;
private decrementClick;
private init;
private checkIsNumberAndConvert;
private cleanAndExtractNumber;
private build;
private buildInput;
private buildIncrement;
private buildDecrement;
private changeValue;
private disableButtons;
private enableButtons;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSInputNumber | {
id: number;
element: HSInputNumber;
};
static autoInit(): void;
}
export interface ILayoutSplitterOptions {
horizontalSplitterClasses?: string | null;
horizontalSplitterTemplate?: string;
verticalSplitterClasses?: string | null;
verticalSplitterTemplate?: string;
isSplittersAddedManually?: boolean;
}
export interface IControlLayoutSplitter {
el: HTMLElement;
direction: "horizontal" | "vertical";
prev: HTMLElement | null;
next: HTMLElement | null;
}
export interface ILayoutSplitter {
options?: ILayoutSplitterOptions;
getSplitterItemSingleParam(item: HTMLElement, name: string): any;
getData(el: HTMLElement): any;
setSplitterItemSize(el: HTMLElement, size: number): void;
updateFlexValues(data: Array<{
id: string;
breakpoints: Record<number, number>;
}>): void;
destroy(): void;
}
export declare class HSLayoutSplitter extends HSBasePlugin<ILayoutSplitterOptions> implements ILayoutSplitter {
static isListenersInitialized: boolean;
private readonly horizontalSplitterClasses;
private readonly horizontalSplitterTemplate;
private readonly verticalSplitterClasses;
private readonly verticalSplitterTemplate;
private readonly isSplittersAddedManually;
private horizontalSplitters;
private horizontalControls;
private verticalSplitters;
private verticalControls;
isDragging: boolean;
activeSplitter: IControlLayoutSplitter | null;
private onControlPointerDownListener;
constructor(el: HTMLElement, options?: ILayoutSplitterOptions);
private controlPointerDown;
private controlPointerUp;
private static onDocumentPointerMove;
private static onDocumentPointerUp;
private init;
private buildSplitters;
private buildHorizontalSplitters;
private buildVerticalSplitters;
private buildControl;
private getSplitterItemParsedParam;
private getContainerSize;
private getMaxFlexSize;
private updateHorizontalSplitter;
private updateSingleSplitter;
private updateVerticalSplitter;
private updateSplitterItemParam;
private onPointerDownHandler;
private onPointerUpHandler;
private onPointerMoveHandler;
private bindListeners;
private calculateAvailableSize;
private calculateResizedSizes;
private enforceLimits;
private applySizes;
getSplitterItemSingleParam(item: HTMLElement, name: string): any;
getData(el: HTMLElement): any;
setSplitterItemSize(el: HTMLElement, size: number): void;
updateFlexValues(data: Array<{
id: string;
breakpoints: Record<number, number>;
}>): void;
destroy(): void;
static autoInit(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HTMLElement | ICollectionItem<HSLayoutSplitter>;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IOverlayOptions {
hiddenClass?: string | null;
emulateScrollbarSpace?: boolean;
isClosePrev?: boolean;
backdropClasses?: string | null;
backdropParent?: string | HTMLElement | Document;
backdropExtraClasses?: string | null;
moveOverlayToBody?: number | null;
}
export interface IOverlay {
options?: IOverlayOptions;
open(): void;
close(): void;
destroy(): void;
}
export type TOverlayOptionsAutoCloseEqualityType = "less-than" | "more-than";
export declare class HSOverlay extends HSBasePlugin<{}> implements IOverlay {
private readonly hiddenClass;
private readonly emulateScrollbarSpace;
private readonly isClosePrev;
private readonly backdropClasses;
private readonly backdropParent;
private readonly backdropExtraClasses;
private readonly animationTarget;
private openNextOverlay;
private autoHide;
private readonly overlayId;
overlay: HTMLElement | null;
initContainer: HTMLElement | null;
isCloseWhenClickInside: boolean;
isTabAccessibilityLimited: boolean;
isLayoutAffect: boolean;
hasAutofocus: boolean;
hasAbilityToCloseOnBackdropClick: boolean;
openedBreakpoint: number | null;
autoClose: number | null;
autoCloseEqualityType: TOverlayOptionsAutoCloseEqualityType | null;
moveOverlayToBody: number | null;
private backdrop;
private onElementClickListener;
private onOverlayClickListener;
private onBackdropClickListener;
constructor(el: HTMLElement, options?: IOverlayOptions, events?: {});
private elementClick;
private overlayClick;
private backdropClick;
private init;
private hideAuto;
private checkTimer;
private buildBackdrop;
private destroyBackdrop;
private focusElement;
private getScrollbarSize;
open(): false | Promise<void>;
close(forceClose?: boolean): Promise<unknown>;
destroy(): void;
static getInstance(target: HTMLElement, isInstance?: boolean): HTMLElement | ICollectionItem<HSOverlay>;
static autoInit(): void;
static open(target: HTMLElement): void;
static close(target: HTMLElement): void;
static setOpened(breakpoint: number, el: ICollectionItem<HSOverlay>): void;
static accessibility(evt: KeyboardEvent): boolean;
static onEscape(target: ICollectionItem<HSOverlay>): void;
static onTab(target: ICollectionItem<HSOverlay>): boolean;
static on(evt: string, target: HTMLElement, cb: Function): void;
}
export interface IPinInputOptions {
availableCharsRE?: RegExp;
}
export interface IPinInput {
options?: IPinInputOptions;
destroy(): void;
}
export declare class HSPinInput extends HSBasePlugin<IPinInputOptions> implements IPinInput {
private items;
private currentItem;
private currentValue;
private readonly placeholders;
private readonly availableCharsRE;
private onElementInputListener;
private onElementPasteListener;
private onElementKeydownListener;
private onElementFocusinListener;
private onElementFocusoutListener;
private elementInput;
private elementPaste;
private elementKeydown;
private elementFocusin;
private elementFocusout;
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;
destroy(): void;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSPinInput | ICollectionItem<HSPinInput>;
static autoInit(): void;
}
export interface IRemoveElementOptions {
removeTargetAnimationClass: string;
}
export interface IRemoveElement {
options?: IRemoveElementOptions;
destroy(): void;
}
export declare class HSRemoveElement extends HSBasePlugin<IRemoveElementOptions> implements IRemoveElement {
private readonly removeTargetId;
private readonly removeTarget;
private readonly removeTargetAnimationClass;
private onElementClickListener;
constructor(el: HTMLElement, options?: IRemoveElementOptions);
private elementClick;
private init;
private remove;
destroy(): void;
static autoInit(): void;
}
export interface IScrollspy {
options?: {};
destroy(): void;
}
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;
private onScrollableScrollListener;
private onLinkClickListener;
constructor(el: HTMLElement, options?: {});
private scrollableScroll;
private linkClick;
private init;
private update;
private scrollTo;
destroy(): void;
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;
disabled?: boolean;
selected?: boolean;
options?: ISingleOptionOptions | null;
}
export interface IApiFieldMap {
id: string;
val: string;
title: string;
icon?: string | null;
description?: string | null;
[key: string]: unknown;
}
export interface ISelectOptions {
value?: string | string[];
isOpened?: boolean;
placeholder?: string;
hasSearch?: boolean;
preventSearchFocus?: boolean;
mode?: string;
viewport?: string;
wrapperClasses?: string;
apiUrl?: string | null;
apiQuery?: string | null;
apiOptions?: RequestInit | null;
apiDataPart?: string | null;
apiSearchQueryKey?: string | null;
apiFieldsMap?: IApiFieldMap | null;
apiIconTag?: string | null;
toggleTag?: string;
toggleClasses?: string;
toggleSeparators?: {
items?: string;
betweenItemsAndCounter?: string;
};
toggleCountText?: string | null;
toggleCountTextPlacement?: "postfix" | "prefix" | "postfix-no-space" | "prefix-no-space";
toggleCountTextMinItems?: number;
toggleCountTextMode?: string;
tagsItemTemplate?: string;
tagsItemClasses?: string;
tagsInputId?: string;
tagsInputClasses?: string;
dropdownTag?: string;
dropdownClasses?: string;
dropdownDirectionClasses?: {
top?: string;
bottom?: string;
};
dropdownSpace: number;
dropdownPlacement: string | null;
dropdownVerticalFixedPlacement: "top" | "bottom" | null;
dropdownScope: "window" | "parent";
extraMarkup?: string | string[] | null;
searchTemplate?: string;
searchWrapperTemplate?: string;
searchId?: string;
searchLimit?: number | typeof Infinity;
isSearchDirectMatch?: boolean;
searchClasses?: string;
searchWrapperClasses?: string;
searchPlaceholder?: string;
searchNoResultTemplate?: string | null;
searchNoResultText?: string | null;
searchNoResultClasses?: string | null;
optionTemplate?: string;
optionTag?: string;
optionClasses?: string;
descriptionClasses?: string;
iconClasses?: string;
isAddTagOnEnter?: boolean;
}
export interface ISelect {
options?: ISelectOptions;
setValue(val: string | string[]): void;
open(): void;
close(): void;
addOption(items: ISingleOption | ISingleOption[]): void;
removeOption(values: string | string[]): void;
recalculateDirection(): void;
destroy(): void;
}
export declare class HSSelect extends HSBasePlugin<ISelectOptions> implements ISelect {
value: string | string[] | null;
private readonly placeholder;
private readonly hasSearch;
private readonly preventSearchFocus;
private readonly mode;
private readonly viewport;
isOpened: boolean | null;
isMultiple: boolean | null;
isDisabled: boolean | null;
selectedItems: string[];
private readonly apiUrl;
private readonly apiQuery;
private readonly apiOptions;
private readonly apiDataPart;
private readonly apiSearchQueryKey;
private readonly apiFieldsMap;
private readonly apiIconTag;
private readonly toggleTag;
private readonly toggleClasses;
private readonly toggleSeparators;
private readonly toggleCountText;
private readonly toggleCountTextPlacement;
private readonly toggleCountTextMinItems;
private readonly toggleCountTextMode;
private readonly wrapperClasses;
private readonly tagsItemTemplate;
private readonly tagsItemClasses;
private readonly tagsInputId;
private readonly tagsInputClasses;
private readonly dropdownTag;
private readonly dropdownClasses;
private readonly dropdownDirectionClasses;
dropdownSpace: number | null;
readonly dropdownPlacement: string | null;
readonly dropdownVerticalFixedPlacement: "top" | "bottom" | null;
readonly dropdownScope: "window" | "parent";
private readonly searchTemplate;
private readonly searchWrapperTemplate;
private readonly searchPlaceholder;
private readonly searchId;
private readonly searchLimit;
private readonly isSearchDirectMatch;
private readonly searchClasses;
private readonly searchWrapperClasses;
private readonly searchNoResultTemplate;
private readonly searchNoResultText;
private readonly 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 tagsInput;
private dropdown;
private popperInstance;
private searchWrapper;
private search;
private searchNoResult;
private selectOptions;
private extraMarkup;
private readonly isAddTagOnEnter;
private tagsInputHelper;
private remoteOptions;
private optionId;
private onWrapperClickListener;
private onToggleClickListener;
private onTagsInputFocusListener;
private onTagsInputInputListener;
private onTagsInputInputSecondListener;
private onTagsInputKeydownListener;
private onSearchInputListener;
constructor(el: HTMLElement, options?: ISelectOptions);
private wrapperClick;
private toggleClick;
private tagsInputFocus;
private tagsInputInput;
private tagsInputInputSecond;
private tagsInputKeydown;
private searchInput;
setValue(val: string | string[]): void;
private init;
private build;
private buildWrapper;
private buildExtraMarkup;
private buildToggle;
private setToggleIcon;
private setToggleTitle;
private buildTags;
private reassignTagsInputPlaceholder;
private buildTagsItem;
private getItemByValue;
private setTagsItems;
private buildTagsInput;
private buildDropdown;
private buildPopper;
private updateDropdownWidth;
private buildSearch;
private buildOption;
private buildOptionFromRemoteData;
private buildOptionsFromRemoteData;
private optionsFromRemoteData;
private apiRequest;
private sortElements;
private remoteSearch;
private destroyOption;
private buildOriginalOption;
private destroyOriginalOption;
private buildTagsInputHelper;
private calculateInputWidth;
private adjustInputWidth;
private onSelectOption;
private triggerChangeEventForNativeSelect;
private addSelectOption;
private removeSelectOption;
private resetTagsInputField;
private clearSelections;
private setNewValue;
private stringFromValueBasic;
private stringFromValueRemoteData;
private stringFromValue;
private selectSingleItem;
private selectMultipleItems;
private unselectMultipleItems;
private searchOptions;
private eraseToggleIcon;
private eraseToggleTitle;
private toggleFn;
destroy(): void;
open(): boolean;
close(forceFocus?: boolean): boolean;
addOption(items: ISingleOption | ISingleOption[]): void;
removeOption(values: string | string[]): void;
recalculateDirection(): boolean;
static getInstance(target: HTMLElement | string, isInstance?: boolean): HSSelect | ICollectionItem<HSSelect>;
static autoInit(): void;
static open(target: HTMLElement | string): 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;
destroy(): 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;
private onNavItemClickListener;
private onBackClickListener;
private onNextClickListener;
private onSkipClickListener;
private onCompleteStepBtnClickListener;
private onFinishBtnClickListener;
private onResetBtnClickListener;
constructor(el: HTMLElement, options?: IStepperOptions);
private navItemClick;
private backClick;
private nextClick;
private skipClick;
private completeStepBtnClick;
private finishBtnClick;
private resetBtnClick;
private init;
private getUncompletedSteps;
private setTotalSteps;