@sebgroup/green-core 2.21.0 → 2.22.0-rc.20260113120917392

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";
17
+ this.semanticVersion = "2.22.0-rc.20260113120917392";
18
18
  this._isUsingTransitionalStyles = false;
19
19
  this._dynamicStylesController = new DynamicStylesController(this);
20
20
  }
@@ -1,7 +1,7 @@
1
1
  import { GdsCoachmark as GdsCoachmarkClass } from '../../../components/coachmark/coachmark.component';
2
2
  import { getReactComponent } from '../../../utils/react';
3
3
  type GdsCoachmarkProps = React.ComponentProps<ReturnType<typeof getReactComponent<GdsCoachmarkClass>>> & {
4
- /** dispatched when the tooltip is closed */
4
+ /** dispatched when the tooltip is about to be closed. Can be cancelled to prevent closing. */
5
5
  onGdsUiState?: (event: CustomEvent<any>) => void;
6
6
  };
7
7
  export declare const GdsCoachmark: {
@@ -8,8 +8,8 @@ export * from './card/index.js';
8
8
  export * from './card-linked/index.js';
9
9
  export * from './checkbox/index.js';
10
10
  export * from './coachmark/index.js';
11
- export * from './context-menu/index.js';
12
11
  export * from './datepicker/index.js';
12
+ export * from './context-menu/index.js';
13
13
  export * from './details/index.js';
14
14
  export * from './dialog/index.js';
15
15
  export * from './div/index.js';
@@ -52,8 +52,6 @@ export * from './formatted-number/index.js';
52
52
  export * from './radio-group/index.js';
53
53
  export * from './segment/index.js';
54
54
  export * from './sensitive-account/index.js';
55
- export * from './sensitive-number/index.js';
56
- export * from './sensitive-date/index.js';
57
55
  export * from './icons/icon-ai/index.js';
58
56
  export * from './icons/icon-airplane-up/index.js';
59
57
  export * from './icons/icon-archive/index.js';
@@ -387,6 +385,8 @@ export * from './icons/icon-youtube/index.js';
387
385
  export * from './icons/icon-zap/index.js';
388
386
  export * from './icons/icon-zoom-in/index.js';
389
387
  export * from './icons/icon-zoom-out/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';
@@ -8,8 +8,8 @@ export * from "./card/index.js";
8
8
  export * from "./card-linked/index.js";
9
9
  export * from "./checkbox/index.js";
10
10
  export * from "./coachmark/index.js";
11
- export * from "./context-menu/index.js";
12
11
  export * from "./datepicker/index.js";
12
+ export * from "./context-menu/index.js";
13
13
  export * from "./details/index.js";
14
14
  export * from "./dialog/index.js";
15
15
  export * from "./div/index.js";
@@ -52,8 +52,6 @@ export * from "./formatted-number/index.js";
52
52
  export * from "./radio-group/index.js";
53
53
  export * from "./segment/index.js";
54
54
  export * from "./sensitive-account/index.js";
55
- export * from "./sensitive-number/index.js";
56
- export * from "./sensitive-date/index.js";
57
55
  export * from "./icons/icon-ai/index.js";
58
56
  export * from "./icons/icon-airplane-up/index.js";
59
57
  export * from "./icons/icon-archive/index.js";
@@ -387,6 +385,8 @@ export * from "./icons/icon-youtube/index.js";
387
385
  export * from "./icons/icon-zap/index.js";
388
386
  export * from "./icons/icon-zoom-in/index.js";
389
387
  export * from "./icons/icon-zoom-out/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",
4
+ "version": "2.22.0-rc.20260113120917392",
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 = "-e7de99";
3
+ const VER_SUFFIX = "-cd33fa";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])