@wizishop/angular-components 0.0.110 → 0.0.113

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.
@@ -18,7 +18,7 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
18
18
  confirmDeleteText: string;
19
19
  confirmDeletePosition: string;
20
20
  click: EventEmitter<MouseEvent>;
21
- set isLoading(value: boolean);
21
+ set isLoading(isLoading: boolean);
22
22
  isLoadingChange: EventEmitter<boolean>;
23
23
  get isLoading(): boolean;
24
24
  private _isLoading;
@@ -33,7 +33,7 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
33
33
  calculWidthDelete: ElementRef;
34
34
  constructor();
35
35
  ngOnInit(): void;
36
- launchLoading(): void;
36
+ toggleLoading(): void;
37
37
  addMaxWidth(): void;
38
38
  resetMaxWidth(): void;
39
39
  addMaxWidthDelete(): void;
@@ -1,7 +1,9 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { SelectedListOption } from './shared/selected-list-option.model';
3
3
  export declare class SelectedListComponent implements OnInit {
4
- options: SelectedListOption[];
4
+ _options: SelectedListOption[];
5
+ set options(options: SelectedListOption[]);
6
+ get options(): SelectedListOption[];
5
7
  label: string;
6
8
  textSelectAll: string;
7
9
  textUnSelectAll: string;
@@ -12,8 +14,9 @@ export declare class SelectedListComponent implements OnInit {
12
14
  selectedOptionIndex: any[];
13
15
  switchSelectAll: boolean;
14
16
  ngOnInit(): void;
15
- selectAll(): void;
16
- checkSelectedItem(): void;
17
- unSelectAll(): void;
18
- selectItem(i: any): void;
17
+ onSelectAll(): void;
18
+ onUnSelectAll(): void;
19
+ onSelectItem(index: number): void;
20
+ areAllOptionsChecked(): boolean;
21
+ private handleSwitchSelectAll;
19
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "0.0.110",
3
+ "version": "0.0.113",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^11.2.12",
6
6
  "@angular/core": "^11.2.12",