@nysds/nys-checkbox 1.1.0 → 1.1.2

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/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./nys-checkbox";
2
+ export * from "./nys-checkboxgroup";
@@ -12,11 +12,12 @@ export declare class NysCheckbox extends LitElement {
12
12
  value: string;
13
13
  showError: boolean;
14
14
  errorMessage: string;
15
+ groupExist: boolean;
15
16
  private static readonly VALID_SIZES;
16
17
  private _size;
17
18
  get size(): (typeof NysCheckbox.VALID_SIZES)[number];
18
19
  set size(value: string);
19
- getInputElement(): Promise<HTMLInputElement | null | undefined>;
20
+ getInputElement(): Promise<HTMLInputElement | null>;
20
21
  static styles: import("lit").CSSResult;
21
22
  private _internals;
22
23
  /********************** Lifecycle updates **********************/
@@ -32,6 +33,7 @@ export declare class NysCheckbox extends LitElement {
32
33
  private _setValidityMessage;
33
34
  private _validate;
34
35
  /********************** Functions **********************/
36
+ checkValidity(): boolean;
35
37
  private _handleInvalid;
36
38
  /******************** Event Handlers ********************/
37
39
  private _handleChange;