@wizishop/angular-components 0.0.158 → 0.0.162

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.
Files changed (25) hide show
  1. package/angular-components.scss +232 -2
  2. package/bundles/wizishop-angular-components.umd.js +113 -6
  3. package/bundles/wizishop-angular-components.umd.js.map +1 -1
  4. package/bundles/wizishop-angular-components.umd.min.js +2 -2
  5. package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
  6. package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +40 -0
  7. package/esm2015/lib/components/confirm-delete/confirm-delete.component.js +36 -0
  8. package/esm2015/lib/components/header-page/header-page.component.js +5 -3
  9. package/esm2015/lib/components/hn/h1/h1.component.js +5 -3
  10. package/esm2015/lib/components/mosaic/mosaic.component.js +20 -0
  11. package/esm2015/lib/components/shared-components.module.js +8 -2
  12. package/esm2015/lib/components/text-area/text-area.component.js +3 -2
  13. package/esm2015/public-api.js +4 -1
  14. package/fesm2015/wizishop-angular-components.js +108 -7
  15. package/fesm2015/wizishop-angular-components.js.map +1 -1
  16. package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +14 -0
  17. package/lib/components/confirm-delete/confirm-delete.component.d.ts +14 -0
  18. package/lib/components/header-page/header-page.component.d.ts +1 -0
  19. package/lib/components/hn/h1/h1.component.d.ts +1 -0
  20. package/lib/components/mosaic/mosaic.component.d.ts +7 -0
  21. package/package.json +1 -1
  22. package/public-api.d.ts +3 -0
  23. package/wizishop-angular-components-0.0.162.tgz +0 -0
  24. package/wizishop-angular-components.metadata.json +1 -1
  25. package/wizishop-angular-components-0.0.158.tgz +0 -0
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ export declare class BlockWithCheckboxComponent implements OnInit {
3
+ selected: boolean;
4
+ iconCopy: string;
5
+ iconWorld: string;
6
+ copyAction: EventEmitter<boolean>;
7
+ worldAction: EventEmitter<boolean>;
8
+ checkboxAction: EventEmitter<boolean>;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ eventSelected(event: any): void;
12
+ eventCopy(): void;
13
+ eventWorld(): void;
14
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ export declare class ConfirmDeleteComponent implements OnInit {
3
+ open: boolean;
4
+ label: string;
5
+ labelCancel: string;
6
+ labelConfirm: string;
7
+ confirm: EventEmitter<boolean>;
8
+ backgroundColor: string;
9
+ borderRadius: string;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ eventCancel(event: any): void;
13
+ eventConfirm(event: any): void;
14
+ }
@@ -3,6 +3,7 @@ export declare class HeaderPageComponent implements OnInit {
3
3
  title: string;
4
4
  linkBack: string;
5
5
  withImg: boolean;
6
+ center: boolean;
6
7
  constructor();
7
8
  ngOnInit(): void;
8
9
  }
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  export declare class H1Component implements OnInit {
3
3
  annotation: string;
4
4
  withImg: boolean;
5
+ center: boolean;
5
6
  constructor();
6
7
  ngOnInit(): void;
7
8
  }
@@ -0,0 +1,7 @@
1
+ import { OnInit } from '@angular/core';
2
+ export declare class MosaicComponent implements OnInit {
3
+ items: [];
4
+ isLoading: boolean;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "0.0.158",
3
+ "version": "0.0.162",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^11.2.12",
6
6
  "@angular/core": "^11.2.12",
package/public-api.d.ts CHANGED
@@ -75,7 +75,10 @@ export * from './lib/components/alert-popup/alert-popup-module';
75
75
  export * from './lib/components/wrapper-sidebar/wrapper-sidebar.component';
76
76
  export * from './lib/components/breadcrumbs/breadcrumbs.component';
77
77
  export * from './lib/components/token-check/token-check.component';
78
+ export * from './lib/components/block-with-checkbox/block-with-checkbox.component';
79
+ export * from './lib/components/confirm-delete/confirm-delete.component';
78
80
  export * from './lib/components/search/search.component';
81
+ export * from './lib/components/mosaic/mosaic.component';
79
82
  export * from './lib/components/selected-list/selected-list.component';
80
83
  export * from './lib/components/selected-list/shared/selected-list-option.model';
81
84
  export * from './lib/components/search/shared/search-option.model';