ngx-wapp-components 3.2.2 → 3.2.4-alpha.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-wapp-components",
3
- "version": "3.2.2",
3
+ "version": "3.2.4-alpha.2",
4
4
  "description": "This is a Wapping reusable component library published by Wapping.",
5
5
  "keywords": [
6
6
  "code",
@@ -60,4 +60,4 @@
60
60
  }
61
61
  },
62
62
  "type": "module"
63
- }
63
+ }
@@ -2430,20 +2430,27 @@ interface WSelectButtonState {
2430
2430
  label: string;
2431
2431
  value: string;
2432
2432
  icon?: string;
2433
+ class?: string;
2433
2434
  }
2434
2435
 
2435
- declare class WSelectButtonComponent {
2436
+ declare class WSelectButtonComponent implements AfterViewInit {
2437
+ private renderer;
2436
2438
  stateOptions: WSelectButtonState[];
2437
2439
  size: string;
2438
2440
  tooltipPosition: string;
2439
2441
  tooltip: string;
2440
2442
  disabled: boolean;
2441
2443
  formControl: FormControl | null;
2444
+ stateClass: string;
2445
+ allowEmpty: boolean;
2442
2446
  onChangeEvent: EventEmitter<any>;
2443
2447
  sizeType: typeof SizeType;
2448
+ viewSelectorEl: ElementRef;
2444
2449
  onChange: any;
2445
2450
  onTouch: any;
2446
2451
  ngModelValue: any;
2452
+ constructor(renderer: Renderer2);
2453
+ ngAfterViewInit(): void;
2447
2454
  getSizeName(value: number): string;
2448
2455
  writeValue(value: any): void;
2449
2456
  registerOnChange(fn: any): void;
@@ -2452,7 +2459,7 @@ declare class WSelectButtonComponent {
2452
2459
  onButtonChanged(): void;
2453
2460
  onButtonChangedForm(value: any): void;
2454
2461
  static ɵfac: i0.ɵɵFactoryDeclaration<WSelectButtonComponent, never>;
2455
- static ɵcmp: i0.ɵɵComponentDeclaration<WSelectButtonComponent, "w-select-button", never, { "stateOptions": { "alias": "stateOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
2462
+ static ɵcmp: i0.ɵɵComponentDeclaration<WSelectButtonComponent, "w-select-button", never, { "stateOptions": { "alias": "stateOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "stateClass": { "alias": "stateClass"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; }, { "onChangeEvent": "onChange"; }, never, never, false, never>;
2456
2463
  }
2457
2464
 
2458
2465
  interface WAddress {