@nysds/nys-radiobutton 1.5.3 → 1.7.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 +3 -2
- package/dist/nys-radiobutton.js +294 -212
- package/dist/nys-radiobutton.js.map +1 -1
- package/dist/nys-radiogroup.d.ts +12 -3
- package/package.json +3 -3
|
@@ -20,14 +20,15 @@ export declare class NysRadiobutton extends LitElement {
|
|
|
20
20
|
static styles: import("lit").CSSResult;
|
|
21
21
|
/********************** Lifecycle updates **********************/
|
|
22
22
|
connectedCallback(): void;
|
|
23
|
+
disconnectedCallback(): void;
|
|
23
24
|
updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
24
|
-
|
|
25
|
+
/********************** Functions **********************/
|
|
25
26
|
checkValidity(): boolean;
|
|
26
27
|
/******************** Event Handlers ********************/
|
|
27
28
|
private _emitChangeEvent;
|
|
28
29
|
private _handleChange;
|
|
29
30
|
private _handleFocus;
|
|
30
31
|
private _handleBlur;
|
|
31
|
-
private
|
|
32
|
+
private _callInputHandling;
|
|
32
33
|
render(): import("lit-html").TemplateResult<1>;
|
|
33
34
|
}
|