@wizishop/angular-components 0.0.112 → 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.
- package/angular-components.scss +4765 -4765
- package/bundles/wizishop-angular-components.umd.js +31 -45
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/button/button.component.js +1 -15
- package/esm2015/lib/components/selected-list/selected-list.component.js +28 -29
- package/fesm2015/wizishop-angular-components.js +27 -42
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/selected-list/selected-list.component.d.ts +8 -5
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.113.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.112.tgz +0 -0
|
@@ -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
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
onSelectAll(): void;
|
|
18
|
+
onUnSelectAll(): void;
|
|
19
|
+
onSelectItem(index: number): void;
|
|
20
|
+
areAllOptionsChecked(): boolean;
|
|
21
|
+
private handleSwitchSelectAll;
|
|
19
22
|
}
|
package/package.json
CHANGED
|
Binary file
|