@sebgroup/green-core 2.16.0 → 2.16.1-rc.20251125091416729

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.
@@ -12,7 +12,7 @@ const style = css`
12
12
  background: transparent;
13
13
  border-radius: var(--gds-sys-radius-max);
14
14
  border-width: 0;
15
- color: var(--gds-sys-color-content-neutral-01);
15
+ color: var(--gds-sys-color-content-neutral-02);
16
16
  cursor: pointer;
17
17
  flex-grow: 1;
18
18
  flex-shrink: 0;
@@ -26,9 +26,9 @@ const style = css`
26
26
  white-space: nowrap;
27
27
  width: 100%;
28
28
  transition:
29
- background-color var(--gds-sys-motion-fast),
30
- border-color var(--gds-sys-motion-fast),
31
- color var(--gds-sys-motion-fast);
29
+ background-color var(--gds-sys-motion-duration-fast),
30
+ border-color var(--gds-sys-motion-duration-fast),
31
+ color var(--gds-sys-motion-duration-fast);
32
32
  outline-width: var(--gds-sys-space-4xs);
33
33
  outline-style: solid;
34
34
  outline-offset: -2px;
@@ -40,6 +40,10 @@ const style = css`
40
40
  }
41
41
  }
42
42
 
43
+ :host([selected]) button {
44
+ color: var(--gds-sys-color-content-neutral-01);
45
+ }
46
+
43
47
  @media (pointer: fine) {
44
48
  :host(:not([selected])) button:hover {
45
49
  background-color: color-mix(
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.16.0";
17
+ this.semanticVersion = "2.16.1-rc.20251125091416729";
18
18
  this._isUsingTransitionalStyles = false;
19
19
  this._dynamicStylesController = new DynamicStylesController(this);
20
20
  }
@@ -56,6 +56,8 @@ export * from './formatted-number/index.js';
56
56
  export * from './radio-group/index.js';
57
57
  export * from './segment/index.js';
58
58
  export * from './sensitive-account/index.js';
59
+ export * from './sensitive-date/index.js';
60
+ export * from './sensitive-number/index.js';
59
61
  export * from './icons/icon-ai/index.js';
60
62
  export * from './icons/icon-airplane-up/index.js';
61
63
  export * from './icons/icon-archive/index.js';
@@ -389,5 +391,3 @@ export * from './icons/icon-youtube/index.js';
389
391
  export * from './icons/icon-zap/index.js';
390
392
  export * from './icons/icon-zoom-in/index.js';
391
393
  export * from './icons/icon-zoom-out/index.js';
392
- export * from './sensitive-date/index.js';
393
- export * from './sensitive-number/index.js';
@@ -56,6 +56,8 @@ export * from "./formatted-number/index.js";
56
56
  export * from "./radio-group/index.js";
57
57
  export * from "./segment/index.js";
58
58
  export * from "./sensitive-account/index.js";
59
+ export * from "./sensitive-date/index.js";
60
+ export * from "./sensitive-number/index.js";
59
61
  export * from "./icons/icon-ai/index.js";
60
62
  export * from "./icons/icon-airplane-up/index.js";
61
63
  export * from "./icons/icon-archive/index.js";
@@ -389,5 +391,3 @@ export * from "./icons/icon-youtube/index.js";
389
391
  export * from "./icons/icon-zap/index.js";
390
392
  export * from "./icons/icon-zoom-in/index.js";
391
393
  export * from "./icons/icon-zoom-out/index.js";
392
- export * from "./sensitive-date/index.js";
393
- 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.16.0",
4
+ "version": "2.16.1-rc.20251125091416729",
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 = "-7e01fd";
3
+ const VER_SUFFIX = "-c0ebfc";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])