@sebgroup/green-core 2.4.0 → 2.4.1
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.
|
@@ -329,6 +329,8 @@ let GdsDropdown = class extends GdsFormControlElement {
|
|
|
329
329
|
${when(
|
|
330
330
|
this.value && this.multiple && this.value.length > 0,
|
|
331
331
|
() => html`<gds-badge
|
|
332
|
+
rounded
|
|
333
|
+
size=${this.size === "small" ? "small" : "default"}
|
|
332
334
|
slot="lead"
|
|
333
335
|
aria-label=${msg(
|
|
334
336
|
str`${this.value.length} options selected`
|
|
@@ -525,7 +527,7 @@ __decorateClass([
|
|
|
525
527
|
property({ type: Number, attribute: "max-height" })
|
|
526
528
|
], GdsDropdown.prototype, "maxHeight", 2);
|
|
527
529
|
__decorateClass([
|
|
528
|
-
property()
|
|
530
|
+
property({ reflect: true })
|
|
529
531
|
], GdsDropdown.prototype, "size", 2);
|
|
530
532
|
__decorateClass([
|
|
531
533
|
property({ type: Boolean, attribute: "hide-label" })
|
package/gds-element.js
CHANGED
|
@@ -14,7 +14,7 @@ class GdsElement extends LitElement {
|
|
|
14
14
|
/**
|
|
15
15
|
* The semantic version of this element. Can be used for troubleshooting to verify the version being used.
|
|
16
16
|
*/
|
|
17
|
-
this.semanticVersion = "2.4.
|
|
17
|
+
this.semanticVersion = "2.4.1";
|
|
18
18
|
this._isUsingTransitionalStyles = false;
|
|
19
19
|
this._dynamicStylesController = new DynamicStylesController(this);
|
|
20
20
|
}
|
|
@@ -41,8 +41,8 @@ export * from './theme/index.js';
|
|
|
41
41
|
export * from './video/index.js';
|
|
42
42
|
export * from './form-control-footer/index.js';
|
|
43
43
|
export * from './form-control-header/index.js';
|
|
44
|
-
export * from './option/index.js';
|
|
45
44
|
export * from './menu-item/index.js';
|
|
45
|
+
export * from './option/index.js';
|
|
46
46
|
export * from './checkbox-group/index.js';
|
|
47
47
|
export * from './icons/icon-details/index.js';
|
|
48
48
|
export * from './filter-chip/index.js';
|
package/generated/react/index.js
CHANGED
|
@@ -41,8 +41,8 @@ export * from "./theme/index.js";
|
|
|
41
41
|
export * from "./video/index.js";
|
|
42
42
|
export * from "./form-control-footer/index.js";
|
|
43
43
|
export * from "./form-control-header/index.js";
|
|
44
|
-
export * from "./option/index.js";
|
|
45
44
|
export * from "./menu-item/index.js";
|
|
45
|
+
export * from "./option/index.js";
|
|
46
46
|
export * from "./checkbox-group/index.js";
|
|
47
47
|
export * from "./icons/icon-details/index.js";
|
|
48
48
|
export * from "./filter-chip/index.js";
|
package/package.json
CHANGED