ud-components 0.1.9 → 0.2.1

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,6 +1,6 @@
1
1
  import { EditOptions, SummaryField } from './summary-view.interface';
2
2
  import * as i0 from "@angular/core";
3
- type LAYOUTS = 'text-left' | 'text-right' | 'text-all' | 'text-none';
3
+ type LAYOUTS = 'text-left' | 'text-right' | 'text-all' | 'text-none' | 'text-top';
4
4
  export declare class SummaryViewComponent {
5
5
  title: string | null;
6
6
  editOptions: EditOptions | null;
@@ -1,4 +1,4 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ToggleComponent implements ControlValueAccessor, OnInit, OnDestroy {
@@ -15,7 +15,8 @@ export declare class ToggleComponent implements ControlValueAccessor, OnInit, On
15
15
  isDisabled: boolean;
16
16
  private controlContainer;
17
17
  private destroy$;
18
- private onChange;
18
+ onChange: EventEmitter<boolean>;
19
+ private _onChange;
19
20
  private onTouched;
20
21
  private get formControl();
21
22
  ngOnInit(): void;
@@ -26,5 +27,5 @@ export declare class ToggleComponent implements ControlValueAccessor, OnInit, On
26
27
  registerOnTouched(fn: () => void): void;
27
28
  setDisabledState(isDisabled: boolean): void;
28
29
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ud-toggle", never, { "controlName": { "alias": "controlName"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ud-toggle", never, { "controlName": { "alias": "controlName"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
30
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ud-components",
3
- "version": "0.1.9",
3
+ "version": "0.2.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0"