@ardium-ui/ui 5.0.0-alpha.79 → 5.0.0-alpha.80

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.
@@ -12,18 +12,23 @@ export declare class ArdiumRadioComponent extends _FocusableComponentBase {
12
12
  * Emits all select-state-related events.
13
13
  */
14
14
  protected _emitChange(): void;
15
+ protected _emitTouched(): void;
15
16
  /**
16
17
  * The event emitter responsible for firing `select` events. Fired when the `selected` state is set to true.
17
18
  */
18
- readonly selectEvent: import("@angular/core").OutputEmitterRef<null>;
19
+ readonly selectEvent: import("@angular/core").OutputEmitterRef<void>;
19
20
  /**
20
21
  * The event emitter responsible for firing `unselect` events. Fired when the `selected` state is set to false.
21
22
  */
22
- readonly unselectEvent: import("@angular/core").OutputEmitterRef<null>;
23
+ readonly unselectEvent: import("@angular/core").OutputEmitterRef<void>;
23
24
  /**
24
25
  * The event emitter responsible for firing `change` events. Fired when the `selected` state is changed.
25
26
  */
26
27
  readonly changeEvent: import("@angular/core").OutputEmitterRef<boolean>;
28
+ /**
29
+ * The event emitter responsible for firing `touched` events. Fired when the component is marked as touched (e.g., on blur).
30
+ */
31
+ readonly touchedEvent: import("@angular/core").OutputEmitterRef<void>;
27
32
  readonly selected: import("@angular/core").WritableSignal<boolean>;
28
33
  /**
29
34
  * The selection state of the component. Coercible into a boolean.
@@ -59,5 +64,5 @@ export declare class ArdiumRadioComponent extends _FocusableComponentBase {
59
64
  */
60
65
  markForCheck(): void;
61
66
  static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumRadioComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumRadioComponent, "ard-radio", never, { "htmlId": { "alias": "htmlId"; "required": false; "isSignal": true; }; "_selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, { "selectEvent": "select"; "unselectEvent": "unselect"; "changeEvent": "change"; "selectedChange": "selectedChange"; }, never, ["*"], false, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumRadioComponent, "ard-radio", never, { "htmlId": { "alias": "htmlId"; "required": false; "isSignal": true; }; "_selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, { "selectEvent": "select"; "unselectEvent": "unselect"; "changeEvent": "change"; "touchedEvent": "touched"; "selectedChange": "selectedChange"; }, never, ["*"], false, never>;
63
68
  }
@@ -29,7 +29,7 @@ export declare class ArdiumRangeSliderComponent extends _AbstractSlider<SliderRa
29
29
  onPointerMove(event: MouseEvent | TouchEvent): void;
30
30
  protected _percentValueToValue(percent: number, handleId: number): SliderRange;
31
31
  protected readonly _handlePositions: import("@angular/core").Signal<[number, number]>;
32
- readonly currentHandle: import("@angular/core").WritableSignal<2 | 1 | null>;
32
+ readonly currentHandle: import("@angular/core").WritableSignal<1 | 2 | null>;
33
33
  onHandleFocus(event: FocusEvent, handleId: 1 | 2): void;
34
34
  onBlur(event: FocusEvent): void;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumRangeSliderComponent, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ardium-ui/ui",
3
- "version": "5.0.0-alpha.79",
3
+ "version": "5.0.0-alpha.80",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",