@nysds/nys-radiobutton 1.1.8 → 1.2.0
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/dist/nys-radiobutton.d.ts +2 -0
- package/dist/nys-radiobutton.js +472 -338
- package/dist/nys-radiobutton.js.map +1 -1
- package/dist/nys-radiogroup.d.ts +3 -0
- package/package.json +11 -9
|
@@ -13,6 +13,7 @@ export declare class NysRadiobutton extends LitElement {
|
|
|
13
13
|
private _size;
|
|
14
14
|
get size(): (typeof NysRadiobutton.VALID_SIZES)[number];
|
|
15
15
|
set size(value: string);
|
|
16
|
+
tile: boolean;
|
|
16
17
|
getInputElement(): Promise<HTMLInputElement | null>;
|
|
17
18
|
formResetUpdate(): void;
|
|
18
19
|
static buttonGroup: Record<string, NysRadiobutton>;
|
|
@@ -23,6 +24,7 @@ export declare class NysRadiobutton extends LitElement {
|
|
|
23
24
|
/******************** Function ********************/
|
|
24
25
|
checkValidity(): boolean;
|
|
25
26
|
/******************** Event Handlers ********************/
|
|
27
|
+
private _emitChangeEvent;
|
|
26
28
|
private _handleChange;
|
|
27
29
|
private _handleFocus;
|
|
28
30
|
private _handleBlur;
|