@sebgroup/green-core 2.6.3 → 2.6.4-rc.20250929095718653
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/components/fab/fab.component.d.ts +1 -1
- package/components/fab/fab.component.js +1 -1
- package/components/fab/fab.styles.js +4 -0
- package/gds-element.js +1 -1
- package/generated/react/index.d.ts +1 -1
- package/generated/react/index.js +1 -1
- package/package.json +1 -1
- package/utils/helpers/custom-element-scoping.js +1 -1
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
} from "../../chunks/chunk.QU3DSPNU.js";
|
|
4
4
|
import { gdsCustomElement } from "../../scoping.js";
|
|
5
5
|
import { withPositioningProps } from "../../utils/mixins/declarative-layout-mixins.js";
|
|
6
|
-
import { GdsButton } from "../button/
|
|
6
|
+
import { GdsButton } from "../button/button.component.js";
|
|
7
7
|
import FABStyles from "./fab.styles.js";
|
|
8
8
|
let GdsFab = class extends withPositioningProps(GdsButton) {
|
|
9
9
|
connectedCallback() {
|
|
@@ -12,6 +12,10 @@ const style = css`
|
|
|
12
12
|
block-size: calc(var(--_block-size) + var(--gds-sys-space-xs));
|
|
13
13
|
width: max-content;
|
|
14
14
|
}
|
|
15
|
+
|
|
16
|
+
::slotted([gds-element='gds-signal']) {
|
|
17
|
+
margin-left: var(--gds-sys-space-xs);
|
|
18
|
+
}
|
|
15
19
|
`;
|
|
16
20
|
var fab_styles_default = style;
|
|
17
21
|
export {
|
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.6.
|
|
17
|
+
this.semanticVersion = "2.6.4-rc.20250929095718653";
|
|
18
18
|
this._isUsingTransitionalStyles = false;
|
|
19
19
|
this._dynamicStylesController = new DynamicStylesController(this);
|
|
20
20
|
}
|
|
@@ -52,8 +52,8 @@ 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
55
|
export * from './sensitive-date/index.js';
|
|
56
|
+
export * from './sensitive-number/index.js';
|
|
57
57
|
export * from './icons/icon-ai/index.js';
|
|
58
58
|
export * from './icons/icon-airplane-up/index.js';
|
|
59
59
|
export * from './icons/icon-archive/index.js';
|
package/generated/react/index.js
CHANGED
|
@@ -52,8 +52,8 @@ 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
55
|
export * from "./sensitive-date/index.js";
|
|
56
|
+
export * from "./sensitive-number/index.js";
|
|
57
57
|
export * from "./icons/icon-ai/index.js";
|
|
58
58
|
export * from "./icons/icon-airplane-up/index.js";
|
|
59
59
|
export * from "./icons/icon-archive/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.6.
|
|
4
|
+
"version": "2.6.4-rc.20250929095718653",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"type": "module",
|