@wizishop/angular-components 0.0.111 → 0.0.114
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 +97 -69
- 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 +13 -21
- package/esm2015/lib/components/selected-list/selected-list.component.js +17 -32
- package/esm2015/lib/directives/ng-var.directive.js +33 -0
- package/esm2015/lib/directives/shared-directives.module.js +3 -2
- package/esm2015/lib/pipes/selected-list/are-all-options-selected.pipe.js +13 -0
- package/esm2015/lib/pipes/shared-pipes.module.js +4 -2
- package/esm2015/wizishop-angular-components.js +16 -14
- package/fesm2015/wizishop-angular-components.js +77 -57
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/button/button.component.d.ts +1 -1
- package/lib/components/selected-list/selected-list.component.d.ts +4 -5
- package/lib/directives/ng-var.directive.d.ts +9 -0
- package/lib/pipes/selected-list/are-all-options-selected.pipe.d.ts +5 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.114.tgz +0 -0
- package/wizishop-angular-components.d.ts +15 -13
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.111.tgz +0 -0
|
@@ -33,7 +33,7 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
|
|
|
33
33
|
calculWidthDelete: ElementRef;
|
|
34
34
|
constructor();
|
|
35
35
|
ngOnInit(): void;
|
|
36
|
-
|
|
36
|
+
toggleLoading(): void;
|
|
37
37
|
addMaxWidth(): void;
|
|
38
38
|
resetMaxWidth(): void;
|
|
39
39
|
addMaxWidthDelete(): void;
|
|
@@ -10,10 +10,9 @@ export declare class SelectedListComponent implements OnInit {
|
|
|
10
10
|
selectedItemsAll: EventEmitter<number[]>;
|
|
11
11
|
unSelectedItemsAll: EventEmitter<number[]>;
|
|
12
12
|
selectedOptionIndex: any[];
|
|
13
|
-
switchSelectAll: boolean;
|
|
14
13
|
ngOnInit(): void;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
onSelectAll(): void;
|
|
15
|
+
onUnSelectAll(): void;
|
|
16
|
+
onSelectItem(index: number): void;
|
|
17
|
+
areAllOptionsChecked(): boolean;
|
|
19
18
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
export declare class VarDirective {
|
|
3
|
+
private templateRef;
|
|
4
|
+
private vcRef;
|
|
5
|
+
set ngVar(context: unknown);
|
|
6
|
+
private context;
|
|
7
|
+
private hasView;
|
|
8
|
+
constructor(templateRef: TemplateRef<any>, vcRef: ViewContainerRef);
|
|
9
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SelectedListOption } from '../../components/selected-list/shared/selected-list-option.model';
|
|
3
|
+
export declare class AreAllOptionsSelectedPipe implements PipeTransform {
|
|
4
|
+
transform(options: SelectedListOption[]): boolean;
|
|
5
|
+
}
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -2,17 +2,19 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { inOutX as
|
|
6
|
-
export { inOutY as
|
|
7
|
-
export { CheckboxModule as
|
|
8
|
-
export { InputSearchModule as
|
|
9
|
-
export { InputModule as
|
|
10
|
-
export { LoaderModule as
|
|
11
|
-
export { PaginationModule as
|
|
12
|
-
export { PagniationArrayTotalPages as
|
|
13
|
-
export { PagniationText as
|
|
14
|
-
export { PagniationIsLastPage as
|
|
15
|
-
export { ProgressBarModule as
|
|
16
|
-
export { TableModule as
|
|
17
|
-
export { TooltipModule as
|
|
5
|
+
export { inOutX as ɵp } from './lib/animations/in-out/in-out-x.animation';
|
|
6
|
+
export { inOutY as ɵo } from './lib/animations/in-out/in-out-y.animation';
|
|
7
|
+
export { CheckboxModule as ɵn } from './lib/components/checkbox/checkbox.module';
|
|
8
|
+
export { InputSearchModule as ɵi } from './lib/components/inputs/input-search/input-search.module';
|
|
9
|
+
export { InputModule as ɵj } from './lib/components/inputs/input/input.module';
|
|
10
|
+
export { LoaderModule as ɵm } from './lib/components/loader/loader.module';
|
|
11
|
+
export { PaginationModule as ɵd } from './lib/components/pagination/pagination.module';
|
|
12
|
+
export { PagniationArrayTotalPages as ɵe } from './lib/components/pagination/pipes/array-pages.pipe';
|
|
13
|
+
export { PagniationText as ɵg } from './lib/components/pagination/pipes/custom-text.pipe';
|
|
14
|
+
export { PagniationIsLastPage as ɵf } from './lib/components/pagination/pipes/is-last-page.pipe';
|
|
15
|
+
export { ProgressBarModule as ɵl } from './lib/components/progress-bar/progress-bar.module';
|
|
16
|
+
export { TableModule as ɵh } from './lib/components/table/table.module';
|
|
17
|
+
export { TooltipModule as ɵk } from './lib/components/tooltip/tooltip.module';
|
|
18
|
+
export { VarDirective as ɵb } from './lib/directives/ng-var.directive';
|
|
19
|
+
export { AreAllOptionsSelectedPipe as ɵc } from './lib/pipes/selected-list/are-all-options-selected.pipe';
|
|
18
20
|
export { DomService as ɵa } from './lib/services/dom.service';
|