ngx-wapp-components 1.0.4 → 1.0.6

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.
@@ -1,15 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ButtonType, SizeType } from '../../shared/enums/enum';
2
3
  import * as i0 from "@angular/core";
3
- declare enum SizeType {
4
- small = 0,
5
- medium = 1,
6
- large = 2
7
- }
8
- declare enum ButtonType {
9
- primary = 0,
10
- secondary = 1,
11
- tertiary = 2
12
- }
13
4
  export declare class WButtonComponent implements OnInit {
14
5
  type: string;
15
6
  label: string;
@@ -27,4 +18,3 @@ export declare class WButtonComponent implements OnInit {
27
18
  static ɵfac: i0.ɵɵFactoryDeclaration<WButtonComponent, never>;
28
19
  static ɵcmp: i0.ɵɵComponentDeclaration<WButtonComponent, "w-button", never, { "type": "type"; "label": "label"; "size": "size"; "icon": "icon"; "disabled": "disabled"; }, { "onClick": "onClick"; }, never, never, false, never>;
29
20
  }
30
- export {};
@@ -1,12 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
+ import { SizeType } from '../../shared/enums/enum';
4
5
  import * as i0 from "@angular/core";
5
- declare enum SizeType {
6
- small = 0,
7
- medium = 1,
8
- large = 2
9
- }
10
6
  export declare class WEditMultiselectComponent implements OnInit, ControlValueAccessor {
11
7
  label: string;
12
8
  placeholder: string;
@@ -33,4 +29,3 @@ export declare class WEditMultiselectComponent implements OnInit, ControlValueAc
33
29
  static ɵfac: i0.ɵɵFactoryDeclaration<WEditMultiselectComponent, never>;
34
30
  static ɵcmp: i0.ɵɵComponentDeclaration<WEditMultiselectComponent, "w-edit-multiselect", never, { "label": "label"; "placeholder": "placeholder"; "disabled": "disabled"; "size": "size"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "appendTo": "appendTo"; "formControl": "formControl"; "errorDescription": "errorDescription"; }, {}, never, never, false, never>;
35
31
  }
36
- export {};
@@ -1,11 +1,7 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, FormControl } from '@angular/forms';
3
+ import { SizeType } from '../../shared/enums/enum';
3
4
  import * as i0 from "@angular/core";
4
- declare enum SizeType {
5
- small = 0,
6
- medium = 1,
7
- large = 2
8
- }
9
5
  export declare class WEditSelectComponent implements OnInit, ControlValueAccessor {
10
6
  label: string;
11
7
  placeholder: string;
@@ -34,4 +30,3 @@ export declare class WEditSelectComponent implements OnInit, ControlValueAccesso
34
30
  static ɵfac: i0.ɵɵFactoryDeclaration<WEditSelectComponent, never>;
35
31
  static ɵcmp: i0.ɵɵComponentDeclaration<WEditSelectComponent, "w-edit-select", never, { "label": "label"; "placeholder": "placeholder"; "size": "size"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "appendTo": "appendTo"; "formControl1": "formControl"; "errorDescription": "errorDescription"; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
36
32
  }
37
- export {};
@@ -1,11 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor, FormControl } from '@angular/forms';
3
+ import { SizeType } from '../../shared/enums/enum';
3
4
  import * as i0 from "@angular/core";
4
- declare enum SizeType {
5
- small = 0,
6
- medium = 1,
7
- large = 2
8
- }
9
5
  export declare class WEditTreeselectComponent implements OnInit, ControlValueAccessor {
10
6
  label: string;
11
7
  placeholder: string;
@@ -30,4 +26,3 @@ export declare class WEditTreeselectComponent implements OnInit, ControlValueAcc
30
26
  static ɵfac: i0.ɵɵFactoryDeclaration<WEditTreeselectComponent, never>;
31
27
  static ɵcmp: i0.ɵɵComponentDeclaration<WEditTreeselectComponent, "w-edit-treeselect", never, { "label": "label"; "placeholder": "placeholder"; "disabled": "disabled"; "size": "size"; "options": "options"; "formControl": "formControl"; "errorDescription": "errorDescription"; "filterBy": "filterBy"; }, {}, never, never, false, never>;
32
28
  }
33
- export {};
@@ -1,5 +1,9 @@
1
+ import { EventEmitter } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class WHeaderPanelComponent {
4
+ showButtonBack: boolean;
5
+ onClcikButtonBack: EventEmitter<any>;
6
+ onButtonBack(event: any): void;
3
7
  static ɵfac: i0.ɵɵFactoryDeclaration<WHeaderPanelComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<WHeaderPanelComponent, "w-header-panel", never, {}, {}, never, [".main-actions", ".secondary-actions"], false, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<WHeaderPanelComponent, "w-header-panel", never, { "showButtonBack": "showButtonBack"; }, { "onClcikButtonBack": "onClickButtonBack"; }, never, [".main-actions", ".secondary-actions"], false, never>;
5
9
  }
@@ -1,4 +1,11 @@
1
1
  export declare enum SizeType {
2
2
  small = 0,
3
- medium = 1
3
+ medium = 1,
4
+ large = 2
5
+ }
6
+ export declare enum ButtonType {
7
+ primary = 0,
8
+ secondary = 1,
9
+ tertiary = 2,
10
+ text = 3
4
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-wapp-components",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "This is a Wapping reusable component library published by Wapping.",
5
5
  "keywords": [
6
6
  "code",