@sebgroup/green-core 2.28.4 → 2.29.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
@@ -12,7 +12,7 @@ class GdsElement extends LitElement {
12
12
  /**
13
13
  * The semantic version of this element. Can be used for troubleshooting to verify the version being used.
14
14
  */
15
- this.semanticVersion = "2.28.4";
15
+ this.semanticVersion = "2.29.0";
16
16
  this._isUsingTransitionalStyles = false;
17
17
  this._dynamicStylesController = new DynamicStylesController(this);
18
18
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-05T09:24:03.257Z",
2
+ "generatedAt": "2026-02-12T10:05:18.599Z",
3
3
  "components": [
4
4
  {
5
5
  "name": "gds-alert",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-05T09:24:03.257Z",
2
+ "generatedAt": "2026-02-12T10:05:18.599Z",
3
3
  "icons": [
4
4
  {
5
5
  "name": "gds-icon-ai",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-05T09:24:03.257Z",
2
+ "generatedAt": "2026-02-12T10:05:18.599Z",
3
3
  "instructions": "./INSTRUCTIONS.md",
4
4
  "components": "./components.json",
5
5
  "icons": "./icons.json",
@@ -12,6 +12,7 @@
12
12
  | `headline` | `string \| undefined` | `-` | The main headline text displayed at the top of the table. |
13
13
  | `headlineTag` | `string` | `-` | The HTML tag to use for the headline (e.g., 'h1', 'h2', etc.). |
14
14
  | `summary` | `string \| undefined` | `-` | A brief description or summary displayed below the headline. |
15
+ | `searchLabel` | `string \| undefined` | `-` | The accessible label for the search input field. |
15
16
  | `options` | `array` | `-` | Configurable options for rows per page. Accepts: number array (e.g., `[5, 10, 20, 50, 100]`) |
16
17
  | `page` | `number` | `-` | Current page number in pagination. |
17
18
  | `rows` | `number` | `-` | Number of rows displayed per page. |
@@ -51,9 +51,6 @@ export * from './formatted-date/index.js';
51
51
  export * from './formatted-number/index.js';
52
52
  export * from './radio-group/index.js';
53
53
  export * from './segment/index.js';
54
- export * from './sensitive-account/index.js';
55
- export * from './sensitive-date/index.js';
56
- export * from './sensitive-number/index.js';
57
54
  export * from './icons/icon-ai/index.js';
58
55
  export * from './icons/icon-airplane-up/index.js';
59
56
  export * from './icons/icon-archive/index.js';
@@ -389,6 +386,9 @@ export * from './icons/icon-youtube/index.js';
389
386
  export * from './icons/icon-zap/index.js';
390
387
  export * from './icons/icon-zoom-in/index.js';
391
388
  export * from './icons/icon-zoom-out/index.js';
389
+ export * from './sensitive-account/index.js';
390
+ export * from './sensitive-date/index.js';
391
+ export * from './sensitive-number/index.js';
392
392
  export * from './menu-item/index.js';
393
393
  export * from './menu-heading/index.js';
394
394
  export * from './option/index.js';
@@ -51,9 +51,6 @@ export * from "./formatted-date/index.js";
51
51
  export * from "./formatted-number/index.js";
52
52
  export * from "./radio-group/index.js";
53
53
  export * from "./segment/index.js";
54
- export * from "./sensitive-account/index.js";
55
- export * from "./sensitive-date/index.js";
56
- export * from "./sensitive-number/index.js";
57
54
  export * from "./icons/icon-ai/index.js";
58
55
  export * from "./icons/icon-airplane-up/index.js";
59
56
  export * from "./icons/icon-archive/index.js";
@@ -389,6 +386,9 @@ export * from "./icons/icon-youtube/index.js";
389
386
  export * from "./icons/icon-zap/index.js";
390
387
  export * from "./icons/icon-zoom-in/index.js";
391
388
  export * from "./icons/icon-zoom-out/index.js";
389
+ export * from "./sensitive-account/index.js";
390
+ export * from "./sensitive-date/index.js";
391
+ export * from "./sensitive-number/index.js";
392
392
  export * from "./menu-item/index.js";
393
393
  export * from "./menu-heading/index.js";
394
394
  export * from "./option/index.js";
@@ -21,6 +21,7 @@ export declare const GdsTable: {
21
21
  headline?: string | undefined;
22
22
  headlineTag?: string | undefined;
23
23
  summary?: string | undefined;
24
+ searchLabel?: string | undefined;
24
25
  options?: number[] | undefined;
25
26
  page?: number | undefined;
26
27
  rows?: number | undefined;
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.28.4",
4
+ "version": "2.29.0",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
@@ -6,7 +6,6 @@ var rbcb_toggle_style_default = css`
6
6
  --_toggle-radius: var(--gds-sys-space-3xs);
7
7
  --_perimeter-radius: var(--gds-sys-space-xs);
8
8
  --_toggle-border-width-checked: var(--gds-sys-space-s);
9
-
10
9
  --_perimeter-bg-mix: color-mix(
11
10
  in srgb,
12
11
  var(--gds-sys-color-l3-neutral-02),
@@ -17,19 +16,18 @@ var rbcb_toggle_style_default = css`
17
16
  var(--gds-sys-color-l3-neutral-02),
18
17
  var(--gds-sys-color-state-neutral-04)
19
18
  );
20
-
21
19
  display: flex;
22
20
  align-items: center;
23
21
  justify-content: center;
24
22
  position: relative;
25
23
  width: var(--_toggle-size);
26
24
  height: var(--_toggle-size);
27
-
25
+ margin-block-start: calc(var(--gds-sys-space-5xs) * 2);
28
26
  cursor: pointer;
29
27
  }
30
28
 
31
- :not(.rbcb-wrapper) .rbcb {
32
- margin-block-start: calc(var(--gds-sys-space-5xs) * 2);
29
+ .rbcb-wrapper .rbcb {
30
+ margin-block-start: 0;
33
31
  }
34
32
 
35
33
  .rbcb--radio {
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QU3DSPNU.js";
2
2
  import { html as litHtml } from "lit";
3
- const VER_SUFFIX = "-26bd05";
3
+ const VER_SUFFIX = "-581e8a";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])
File without changes