@nysds/nys-errormessage 1.17.0 → 1.18.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.
@@ -5,7 +5,7 @@ import { property as s } from "lit/decorators.js";
5
5
  * █ █ █ █▄▄▄█ ▀▀▀▄▄ █ █ ▀▀▀▄▄
6
6
  * █ ▀█ █ █▄▄▄█ █▄▄▀ █▄▄▄█
7
7
  *
8
- * Error message Component v1.17.0
8
+ * Error message Component v1.18.0
9
9
  * Part of the New York State Design System
10
10
  * Repository: https://github.com/its-hcd/nysds
11
11
  * License: MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nysds/nys-errormessage",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "description": "The Errormessage component from the NYS Design System.",
5
5
  "module": "dist/nys-errormessage.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "lit-analyze": "lit-analyzer '**/*.ts'"
24
24
  },
25
25
  "dependencies": {
26
- "@nysds/nys-icon": "^1.17.0"
26
+ "@nysds/nys-icon": "^1.18.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "lit": "^3.3.1",
@@ -1,27 +0,0 @@
1
- import { LitElement } from "lit";
2
- /**
3
- * **Internal component.** Displays error messages for form validation with icon and ARIA alert role.
4
- *
5
- * Used internally by form components. Not intended for direct use. Shows error icon and message
6
- * when `showError` is true. Integrates with ElementInternals for native form validation messages.
7
- *
8
- * @summary Internal error message display with icon and ARIA alert support.
9
- * @element nys-errormessage
10
- */
11
- export declare class NysErrorMessage extends LitElement {
12
- static styles: import("lit").CSSResult;
13
- /** The "id" of the error message. */
14
- id: string;
15
- /** Whether to display the error message. */
16
- showError: boolean;
17
- /** Error text to display. Falls back to native validation message if available. */
18
- errorMessage: string;
19
- /** Shows a divider line above the error message. */
20
- showDivider: boolean;
21
- /**
22
- * Lifecycle methods
23
- * --------------------------------------------------------------------------
24
- */
25
- constructor();
26
- render(): import("lit-html").TemplateResult<1>;
27
- }