@sebgroup/green-core 2.21.0-rc.20260113143213999 → 2.21.0-rc.20260113154959564

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.21.0-rc.20260113143213999";
15
+ this.semanticVersion = "2.21.0-rc.20260113154959564";
16
16
  this._isUsingTransitionalStyles = false;
17
17
  this._dynamicStylesController = new DynamicStylesController(this);
18
18
  }
@@ -18,7 +18,7 @@
18
18
 
19
19
  ### Typography Rules
20
20
 
21
- - **REQUIRED**: Use `gds-text` component for all headings and paragraphs. But don't use inside other components, unless explicitly called for
21
+ - **REQUIRED**: Use `gds-text` component for all headings and paragraphs. But never use inside buttons.
22
22
  - **REQUIRED**: Use `gds-rich-text` for large bodies of text with varied formatting
23
23
  - **AVOID**: Direct HTML text elements (h1-h6, p, span), as these will be unstyled
24
24
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generatedAt": "2026-01-13T14:32:38.675Z",
3
+ "generatedAt": "2026-01-13T15:50:26.716Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "gds-alert",
@@ -328,6 +328,7 @@
328
328
  "files": [
329
329
  "api",
330
330
  "guidelines",
331
+ "instructions",
331
332
  "angular",
332
333
  "react"
333
334
  ]
@@ -2,6 +2,7 @@
2
2
  "name": "gds-flex",
3
3
  "files": {
4
4
  "api": "api.md",
5
+ "instructions": "instructions.md",
5
6
  "guidelines": "guidelines.md",
6
7
  "angular": "angular.md",
7
8
  "react": "react.md"
@@ -0,0 +1,15 @@
1
+ - When setting the direction, make sure to use the `flex-direction` attribute
2
+
3
+ Usage examples:
4
+
5
+ ```html
6
+ <!-- Common vertical layout -->
7
+ <gds-flex flex-direction="column" gap="m">
8
+ <!-- Content -->
9
+ </gds-flex>
10
+
11
+ <!-- Responsive horizontal/vertical layout -->
12
+ <gds-flex flex-direction="column;l{row}" gap="l">
13
+ <!-- Content -->
14
+ </gds-flex>
15
+ ```
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generatedAt": "2026-01-13T14:32:38.675Z",
3
+ "generatedAt": "2026-01-13T15:50:26.716Z",
4
4
  "icons": [
5
5
  {
6
6
  "name": "gds-icon-ai",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generatedAt": "2026-01-13T14:32:38.675Z",
3
+ "generatedAt": "2026-01-13T15:50:26.716Z",
4
4
  "instructions": "./INSTRUCTIONS.md",
5
5
  "components": "./components.json",
6
6
  "icons": "./icons.json",
@@ -17,8 +17,8 @@ export * from './divider/index.js';
17
17
  export * from './dropdown/index.js';
18
18
  export * from './fab/index.js';
19
19
  export * from './filter-chips/index.js';
20
- export * from './flex/index.js';
21
20
  export * from './form-summary/index.js';
21
+ export * from './flex/index.js';
22
22
  export * from './grid/index.js';
23
23
  export * from './grouped-list/index.js';
24
24
  export * from './list-item/index.js';
@@ -17,8 +17,8 @@ export * from "./divider/index.js";
17
17
  export * from "./dropdown/index.js";
18
18
  export * from "./fab/index.js";
19
19
  export * from "./filter-chips/index.js";
20
- export * from "./flex/index.js";
21
20
  export * from "./form-summary/index.js";
21
+ export * from "./flex/index.js";
22
22
  export * from "./grid/index.js";
23
23
  export * from "./grouped-list/index.js";
24
24
  export * from "./list-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.20260113143213999",
4
+ "version": "2.21.0-rc.20260113154959564",
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 = "-63490b";
3
+ const VER_SUFFIX = "-eaedc5";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])