igniteui-angular 15.0.14 → 15.0.15
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/esm2020/lib/directives/radio/radio-group.directive.mjs +52 -6
- package/esm2020/lib/grids/grid-base.directive.mjs +3 -2
- package/esm2020/lib/radio/radio.component.mjs +13 -2
- package/fesm2015/igniteui-angular.mjs +123 -66
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +121 -64
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/directives/radio/radio-group.directive.d.ts +5 -0
- package/lib/radio/radio.component.d.ts +10 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterContentInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { IChangeRadioEventArgs, IgxRadioComponent } from '../../radio/radio.component';
|
|
4
|
+
import { IgxDirectionality } from '../../services/direction/directionality';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
import * as i1 from "../../radio/radio.component";
|
|
6
7
|
import * as i2 from "../ripple/ripple.directive";
|
|
@@ -36,6 +37,7 @@ export declare type RadioGroupAlignment = typeof RadioGroupAlignment[keyof typeo
|
|
|
36
37
|
* ```
|
|
37
38
|
*/
|
|
38
39
|
export declare class IgxRadioGroupDirective implements AfterContentInit, ControlValueAccessor, OnDestroy {
|
|
40
|
+
private _directionality;
|
|
39
41
|
private static ngAcceptInputType_required;
|
|
40
42
|
/**
|
|
41
43
|
* Returns reference to the child radio buttons.
|
|
@@ -119,6 +121,8 @@ export declare class IgxRadioGroupDirective implements AfterContentInit, Control
|
|
|
119
121
|
* ```
|
|
120
122
|
*/
|
|
121
123
|
private vertical;
|
|
124
|
+
protected handleClick(event: MouseEvent): void;
|
|
125
|
+
protected handleKeyDown(event: KeyboardEvent): void;
|
|
122
126
|
/**
|
|
123
127
|
* Returns the alignment of the `igx-radio-group`.
|
|
124
128
|
* ```typescript
|
|
@@ -219,6 +223,7 @@ export declare class IgxRadioGroupDirective implements AfterContentInit, Control
|
|
|
219
223
|
* @internal
|
|
220
224
|
*/
|
|
221
225
|
ngOnDestroy(): void;
|
|
226
|
+
constructor(_directionality: IgxDirectionality);
|
|
222
227
|
/**
|
|
223
228
|
* @hidden
|
|
224
229
|
* @internal
|
|
@@ -53,6 +53,15 @@ export declare class IgxRadioComponent implements ControlValueAccessor, EditorPr
|
|
|
53
53
|
* @memberof IgxSwitchComponent
|
|
54
54
|
*/
|
|
55
55
|
nativeLabel: ElementRef;
|
|
56
|
+
/**
|
|
57
|
+
* Gets the `nativeElement` of the igx-radio.
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* ```typescript
|
|
61
|
+
* let igxRadioNativeElement = this.igxRadio.nativeElement;
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
get nativeElement(): any;
|
|
56
65
|
/**
|
|
57
66
|
* Returns reference to the label placeholder element.
|
|
58
67
|
* ```typescript
|
|
@@ -277,7 +286,7 @@ export declare class IgxRadioComponent implements ControlValueAccessor, EditorPr
|
|
|
277
286
|
* @hidden
|
|
278
287
|
* @internal
|
|
279
288
|
*/
|
|
280
|
-
_changed(): void;
|
|
289
|
+
_changed(event: Event): void;
|
|
281
290
|
/**
|
|
282
291
|
* @hidden
|
|
283
292
|
* @internal
|
package/package.json
CHANGED