slick-components 4.4.24 → 4.4.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slick-components",
3
- "version": "4.4.24",
3
+ "version": "4.4.26",
4
4
  "dependencies": {
5
5
  "bootstrap": "4.6.2",
6
6
  "moment": "2.29.4",
package/public-api.d.ts CHANGED
@@ -32,6 +32,7 @@ export { SlickProgressBarModule, SlickProgressBarService } from "./slick-progres
32
32
  export { SlickScreenBlockerModule, SlickScreenBlockerService } from "./slick-screen-blocker/slick-screen-blocker.module";
33
33
  export { SlickSliderModule, SlickSliderComponent, ISlickSliderTickModel, SlickSliderTickModel } from "./slick-slider/slick-slider.module";
34
34
  export { SlickSplitScreenModule, SlickSplitScreenComponent, SlickSplitScreenLeftContentComponent, SlickSplitScreenRightContentComponent } from "./slick-split-screen/slick-split-screen.module";
35
+ export { SlickStarRatingModule, SlickStarRatingComponent } from "./slick-star-rating/slick-star-rating.module";
35
36
  export { SlickTabsModule, SlickTabComponent, SlickTabsComponent, SlickTabHeaderComponent } from "./slick-tabs/slick-tabs.module";
36
37
  export { SlickToastModule, SlickToastService } from "./slick-toast/slick-toast.module";
37
38
  export { SlickTreeViewModule, SlickTreeViewComponent, ISlickTreeNodeModel, SlickTreeNodeModel } from "./slick-tree-view/slick-tree-view.module";
@@ -2,6 +2,11 @@ import { NgZone, EventEmitter, ElementRef, AfterViewInit, OnDestroy, OnChanges,
2
2
  import { SlickMultiSelectService } from "./slick-multi-select.service";
3
3
  import { ControlValueAccessor } from "@angular/forms";
4
4
  import * as i0 from "@angular/core";
5
+ export declare enum SlickMultiSelectSearchTypes {
6
+ startsWith = 0,
7
+ eachWord = 1,
8
+ any = 2
9
+ }
5
10
  export declare class SlickMultiSelectComponent implements AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
6
11
  private ngZone;
7
12
  private slickMultiSelectService;
@@ -20,6 +25,7 @@ export declare class SlickMultiSelectComponent implements AfterViewInit, OnChang
20
25
  showDebug: boolean;
21
26
  tabindex: number;
22
27
  isMobile: boolean;
28
+ searchType: SlickMultiSelectSearchTypes;
23
29
  onExpand: EventEmitter<void>;
24
30
  onCollapse: EventEmitter<void>;
25
31
  onSelect: EventEmitter<string>;
@@ -63,5 +69,5 @@ export declare class SlickMultiSelectComponent implements AfterViewInit, OnChang
63
69
  onItemClick(item: any): void;
64
70
  onRemoveItem(item: any): void;
65
71
  static ɵfac: i0.ɵɵFactoryDeclaration<SlickMultiSelectComponent, never>;
66
- static ɵcmp: i0.ɵɵComponentDeclaration<SlickMultiSelectComponent, "slick-multi-select", never, { "placeholder": "placeholder"; "items": "items"; "idFieldName": "idFieldName"; "textFieldName": "textFieldName"; "disabled": "disabled"; "allowEmpty": "allowEmpty"; "singleSelect": "singleSelect"; "width": "width"; "listWidth": "listWidth"; "height": "height"; "showLoadingMessage": "showLoadingMessage"; "showDebug": "showDebug"; "tabindex": "tabindex"; "isMobile": "isMobile"; }, { "onExpand": "onExpand"; "onCollapse": "onCollapse"; "onSelect": "onSelect"; }, never, never, false>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<SlickMultiSelectComponent, "slick-multi-select", never, { "placeholder": "placeholder"; "items": "items"; "idFieldName": "idFieldName"; "textFieldName": "textFieldName"; "disabled": "disabled"; "allowEmpty": "allowEmpty"; "singleSelect": "singleSelect"; "width": "width"; "listWidth": "listWidth"; "height": "height"; "showLoadingMessage": "showLoadingMessage"; "showDebug": "showDebug"; "tabindex": "tabindex"; "isMobile": "isMobile"; "searchType": "searchType"; }, { "onExpand": "onExpand"; "onCollapse": "onCollapse"; "onSelect": "onSelect"; }, never, never, false>;
67
73
  }
@@ -0,0 +1,28 @@
1
+ import { OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ declare class Star {
4
+ constructor(selected: boolean);
5
+ selected: boolean;
6
+ }
7
+ export declare class SlickStarRatingComponent implements OnChanges {
8
+ protected stars: Star[];
9
+ private ratingValue;
10
+ checkedcolor: string;
11
+ uncheckedcolor: string;
12
+ size: string;
13
+ readonly: boolean;
14
+ totalstars: number;
15
+ constructor();
16
+ ngOnChanges(changes: SimpleChanges): void;
17
+ propagateChange: (_: any) => void;
18
+ writeValue(obj: number): void;
19
+ registerOnChange(fn: any): void;
20
+ registerOnTouched(): void;
21
+ reset(): void;
22
+ onMouseEnter(starIdx: number): void;
23
+ setRatingValue(starIdx: number): void;
24
+ private generateStars;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<SlickStarRatingComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<SlickStarRatingComponent, "slick-star-rating", never, { "checkedcolor": "checkedcolor"; "uncheckedcolor": "uncheckedcolor"; "size": "size"; "readonly": "readonly"; "totalstars": "totalstars"; }, {}, never, never, false>;
27
+ }
28
+ export {};
@@ -0,0 +1,12 @@
1
+ import { SlickStarRatingComponent } from "./slick-star-rating.component";
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./slick-star-rating.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@angular/forms";
6
+ import * as i4 from "../slick-calendar/slick-calendar.module";
7
+ export declare class SlickStarRatingModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SlickStarRatingModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SlickStarRatingModule, [typeof i1.SlickStarRatingComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.SlickCalendarModule], [typeof i1.SlickStarRatingComponent, typeof i4.SlickCalendarModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<SlickStarRatingModule>;
11
+ }
12
+ export { SlickStarRatingComponent };