@wizishop/angular-components 0.0.112 → 0.0.115

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.
@@ -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
- selectAll(): void;
16
- checkSelectedItem(): void;
17
- unSelectAll(): void;
18
- selectItem(i: any): void;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "0.0.112",
3
+ "version": "0.0.115",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^11.2.12",
6
6
  "@angular/core": "^11.2.12",
package/public-api.d.ts CHANGED
@@ -53,6 +53,7 @@ export * from './lib/directives/abstract-debounce/debounce-keyup.directive';
53
53
  export * from './lib/directives/abstract-debounce/abstract-debounce.directive';
54
54
  export * from './lib/directives/auto-hide/auto-hide.directive';
55
55
  export * from './lib/directives/zindex-toggle/zindex-toggle.directive';
56
+ export * from './lib/directives/ng-var.directive';
56
57
  export * from './lib/models/html-container.model';
57
58
  export * from './lib/components/selects/call-to-action.model';
58
59
  export * from './lib/components/table/shared/filters-table.service';
@@ -81,3 +82,4 @@ export * from './lib/pipes/shared-pipes.module';
81
82
  export * from './lib/pipes/tree/format-object-to-recursif-tree.pipe';
82
83
  export * from './lib/pipes/tree/format-object-to-simple-tree.pipe';
83
84
  export * from './lib/pipes/select/select-filters.pipe';
85
+ export * from './lib/pipes/selected-list/are-all-options-selected.pipe';