@sebgroup/green-core 2.8.0 → 2.8.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.
@@ -53,7 +53,6 @@ renderItem_fn = function() {
53
53
  target=${ifDefined(this.target)}
54
54
  rel=${ifDefined(this.rel || __privateGet(this, _GdsBreadcrumb_instances, defaultRel_get))}
55
55
  aria-label=${this.label || nothing}
56
- aria-current=${ifDefined(!this.href ? "page" : void 0)}
57
56
  >
58
57
  <slot name="lead"></slot>
59
58
  <slot></slot>
@@ -63,7 +62,11 @@ renderItem_fn = function() {
63
62
  };
64
63
  renderCurrent_fn = function() {
65
64
  return html`
66
- <gds-text color="neutral-02" font-weight="regular">
65
+ <gds-text
66
+ color="neutral-02"
67
+ font-weight="regular"
68
+ aria-current=${ifDefined(!this.href ? "page" : void 0)}
69
+ >
67
70
  <slot></slot>
68
71
  </gds-text>
69
72
  `;
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.8.0";
17
+ this.semanticVersion = "2.8.1";
18
18
  this._isUsingTransitionalStyles = false;
19
19
  this._dynamicStylesController = new DynamicStylesController(this);
20
20
  }
@@ -11,11 +11,11 @@ export * from './context-menu/index.js';
11
11
  export * from './datepicker/index.js';
12
12
  export * from './details/index.js';
13
13
  export * from './dialog/index.js';
14
- export * from './divider/index.js';
15
- export * from './dropdown/index.js';
16
- export * from './fab/index.js';
17
14
  export * from './div/index.js';
15
+ export * from './fab/index.js';
16
+ export * from './dropdown/index.js';
18
17
  export * from './filter-chips/index.js';
18
+ export * from './divider/index.js';
19
19
  export * from './flex/index.js';
20
20
  export * from './form-summary/index.js';
21
21
  export * from './grid/index.js';
@@ -50,6 +50,11 @@ export * from './filter-chip/index.js';
50
50
  export * from './formatted-account/index.js';
51
51
  export * from './formatted-date/index.js';
52
52
  export * from './formatted-number/index.js';
53
+ export * from './radio-group/index.js';
54
+ export * from './segment/index.js';
55
+ export * from './sensitive-account/index.js';
56
+ export * from './sensitive-number/index.js';
57
+ export * from './sensitive-date/index.js';
53
58
  export * from './icons/icon-ai/index.js';
54
59
  export * from './icons/icon-airplane-up/index.js';
55
60
  export * from './icons/icon-archive/index.js';
@@ -375,8 +380,3 @@ export * from './icons/icon-youtube/index.js';
375
380
  export * from './icons/icon-zap/index.js';
376
381
  export * from './icons/icon-zoom-in/index.js';
377
382
  export * from './icons/icon-zoom-out/index.js';
378
- export * from './radio-group/index.js';
379
- export * from './segment/index.js';
380
- export * from './sensitive-account/index.js';
381
- export * from './sensitive-date/index.js';
382
- export * from './sensitive-number/index.js';
@@ -11,11 +11,11 @@ export * from "./context-menu/index.js";
11
11
  export * from "./datepicker/index.js";
12
12
  export * from "./details/index.js";
13
13
  export * from "./dialog/index.js";
14
- export * from "./divider/index.js";
15
- export * from "./dropdown/index.js";
16
- export * from "./fab/index.js";
17
14
  export * from "./div/index.js";
15
+ export * from "./fab/index.js";
16
+ export * from "./dropdown/index.js";
18
17
  export * from "./filter-chips/index.js";
18
+ export * from "./divider/index.js";
19
19
  export * from "./flex/index.js";
20
20
  export * from "./form-summary/index.js";
21
21
  export * from "./grid/index.js";
@@ -50,6 +50,11 @@ export * from "./filter-chip/index.js";
50
50
  export * from "./formatted-account/index.js";
51
51
  export * from "./formatted-date/index.js";
52
52
  export * from "./formatted-number/index.js";
53
+ export * from "./radio-group/index.js";
54
+ export * from "./segment/index.js";
55
+ export * from "./sensitive-account/index.js";
56
+ export * from "./sensitive-number/index.js";
57
+ export * from "./sensitive-date/index.js";
53
58
  export * from "./icons/icon-ai/index.js";
54
59
  export * from "./icons/icon-airplane-up/index.js";
55
60
  export * from "./icons/icon-archive/index.js";
@@ -375,8 +380,3 @@ export * from "./icons/icon-youtube/index.js";
375
380
  export * from "./icons/icon-zap/index.js";
376
381
  export * from "./icons/icon-zoom-in/index.js";
377
382
  export * from "./icons/icon-zoom-out/index.js";
378
- export * from "./radio-group/index.js";
379
- export * from "./segment/index.js";
380
- export * from "./sensitive-account/index.js";
381
- export * from "./sensitive-date/index.js";
382
- 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.8.0",
4
+ "version": "2.8.1",
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 = "-a901a6";
3
+ const VER_SUFFIX = "-656c55";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])