@sebgroup/green-core 2.21.0-rc.20251218133405834 → 2.21.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.
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.21.0-rc.20251218133405834";
17
+ this.semanticVersion = "2.21.0";
18
18
  this._isUsingTransitionalStyles = false;
19
19
  this._dynamicStylesController = new DynamicStylesController(this);
20
20
  }
@@ -30,10 +30,10 @@ export * from './menu-button/index.js';
30
30
  export * from './pagination/index.js';
31
31
  export * from './backdrop/index.js';
32
32
  export * from './popover/index.js';
33
+ export * from './radio/index.js';
33
34
  export * from './rich-text/index.js';
34
35
  export * from './segmented-control/index.js';
35
36
  export * from './select/index.js';
36
- export * from './radio/index.js';
37
37
  export * from './signal/index.js';
38
38
  export * from './spinner/index.js';
39
39
  export * from './table/index.js';
@@ -49,6 +49,11 @@ 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-account/index.js';
55
+ export * from './sensitive-number/index.js';
56
+ export * from './sensitive-date/index.js';
52
57
  export * from './icons/icon-ai/index.js';
53
58
  export * from './icons/icon-airplane-up/index.js';
54
59
  export * from './icons/icon-archive/index.js';
@@ -382,11 +387,6 @@ export * from './icons/icon-youtube/index.js';
382
387
  export * from './icons/icon-zap/index.js';
383
388
  export * from './icons/icon-zoom-in/index.js';
384
389
  export * from './icons/icon-zoom-out/index.js';
385
- export * from './segment/index.js';
386
- export * from './radio-group/index.js';
387
- export * from './sensitive-account/index.js';
388
- export * from './sensitive-date/index.js';
389
- export * from './sensitive-number/index.js';
390
390
  export * from './option/index.js';
391
391
  export * from './menu-heading/index.js';
392
392
  export * from './menu-item/index.js';
@@ -30,10 +30,10 @@ export * from "./menu-button/index.js";
30
30
  export * from "./pagination/index.js";
31
31
  export * from "./backdrop/index.js";
32
32
  export * from "./popover/index.js";
33
+ export * from "./radio/index.js";
33
34
  export * from "./rich-text/index.js";
34
35
  export * from "./segmented-control/index.js";
35
36
  export * from "./select/index.js";
36
- export * from "./radio/index.js";
37
37
  export * from "./signal/index.js";
38
38
  export * from "./spinner/index.js";
39
39
  export * from "./table/index.js";
@@ -49,6 +49,11 @@ 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-account/index.js";
55
+ export * from "./sensitive-number/index.js";
56
+ export * from "./sensitive-date/index.js";
52
57
  export * from "./icons/icon-ai/index.js";
53
58
  export * from "./icons/icon-airplane-up/index.js";
54
59
  export * from "./icons/icon-archive/index.js";
@@ -382,11 +387,6 @@ export * from "./icons/icon-youtube/index.js";
382
387
  export * from "./icons/icon-zap/index.js";
383
388
  export * from "./icons/icon-zoom-in/index.js";
384
389
  export * from "./icons/icon-zoom-out/index.js";
385
- export * from "./segment/index.js";
386
- export * from "./radio-group/index.js";
387
- export * from "./sensitive-account/index.js";
388
- export * from "./sensitive-date/index.js";
389
- export * from "./sensitive-number/index.js";
390
390
  export * from "./option/index.js";
391
391
  export * from "./menu-heading/index.js";
392
392
  export * from "./menu-item/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.21.0-rc.20251218133405834",
4
+ "version": "2.21.0",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QU3DSPNU.js";
2
2
  import { html as litHtml } from "lit";
3
- const VER_SUFFIX = "-bdf47d";
3
+ const VER_SUFFIX = "-e7de99";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])