@wizishop/angular-components 0.0.247 → 0.0.251

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.
@@ -0,0 +1,6 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class ChargingBarComponent implements OnInit {
3
+ value: number;
4
+ constructor();
5
+ ngOnInit(): void;
6
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class ExpandedPanelComponent implements OnInit {
3
+ label: string;
4
+ section: boolean;
5
+ open: boolean;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ }
@@ -13,10 +13,11 @@ export declare class PopinComponent implements OnInit {
13
13
  visibleChange: EventEmitter<any>;
14
14
  response: EventEmitter<any>;
15
15
  background: boolean;
16
+ closeOnBackgroundClick: boolean;
16
17
  firstOpen: boolean;
17
18
  constructor(domService: DomService);
18
19
  ngOnInit(): void;
19
20
  validatePopin(): void;
20
21
  refusePopin(): void;
21
- closePopin(): void;
22
+ closePopin(clickOnBackground?: boolean): void;
22
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "0.0.247",
3
+ "version": "0.0.251",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^11.2.12",
6
6
  "@angular/core": "^11.2.12",
package/public-api.d.ts CHANGED
@@ -63,6 +63,7 @@ export * from './lib/components/free-popin/free-popin.component';
63
63
  export * from './lib/components/block/block.component';
64
64
  export * from './lib/components/wrapper/wrapper.component';
65
65
  export * from './lib/components/filters/filters.component';
66
+ export * from './lib/components/expanded-panel/expanded-panel.component';
66
67
  export * from './lib/components/filters/filter-item.dto';
67
68
  export * from './lib/components/wrapper-blocs/wrapper-blocs.component';
68
69
  export * from './lib/components/card-price/card-price.component';
@@ -78,6 +79,7 @@ export * from './lib/components/token-check/token-check.component';
78
79
  export * from './lib/components/block-with-checkbox/block-with-checkbox.component';
79
80
  export * from './lib/components/confirm-delete/confirm-delete.component';
80
81
  export * from './lib/components/search/search.component';
82
+ export * from './lib/components/charging-bar/charging-bar.component';
81
83
  export * from './lib/components/mosaic/mosaic.component';
82
84
  export * from './lib/components/content-with-buttons/content-with-buttons.component';
83
85
  export * from './lib/components/wrapper-multiple-block/wrapper-multiple-block.component';