@sebgroup/green-core 2.4.0 → 2.4.1-rc.20250902113031535
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-rc.20250902113031535";
|
|
18
18
|
this._isUsingTransitionalStyles = false;
|
|
19
19
|
this._dynamicStylesController = new DynamicStylesController(this);
|
|
20
20
|
}
|
|
@@ -49,6 +49,10 @@ export * from './filter-chip/index.js';
|
|
|
49
49
|
export * from './formatted-account/index.js';
|
|
50
50
|
export * from './formatted-date/index.js';
|
|
51
51
|
export * from './formatted-number/index.js';
|
|
52
|
+
export * from './radio-group/index.js';
|
|
53
|
+
export * from './segment/index.js';
|
|
54
|
+
export * from './sensitive-date/index.js';
|
|
55
|
+
export * from './sensitive-account/index.js';
|
|
52
56
|
export * from './icons/icon-ai/index.js';
|
|
53
57
|
export * from './icons/icon-airplane-up/index.js';
|
|
54
58
|
export * from './icons/icon-archive/index.js';
|
|
@@ -374,8 +378,4 @@ export * from './icons/icon-youtube/index.js';
|
|
|
374
378
|
export * from './icons/icon-zap/index.js';
|
|
375
379
|
export * from './icons/icon-zoom-in/index.js';
|
|
376
380
|
export * from './icons/icon-zoom-out/index.js';
|
|
377
|
-
export * from './radio-group/index.js';
|
|
378
|
-
export * from './segment/index.js';
|
|
379
|
-
export * from './sensitive-account/index.js';
|
|
380
|
-
export * from './sensitive-date/index.js';
|
|
381
381
|
export * from './sensitive-number/index.js';
|
package/generated/react/index.js
CHANGED
|
@@ -49,6 +49,10 @@ export * from "./filter-chip/index.js";
|
|
|
49
49
|
export * from "./formatted-account/index.js";
|
|
50
50
|
export * from "./formatted-date/index.js";
|
|
51
51
|
export * from "./formatted-number/index.js";
|
|
52
|
+
export * from "./radio-group/index.js";
|
|
53
|
+
export * from "./segment/index.js";
|
|
54
|
+
export * from "./sensitive-date/index.js";
|
|
55
|
+
export * from "./sensitive-account/index.js";
|
|
52
56
|
export * from "./icons/icon-ai/index.js";
|
|
53
57
|
export * from "./icons/icon-airplane-up/index.js";
|
|
54
58
|
export * from "./icons/icon-archive/index.js";
|
|
@@ -374,8 +378,4 @@ export * from "./icons/icon-youtube/index.js";
|
|
|
374
378
|
export * from "./icons/icon-zap/index.js";
|
|
375
379
|
export * from "./icons/icon-zoom-in/index.js";
|
|
376
380
|
export * from "./icons/icon-zoom-out/index.js";
|
|
377
|
-
export * from "./radio-group/index.js";
|
|
378
|
-
export * from "./segment/index.js";
|
|
379
|
-
export * from "./sensitive-account/index.js";
|
|
380
|
-
export * from "./sensitive-date/index.js";
|
|
381
381
|
export * from "./sensitive-number/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": "2.4.
|
|
4
|
+
"version": "2.4.1-rc.20250902113031535",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"type": "module",
|