@wizishop/angular-components 0.0.166 → 0.0.170

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.
@@ -9,6 +9,7 @@ export declare class BlockWithCheckboxComponent implements OnInit {
9
9
  randomLabelName: string;
10
10
  nameRadio: string;
11
11
  isFirst: boolean;
12
+ opacity: string;
12
13
  constructor();
13
14
  ngOnInit(): void;
14
15
  eventSelected(event: any): void;
@@ -31,6 +31,8 @@ export declare class InputComponent implements ControlValueAccessor {
31
31
  disabled: boolean;
32
32
  indication: boolean;
33
33
  success: boolean;
34
+ maxlength: number | string;
35
+ minlength: number | string;
34
36
  indicationLeft: boolean;
35
37
  keypressEnter: EventEmitter<boolean>;
36
38
  private KEYPRESS_ENTER;
@@ -1,15 +1,21 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- export declare class MosaicComponent implements OnInit {
3
- items: [];
1
+ import { EventEmitter, TemplateRef } from '@angular/core';
2
+ export declare type ImageSource = string;
3
+ export declare type ImageAlt = string;
4
+ export declare type MosaicImage = {
5
+ src: ImageSource;
6
+ alt: ImageAlt;
7
+ };
8
+ export declare class MosaicComponent {
9
+ set imagesList(imagesList: MosaicImage[]);
10
+ get imagesList(): MosaicImage[];
11
+ _imagesList: MosaicImage[];
4
12
  isLoading: boolean;
5
- labelButtons: string;
6
- iconButtons: string;
7
- import: EventEmitter<any>;
8
- columnLeft: [];
9
- columnRight: [];
10
- columnCenter: [];
13
+ numberOfColumn: number;
14
+ importButtonTemplate: TemplateRef<any>;
15
+ importImageSrc: EventEmitter<string>;
16
+ columns: MosaicImage[][];
11
17
  constructor();
12
- ngOnInit(): void;
13
- emitIndex(index: any): void;
14
- sliceIntoChunks(arr: any, chunkSize: any): any[];
18
+ generateColumns(): void;
19
+ sliceIntoChunks(): MosaicImage[][];
20
+ onImportImage(src: ImageSource): void;
15
21
  }
@@ -7,11 +7,12 @@ export declare class TextAreaComponent implements ControlValueAccessor {
7
7
  textError: any;
8
8
  size: any;
9
9
  min: any;
10
- maxlength: number | string;
11
10
  max: any;
12
11
  dynamicSize: boolean;
13
12
  progressBar: boolean;
14
13
  disabled: boolean;
14
+ maxlength: number | string;
15
+ minlength: number | string;
15
16
  id: string;
16
17
  private _onChange;
17
18
  private _onTouched;
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  export declare class WrapperSidebarComponent implements OnInit {
3
3
  reverse: boolean;
4
+ backgroundGrey: string;
4
5
  constructor();
5
6
  ngOnInit(): void;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "0.0.166",
3
+ "version": "0.0.170",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^11.2.12",
6
6
  "@angular/core": "^11.2.12",