@sebgroup/green-core 1.88.1 → 1.88.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.
@@ -372,7 +372,7 @@ let GdsDropdown = class extends GdsFormControlElement {
372
372
  <gds-icon-triangle-exclamation
373
373
  solid
374
374
  ></gds-icon-triangle-exclamation>
375
- ${this.validationMessage || this.errorMessage}
375
+ ${this.errorMessage}
376
376
  </slot>
377
377
  </gds-form-control-footer>
378
378
  `
@@ -11,8 +11,8 @@ export * from './container/index.js';
11
11
  export * from './context-menu/index.js';
12
12
  export * from './datepicker/index.js';
13
13
  export * from './details/index.js';
14
- export * from './dialog/index.js';
15
14
  export * from './div/index.js';
15
+ export * from './dialog/index.js';
16
16
  export * from './divider/index.js';
17
17
  export * from './dropdown/index.js';
18
18
  export * from './fab/index.js';
@@ -11,8 +11,8 @@ export * from "./container/index.js";
11
11
  export * from "./context-menu/index.js";
12
12
  export * from "./datepicker/index.js";
13
13
  export * from "./details/index.js";
14
- export * from "./dialog/index.js";
15
14
  export * from "./div/index.js";
15
+ export * from "./dialog/index.js";
16
16
  export * from "./divider/index.js";
17
17
  export * from "./dropdown/index.js";
18
18
  export * from "./fab/index.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sebgroup/green-core",
3
3
  "description": "A carefully crafted set of Web Components, laying the foundation of the Green Design System.",
4
- "version": "1.88.1",
4
+ "version": "1.88.2",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
@@ -69,6 +69,10 @@ export declare class ScopedElementRegistry {
69
69
  static get instance(): Map<string, string>;
70
70
  }
71
71
  export interface GdsCustomElementOptions {
72
+ /**
73
+ * An array of custom element classes that this custom element depends on.
74
+ * These elements will be automatically defined before this element is defined.
75
+ */
72
76
  dependsOn?: (typeof GdsElement)[];
73
77
  }
74
78
  /**
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QTSIPXV3.js";
2
2
  import { html as litHtml } from "lit";
3
- const VER_SUFFIX = "-f66161";
3
+ const VER_SUFFIX = "-f27f4b";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])