@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.
|
|
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';
|
package/generated/react/index.js
CHANGED
|
@@ -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
|
@@ -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
|
/**
|